programmer's documentation
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
cs_cdo_local.h
Go to the documentation of this file.
1 #ifndef __CS_CDO_LOCAL_H__
2 #define __CS_CDO_LOCAL_H__
3 
4 /*============================================================================
5  * Routines to handle low-level routines related to CDO local quantities:
6  * - local matrices (stored in dense format),
7  * - local quantities related to a cell.
8  *============================================================================*/
9 
10 /*
11  This file is part of Code_Saturne, a general-purpose CFD tool.
12 
13  Copyright (C) 1998-2018 EDF S.A.
14 
15  This program is free software; you can redistribute it and/or modify it under
16  the terms of the GNU General Public License as published by the Free Software
17  Foundation; either version 2 of the License, or (at your option) any later
18  version.
19 
20  This program is distributed in the hope that it will be useful, but WITHOUT
21  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
22  FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
23  details.
24 
25  You should have received a copy of the GNU General Public License along with
26  this program; if not, write to the Free Software Foundation, Inc., 51 Franklin
27  Street, Fifth Floor, Boston, MA 02110-1301, USA.
28 */
29 
30 /*----------------------------------------------------------------------------
31  * Local headers
32  *----------------------------------------------------------------------------*/
33 
34 #include "cs_cdo.h"
35 #include "cs_cdo_connect.h"
36 #include "cs_cdo_quantities.h"
37 #include "cs_sdm.h"
38 
39 /*----------------------------------------------------------------------------*/
40 
42 
43 /*============================================================================
44  * Macro definitions
45  *============================================================================*/
46 
47 /* According to the flag which are set, different quantities or connectivities
48  are built on-the-fly and stored in a local cache structure (cell/base) */
49 
50 #define CS_CDO_LOCAL_PV (1 << 0) // 1: local info. for vertices
51 #define CS_CDO_LOCAL_PVQ (1 << 1) // 2: local quant. on vertices
52 #define CS_CDO_LOCAL_PE (1 << 2) // 4: local info. for edges
53 #define CS_CDO_LOCAL_PEQ (1 << 3) // 8: local quant. on edges
54 #define CS_CDO_LOCAL_DFQ (1 << 4) // 16: local quant. on dual faces
55 #define CS_CDO_LOCAL_PF (1 << 5) // 32: local info. for faces
56 #define CS_CDO_LOCAL_PFQ (1 << 6) // 64: local quant. on faces
57 #define CS_CDO_LOCAL_DEQ (1 << 7) // 128: local quant. on dual edges
58 #define CS_CDO_LOCAL_EV (1 << 8) // 256: local e2v connectivity
59 #define CS_CDO_LOCAL_FE (1 << 9) // 512: local f2e connectivity
60 #define CS_CDO_LOCAL_FEQ (1 << 10) // 1024: local f2e quantities
61 #define CS_CDO_LOCAL_EF (1 << 11) // 2048: local e2f connectivity
62 #define CS_CDO_LOCAL_EFQ (1 << 12) // 4096: local e2f quantities
63 #define CS_CDO_LOCAL_HFQ (1 << 13) // 8192: local quant. on face pyramids
64 #define CS_CDO_LOCAL_DIAM (1 << 14) // 16384: local diameters on faces/cell
65 
66 /*============================================================================
67  * Type definitions
68  *============================================================================*/
69 
70 /* Structure which belongs to one thread */
71 typedef struct {
72 
73  /* Temporary buffers */
74  short int *ids; // local ids
75  double *values; // local values
76  cs_real_3_t *vectors; // local 3-dimensional vectors
77 
78  /* Structures used to build specific terms composing the algebraic system */
79  cs_sdm_t *hdg; // local hodge matrix for diffusion (may be NULL)
80  cs_sdm_t *loc; // local square matrix of size n_cell_dofs;
81  cs_sdm_t *aux; // auxiliary local square matrix of size n_cell_dofs;
82 
83  /* Specific members for the weakly enforcement of Dirichlet BCs (diffusion) */
84  double eig_ratio; // ratio of the eigenvalues of the diffusion tensor
85  double eig_max; // max. value among eigenvalues
86 
87  /* Store the cellwise value for the diffusion, time and reaction properties */
88  cs_real_33_t pty_mat; // If not isotropic
89  double pty_val; // If isotropic
90 
92 
93 /* Structure used to store a local system (cell-wise for instance) */
94 typedef struct {
95 
96  cs_lnum_t c_id; // cell id
97  int n_dofs; // Number of Degrees of Freedom (DoFs) in this cell
98  cs_lnum_t *dof_ids; // DoF ids
99  cs_sdm_t *mat; // cellwise view of the system matrix
100  double *rhs; // cellwise view of the right-hand side
101  double *source; // cellwise view of the source term array
102  double *val_n; /* values of the unkown at the time t_n (the
103  last computed) */
104 
105 } cs_cell_sys_t;
106 
107 /* Structure used to store local information about the boundary conditions */
108 typedef struct {
109 
110  short int n_bc_faces; // Number of border faces associated to a cell
111  short int *bf_ids; // List of face ids in the cell numbering
112  cs_flag_t *face_flag; // size n_bc_faces
113 
114  short int n_dofs; // Number of Degrees of Freedom (DoFs) in this cell
115  cs_flag_t *dof_flag; // size = number of DoFs
116 
117  /* Dirichlet BCs */
118  short int n_dirichlet; // Number of DoFs attached to a Dirichlet BC
119  double *dir_values; // Values of the Dirichlet BCs (size = n_dofs)
120 
121  /* Neumann BCs */
122  short int n_nhmg_neuman; /* Number of DoFs related to a non-homogeneous
123  Neumann boundary (BC) */
124  double *neu_values; // Values of the Neumnn BCs (size = n_dofs)
125 
126  /* Robin BCs */
127  short int n_robin; // Number of DoFs attached to a Robin BC
128  double *rob_values; // Values of the Robin BCs (size = 2*n_dofs)
129 
130 } cs_cell_bc_t;
131 
132 /* Structure used to get a better memory locality. Map existing structure
133  into a more compact one dedicated to a cell.
134  Arrays are allocated to n_max_vbyc or to n_max_ebyc.
135  Cell-wise numbering is based on the c2e and c2v connectivity.
136 */
137 
138 typedef struct {
139 
140  cs_flag_t flag; // indicate which quantities have to be defined
141  fvm_element_t type; // type of element related to this cell
142 
143  /* Sizes used to allocate buffers */
144  short int n_max_vbyc;
145  short int n_max_ebyc;
146  short int n_max_fbyc;
147 
148  /* Cell information */
149  cs_lnum_t c_id; // id of related cell
150  cs_real_3_t xc; // coordinates of the cell center
151  double vol_c; // volume of the current cell
152  double diam_c; // diameter of the current cell
153 
154  /* Vertex information */
155  short int n_vc; // local number of vertices in a cell
156  cs_lnum_t *v_ids; // vertex ids on this rank
157  double *xv; // local vertex coordinates (copy)
158  double *wvc; // weight |vol_dc(v) cap vol_c|/|vol_c for each cell vtx
159 
160  /* Edge information */
161  short int n_ec; // local number of edges in a cell
162  cs_lnum_t *e_ids; // edge ids on this rank
163  cs_quant_t *edge; // local edge quantities (xe, length and unit vector)
164  cs_nvec3_t *dface; // local dual face quantities (area and unit normal)
165 
166  /* Face information */
167  short int n_fc; // local number of faces in a cell
168  cs_lnum_t *f_ids; // face ids on this rank
169  short int *f_sgn; // incidence number between f and c
170  double *f_diam; // diameters of local faces
171  double *hfc; // height of the pyramid of basis f and apex c
172  cs_quant_t *face; // local face quantities (xf, area and unit normal)
173  cs_nvec3_t *dedge; // local dual edge quantities (length and unit vector)
174 
175  /* Local e2v connectivity: size 2*n_ec (allocated to 2*n_max_ebyc) */
176  short int *e2v_ids; // cell-wise edge -> vertices connectivity
177  short int *e2v_sgn; // cell-wise edge -> vertices orientation (-1 or +1)
178 
179  /* Local f2e connectivity: size = 2*n_max_ebyc */
180  short int *f2e_idx; // size n_fc + 1
181  short int *f2e_ids; // size 2*n_max_ebyc
182  double *tef; // |tef| area of the triangle of base |e| and apex xf
183 
184  /* Local e2f connectivity: size 2*n_ec (allocated to 2*n_max_ebyc) */
185  short int *e2f_ids; // cell-wise edge -> faces connectivity
186  cs_nvec3_t *sefc; // portion of dual faces (2 triangles by edge)
187 
189 
190 /* Structure used to get a better memory locality. Map existing structure
191  into a more compact one dedicated to a face.
192  Arrays are allocated to n_max_vbyf (= n_max_ebyf).
193  Face-wise numbering is based on the f2e connectivity.
194 */
195 
196 typedef struct {
197 
198  short int n_max_vbyf; // = n_max_ebyf
199 
200  cs_lnum_t c_id; // id of related cell
201  cs_real_3_t xc; // pointer to the coordinates of the cell center
202 
203  /* Face information */
204  cs_lnum_t f_id; // local mesh face id
205  short int f_sgn; // incidence number between f and c
206  cs_quant_t face; // local face quantities (xf, area and unit normal)
207  cs_nvec3_t dedge; // local dual edge quantities (length and unit vector)
208 
209  /* Vertex information */
210  short int n_vf; // local number of vertices on this face
211  cs_lnum_t *v_ids; // vertex ids on this rank or in the cellwise numbering
212  double *xv; // local vertex coordinates (copy)
213  double *wvf; // weight related to each vertex
214 
215  /* Edge information */
216  short int n_ef; // local number of edges in on this face (= n_vf)
217  cs_lnum_t *e_ids; // edge ids on this rank or in the cellwise numbering
218  cs_quant_t *edge; // local edge quantities (xe, length and unit vector)
219  double *tef; // area of the triangle of base e and apex xf
220 
221  /* Local e2v connectivity: size 2*n_ec (allocated to 2*n_max_ebyf) */
222  short int *e2v_ids; // face-wise edge -> vertices connectivity
223 
225 
226 /*============================================================================
227  * Global variables
228  *============================================================================*/
229 
232 
233 /*============================================================================
234  * Public function prototypes
235  *============================================================================*/
236 
237 /*----------------------------------------------------------------------------*/
244 /*----------------------------------------------------------------------------*/
245 
246 void
248 
249 /*----------------------------------------------------------------------------*/
254 /*----------------------------------------------------------------------------*/
255 
256 void
258 
259 /*----------------------------------------------------------------------------*/
269 /*----------------------------------------------------------------------------*/
270 
272 cs_cell_sys_create(int n_max_ent,
273  short int n_blocks,
274  short int *block_sizes);
275 
276 /*----------------------------------------------------------------------------*/
282 /*----------------------------------------------------------------------------*/
283 
284 void
286 
287 /*----------------------------------------------------------------------------*/
295 /*----------------------------------------------------------------------------*/
296 
297 void
298 cs_cell_sys_dump(const char msg[],
299  const cs_lnum_t c_id,
300  const cs_cell_sys_t *csys);
301 
302 /*----------------------------------------------------------------------------*/
311 /*----------------------------------------------------------------------------*/
312 
313 cs_cell_bc_t *
314 cs_cell_bc_create(int n_max_dofbyc,
315  int n_max_fbyc);
316 
317 /*----------------------------------------------------------------------------*/
323 /*----------------------------------------------------------------------------*/
324 
325 void
327 
328 /*----------------------------------------------------------------------------*/
338 /*----------------------------------------------------------------------------*/
339 
342  const cs_cdo_connect_t *connect);
343 
344 /*----------------------------------------------------------------------------*/
350 /*----------------------------------------------------------------------------*/
351 
352 void
354 
355 /*----------------------------------------------------------------------------*/
361 /*----------------------------------------------------------------------------*/
362 
363 void
365 
366 /*----------------------------------------------------------------------------*/
372 /*----------------------------------------------------------------------------*/
373 
374 void
376 
377 /*----------------------------------------------------------------------------*/
385 /*----------------------------------------------------------------------------*/
386 
388 cs_cdo_local_get_cell_mesh(int mesh_id);
389 
390 /*----------------------------------------------------------------------------*/
398 /*----------------------------------------------------------------------------*/
399 
401 cs_cdo_local_get_face_mesh(int mesh_id);
402 
403 /*----------------------------------------------------------------------------*/
411 /*----------------------------------------------------------------------------*/
412 
414 cs_cell_mesh_create(const cs_cdo_connect_t *connect);
415 
416 /*----------------------------------------------------------------------------*/
422 /*----------------------------------------------------------------------------*/
423 
424 void
426 
427 /*----------------------------------------------------------------------------*/
438 /*----------------------------------------------------------------------------*/
439 
440 void
442  cs_flag_t level,
443  const cs_cdo_connect_t *connect,
444  const cs_cdo_quantities_t *quant,
445  cs_cell_mesh_t *cm);
446 
447 /*----------------------------------------------------------------------------*/
455 /*----------------------------------------------------------------------------*/
456 
458 cs_face_mesh_create(short int n_max_vbyf);
459 
460 /*----------------------------------------------------------------------------*/
466 /*----------------------------------------------------------------------------*/
467 
468 void
470 
471 /*----------------------------------------------------------------------------*/
481 /*----------------------------------------------------------------------------*/
482 
483 void
485  cs_lnum_t f_id,
486  const cs_cdo_connect_t *connect,
487  const cs_cdo_quantities_t *quant,
488  cs_face_mesh_t *fm);
489 
490 /*----------------------------------------------------------------------------*/
500 /*----------------------------------------------------------------------------*/
501 
502 void
504  short int f,
505  cs_face_mesh_t *fm);
506 
507 /*----------------------------------------------------------------------------*/
517 /*----------------------------------------------------------------------------*/
518 
519 static inline void
520 cs_cell_mesh_get_next_3_vertices(const short int *f2e_ids,
521  const short int *e2v_ids,
522  short int *v0,
523  short int *v1,
524  short int *v2)
525 {
526  const short int e0 = f2e_ids[0];
527  const short int e1 = f2e_ids[1];
528  const short int tmp = e2v_ids[2*e1];
529 
530  *v0 = e2v_ids[2*e0];
531  *v1 = e2v_ids[2*e0+1];
532  *v2 = ((tmp != *v0) && (tmp != *v1)) ? tmp : e2v_ids[2*e1+1];
533 }
534 
535 /*----------------------------------------------------------------------------*/
536 
538 
539 #endif /* __CS_CDO_LOCAL_H__ */
cs_lnum_t * e_ids
Definition: cs_cdo_local.h:217
cs_face_mesh_t * cs_face_mesh_create(short int n_max_vbyf)
Allocate a cs_face_mesh_t structure.
Definition: cs_cdo_local.c:1361
void cs_cdo_local_initialize(const cs_cdo_connect_t *connect)
Allocate global structures related to a cs_cell_mesh_t and cs_face_mesh_t structures.
Definition: cs_cdo_local.c:117
void cs_cell_mesh_build(cs_lnum_t c_id, cs_flag_t level, const cs_cdo_connect_t *connect, const cs_cdo_quantities_t *quant, cs_cell_mesh_t *cm)
Define a cs_cell_mesh_t structure for a given cell id. According to the requested level...
Definition: cs_cdo_local.c:977
double pty_val
Definition: cs_cdo_local.h:89
double * dir_values
Definition: cs_cdo_local.h:119
short int * e2f_ids
Definition: cs_cdo_local.h:185
double * tef
Definition: cs_cdo_local.h:182
double vol_c
Definition: cs_cdo_local.h:151
void cs_cell_mesh_free(cs_cell_mesh_t **p_cm)
Free a cs_cell_mesh_t structure.
Definition: cs_cdo_local.c:927
cs_sdm_t * loc
Definition: cs_cdo_local.h:80
cs_lnum_t * f_ids
Definition: cs_cdo_local.h:168
cs_lnum_t f_id
Definition: cs_cdo_local.h:204
short int * ids
Definition: cs_cdo_local.h:74
cs_sdm_t * hdg
Definition: cs_cdo_local.h:79
double * wvc
Definition: cs_cdo_local.h:158
short int n_max_vbyf
Definition: cs_cdo_local.h:198
double * tef
Definition: cs_cdo_local.h:219
double * source
Definition: cs_cdo_local.h:101
short int n_dofs
Definition: cs_cdo_local.h:114
cs_cell_bc_t * cs_cell_bc_create(int n_max_dofbyc, int n_max_fbyc)
Allocate a cs_cell_bc_t structure.
Definition: cs_cdo_local.c:325
cs_lnum_t * dof_ids
Definition: cs_cdo_local.h:98
cs_cell_builder_t * cs_cell_builder_create(cs_space_scheme_t scheme, const cs_cdo_connect_t *connect)
Allocate and initialize a cs_cell_builder_t structure according to to the type of discretization whic...
Definition: cs_cdo_local.c:404
short int n_max_vbyc
Definition: cs_cdo_local.h:144
#define BEGIN_C_DECLS
Definition: cs_defs.h:453
short int * e2v_sgn
Definition: cs_cdo_local.h:177
cs_nvec3_t * dface
Definition: cs_cdo_local.h:164
short int n_dirichlet
Definition: cs_cdo_local.h:118
void cs_cdo_local_finalize(void)
Free global structures related to cs_cell_mesh_t and cs_face_mesh_t structures.
Definition: cs_cdo_local.c:167
double * val_n
Definition: cs_cdo_local.h:102
double * hfc
Definition: cs_cdo_local.h:171
short int n_vf
Definition: cs_cdo_local.h:210
cs_flag_t * dof_flag
Definition: cs_cdo_local.h:115
Definition: cs_cdo_local.h:138
double eig_ratio
Definition: cs_cdo_local.h:84
void cs_cell_builder_free(cs_cell_builder_t **p_cb)
Free a cs_cell_builder_t structure.
Definition: cs_cdo_local.c:620
Definition: cs_cdo_connect.h:55
short int * f2e_ids
Definition: cs_cdo_local.h:181
cs_sdm_t * mat
Definition: cs_cdo_local.h:99
cs_lnum_t * v_ids
Definition: cs_cdo_local.h:211
double * xv
Definition: cs_cdo_local.h:157
short int n_ef
Definition: cs_cdo_local.h:216
cs_nvec3_t * sefc
Definition: cs_cdo_local.h:186
short int n_bc_faces
Definition: cs_cdo_local.h:110
Definition: cs_cdo_quantities.h:89
cs_nvec3_t dedge
Definition: cs_cdo_local.h:207
Definition: cs_cdo.h:130
Definition: cs_cdo_local.h:94
short int n_max_ebyc
Definition: cs_cdo_local.h:145
cs_lnum_t * v_ids
Definition: cs_cdo_local.h:156
int n_dofs
Definition: cs_cdo_local.h:97
short int * f_sgn
Definition: cs_cdo_local.h:169
double * wvf
Definition: cs_cdo_local.h:213
short int n_nhmg_neuman
Definition: cs_cdo_local.h:122
double * rhs
Definition: cs_cdo_local.h:100
double eig_max
Definition: cs_cdo_local.h:85
cs_space_scheme_t
Definition: cs_cdo.h:138
double diam_c
Definition: cs_cdo_local.h:152
cs_sdm_t * aux
Definition: cs_cdo_local.h:81
Definition: cs_field_pointer.h:123
cs_lnum_t c_id
Definition: cs_cdo_local.h:96
cs_cell_sys_t * cs_cell_sys_create(int n_max_ent, short int n_blocks, short int *block_sizes)
Allocate a cs_cell_sys_t structure.
Definition: cs_cdo_local.c:213
void cs_cell_mesh_dump(cs_cell_mesh_t *cm)
Dump a cs_cell_mesh_t structure.
Definition: cs_cdo_local.c:816
fvm_element_t
Definition: fvm_defs.h:48
fvm_element_t type
Definition: cs_cdo_local.h:141
cs_lnum_t c_id
Definition: cs_cdo_local.h:149
cs_cell_mesh_t * cs_cdo_local_get_cell_mesh(int mesh_id)
Get a pointer to a cs_cell_mesh_t structure corresponding to mesh id.
Definition: cs_cdo_local.c:650
short int n_max_fbyc
Definition: cs_cdo_local.h:146
void cs_face_mesh_build_from_cell_mesh(const cs_cell_mesh_t *cm, short int f, cs_face_mesh_t *fm)
Define a cs_face_mesh_t structure for a given cell from a cs_cell_mesh_t structure. v_ids and e_ids are defined in the cell numbering given by cm.
Definition: cs_cdo_local.c:1576
short int n_fc
Definition: cs_cdo_local.h:167
short int f_sgn
Definition: cs_cdo_local.h:205
cs_face_mesh_t * cs_cdo_local_get_face_mesh(int mesh_id)
Get a pointer to a cs_face_mesh_t structure corresponding to mesh id.
Definition: cs_cdo_local.c:669
cs_lnum_t * e_ids
Definition: cs_cdo_local.h:162
void cs_cell_sys_free(cs_cell_sys_t **p_ls)
Free a cs_cell_sys_t structure.
Definition: cs_cdo_local.c:262
Definition: cs_cdo_local.h:108
cs_nvec3_t * dedge
Definition: cs_cdo_local.h:173
cs_quant_t * edge
Definition: cs_cdo_local.h:218
double * f_diam
Definition: cs_cdo_local.h:170
cs_cell_mesh_t ** cs_cdo_local_cell_meshes
Definition: cs_cdo_local.c:66
short int * e2v_ids
Definition: cs_cdo_local.h:222
Definition: cs_cdo_local.h:71
cs_quant_t * face
Definition: cs_cdo_local.h:172
cs_real_t cs_real_3_t[3]
vector of 3 floating-point values
Definition: cs_defs.h:309
cs_flag_t flag
Definition: cs_cdo_local.h:140
cs_quant_t face
Definition: cs_cdo_local.h:206
cs_real_3_t xc
Definition: cs_cdo_local.h:150
cs_real_33_t pty_mat
Definition: cs_cdo_local.h:88
Definition: cs_cdo_quantities.h:81
int cs_lnum_t
local mesh entity id
Definition: cs_defs.h:293
void cs_cell_sys_dump(const char msg[], const cs_lnum_t c_id, const cs_cell_sys_t *csys)
Dump a local system for debugging purpose.
Definition: cs_cdo_local.c:291
short int * bf_ids
Definition: cs_cdo_local.h:111
short int n_vc
Definition: cs_cdo_local.h:155
double * neu_values
Definition: cs_cdo_local.h:124
cs_real_3_t xc
Definition: cs_cdo_local.h:201
void cs_cell_mesh_reset(cs_cell_mesh_t *cm)
Initialize to invalid values a cs_cell_mesh_t structure.
Definition: cs_cdo_local.c:749
#define END_C_DECLS
Definition: cs_defs.h:454
short int * e2v_ids
Definition: cs_cdo_local.h:176
unsigned short int cs_flag_t
Definition: cs_defs.h:299
short int n_robin
Definition: cs_cdo_local.h:127
cs_cell_mesh_t * cs_cell_mesh_create(const cs_cdo_connect_t *connect)
Allocate and initialize a cs_cell_mesh_t structure.
Definition: cs_cdo_local.c:688
cs_flag_t * face_flag
Definition: cs_cdo_local.h:112
short int n_ec
Definition: cs_cdo_local.h:161
cs_real_t cs_real_33_t[3][3]
3x3 matrix of floating-point values
Definition: cs_defs.h:315
double * values
Definition: cs_cdo_local.h:75
Definition: cs_cdo_local.h:196
static void cs_cell_mesh_get_next_3_vertices(const short int *f2e_ids, const short int *e2v_ids, short int *v0, short int *v1, short int *v2)
Define a cs_face_mesh_t structure for a given cell from a cs_cell_mesh_t structure. v_ids and e_ids are defined in the cell numbering given by cm.
Definition: cs_cdo_local.h:520
void cs_face_mesh_build(cs_lnum_t c_id, cs_lnum_t f_id, const cs_cdo_connect_t *connect, const cs_cdo_quantities_t *quant, cs_face_mesh_t *fm)
Define a cs_face_mesh_t structure for a given face/cell id.
Definition: cs_cdo_local.c:1434
cs_real_3_t * vectors
Definition: cs_cdo_local.h:76
short int * f2e_idx
Definition: cs_cdo_local.h:180
cs_face_mesh_t ** cs_cdo_local_face_meshes
Definition: cs_cdo_local.c:67
cs_lnum_t c_id
Definition: cs_cdo_local.h:200
void cs_cell_bc_free(cs_cell_bc_t **p_cbc)
Free a cs_cell_bc_t structure.
Definition: cs_cdo_local.c:373
double * rob_values
Definition: cs_cdo_local.h:128
double * xv
Definition: cs_cdo_local.h:212
cs_quant_t * edge
Definition: cs_cdo_local.h:163
void cs_face_mesh_free(cs_face_mesh_t **p_fm)
Free a cs_face_mesh_t structure.
Definition: cs_cdo_local.c:1401