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 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462
|
/*============================================================================
* Définitions des fonctions
* associées à la structure `ecs_champ_t' décrivant un champ
* et réalisant les sorties pour post-traitement EnSight
*============================================================================*/
/*
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.
*/
/*----------------------------------------------------------------------------*/
/*============================================================================
* Visibilité
*============================================================================*/
/*----------------------------------------------------------------------------
* Fichiers `include' librairie standard C
*----------------------------------------------------------------------------*/
#include <assert.h>
#include <string.h>
/*----------------------------------------------------------------------------
* Fichiers `include' visibles du paquetage global "Utilitaire"
*----------------------------------------------------------------------------*/
#include "ecs_def.h"
#include "ecs_elt_typ_liste.h"
#include "ecs_mem.h"
#include "ecs_file.h"
/*----------------------------------------------------------------------------
* Fichiers `include' visibles du paquetage global "Post-Traitement"
*----------------------------------------------------------------------------*/
#include "ecs_post.h"
#include "ecs_post_ens.h"
/*----------------------------------------------------------------------------
* Fichiers `include' visibles des paquetages visibles
*----------------------------------------------------------------------------*/
#include "ecs_famille_chaine.h"
/*----------------------------------------------------------------------------
* Fichiers `include' visibles du paquetage courant
*----------------------------------------------------------------------------*/
#include "ecs_table.h"
/*----------------------------------------------------------------------------
* Fichier `include' du paquetage courant associé au fichier courant
*----------------------------------------------------------------------------*/
#include "ecs_post_ens.h"
#include "ecs_table_post_ens.h"
/*----------------------------------------------------------------------------
* Fichiers `include' privés du paquetage courant
*----------------------------------------------------------------------------*/
#include "ecs_post_ens_priv.h"
#include "ecs_table_priv.h"
/*============================================================================
* Fonctions privées
*============================================================================*/
/*----------------------------------------------------------------------------
* Écriture d'un tableau de coordonnées dans un fichier EnSight Gold.
*----------------------------------------------------------------------------*/
static void
ecs_loc_post_ens__ecr_coord(const ecs_file_t *fic,
size_t nbr_som,
const ecs_coord_t *coo_som)
{
int icoo;
size_t cpt_som, isom, isom_deb;
float cnv_val[4096];
for (icoo = 0; icoo < 3; icoo++) {
isom_deb = 0;
while (isom_deb < nbr_som ) {
for (isom = isom_deb, cpt_som = 0;
isom < nbr_som && cpt_som < 4096;
isom++, cpt_som++)
cnv_val[cpt_som] = coo_som[isom*3 + icoo];
ecs_file_write(cnv_val, sizeof(float), cpt_som, fic);
isom_deb = isom;
}
}
}
/*============================================================================
* Fonctions publiques
*============================================================================*/
/*----------------------------------------------------------------------------
* Fonction qui écrit les connectivités nodales des éléments
* selon leur type géometrique
*
* Les élements doivent avoir été triés suivant leur type géometrique
*----------------------------------------------------------------------------*/
void
ecs_table_post_ens__ecr_part(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_ens_t *cas_ens)
{
size_t ielt;
size_t ival;
size_t cpt_elt;
size_t cpt_elt_fin;
size_t cpt_buf;
size_t nbr_elt;
size_t nbr_som;
int elt_typ_ref;
int marqueur_fin;
size_t nbr_elt_typ_geo;
size_t nbr_fac_loc;
size_t nbr_som_loc;
ecs_size_t * def_pos_tab;
ecs_int_t * def_val_tab;
ecs_file_t * fic_imp;
int32_t connect_buf[4096];
ecs_post_ens_part_t * this_part = NULL;
/*xxxxxxxxxxxxxxxxxxxxxxxxxxx Instructions xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
assert(vertex_coords != NULL);
assert(table_def != NULL);
assert(cas_ens != NULL);
/* Création de la structure d'information sur la part */
/*----------------------------------------------------*/
ECS_REALLOC(cas_ens->tab_part, cas_ens->nbr_part + 1, ecs_post_ens_part_t *);
cas_ens->nbr_part += 1;
ECS_MALLOC(this_part, 1, ecs_post_ens_part_t);
cas_ens->tab_part[cas_ens->nbr_part - 1] = this_part;
this_part->num_part = cas_ens->nbr_part;
ECS_MALLOC(this_part->nom_part, strlen(nom_maillage) + 1, char);
strcpy(this_part->nom_part, nom_maillage);
this_part->lst_parents = NULL;
/* Initialisations */
/*-----------------*/
fic_imp = ecs_post_ens__ecrit_fic_geo(cas_ens);
assert(cas_ens->fic_geo != NULL);
ecs_table__regle_en_pos(table_def);
nbr_som = n_vertices;
def_pos_tab = table_def->pos;
def_val_tab = table_def->val;
/* Écriture de l'entête */
/*----------------------*/
ecs_post_ens__ecr_chaine(fic_imp, "part");
ecs_post_ens__ecr_int(fic_imp, this_part->num_part);
ecs_post_ens__ecr_chaine(fic_imp, this_part->nom_part);
/* Écriture du nombre de sommets */
ecs_post_ens__ecr_chaine(fic_imp, "coordinates");
ecs_post_ens__ecr_int(fic_imp, (int)nbr_som);
this_part->nbr_som = nbr_som;
/* Écriture des coordonnées */
/*--------------------------*/
/* On est en dimension 3 */
ecs_loc_post_ens__ecr_coord(fic_imp,
nbr_som,
vertex_coords);
/* Écriture des éléments */
/*------------------------*/
this_part->nbr_typ_ele = 0;
this_part->nbr_ele_typ = NULL;
this_part->nom_typ_ele = NULL;
cpt_elt = 0;
nbr_elt = table_def->nbr;
elt_typ_ref = -1;
/* Boucle sur le type d'élément */
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++;
cpt_elt_fin = cpt_elt + tab_elt_typ_geo->val[elt_typ_ref];
nbr_elt_typ_geo = cpt_elt_fin - cpt_elt;
if (nbr_elt_typ_geo == 0)
continue;
/* Écriture du type d'élément */
switch (elt_typ_ref) {
case ECS_ELT_TYP_FAC_POLY:
ecs_post_ens__ecr_chaine(fic_imp, "nsided");
ecs_post_ens__ecr_int(fic_imp, (int)nbr_elt_typ_geo);
break;
case ECS_ELT_TYP_CEL_POLY:
ecs_post_ens__ecr_chaine(fic_imp, "nfaced");
ecs_post_ens__ecr_int(fic_imp, (int)nbr_elt_typ_geo);
break;
default:
ecs_post_ens__ecr_chaine(fic_imp,
ecs_fic_elt_typ_liste_c[elt_typ_ref].nom);
ecs_post_ens__ecr_int(fic_imp, (int)nbr_elt_typ_geo);
}
this_part->nbr_typ_ele += 1;
ECS_REALLOC(this_part->nbr_ele_typ, this_part->nbr_typ_ele, ecs_int_t);
ECS_REALLOC(this_part->nom_typ_ele, this_part->nbr_typ_ele, char *);
ECS_MALLOC(this_part->nom_typ_ele[this_part->nbr_typ_ele - 1],
strlen(ecs_fic_elt_typ_liste_c[elt_typ_ref].nom) + 1, char);
this_part->nbr_ele_typ[this_part->nbr_typ_ele - 1] = nbr_elt_typ_geo;
switch (elt_typ_ref) {
case ECS_ELT_TYP_FAC_POLY:
strcpy(this_part->nom_typ_ele[this_part->nbr_typ_ele - 1],
"nsided");
break;
case ECS_ELT_TYP_CEL_POLY:
strcpy(this_part->nom_typ_ele[this_part->nbr_typ_ele - 1],
"nfaced");
break;
default:
strcpy(this_part->nom_typ_ele[this_part->nbr_typ_ele - 1],
ecs_fic_elt_typ_liste_c[elt_typ_ref].nom);
}
/* Écriture des connectivités */
/*----------------------------*/
cpt_buf = 0;
switch(elt_typ_ref) {
case ECS_ELT_TYP_FAC_POLY: /* Polygones */
/* Nombre de sommets par élément */
for (ielt = cpt_elt; ielt < cpt_elt_fin; ielt++) {
connect_buf[cpt_buf++] = def_pos_tab[ielt + 1] - def_pos_tab[ielt];
if (cpt_buf == 4096 || ielt + 1 == cpt_elt_fin) {
ecs_file_write(connect_buf, sizeof(int32_t), cpt_buf, fic_imp);
cpt_buf = 0;
}
}
/* Connectivité */
for (ielt = cpt_elt; ielt < cpt_elt_fin; ielt++) {
cpt_buf = 0;
for (ival = def_pos_tab[ielt + 1];
ival > def_pos_tab[ielt ];
ival--)
connect_buf[cpt_buf++] = def_val_tab[ival - 2];
ecs_file_write(connect_buf, sizeof(int32_t), cpt_buf, fic_imp);
}
break;
case ECS_ELT_TYP_CEL_POLY: /* Polyèdres */
/* Convention : définition nodale cellule->sommets avec numéros de
premiers sommets répétés en fin de liste pour marquer la fin
de chaque face */
/* Faces par élément */
for (ielt = cpt_elt; ielt < cpt_elt_fin; ielt++) {
marqueur_fin = -1;
nbr_fac_loc = 0;
for (ival = def_pos_tab[ielt ] - 1;
ival < def_pos_tab[ielt + 1] - 1;
ival++) {
if (def_val_tab[ival] != marqueur_fin) {
if (marqueur_fin == -1)
marqueur_fin = def_val_tab[ival];
}
else {
marqueur_fin = -1;
nbr_fac_loc += 1;
}
}
connect_buf[cpt_buf++] = nbr_fac_loc;
if (cpt_buf == 4096 || ielt + 1 == cpt_elt_fin) {
ecs_file_write(connect_buf, sizeof(int32_t), cpt_buf, fic_imp);
cpt_buf = 0;
}
}
/* Sommets par face */
marqueur_fin = -1;
nbr_som_loc = 0;
cpt_buf = 0;
for (ival = def_pos_tab[cpt_elt ] - 1;
ival < def_pos_tab[cpt_elt_fin] - 1;
ival++) {
if (def_val_tab[ival] != marqueur_fin) {
nbr_som_loc += 1;
if (marqueur_fin == -1)
marqueur_fin = def_val_tab[ival];
}
else {
marqueur_fin = -1;
connect_buf[cpt_buf++] = nbr_som_loc;
if (cpt_buf == 4096 || ival + 2 == def_pos_tab[cpt_elt_fin]) {
ecs_file_write(connect_buf, sizeof(int32_t), cpt_buf, fic_imp);
cpt_buf = 0;
}
nbr_som_loc = 0;
}
}
/* Connectivité */
marqueur_fin = -1;
cpt_buf = 0;
for (ival = def_pos_tab[cpt_elt ] - 1;
ival < def_pos_tab[cpt_elt_fin] - 1;
ival++) {
if (def_val_tab[ival] != marqueur_fin) {
connect_buf[cpt_buf++] = def_val_tab[ival];
if (marqueur_fin == -1)
marqueur_fin = def_val_tab[ival];
}
else {
marqueur_fin = -1;
ecs_file_write(connect_buf, sizeof(int32_t), cpt_buf, fic_imp);
cpt_buf = 0;
}
}
break;
default: /* Éléments "standard" */
nbr_som_loc = 0;
if (cpt_elt < cpt_elt_fin)
nbr_som_loc = def_pos_tab[cpt_elt + 1] - def_pos_tab[cpt_elt];
for (ielt = cpt_elt; ielt < cpt_elt_fin; ielt++) {
for (ival = def_pos_tab[ielt] - 1;
ival < def_pos_tab[ielt + 1] - 1;
ival++)
connect_buf[cpt_buf++] = def_val_tab[ival];
if (cpt_buf >= (4096 - nbr_som_loc) || ielt + 1 == cpt_elt_fin) {
ecs_file_write(connect_buf, sizeof(int32_t), cpt_buf, fic_imp);
cpt_buf = 0;
}
}
break;
}
/* On s'apprête à passer au type d'élément suivant */
cpt_elt += nbr_elt_typ_geo;
}
ecs_file_flush(fic_imp);
/* Nettoyage avant la sortie */
/*---------------------------*/
ecs_table__libere_pos_tab(table_def, def_pos_tab);
/* Fermeture du fichier de géométrie */
ecs_file_close_stream(cas_ens->fic_geo);
}
/*----------------------------------------------------------------------------*/
|