MED fichier
Test_MEDstructElementVarAttCr.c
Aller à la documentation de ce fichier.
1/* This file is part of MED.
2 *
3 * COPYRIGHT (C) 1999 - 2020 EDF R&D, CEA/DEN
4 * MED is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU Lesser General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * MED is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public License
15 * along with MED. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18
19#include <med.h>
20#define MESGERR 1
21#include <med_utils.h>
22#include <string.h>
23
24#ifdef DEF_LECT_ECR
25#define MODE_ACCES MED_ACC_RDWR
26#elif DEF_LECT_AJOUT
27#define MODE_ACCES MED_ACC_RDEXT
28#else
29#define MODE_ACCES MED_ACC_CREAT
30#endif
31
32int main (int argc, char **argv)
33
34{
35 med_err _ret=0;
36 med_idt _fid=0;
38
39 const char _elementname1[]="MED_BILLE";
40 med_int _elementdim1=3;
41 const char _supportmeshname1[]="MED_BILLE_SUPPORT";
42 med_entity_type _entitytype1=MED_NODE;
43 med_int _nnode1=1;
44 med_int _ncell1=0;
45 med_int _geocelltype1=MED_NONE;
46
47 const char _varattname1_1[MED_NAME_SIZE+1]="MED_VFOO_ATR1_1";
48 const med_attribute_type _varatttype1_1=MED_ATT_INT;
49 const med_int _ncomponent1_1=1;
50
51 const char _varattname1_2[MED_NAME_SIZE+1]="MED_VFOO_ATR1_2";
52 const med_attribute_type _varatttype1_2=MED_ATT_FLOAT64;
53 const med_int _ncomponent1_2=2;
54
55 const char _varattname1_3[MED_NAME_SIZE+1]="MED_VFOO_ATR1_3";
56 const med_attribute_type _varatttype1_3=MED_ATT_NAME;
57 const med_int _ncomponent1_3=1;
58
59
60 /* Ouverture en mode lecture du fichier Test_MEDstructuElement.med */
61 _fid = MEDfileOpen("current.med",MODE_ACCES);
62 if (_fid < 0) {
63 MESSAGE("Erreur à la lecture du fichier current.med");
64 return -1;
65 }
66
67 if ( (_ret = MEDstructElementVarAttCr(_fid,
68 _elementname1,
69 _varattname1_1,
70 _varatttype1_1,
71 _ncomponent1_1)) < 0 ) {
72 return _ret;
73 }
74
75 if ( (_ret = MEDstructElementVarAttCr(_fid,
76 _elementname1,
77 _varattname1_2,
78 _varatttype1_2,
79 _ncomponent1_2)) < 0 ) {
80 return _ret;
81 }
82
83 if ( (_ret = MEDstructElementVarAttCr(_fid,
84 _elementname1,
85 _varattname1_3,
86 _varatttype1_3,
87 _ncomponent1_3)) < 0 ) {
88 return _ret;
89 }
90
91 if (MEDfileClose(_fid) < 0) {
92 MESSAGE("ERROR : file closing");
93 return -1;
94 }
95
96 return _ret;
97
98}
99
#define MODE_ACCES
int main(int argc, char **argv)
MEDC_EXPORT med_err MEDfileClose(med_idt fid)
Fermeture d'un fichier MED.
Definition: MEDfileClose.c:30
MEDC_EXPORT med_idt MEDfileOpen(const char *const filename, const med_access_mode accessmode)
Ouverture d'un fichier MED.
Definition: MEDfileOpen.c:42
MEDC_EXPORT med_err MEDstructElementVarAttCr(const med_idt fid, const char *const modelname, const char *const varattname, const med_attribute_type varatttype, const med_int ncomponent)
Cette routine déclare la présence d'un attribut caractéristique variable attaché aux éléments de type...
#define MED_NAME_SIZE
Definition: med.h:81
int med_geometry_type
Definition: med.h:194
int med_int
Definition: med.h:333
#define MED_NONE
Definition: med.h:231
med_entity_type
Definition: med.h:143
@ MED_NODE
Definition: med.h:143
med_attribute_type
Definition: med.h:173
@ MED_ATT_FLOAT64
Definition: med.h:173
@ MED_ATT_INT
Definition: med.h:174
@ MED_ATT_NAME
Definition: med.h:175
herr_t med_err
Definition: med.h:323
hid_t med_idt
Definition: med.h:322
#define MESSAGE(chaine)
Definition: med_utils.h:324