AdH Kraken 0.0.0
Next generation Adaptive Hydraulics
Loading...
Searching...
No Matches
smat_physics.h
1#ifndef H_SMAT_PHYSICS_
2#define H_SMAT_PHYSICS_
3
4/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
5/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
6typedef struct {
7 int id;
8 char code[10];
9 int ntrns; // # of transport constituents on this element
10 SIVAR_POSITION ivar_pos; // a list of independent variables on the element
11 int n; //number of variables
12 int *ivar_loc; //arry of n who's entries are location in **ivar array
13 int nSubmodels;
14 SMODEL *model; // [nSubModels] length array
15 int nbc;
16 int *bc_ids;
17
18 bool SW_FLOW; // 1, 2, 3
19 bool SW1_FLOW; // 1
20 bool SW2_FLOW; // 2
21 bool SW3_FLOW; // 3
22 bool NS_FLOW; // 4
23 bool NS3_FLOW; // 4
24 bool NS3_SPLIT; // 5
25 bool DW_FLOW; // 6
26 bool WVEL_SPLIT;// 7
27 bool PRESSURE; // 8
28 bool GW_FLOW; // 9
29 bool VORTICITY;
30 bool SEDIMENT;
31 bool SEDLIB;
32 bool ICM;
33 bool NSM;
34 bool WAVE;
35 bool WIND;
36 bool *TRANSPORT; // ntrans
37 bool POISSON; // just used for testing
38 bool HEAT;
39
41/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
42/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
43
44// Methods
45void smat_physics_alloc_init(SMAT_PHYSICS *mat, char *codes);
46void smat_physics_alloc_init_array(SMAT_PHYSICS **mat_physics, int nmat, char **codes);
47void smat_physics_free_array(SMAT_PHYSICS *mat, int nmat);
48void smat_physics_position_flag(SMAT_PHYSICS **mat_node, int nnodes, int *FLAG);
49void smat_physics_printScreen(SMAT_PHYSICS *m);
50void smat_physics_update_array(SMAT_PHYSICS *m, int nmat_physics, SIVAR_POSITION* ivar_pos);
51
52/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
53/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
54#endif
Definition: sivar_position.h:12
Definition: smat_physics.h:6
Definition: smodel.h:7