AdH Kraken 0.0.0
Next generation Adaptive Hydraulics
Loading...
Searching...
No Matches
selem_3d.h
1#ifndef H_SELEM_3D_
2#define H_SELEM_3D_
3
4// dependencies: SVECT
5
6/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
7/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
8
9typedef struct {
10
11 int id; /* current 3d element number */
12 int gid; /* global id should == id_orig for non-mpi */
13 int id_orig; /* original 2d element number (every 2d element should have a value) */
14 int nnodes; /* total # of nodes on element */
15 int nnodes_quad; /* the total number of quadratic nodes on element */
16 double djac; /* the jacobian of the element */
17 int string; /* string number associated with this element */
18 int mat; /* 3d element physics material type */
19 int nvars; /* the total number of independent variables on this element */
20 int *vars; /* an array of independent variables on this element */
21 int icol; /* the column this tet belongs to */
22 int elem2d_sur; /* the 2d surface element of the column this tet belongs to */
23 int elem2d_bed; /* the 2d bed element of the column this tet belongs to */
24 double error; /* max elemental error in continuity equations for the current ts */
25 int flux_ptr; /* 2d element pointer for flux line output */
26 SVECT *grad_shp; /* the gradients of the shape functions */
27 int *nodes; /* the nodes in the element */
28 int *levels; /* the node levels in the element */
29 int nedges; /* the number of edges on the element */
30 double volume;
31 int resident_pe;
32
33 /*interface flag to prevent adaption */
34 int interface;
35
36} SELEM_3D;
37
38/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
39/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
40// struct methods
41
42void selem3d_alloc(SELEM_3D *elem3d, int nnodes_on_elem);
43void selem3d_load(SELEM_3D *elem3d, int gid, int lid, int elem_nnodes, int *local_node_ids, int bflag, SVECT *nds, int mat);
44void selem3d_free(SELEM_3D *elem3d);
45void selem3d_alloc_array(SELEM_3D **elem3d, int nelems3d);
46void selem3d_free_array(SELEM_3D *elem3d, int nelems3d);
47void selem3d_init(SELEM_3D *elem3d);
48void selem3d_init_array(SELEM_3D *elem3d, int nelems3d);
49void selem3d_init_alloc_array(SELEM_3D **elem3d, int nelems3d);
50void selem3d_copy(SELEM_3D *to, SELEM_3D from);
51void selem3d_printScreen(SELEM_3D *elem3d);
52void selem3d_get_tet_local_shape(double xhat, double yhat, double zhat, double *lshape);
53void selem3d_get_triprism_local_shape(double xhat, double yhat, double zhat, double *lshape);
54void selem3d_get_tet_local_shape_quad(double xhat, double yhat, double zhat, double *lshape_quad);
55void selem3d_get_triprism_local_shape_quad(double xhat, double yhat, double zhat, double *lshape_quad);
56void selem3d_get_tet_local_shape_gradients(SVECT *lgrad_shp);
57void selem3d_get_triprism_local_shape_gradients(double xhat, double yhat, double zhat, SVECT *lgrad_shp);
58double selem3d_get_triprism_djac(double xhat, double yhat, double zhat, SVECT *nd);
59double selem3d_get_triprism_linear_djac_gradPhi(double xhat, double yhat, double zhat, SVECT *nd, SVECT *grad_shp);
60void selem3d_get_tet_linear_djac_gradPhi(SELEM_3D *elem3d, SNODE *nd_SNODE, SVECT *nd_SVECT);
61double selem3d_get_tet_linear_djac(SNODE *nd_SNODE, SVECT *nd_SVECT);
62double selem3d_get_tet_linear_djac_gradPhi2(SNODE *nd_SNODE, SVECT *nd_SVECT, SVECT *grad_shp);
63double selem3d_get_elem3d_volume(SVECT *node, int nnodes);
64double selem3d_get_triprism_volume(SVECT *node);
65
66/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
67/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
68
69#endif
Definition: selem_3d.h:9
Definition: snode.h:8
Definition: svect.h:4