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
|
#ifndef _ECS_MAILLAGE_PRE_H_
#define _ECS_MAILLAGE_PRE_H_
/*============================================================================
* Definition des fonctions de base
* de remplissage de la structure de maillage a partir des donnees lues
*============================================================================*/
/*
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.
*/
/*----------------------------------------------------------------------------*/
/*============================================================================
* Visibilite
*============================================================================*/
/*----------------------------------------------------------------------------
* Fichiers `include' librairie standard C
*----------------------------------------------------------------------------*/
#include <assert.h>
#include <stdlib.h>
#include <string.h>
/*----------------------------------------------------------------------------
* Fichiers `include' visibles du paquetage global "Utilitaire"
*----------------------------------------------------------------------------*/
#include "ecs_def.h"
/*----------------------------------------------------------------------------
* Fichiers `include' visibles des paquetages visibles
*----------------------------------------------------------------------------*/
#include "ecs_maillage.h"
/*----------------------------------------------------------------------------
* Fichiers `include' visibles du paquetage courant
*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
* Fichier `include' du paquetage courant associe au fichier courant
*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
* Fichiers `include' prives du paquetage courant
*----------------------------------------------------------------------------*/
/*============================================================================
* Prototypes de fonctions publiques
*============================================================================*/
/*----------------------------------------------------------------------------
* Assign vertex coordinates to a mesh structure.
*----------------------------------------------------------------------------*/
void
ecs_maillage_pre__cree_som(ecs_maillage_t *maillage,
size_t nbr_som,
ecs_coord_t *som_val_coord);
/*----------------------------------------------------------------------------
* Fonction qui renvoie un vecteur de structures "entité de maillage"
* pour les éléments (aretes, faces et cellules),
* construites à partir de tableaux remplis lors de la lecture des données
*----------------------------------------------------------------------------*/
void
ecs_maillage_pre__cree_elt(ecs_maillage_t *maillage,
const size_t nbr_elt_ent[],
ecs_size_t *elt_pos_som_ent[],
ecs_int_t *elt_val_som_ent[],
int *elt_val_famille_ent[],
ecs_int_t *elt_val_couleur_ent[],
const ecs_int_t nbr_coul_ent[],
ecs_int_t *val_coul_ent[],
ecs_size_t *nbr_elt_coul_ent[]);
/*----------------------------------------------------------------------------
* Fonction réalisant la transformation de références à des labels en indices
*----------------------------------------------------------------------------*/
void
ecs_maillage_pre__label_en_indice(size_t nbr_label,
size_t nbr_ref,
ecs_int_t *val_label,
ecs_int_t *val_ref);
/*----------------------------------------------------------------------------
* Fonction qui renvoie l'identificateur de l'entité
* auquel appartient le type géométrique donné
*--------------------------------------------------------------------------- */
ecs_entmail_t
ecs_maillage_pre__ret_typ_geo(int typ_geo);
/*----------------------------------------------------------------------------
* Fonction qui affiche le nombre d'éléments par entité
*----------------------------------------------------------------------------*/
void
ecs_maillage_pre__aff_nbr_par_ent(size_t nbr_som,
const size_t nbr_elt_ent[],
int lng_imp);
/*----------------------------------------------------------------------------*/
#endif /* _ECS_MAILLAGE_PRE_H_ */
|