AdH Kraken 0.0.0
Next generation Adaptive Hydraulics
Loading...
Searching...
No Matches
model_codes.h
1#ifndef _H_MODELS_
2#define _H_MODELS_
3//Integer codes for routine pointers
4
5
6/* Variable codes */
7//Dont think we will need these any longer
8#define PERTURB_U 1
9#define PERTURB_V 2
10#define PERTURB_W 3
11#define PERTURB_DPL 4
12#define PERTURB_H 5
13#define PERTURB_C 6
14#define PERTURB_P 7
15#define PERTURB_D 8
16#define PERTURB_NONE -1
17
18
19
20
21// Definitions for residual/init function pointer calls
22// to simplify code, must always be contiguous
23// that way we can use array look up as map
24#define N_RESID_ROUTINES 40
25#define NO_RESID_ 0
26#define SW1D_ 1
27#define SW2D_ 2
28#define SW3D_ 3
29#define WVEL_ 4
30#define NS1D_ 5
31#define NS2D_ 6
32#define NS3D_ 7
33#define NS1DSPLIT_ 8
34#define NS2DSPLIT_ 9
35#define NS3DSPLIT_ 10
36#define PRS_ 11
37#define DW1D_ 12
38#define DW2D_ 13
39#define GW1D_ 14
40#define GW2D_ 15
41#define GW3D_ 16
42#define TRNS_ 17
43#define TRNS1D_ 18
44#define TRNS2D_ 19
45#define TRNS3D_ 20
46#define HEAT1D_ 21
47#define HEAT2D_ 22
48#define HEAT3D_ 23
49#define POISSON2D_ 24
50// Definitions for boundary treatments, included as resid routines
51#define SW2_BC_DISCHARGE_ 25
52#define SW2_BC_ELE_ 26
53#define SW2_BC_FLAPD_ 27
54#define SW2_BC_FLAPU_ 28
55#define SW2_BC_FLUX_ 29
56#define SW2_BC_H_ 30
57#define SW2_BC_HYBRID_ 31
58#define SW2_BC_OUTFLOW_ 32
59#define SW2_BC_SLUICED_ 33
60#define SW2_BC_SLUICEU_ 34
61#define SW2_BC_TAILWATER_ 35
62#define SW2_BC_VEL_ 36
63#define SW2_BC_VEL_ELE_ 37
64#define SW2_BC_WEIRD_ 38
65#define SW2_BC_WEIRU_ 39
66
67
68//init routine codes
69#define N_INIT_ROUTINES 2
70#define NO_INIT 0
71#define SW2_INIT 1
72
73//time step routines
74//forward step pointer codes
75//see time_loop
76#define N_TIME_STEPPERS 1
77#define FE_NEWTON 0
78
79
80
81// Definitions for residual/init function pointer calls
82//#define N_RESID_ROUTINES 25
83//#define NO_RESID_ 0
84//#define SW1D_ 1
85//#define SW2D_ 2
86//#define SW3D_ 3
87//#define WVEL_ 31
88//#define NS1D_ 11
89//#define NS2D_ 12
90//#define NS3D_ 13
91//#define NS1DSPLIT_ 21
92//#define NS2DSPLIT_ 22
93//#define NS3DSPLIT_ 23
94//#define PRS_ 4
95//#define DW1D_ 51
96//#define DW2D_ 52
97//#define GW1D_ 61
98//#define GW2D_ 62
99//#define GW3D_ 63
100//#define TRNS_ 70
101//#define TRNS1D_ 71
102//#define TRNS2D_ 72
103//#define TRNS3D_ 73
104//#define HEAT1D_ 81
105//#define HEAT2D_ 82
106//#define HEAT3D_ 83
107//#define POISSON2D_ 92
109//#define SW2_BC_DISCHARGE_ 200
110//#define SW2_BC_ELE_ 201
111//#define SW2_BC_FLAPD_ 202
112//#define SW2_BC_FLAPU_ 203
113//#define SW2_BC_FLUX_ 204
114//#define SW2_BC_H_ 205
115//#define SW2_BC_HYBRID_ 206
116//#define SW2_BC_OUTFLOW_ 207
117//#define SW2_BC_SLUICED_ 208
118//#define SW2_BC_SLUICEU_ 209
119//#define SW2_BC_TAILWATER_ 210
120//#define SW2_BC_VEL_ 211
121//#define SW2_BC_VEL_ELE_ 212
122//#define SW2_BC_WEIRD_ 213
123//#define SW2_BC_WEIRU_ 214
125//#define N_INIT_ROUTINES 2
126//#define NO_INIT 0
127//#define SW2 1
128
129
130
131
132
133#endif