AdH Kraken 0.0.0
Next generation Adaptive Hydraulics
Loading...
Searching...
No Matches
sstr_value.h
1
2#ifndef H_SSTR_VALUE_
3#define H_SSTR_VALUE_
4
5// dependencies ::
6
7// /***********************************************************/
8// /***********************************************************/
9// /***********************************************************/
10
11typedef struct
12{
13 /* if you add another parameter here, update initialize_input_data_type() */
14 int bc_flag; /* the type of boundary condition */
15 int src_flag; /* the type of source */
16 int isigma; /* flux specification */
17 int iu_0; /* solution specification */
18 int iq; /* the strength of the source */
19 int ici; /* concentration of the source */
20 int ivx; /* the boundary specification series number for x */
21 int ivy; /* the boundary specification series number for y */
22 int ivz; /* the boundary specification series number for z */
23 double ceq_0; /* the boundary equilibrium concentration */
24} INPUT_DATA; /* input data structure */
25
26typedef struct
27{
28 /* if you add another parameter here, update initialize_friction_type() */
29 double manningsn; /* Manning's n roughness */
30 double skfricoef; /* skin friction coefficient */
31 double dragcoef; /* drag coefficient */
32 double eqrheight; /* equivalent roughness height */
33 double rheight; /* roughness height (K-E) */
34 double hghtstem; /* undeflected stem height */
35 double diamstem; /* stem diameter */
36 double densstem; /* stem density */
37 double icethick; /* thickness of the ice */
38 double icedense; /* density of the ice */
39 double bedrhght; /* bed roughness height */
40 double icerhght; /* ice roughness height */
41 int mng_flag; /* flags YES if Manning's n roughness is input */
42 int erh_flag; /* flags YES if roughness height is input */
43 int sav_flag; /* flags YES for submerged aquatic vegetation */
44 int urv_flag; /* flags YES for unsubmerged rigid vegetation */
45 int icemors; /* 0 = stationary ice, 1 = moving ice */
46} FRICTION;
47
48
49typedef struct {
50 INPUT_DATA flow; /* the flow data */
51 INPUT_DATA heat; /* the thermal data */
52 INPUT_DATA ol_flow; /* the overland flow data */
53 INPUT_DATA ch_flow; /* the channel flow data */
54 INPUT_DATA pressure; /* the pressure data */
55 INPUT_DATA displacement; /* storing area for boundary conditions related to displacement */
56 INPUT_DATA bed; /* designation of the bed */
57 INPUT_DATA *trans; /* the transport data */
58 INPUT_DATA *sed; /* sediment input data */
59 INPUT_DATA Qs; /* Rdiation for Heat GSAVANT */
60 INPUT_DATA Td; /* Dew POint Temp GSAVANT */
61 FRICTION fterms; /* friction terms */
62 double roughness; /* the roughness for overland or channel flow */
63 double conveyance; /* the total conveyance for edge string discharge */
64 double height; /* March 18 2004 roughness height */
65 double ref_height; /* reference height (NS hydrostatic pressure) */
66 double ref_pressure; /* reference pressure (NS hydrostatic pressure) */
67 int ps_flag; /* the post processing flag */
68 int string_type; /* tells the type of the string (NDS, EGS, FCS, etc) */
69 int ice_string;
70 int phys_flag; /* flag for setting strings and secondary physics */
71 int flux_flag; /* flag for printing flux values across string */
72 int sed_div_flag; /* flag for defining a sediment diversion flux adjustment (for 2D only) */
73 int link; /* links one string to another */
74 int weir_num; /* weir Associated with a string */
75 int flap_num; /* Flp gate associated with a string*/
76 int sluice_num; /* Sluice gate associated wiht a string */
77 double total_area; /* total area of all 2d faces associated with this string */
78} STR_VALUE; /* string values */
79
80/*********************************************************/
81/* struct methods -------------------------------------- */
82
83void sstr_value_init(STR_VALUE **, int, int, int);
84void sstr_value_free(STR_VALUE *, int, int, int);
85void sstr_value_check(STR_VALUE, int);
86void sstr_value_checkall(STR_VALUE *, int);
87void sstr_value_set_physics(STR_VALUE *str, int nstring, SFLAGS flag);
88void sstr_value_set_roughness(STR_VALUE *, int, int, int, double, double);
89//void sstr_value_set_total_area(STR_VALUE *, SGRID *);
90void initialize_friction_type(FRICTION *);
91void initialize_input_data_type(INPUT_DATA *);
92
93#endif
94
Definition: sstr_value.h:27
Definition: sstr_value.h:12
Definition: sflags.h:7
Definition: sstr_value.h:49