AdH Kraken 0.0.0
Next generation Adaptive Hydraulics
Loading...
Searching...
No Matches
squad.h
1#ifndef H_SQUAD_
2#define H_SQUAD_
3
4// Dependencies :: SVECT
5
6// quad[order].nqp
7// quad[order].pt[ipoint].xhat
8
9/***********************************************************/
10/***********************************************************/
11/***********************************************************/
12// stores values for a quadrature point
13
14typedef struct {
15
16 double xhat; // quadrature x-coord on parent element
17 double yhat; // quadrature y-coord on parent element
18 double zhat; // quadrature z-coord on parent element
19 double w; // quadrature weight
20
21 double *lshape; // local shape function value
22 double *lshape_quad; // local quadratic shape function values
23 SVECT *lgrad_shp; // local shape function gradient
24 SVECT *grad_shp; // cartesian shape function gradient
25
26 double djac; // jacobian determinate
27 double djac2d;
28 double djac2d_3d; // used for 2d quadrature
29 double djac3d_fixed; // used for 2d quadrature
30
31 // shallow water storage
32 SVECT vel;
33 SVECT vel_old;
34 SVECT vel_12dt;
35 SVECT vel_32dt;
36 SVECT vel_rel;
37 SVECT grad_u;
38 SVECT grad_v;
39 SVECT grad_w;
40 SVECT grad_p;
41 SVECT grad_density;
42 double prs;
43 double density;
44 double relvel;
45 double djac_old;
46 double djac_12dt;
47 double djac_32dt;
48 SVECT grad_shp_quad[NDONPRISM];
49
50} SQUAD_PT;
51
52/***********************************************************/
53/***********************************************************/
54// stores values for a quadrature point
55typedef struct {
56 int n; // # of quadrature points for given order
57 SQUAD_PT *pt; // list of quadrature points for given order
58} SQUAD;
59
60/*********************************************************/
61/* struct methods -------------------------------------- */
62
63//int squad_alloc_init(SQUAD **, SQUAD **);
64int squad_segment_alloc_init(SQUAD **quad_seg);
65int squad_triangle_alloc_init(SQUAD **quad_tri);
66int squad_rectangle_alloc_init(SQUAD **quad_rect);
67int squad_tetrahedron_alloc_init(SQUAD **quad_tet);
68int squad_triprism_alloc_init(SQUAD **quad_prism);
69void squad_free(SQUAD *quad_tri, int);
70void squad_pt_alloc_array(SQUAD_PT **qp, int nqp, int ndof);
71void squad_pt_free_array(SQUAD_PT *qp, int nqp, int ndof);
72void squad_pt_init(SQUAD_PT *qp, int ndof);
73void squad_pt_init_array(SQUAD_PT *qp, int nqp, int ndof);
74void squad_printScreen(SQUAD *qp, int flag, int ndof, char * geometry);
75SVECT squad_get_svect(SQUAD_PT *qp, SVECT *v, int nnodes);
76SVECT2D squad_get_svect2d(SQUAD_PT *qp, SVECT2D *v, int nnodes);
77double squad_get_function(SQUAD_PT *qp, double *f, int nnodes);
78double squad_get_quadFunction(SQUAD_PT *qp, double *f, int nnodes);
79
80/***********************************************************/
81/***********************************************************/
82/***********************************************************/
83
84#endif
Definition: squad.h:14
Definition: squad.h:55
Definition: svect2d.h:4
Definition: svect.h:4