1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270
|
#ifndef __CS_CDO_QUANTITIES_H__
#define __CS_CDO_QUANTITIES_H__
/*============================================================================
* Manage geometrical quantities needed in CDO schemes
*============================================================================*/
/*
This file is part of Code_Saturne, a general-purpose CFD tool.
Copyright (C) 1998-2016 EDF S.A.
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation; either version 2 of the License, or (at your option) any later
version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
details.
You should have received a copy of the GNU General Public License along with
this program; if not, write to the Free Software Foundation, Inc., 51 Franklin
Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
* Local headers
*----------------------------------------------------------------------------*/
#include "cs_base.h"
#include "cs_mesh.h"
#include "cs_mesh_quantities.h"
#include "cs_cdo.h"
#include "cs_cdo_connect.h"
/*----------------------------------------------------------------------------*/
BEGIN_C_DECLS
/*============================================================================
* Macro definitions
*============================================================================*/
/*============================================================================
* Type definitions
*============================================================================*/
/* Type of algorithm to compute geometrical quantities */
typedef enum {
CS_CDO_CC_MEANV, // Cell center is computed as the mean of cell vertices
CS_CDO_CC_BARYC, // Cell center is computed as the real cell barycenter
CS_CDO_CC_SATURNE, // Cell center is given by Code_Saturne
CS_CDO_CC_ORTHO, /* Cell center is optimized to enforce orthogonality
between cell-face edge and face plane */
CS_CDO_N_CC_ALGOS
} cs_cdo_cc_algo_t;
/* Structure storing information about variation of entities accros the
mesh for a given type of entity (cell, face and edge) */
typedef struct {
double meas_min; // Min. value of the entity measure (vol, surf or lenght)
double meas_max; // Max. value of the entity measure (vol, surf or lenght)
double h_min; // Estimation of the min. value of the diameter
double h_max; // Estimation of the max. value of the diameter
cs_lnum_t min_id; // Entity if related to the min. value
cs_lnum_t max_id; // Entity if related to the max. value
} cs_quant_info_t;
/* For primal vector quantities (edge or face) */
typedef struct {
double meas; /* length or area */
double unitv[3]; /* unitary vector: tangent or normal to the element */
double center[3];
} cs_quant_t;
/* For dual face quantities. Add also a link to entity id related to this dual
quantities */
typedef struct { /* TODO: remove what is the less necessary in order to
save memory comsumption */
cs_lnum_t parent_id[2]; /* parent entity id of (primal) faces f0 and f1 */
cs_nvec3_t sface[2]; /* area and unit normal vector for each
triangle s(e,f,c) for f in {f0, f1} */
double vect[3]; /* dual face vector */
} cs_dface_t;
typedef struct { /* Specific mesh quantities */
/* Global mesh quantities */
double vol_tot;
/* Cell-based quantities */
cs_lnum_t n_cells;
cs_real_t *cell_centers;
cs_real_t *cell_vol;
cs_quant_info_t cell_info;
/* Face-based quantities */
cs_lnum_t n_i_faces;
cs_lnum_t n_b_faces;
cs_lnum_t n_faces; /* n_i_faces + n_b_faces */
cs_quant_t *face; /* Face quantities */
cs_nvec3_t *dedge; /* Dual edge quantities (length and unit vector)
Scan with the c2f connectivity */
cs_quant_info_t face_info;
/* Edge-based quantities */
cs_lnum_t n_edges;
cs_quant_t *edge; /* Edge quantities */
cs_dface_t *dface; /* For each edge belonging to a cell, two
contributions coming from 2 triangles
s(x_cell, x_face, x_edge) for face in Face_edge
are considered.
Scan with the c2e connectivity */
cs_quant_info_t edge_info;
/* Vertex-based quantities */
cs_lnum_t n_vertices;
double *dcell_vol; /* Dual volume related to each vertex.
Scan with the c2v connectivity */
const cs_real_t *vtx_coord; /* Pointer to the one stored in cs_mesh_t */
} cs_cdo_quantities_t;
/*============================================================================
* Global variables
*============================================================================*/
/*============================================================================
* Public function prototypes
*============================================================================*/
/*----------------------------------------------------------------------------*/
/*!
* \brief Build a cs_cdo_quantities_t structure
*
* \param[in] m pointer to a cs_mesh_t structure
* \param[in] mq pointer to a cs_mesh_quantities_t structure
* \param[in] topo pointer to a cs_cdo_connect_t structure
*
* \return a new allocated pointer to a cs_cdo_quantities_t structure
*/
/*----------------------------------------------------------------------------*/
cs_cdo_quantities_t *
cs_cdo_quantities_build(const cs_mesh_t *m,
const cs_mesh_quantities_t *mq,
const cs_cdo_connect_t *topo);
/*----------------------------------------------------------------------------*/
/*!
* \brief Destroy a cs_cdo_quantities_t structure
*
* \param[in] q pointer to the cs_cdo_quantities_t struct. to free
*
* \return a NULL pointer
*/
/*----------------------------------------------------------------------------*/
cs_cdo_quantities_t *
cs_cdo_quantities_free(cs_cdo_quantities_t *q);
/*----------------------------------------------------------------------------*/
/*!
* \brief Summarize generic information about the cdo mesh quantities
*
* \param[in] cdoq pointer to cs_cdo_quantities_t structure
*
*/
/*----------------------------------------------------------------------------*/
void
cs_cdo_quantities_summary(const cs_cdo_quantities_t *quant);
/*----------------------------------------------------------------------------*/
/*!
* \brief Dump a cs_cdo_quantities_t structure
*
* \param[in] cdoq pointer to cs_cdo_quantities_t structure
*
*/
/*----------------------------------------------------------------------------*/
void
cs_cdo_quantities_dump(const cs_cdo_quantities_t *cdoq);
/*----------------------------------------------------------------------------*/
/*!
* \brief Dump a cs_quant_t structure
*
* \param[in] f FILE struct (stdout if NULL)
* \param[in] num entity number related to this quantity struct.
* \param[in] q cs_quant_t structure to dump
*/
/*----------------------------------------------------------------------------*/
void
cs_quant_dump(FILE *f,
cs_lnum_t num,
const cs_quant_t q);
/*----------------------------------------------------------------------------*/
/*!
* \brief Compute for each vertex the dual cell volume which is also
*
* sum |celld(v) cap c| = pvol_v
* c in C_v
*
* \param[in] connect pointer to a cs_cdo_connect_t structure
* \param[in] quant pointer to a cs_cdo_quantites_t structure
* \param[in, out] p_pvol pvol (if NULL, allocated in this routine)
*/
/*----------------------------------------------------------------------------*/
void
cs_compute_pvol_vtx(const cs_cdo_connect_t *connect,
const cs_cdo_quantities_t *quant,
double *p_pvol[]);
/*----------------------------------------------------------------------------*/
/*!
* \brief Compute for each edge a related volume pvol_e which constitutes
* a partition of unity
*
* \param[in] connect pointer to a cs_cdo_connect_t structure
* \param[in] quant pointer to a cs_cdo_quantites_t structure
* \param[in, out] p_pvol pvol (if NULL, allocated in this routine)
*/
/*----------------------------------------------------------------------------*/
void
cs_compute_pvol_edge(const cs_cdo_connect_t *connect,
const cs_cdo_quantities_t *quant,
double *p_pvol[]);
/*----------------------------------------------------------------------------*/
/*!
* \brief Compute for each face a related volume pvol_f which constitutes
* a partition of unity
*
* \param[in] connect pointer to a cs_cdo_connect_t structure
* \param[in] quant pointer to a cs_cdo_quantites_t structure
* \param[in, out] p_pvol pvol (if NULL, allocated in this routine)
*/
/*----------------------------------------------------------------------------*/
void
cs_compute_pvol_face(const cs_cdo_connect_t *connect,
const cs_cdo_quantities_t *quant,
double *p_pvol[]);
/*----------------------------------------------------------------------------*/
END_C_DECLS
#endif /* __CS_CDO_QUANTITIES_H__ */
|