AdH Kraken 0.0.0
Next generation Adaptive Hydraulics
Loading...
Searching...
No Matches
sivar_position.h
1#ifndef H_SIVAR_POS_
2#define H_SIVAR_POS_
3
4/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
5/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
10/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
11/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
12typedef struct {
13
14 int n; // total # of independent variables active (includes transport)
15 int ntrns; // total # of transport variables active only
16 int var[N_IVARS_TOTAL]; // position in array form
17
19
20/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
21/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
22// Methods
24void sivar_position_printScreen(SIVAR_POSITION *ip);
25void sivar_position_map(SIVAR_POSITION *ip, int *FLAGS);
26int sivar_position_build_dof_map(SIVAR_POSITION *ip, int nnodes, SIVAR_POSITION *ipNode, int ***ivars);
27
28/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
29/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
30
31#endif
32
33
34
35
36
void sivar_position_init(SIVAR_POSITION *ip)
Intializes the SIVAR_POS structure.
Definition: sivar_position.c:20
Definition: sivar_position.h:12