MED fichier
Unittest_MEDlink_2.f
Aller à la documentation de ce fichier.
1 C* This file is part of MED.
2 C*
3 C* COPYRIGHT (C) 1999 - 2023 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 C******************************************************************************
19 C * Tests for link module
20 C *
21 C *****************************************************************************
22  program medlink2
23 C
24  implicit none
25  include 'med.hf'
26 C
27 C
28  integer cret
29  integer*8 fid
30 
31  character*64 fname
32  parameter(fname = "Unittest_MEDlink_1.med")
33  character*64 mname1, mname2,lname1,lname2
34  parameter(mname1 = "mesh name")
35  parameter(lname1 = "/local/study1/filename.med")
36  parameter(mname2 = "second mesh name")
37  parameter(lname2 = "/local/study2/filename.med")
38  integer lsize,lsize1,lsize2
39  parameter(lsize1=26, lsize2=26)
40  character*64 lname
41 C
42 C
43 C open file
44  call mfiope(fid,fname,med_acc_rdonly,cret)
45  print *,'Open file',cret
46  if (cret .ne. 0 ) then
47  print *,'ERROR : open file'
48  call efexit(-1)
49  endif
50 C
51 C
52 C read link size
53  call mlnlai(fid, mname1, lsize, cret)
54  print *,'read link information',cret,lsize
55  if (cret .ne. 0 .or.
56  & lsize .ne. lsize1 ) then
57  print *,'ERROR : link information'
58  call efexit(-1)
59  endif
60 c
61  call mlnlai(fid, mname2, lsize, cret)
62  print *,'read link information',cret,lsize
63  if (cret .ne. 0 .or.
64  & lsize .ne. lsize2 ) then
65  print *,'ERROR : link information'
66  call efexit(-1)
67  endif
68 C
69 C
70 C read links
71  call mlnlir(fid,mname1,lname,cret)
72  print *,'read link',cret,lname
73  if (cret .ne. 0 ) then
74  print *,'ERROR : read link'
75  call efexit(-1)
76  endif
77 c
78  call mlnlir(fid,mname2,lname,cret)
79  print *,'read link',cret,lname
80  if (cret .ne. 0 ) then
81  print *,'ERROR : read link'
82  call efexit(-1)
83  endif
84 C
85 C
86 C close file
87  call mficlo(fid,cret)
88  print *,'Close file',cret
89  if (cret .ne. 0 ) then
90  print *,'ERROR : close file'
91  call efexit(-1)
92  endif
93 C
94 C
95 C
96  end
97 
mlnlai
subroutine mlnlai(fid, mname, lsize, cret)
Cette routine permet de lire les informations sur un lien dans un fichier MED.
Definition: medlink.f:78
medlink2
program medlink2
Definition: Unittest_MEDlink_2.f:22
mlnlir
subroutine mlnlir(fid, mname, lname, cret)
Cette routine permet de lire un lien dans un fichier MED.
Definition: medlink.f:102
mficlo
subroutine mficlo(fid, cret)
Fermeture d'un fichier MED.
Definition: medfile.f:82
mfiope
subroutine mfiope(fid, name, access, cret)
Ouverture d'un fichier MED.
Definition: medfile.f:42