MED fichier
f/2.3.6/test16.f
1 C* This file is part of MED.
2 C*
3 C* COPYRIGHT (C) 1999 - 2019 EDF R&D, CEA/DEN
4 C* MED is free software: you can redistribute it and/or modify
5 C* it under the terms of the GNU Lesser General Public License as published by
6 C* the Free Software Foundation, either version 3 of the License, or
7 C* (at your option) any later version.
8 C*
9 C* MED is distributed in the hope that it will be useful,
10 C* but WITHOUT ANY WARRANTY; without even the implied warranty of
11 C* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 C* GNU Lesser General Public License for more details.
13 C*
14 C* You should have received a copy of the GNU Lesser General Public License
15 C* along with MED. If not, see <http://www.gnu.org/licenses/>.
16 C*
17 
18 
19 C ******************************************************************************
20 C * - Nom du fichier : test16.f
21 C *
22 C * - Description : ecriture d'elements d'un maillage MED
23 C * via les routines de niveau 2
24 C * - equivalent a test6.f
25 C *
26 C ******************************************************************************
27  program test16
28 C
29  implicit none
30  include 'med.hf'
31 C
32 C
33  integer*8 fid
34  integer cret, mdim, nse2, ntr3
35  character*32 maa
36  parameter(mdim = 2,nse2 = 5,maa = "maa1", ntr3 = 2)
37  integer se2 (2*nse2)
38  character*16 nomse2(nse2)
39  integer numse2(nse2),nufase2(nse2)
40  integer tr3 (3*ntr3)
41  character*16 nomtr3(ntr3)
42  integer numtr3(ntr3), nufatr3(ntr3)
43  data se2 /1,2,1,3,2,4,3,4,2,3/
44  data nomse2 /"se1","se2","se3","se4","se5"/
45  data numse2 /1,2,3,4,5/, nufase2 /-1,-1,0,-2,-3/
46  data tr3 /1,2,-5,-5,3,-4/
47  data nomtr3 /"tr1","tr2"/,numtr3/4,5/,nufatr3/0,-1/
48 
49 C ** Creation du fichier test16.med **
50  call efouvr(fid,'test16.med',med_lecture_ecriture, cret)
51  print *,cret
52  if (cret .ne. 0 ) then
53  print *,'Erreur creation du fichier'
54  call efexit(-1)
55  endif
56 
57 C ** Creation du maillage **
58  call efmaac(fid,maa,mdim,med_non_structure,
59  c 'Un maillage pour test16',cret)
60  print *,cret
61  if (cret .ne. 0 ) then
62  print *,'Erreur creation du maillage'
63  call efexit(-1)
64  endif
65 
66 C ** Ecriture des aretes segments MED_SEG2 :
67 C - Connectivite
68 C - Noms (optionnel)
69 C - Numeros (optionnel)
70 C - Numeros des familles **
71  call efelee(fid,maa,mdim,se2,med_no_interlace,
72  c nomse2,med_vrai,numse2,med_vrai,
73  c nufase2,nse2,med_arete,med_seg2,med_desc,cret)
74  print *,cret
75  if (cret .ne. 0 ) then
76  print *,'Erreur des elements'
77  call efexit(-1)
78  endif
79 
80 C ** Ecriture des mailles MED_TRIA3 :
81 C - Connectivite
82 C - Noms (optionnel)
83 C - Numeros (optionnel)
84 C - Numeros des familles **
85  call efelee(fid,maa,mdim,tr3,med_no_interlace,
86  c nomtr3,med_vrai,numtr3,med_vrai,
87  c nufatr3,ntr3,med_maille,med_tria3,med_desc,cret)
88  print *,cret
89  if (cret .ne. 0 ) then
90  print *,'Erreur ecriture des elements'
91  call efexit(-1)
92  endif
93 
94 C ** Fermeture du fichier **
95  call efferm (fid,cret)
96  print *,cret
97  if (cret .ne. 0 ) then
98  print *,'Erreur fermeture du fichier'
99  call efexit(-1)
100  endif
101 C
102  end
103 
test16
program test16
Definition: test16.f:27