AdH Kraken 0.0.0
Next generation Adaptive Hydraulics
Loading...
Searching...
No Matches
selem_1d.h
1
2#ifndef H_SELEM_1D_
3#define H_SELEM_1D_
4
5// dependencies :: SVECT2D, SNODE, SELEM_2D
6
7/***********************************************************/
8/***********************************************************/
9/***********************************************************/
10
11typedef struct {
12 int elem;
13 int sub;
14 int super;
15} FLUX_ELEM;
16
17typedef struct {
18
19 int id; /* current 1d element number */
20 int gid; /* the elements global ID */
21 int resident_pe; /* the processor the element is residential to */
22 int id_orig; /* original 1d element number (every 1d element should have a value) */
23 int nnodes; /* total # of nodes on element */
24 int elem2d; /* this is the 2d element that has an edge that matches this 1d element */
25 int bflag; // type of boundary
26 double djac; /* the jacobian of the element */
27 SVECT2D nrml; /* this is the 2d outward normal to the element this is connected to in the x-y plane */
28 int string; /* boundary conditions to to this 1d element if there is one */
29 int mat; /* element physics material id */
30 int nvars; /* the total number of independent variables on this element */
31 int *vars; /* an array of independent variables on this element */
32 double *grad_shp; /* the gradients of the shape functions */
33 int *nodes; /* the nodes in the element */
34 int *levels; /* the node levels in the element */
35 FLUX_ELEM *flux_elem;
36 int flux_elem_tot;
37 double length;
38
39} SELEM_1D;
40
41/*********************************************************/
42/* struct methods -------------------------------------- */
43
44void selem1d_alloc_array(SELEM_1D **elem1d, int nelems1d);
45void selem1d_load(SELEM_1D *elem1d, int gid, int lid, int elem_nnodes, int *local_node_ids, int bflag, SVECT *nds, int mat);
46void selem1d_realloc_array(SELEM_1D **elem1d, int nelems1d_old, int nelem1d_new);
47void selem1d_free_array(SELEM_1D *elem1d, int nelems1d);
48void selem1d_init(SELEM_1D *elem1d);
49void selem1d_init_array(SELEM_1D *elem1d, int nelems1d);
50void selem1d_init_alloc_array(SELEM_1D **elem1d, int nelems1d);
51void selem1d_copy(SELEM_1D *to, SELEM_1D from);
52void selem1d_printScreen(SELEM_1D *elem1d);
53void selem1d_get_elem1d_linear_djac_gradPhi(SELEM_1D *elem1d, SVECT nd1, SVECT nd2);
54
55/***********************************************************/
56/***********************************************************/
57/***********************************************************/
58
59#endif
Definition: selem_1d.h:11
Definition: selem_1d.h:17
Definition: svect2d.h:4
Definition: svect.h:4