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 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431
|
/*============================================================================
* Définitions des fonctions
* associées à la structure `ecs_champ_t' décrivant un champ
* et réalisant les sorties pour post-traitement CGNS
*============================================================================*/
/*
This file is part of Code_Saturne, a general-purpose CFD tool.
Copyright (C) 1998-2019 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.
*/
/*----------------------------------------------------------------------------*/
#include "cs_config.h"
#if defined(HAVE_CGNS)
/*============================================================================*
* Visibilité
*============================================================================*/
/*----------------------------------------------------------------------------
* Fichiers `include' librairie standard C
*---------------------------------------------------------------------------*/
#include <assert.h>
#include <string.h>
#include <cgnslib.h>
/*----------------------------------------------------------------------------
* Fichiers `include' visibles du paquetage global "Utilitaire"
*---------------------------------------------------------------------------*/
#include "ecs_def.h"
#include "ecs_elt_typ_liste.h"
#include "ecs_fic.h"
#include "ecs_mem.h"
/*----------------------------------------------------------------------------
* Fichiers `include' visibles du paquetage global "Post-Traitement"
*---------------------------------------------------------------------------*/
#include "ecs_post.h"
#include "ecs_post_cgns.h"
/*----------------------------------------------------------------------------
* Fichiers `include' visibles des paquetages visibles
*---------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
* Fichiers `include' visibles du paquetage courant
*---------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
* Fichier `include' du paquetage courant associé au fichier courant
*---------------------------------------------------------------------------*/
#include "ecs_post_cgns.h"
#include "ecs_table_post_cgns.h"
/*----------------------------------------------------------------------------
* Fichiers `include' privés du paquetage courant
*---------------------------------------------------------------------------*/
#include "ecs_post_cgns_priv.h"
#include "ecs_table_priv.h"
/*============================================================================
* Définitions de paramètres et macros
*============================================================================*/
/* Compatibilité avec diverses versions de CGNS */
#if defined(CGNS_SCOPE_ENUMS)
#define CS_CG_ENUM(e) CG_ ## e
#else
#define CS_CG_ENUM(e) e
#endif
#if CGNS_VERSION < 3100
#define cgsize_t int
#endif
/*============================================================================
* Fonctions privées
*============================================================================*/
/*----------------------------------------------------------------------------
* Fonction qui renvoie un pointeur sur une sous-structure associée
* à un maillage pour un cas de sortie CGNS.
*---------------------------------------------------------------------------*/
static ecs_post_cgns_base_t *
ecs_loc_table_post_cgns__base(const ecs_post_cgns_t *cas_cgns,
const char *nom_maillage)
{
ecs_int_t ind;
ecs_post_cgns_base_t *base_cgns = NULL;
/* Recherche du maillage */
/*-----------------------*/
for (ind = 0; ind < cas_cgns->nbr_bases; ind++) {
base_cgns = cas_cgns->tab_bases[ind];
if (strcmp(nom_maillage, base_cgns->nom_maillage) == 0)
break;
}
if (ind >= cas_cgns->nbr_bases)
ecs_error(__FILE__, __LINE__, 0,
_("CGNS: no mesh named \"%s\".\n"
"is associated to file: \"%s\"\n"),
nom_maillage, base_cgns->nom_fic);
/* Réouverture du fichier associé si nécessaire */
if (base_cgns->fic_ouvert == false) {
if ( cg_open(base_cgns->nom_fic, CG_MODE_MODIFY, &(base_cgns->num_fic))
!= CG_OK)
ecs_error(__FILE__, __LINE__, 0,
_("CGNS: error re-opening file \"%s\":\n%s"),
base_cgns->nom_fic, cg_get_error());
base_cgns->fic_ouvert = true;
}
return base_cgns;
}
/*============================================================================
* Public function definitions
*============================================================================*/
/*----------------------------------------------------------------------------
* Write element connectivity based on geometric type.
*
* Elements must have been previously sorted by type, and polyhedra
* are ignored.
*---------------------------------------------------------------------------*/
void
ecs_table_post_cgns__ecr_connect(const char *nom_maillage,
size_t n_vertices,
const ecs_coord_t vertex_coords[],
ecs_table_t *table_def,
const ecs_tab_int_t *tab_elt_typ_geo,
ecs_post_cgns_t *cas_cgns)
{
size_t ielt;
size_t ival_deb;
size_t isom;
int icoo;
ecs_int_t ind;
ecs_int_t ind_typ;
size_t cpt_elt;
size_t cpt_elt_fin;
size_t nbr_elt;
size_t nbr_som;
size_t nbr_som_elt;
size_t nbr_val;
int elt_typ_ref;
ecs_size_t * def_pos_tab;
ecs_int_t * def_val_tab;
int cpt_section;
size_t nbr_elt_typ;
cgsize_t isize[3];
int num_coord;
int num_section;
int num_zone;
int ret_cgns;
int type_cgns[ECS_ELT_TYP_FIN];
int type_cgns_loc;
cgsize_t *def_elt;
double *coo_temp;
char nom_section[32 + 1];
char const *nom_coord[3] = {"CoordinateX",
"CoordinateY",
"CoordinateZ"};
ecs_post_cgns_base_t *base_cgns;
/*xxxxxxxxxxxxxxxxxxxxxxxxxxx Instructions xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
assert(vertex_coords != NULL);
assert(table_def != NULL);
assert(cas_cgns != NULL);
/* Recherche de la base CGNS */
/*---------------------------*/
base_cgns = ecs_loc_table_post_cgns__base(cas_cgns,
nom_maillage);
/* Dimensions */
/*------------*/
nbr_som = n_vertices;
nbr_elt = table_def->nbr;
isize[0] = nbr_som;
isize[1] = nbr_elt - tab_elt_typ_geo->val[ECS_ELT_TYP_CEL_POLY];
isize[2] = 0; /* éléments de bord non triés */
ret_cgns = cg_zone_write(base_cgns->num_fic,
1,
"Zone 1",
isize,
CS_CG_ENUM(Unstructured),
&num_zone);
if (ret_cgns != CG_OK)
ecs_error(__FILE__, __LINE__, 0,
_("CGNS: error writing file \"%s\":\n"
"Name of mesh to write: \"%s\"\n%s"),
base_cgns->nom_fic, base_cgns->nom_maillage, cg_get_error());
assert (num_zone == 1);
/* Écriture des coordonnées */
/*--------------------------*/
/* Remplissage du tableau temporaire et écriture */
ECS_MALLOC(coo_temp, nbr_som, double);
for (icoo = 0; icoo < base_cgns->dim_espace; icoo++) {
for (isom = 0; isom < nbr_som; isom++)
coo_temp[isom] = vertex_coords[isom * 3 + icoo];
ret_cgns = cg_coord_write(base_cgns->num_fic,
1,
1,
CS_CG_ENUM(RealDouble),
nom_coord[icoo],
coo_temp,
&num_coord);
if (ret_cgns != CG_OK)
ecs_error(__FILE__, __LINE__, 0,
_("CGNS: error writing coordinates\n"
"Name of mesh to write: \"%s\"\n%s"),
base_cgns->nom_maillage, cg_get_error());
}
ECS_FREE(coo_temp);
/* Écriture des éléments */
/*------------------------*/
ecs_table__regle_en_pos(table_def);
def_pos_tab = table_def->pos;
def_val_tab = table_def->val;
cpt_section = 0;
cpt_elt = 0;
elt_typ_ref = -1;
for (ind_typ = ECS_ELT_TYP_NUL; ind_typ < ECS_ELT_TYP_FIN; ind_typ++)
type_cgns[ind_typ] = -2;
type_cgns[ECS_ELT_TYP_NUL] = -1;
type_cgns[ECS_ELT_TYP_FAC_TRIA] = CS_CG_ENUM(TRI_3);
type_cgns[ECS_ELT_TYP_FAC_QUAD] = CS_CG_ENUM(QUAD_4);
type_cgns[ECS_ELT_TYP_CEL_TETRA] = CS_CG_ENUM(TETRA_4);
type_cgns[ECS_ELT_TYP_CEL_PYRAM] = CS_CG_ENUM(PYRA_5);
type_cgns[ECS_ELT_TYP_CEL_PRISM] = CS_CG_ENUM(PENTA_6);
type_cgns[ECS_ELT_TYP_CEL_HEXA] = CS_CG_ENUM(HEXA_8);
type_cgns[ECS_ELT_TYP_FAC_POLY] = CS_CG_ENUM(NGON_n);
type_cgns[ECS_ELT_TYP_CEL_POLY] = - 1;
#if defined(DEBUG) && !defined(NDEBUG)
for (ind_typ = ECS_ELT_TYP_NUL; ind_typ < ECS_ELT_TYP_FIN; ind_typ++)
assert(type_cgns[ind_typ] != -2);
#endif
while (cpt_elt < nbr_elt) {
/* Recherche du prochain type d'élément utilisé */
elt_typ_ref += 1;
while (tab_elt_typ_geo->val[elt_typ_ref] == 0)
elt_typ_ref++;
nbr_elt_typ = tab_elt_typ_geo->val[elt_typ_ref];
cpt_elt_fin = cpt_elt + nbr_elt_typ;
/* Création des connectivités */
/*----------------------------*/
ind = 0;
nbr_val = def_pos_tab[cpt_elt_fin] - def_pos_tab[cpt_elt];
if ( elt_typ_ref != ECS_ELT_TYP_FAC_POLY
&& elt_typ_ref != ECS_ELT_TYP_CEL_POLY) {
type_cgns_loc = type_cgns[elt_typ_ref];
ECS_MALLOC(def_elt, nbr_val, cgsize_t);
for (ielt = cpt_elt; ielt < cpt_elt_fin; ielt++) {
ival_deb = def_pos_tab[ielt] - 1;
nbr_som_elt = def_pos_tab[ielt + 1] - def_pos_tab[ielt];
/* Numérotation locale CGNS identique à la numéoration
locale interne pour les éléments linéaires */
for (isom = 0; isom < nbr_som_elt; isom++)
def_elt[ind++] = def_val_tab[ival_deb + isom];
}
}
else if (elt_typ_ref == ECS_ELT_TYP_FAC_POLY) { /* Cas des polygones */
#if CGNS_VERSION < 3200
type_cgns_loc = CS_CG_ENUM(MIXED);
#else
type_cgns_loc = CS_CG_ENUM(NGON_n);
#endif
ECS_MALLOC(def_elt, nbr_val + cpt_elt_fin - cpt_elt, cgsize_t);
for (ielt = cpt_elt; ielt < cpt_elt_fin; ielt++) {
size_t ival;
#if CGNS_VERSION < 3200
def_elt[ind++]
= def_pos_tab[ielt + 1] - def_pos_tab[ielt] + CS_CG_ENUM(NGON_n);
#else
def_elt[ind++] = def_pos_tab[ielt + 1] - def_pos_tab[ielt];
#endif
for (ival = def_pos_tab[ielt ] - 1;
ival < def_pos_tab[ielt + 1] - 1;
ival++)
def_elt[ind++] = def_val_tab[ival];
}
}
else { /* Cas des polyèdres (ignorés) */
cpt_elt += nbr_elt_typ;
ecs_warn();
printf(_("CGNS: in mesh: \"%s\",\n"
"%d polyhedral cells are ignored.\n"),
base_cgns->nom_maillage, (int)nbr_elt_typ);
break;
}
/* Écriture de la section (sections séparées) */
cpt_section += 1;
sprintf(nom_section, "Section %2d", cpt_section);
ret_cgns = cg_section_write(base_cgns->num_fic,
1,
1,
nom_section,
type_cgns_loc,
(int)(cpt_elt + 1),
(int)(cpt_elt + nbr_elt_typ),
0,
def_elt,
&num_section);
ECS_FREE(def_elt);
/* On s'apprête à passer au type d'élément suivant */
cpt_elt += nbr_elt_typ;
}
/* Nettoyage avant la sortie */
/*---------------------------*/
ecs_table__libere_pos_tab(table_def, def_pos_tab);
}
#endif /* HAVE_CGNS */
/*----------------------------------------------------------------------------*/
|