AdH Kraken 0.0.0
Next generation Adaptive Hydraulics
Loading...
Searching...
No Matches
smodel.h
1#ifndef H_SMODEL_
2#define H_SMODEL_
3
4
5/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
6/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
7typedef struct {
8
9 int physics; // a model ID for elemental residual functions, etc.
10 int physics_init; // a model ID for elemental body initialization
11 int nvar; // the # of independent variable on this model
12 int *physics_vars; // the location of the variables in the superModel
13
14} SMODEL;
15
16/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
17/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
18// Methods
19void smodel_alloc_init(SMODEL *m, int phys, int physInit, int nvar);
20void smodel_alloc_init_array(SMODEL **mod, int *phys, int *physInit, int nmods, int *nvars);
21void smodel_free(SMODEL *model);
22void smodel_free_array(SMODEL *mods, int nmods);
23void smodel_printScreen(SMODEL *m);
24
25/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
26/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
27
28#endif
Definition: smodel.h:7