AdH Kraken 0.0.0
Next generation Adaptive Hydraulics
Loading...
Searching...
No Matches
newton.h
1#ifndef _H_NEWTON_
2#define _H_NEWTON_
3
4
5//from newton_tools.c
6void initialize_system(SMODEL_SUPER *sm);
7void initialize_dirichlet_bc(SMODEL_SUPER *sm);
8void update_function(SMODEL_SUPER *sm);
9void increment_function(SMODEL_SUPER *sm);
10
11void get_residual_norms(double *resid_max_norm, double *resid_l2_norm, double *inc_max_norm,
12 int *imax_dof, int *iinc_dof, int *include_dof,
13 int my_ndofs, int ndofs, int macro_ndofs, double *residual, double *dsol, int *bc_mask
14#ifdef _MESSG
15 , SMPI *smpi
16#endif
17 );
18
19int fe_newton(SMODEL_SUPER* sm);
20
21#endif
int fe_newton(SMODEL_SUPER *sm)
The Newton solver using FE method and central finite difference approximation for Jacobian (aka a Sec...
Definition: fe_newton.c:44
Definition: smodel_super.h:7
Definition: smpi.h:63