AdH Kraken 0.0.0
Next generation Adaptive Hydraulics
Loading...
Searching...
No Matches
smodel_super.h
1// An AdH SuperModel
2#ifndef H_SMODEL_SUPER_
3#define H_SMODEL_SUPER_
4
5/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
6/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
7typedef struct {
8
9 int myid, npes; // multi-core ID and ncpus
10 SFLAGS flags; // flags associated with superModel
11 int id; // superModel ID
12 int itrns; // the transport constituent ID (CJT -- DO WE NEED THIS?)
13 int isSimple; // Does it only one physics type on whole grid
14 char *type; // surface water, groundwater, transport
15 SGRID *grid; // just a pointer to the grid in the design model
16 SDT *ts; // stores the time information of the model
17 int nsubsteps; // integer divsion of total dt
18 int meshcode; // entire mesh (0), surface(1), or floor(2)
19 int forward_step;
20 char filebase[MAXLINE]; // base filename for superModel input files
21
22 // superModel solver
23 SLIN_SYS *lin_sys; //pointer to the design model's linear system
24 double perturbation;
25 double inc_nonlin;
26 double tol_nonlin;
27 int max_nonlin_linesearch_cuts;
28 int max_nonlin_it;
29 int it_count_nonlin;
30 int force_nonlin_it;
31 int nonlinear_it_total;
32 int LINEAR_PROBLEM;
33 int it_count_nonlin_failed;
34 int nalloc_inc;
35
36 // SuperModel Degrees of Freedom
37 // Local to process, this should be same as local_range[1]-local_range[0]
38 //no longer pointers, each super model will keep their own copy
39 int my_ndofs; //pointers to design model, not arrays
40 int my_ndofs_old;
41 int ndofs; // local number of degrees of freedom + ghost
42 int ndofs_old; //local numer of solution variables the processor is in charge of
43 int macro_ndofs;
44 int macro_ndofs_old;
45
46 // linear systems solution arrays [ndofs]
47 double *sol;
48 double *sol_old;
49 double *sol_older;
50
51 // physics modules
52 SSW *sw; // surface water storage
53 //SCON *con; // transport constituent storage
54 //SSED *sed; // sediment constituent storage
55 //SGW *gw; // groundwater storage
56 // Dependent variable matrix
57 SDVAR dvars;
58
59
60 // cjt :: really, this only needs to be done for the body elements
61 int *elem1d_physics_mat; // [nelems1d] - gives the physics material ID
62 int *elem2d_physics_mat; // [nelems2d] - gives the physics material ID
63 int *elem3d_physics_mat; // [nelems3d] - gives the physics material ID
64 int nmat_physics; // # of physics materials
65 SMAT_PHYSICS *mat_physics_elem; // the elemental physics materials
66 SMAT_PHYSICS **mat_physics_node; // the nodal array of pointers to elem material with highest dof connected
67
68 // This is to know all the indepedent variables
69 // solved for in this superModel. The actual vars solved
70 // on each node are stored in mat_node
71 // If the var position is UNSET_INT, then the variable is not
72 // solved for in this superModel
73 SIVAR_POSITION ivar_pos;
74
75 // This returns position in sol[ndof]
76 // If the return is UNSET_INT, then the variable is not solve for
77 // on that node
78 int **ivars; //[variable_flag (PERTURB_H,...)][nnodes]
79
80 // Series
81 int nseries;
82 SSERIES *series_head, *series_curr;
83 SSERIES *series_wind_head, *series_wind_curr;
84 SSERIES *series_wave_head, *series_wave_curr;
85 SSERIES *series_gw_psk_head, *series_gw_psk_curr;
86
87 int *bc_mask;
88 double *dirichlet_data;
89
90 // General variables
91 double gravity;
92 double density;
93 int o_flag;
94 double initial_grid_mass;
95 double grid_mass_error;
96
97 //just to build without bug
98 STR_VALUE *str_values;
99
101
102/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
103/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
104// Methods
105void smodel_super_alloc_init(SMODEL_SUPER **smod, int nSuperModels);
106void smodel_super_free_array(SMODEL_SUPER *sm, int nSuper);
107void smodel_super_free(SMODEL_SUPER *smod);
108void smodel_super_read(SMODEL_SUPER *smod);
109void smodel_super_read_init(SMODEL_SUPER *sm, char *filebase);
110void smodel_super_printScreen(SMODEL_SUPER *smod);
111int smodel_super_forward_step(SMODEL_SUPER* sm, int (*ts_fnctn)(SMODEL_SUPER*));
112void smodel_super_update_dirichlet_data(SMODEL_SUPER *sm);
113void smodel_super_prep_sol(SMODEL_SUPER *sm);
114void smodel_super_no_read(SMODEL_SUPER *sm, char** codes, int nmat_physics, int *mat_ids);
115void smodel_super_build_dvars(SMODEL_SUPER *sm);
116/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
117/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
118
119#endif
120
Definition: sdt.h:7
Definition: sdvar.h:15
Definition: sflags.h:7
Definition: sgrid.h:28
Definition: sivar_position.h:12
Definition: slin_sys.h:5
Definition: smat_physics.h:6
Definition: smodel_super.h:7
Definition: ssw.h:5
Definition: sstr_value.h:49
Definition: sseries.h:18