AdH Kraken 0.0.0
Next generation Adaptive Hydraulics
Loading...
Searching...
No Matches
sgrid.h
1#ifndef H_SGRID_
2#define H_SGRID_
3
4//+++++++++++++++++++++++++++++++++++++++++++++++++++++++//
5//+++++++++++++++++++++++++++++++++++++++++++++++++++++++//
6//+++++++++++++++++++++++++++++++++++++++++++++++++++++++//
7
8typedef struct {
9
10 // winds
11 SMETEOR_FILE *wind_file;
12 SWIND *winds;
13
14 // waves
15 SMETEOR_FILE *wave_file;
16 SWAVE *waves;
17
18 // rain
19 SMETEOR_FILE *rain_file;
20 double *rain;
21
23
24//+++++++++++++++++++++++++++++++++++++++++++++++++++++++//
25//+++++++++++++++++++++++++++++++++++++++++++++++++++++++//
26//+++++++++++++++++++++++++++++++++++++++++++++++++++++++//
27
28typedef struct {
29 char filename[100]; // grid filenames
30 char type[15]; // grid descriptor :: options :: UNSTRUCTURED, COLUMNAR
31 int ndim; // highest grid dimension
32 bool columnar; // does grid have columnar parts
33 bool haveSegs; // does grid have line segments
34 bool haveTets; // does grid have tetrahedrons
35 bool havePrisms; // does grid have trianguler prisms
36 bool haveTris; // does grid have triangles
37 bool haveQuads; // does grid have quadrilaterals
38
39 // Local totals (used for serial and HPC)
40 int nnodes; // number of ghost + residential nodes
41 int nnodes_sur; // number of ghost + residential surface nodes
42 int nnodes_bed; // number of ghost + residential bed nodes
43 int nelems3d; // number of ghost + residential 3d elements
44 int nelems2d; // number of ghost + residential 2d elements
45 int nelems1d; // number of ghost + residential 1d elements
46 int nTets;
47 int nPrisms;
48 int nTris;
49 int nQuads;
50
51
52 SNODE *node; // number of ghost + residential nodes
53 SELEM_3D *elem3d; // an array of 3d elements on this grid
54 SELEM_2D *elem2d; // an array of 2d elements on this grid
55 SELEM_1D *elem1d; // an array of 1d elements on this grid
56
57 // HPC totals
58 int macro_nnodes; // total # of nodes in the global mesh
59 int macro_nnodes_sur; // total # of surface nodes
60 int macro_nnodes_bed; // total # of bed nodes
61 int macro_nelems3d; // total # of 3d elements in the global mesh
62 int macro_nelems2d; // total # of 2d elements in the global mesh
63 int macro_nelems1d; // total # of 1d elements in the global mesh
64 int macro_nelems2d_bed; // total # of 2d bed/surface elements across all PEs on the global mesh
65 int macro_nTets; // total # of tetrahedron elements in global mesh
66 int macro_nPrisms; // total # of prism elements in global mesh
67 int macro_nQuads; // total # of quadrilateral elements in global mesh
68 int macro_nTris; // total # of triangle elements in global mesh
69 int macro_nSegs;
70 int orig_macro_nnodes; // total number of original nodes in the global mesh
71 int orig_macro_nnodes_sur; // total number of original surface nodes in the global mesh
72 int orig_macro_nnodes_bed; // total number of original bed nodes in the global mesh
73 int orig_macro_nelems1d; // total number of original elements in the global mesh
74 int orig_macro_nelems2d; // total number of original elements in the global mesh
75 int orig_macro_nelems3d; // total number of original elements in the global mesh
76 int my_nnodes; // total # of residential only nodes in the global mesh
77 int my_nnodes_sur; // total # of residential only surface nodes in the global mesh
78 int my_nnodes_bed; // total # of residential only bed nodes in the global mesh
79 int my_nelems3d; // total # of residential only 3d elements in the global mesh
80 int my_nelems2d; // total # of residential only 2d elements in the global mesh
81 int my_nelems1d; // total # of residential only 1d elements in the global mesh
82 int my_nSegs; // total # of residential only segments in the global mesh
83 int my_nTets; // total # of residential only tetrahedron elements in global mesh
84 int my_nPrisms; // total # of residential only prism elements in global mesh
85 int my_nQuads; // total # of residential only quadrilateral elements in global mesh
86 int my_nTris; // total # of residential only triangle elements in global mesh
87
88 // Refinement-oriented counts
89 int max_nnodes; // number of ghost + residential nodes + nalloc_inc
90 int max_nnodes_sur; // number of ghost + residential surface nodes + nalloc_inc
91 int max_nnodes_bed; // number of ghost + residential bed nodes + nalloc_inc
92 int max_nelems3d; // number of ghost + resdiential 3d elements + nalloc_inc
93 int max_nelems2d; // number of ghost + residential 2d elements + nalloc_inc
94 int max_nelems1d; // number of ghost + residential 1d elements + nalloc_inc
95 int nnodes_old; // store last nnodes (before adaption/partitioning) for reallocation
96 int nnodes_sur_old; // store last surface nnodes (before adaption/partitioning) for reallocation
97 int nnodes_bed_old; // store last bed nnodes (before adaption/partitioning) for reallocation
98 int nelems3d_old; // store last nelem3d's (before adaption/partitioning) for reallocation
99 int nelems2d_old; // store last nelem2d's (before adaption/partitioning) for reallocation
100 int nelems1d_old; // store last nelem1d's (before adaption/partitioning) for reallocation
101
102 int initial_nnodes; // total # of initial (before adaption) number of ghost + residential nodes
103 int initial_nelems; // total # of initial (before adaption) number of ghost + residential 2d/ 3d elements
104 int initial_nnodes_bed; // total # of initial (before adaption) number of ghost + residential bed nnodes
105 int initial_nelems_bed; // total # of initial (before adaption) number of ghost + residential bed elements
106 int orig_initial_nnodes; // when writing adapted grids, which temporarily change initial_nnodes, this stores them
107 int orig_initial_nelems; // when writing adapted grids, which temporarily change initial_nelems, this stores them
108
109 // Mesh extents and length, area, volume
110 double mesh_length, my_mesh_length;
111 double mesh_area, my_mesh_area;
112 double mesh_area_surface, my_mesh_area_surface;
113 double mesh_area_bed, my_mesh_area_bed;
114 double mesh_area_sidewalls, my_mesh_area_sidewalls;
115 double mesh_volume, my_mesh_volume;
116 double x_min, x_max, y_min, y_max, z_min, z_max; // grid bounds
117 double my_x_min, my_x_max, my_y_min, my_y_max, my_z_min, my_z_max; // grid bounds
118
119 // Quadrature variables
120 int quadrature_order; // max order of quadrature integration
121 int nqp_1d; // the total number of 1d quadrature points
122 int nqp_2d; // the total number of 2d quadrature points
123 int nqp_3d; // the total number of 3d quadrature points
124 SQUAD *quad_seg; // stores all 1d quadrature data, including points, weights, basis values, etc.
125 SQUAD *quad_tri; // stores all 2d quadrature data, including points, weights, basis values, etc.
126 SQUAD *quad_rect; // stores all 2d quadrature data, including points, weights, basis values, etc.
127 SQUAD *quad_tet; // stores all 3d quadrature data, including points, weights, basis values, etc.
128 SQUAD *quad_prism; // stores all 3d quadrature data, including points, weights, basis values, etc.
129
130 // 3d to 2d projected node ID mappings
131 int *nodeID_3d_to_2d_sur; // maps 3d grid node IDs to overlaying 2d grid node IDs if on surface
132 int *nodeID_3d_to_2d_bed; // maps 3d grid node IDs to overlaying 2d grid node IDs if on bed
133 int *nodeID_2d_to_3d_sur; // maps 2d grid node IDs to overlaying 3d surace grid node IDs
134 int *nodeID_2d_to_3d_bed; // maps 2d grid node IDs to overlaying 3d bed grid node IDs
135
136 // MPI info for partitioning grid
137 SMPI *smpi;
138 SMPI *part_smpi; // MPI struct for processors participating in re-partioning
139 int *part_map; // maps partition processor ids to main grid MPI ids
140
141 // Nodal Attributes
142 NODAL_ATTRIBUTES nodal_attribute;
143
144 //inverse permutation for output (serial only)
145 int *inv_per_node;
146
147 //Mark added for now, need to ask
148 int **nd_on_QuadEdge;
149
150 //Mark added for if we ever build a node-to-node graph
151 //could wrap into some simple graph class
152 int *n2n_ind_ptr; //array of nnode+1 if called
153 int *n2n_edge_tab; //array of n_ind_ptr[-1]
154
155} SGRID;
156
157/***********************************************************/
158/* struct methods ---------------------------------------- */
159
160//void sgrid_read_node(SGRID *g, char *line, int *start_node_id, int *end_node_id, NODE_LIST_ITEM *ghost_nodes);
161void sgrid_read_node(SGRID *g, char *line, int *node_ind_ptr, NODE_LIST_ITEM *ghost_nodes);
162//int sgrid_read_elem(SGRID *g, char *line, int *start_node_id, int *end_node_id, int *num_ghosts, NODE_LIST_ITEM **ghost_nodes, int nnodes_on_elem, int elem_dim, bool JUST_COUNT);
163int sgrid_read_elem(SGRID *g, char *line, int start_id, int end_id, int *num_ghosts, NODE_LIST_ITEM **ghost_nodes, int nnodes_on_elem, int elem_dim, bool JUST_COUNT);
164void sgrid_free(SGRID *);
165void sgrid_printScreen(SGRID *);
166#ifdef _MESSG
167void sgrid_read(SGRID **pgrid, char *filename, MPI_Comm model_comm);
168int sgrid_repartition_ptscotch(SGRID *g);
169#else
170void sgrid_read(SGRID **pgrid, char *filename);
171#endif
172//void sgrid_write_hdf5(SGRID *g, char *fbase, int mesh_no, double time);
173//void sgrid_write_xdmf(SGRID *g, FILE *xmf);
174//void sgrid_write_nodal_pe(SGRID *g);
175//void sgrid_write_elemental_pe(SGRID *g);
176//void sgrid_write_xdmf_nodal_pe(SGRID *g);
177//void sgrid_write_xdmf_elemental_pe(SGRID *g);
178void sgrid_read_nodal_attribute(SGRID *g);
179int sgrid_reorder(SGRID *grid, int option);
180int sgrid_create_node_to_node_graph(SGRID *grid);
181
182/***********************************************************/
183/***********************************************************/
184/***********************************************************/
185
186#endif
Definition: sgrid.h:8
Definition: slist_items.h:63
Definition: selem_1d.h:17
Definition: selem_2d.h:10
Definition: selem_3d.h:9
Definition: sgrid.h:28
Definition: smeteor.h:8
Definition: smpi.h:63
Definition: snode.h:8
Definition: squad.h:55
Definition: smeteor.h:37
Definition: smeteor.h:29