equf.f

Aller à la documentation de ce fichier.
00001 C*  This file is part of MED.
00002 C*
00003 C*  COPYRIGHT (C) 1999 - 2015  EDF R&D, CEA/DEN
00004 C*  MED is free software: you can redistribute it and/or modify
00005 C*  it under the terms of the GNU Lesser General Public License as published by
00006 C*  the Free Software Foundation, either version 3 of the License, or
00007 C*  (at your option) any later version.
00008 C*
00009 C*  MED is distributed in the hope that it will be useful,
00010 C*  but WITHOUT ANY WARRANTY; without even the implied warranty of
00011 C*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00012 C*  GNU Lesser General Public License for more details.
00013 C*
00014 C*  You should have received a copy of the GNU Lesser General Public License
00015 C*  along with MED.  If not, see <http://www.gnu.org/licenses/>.
00016 C*
00017 
00018       subroutine efequc ( fid , maa , eq , des , cret)
00019 c     DEC$ ATTRIBUTES DLLEXPORT :: efequc
00020 c
00021       implicit none
00022       save
00023 c     
00024       character *(*) maa, des, eq
00025       integer fid, cret
00026       integer edfequc
00027 c
00028       cret = edfequc(fid, maa, len(maa), eq, len(eq), des, len(des))
00029 c
00030       return
00031       end
00032 c
00033       subroutine efeque (fid,maa,eq,corr,n,typent,typgeo,cret)
00034 c     DEC$ ATTRIBUTES DLLEXPORT :: efeque
00035 c
00036       implicit none
00037       save
00038 c
00039       character *(*) maa, eq
00040       integer fid, cret, corr(*), n, typent, typgeo
00041       integer edfeque
00042 c
00043       cret = edfeque(fid, maa, len(maa), eq, len(eq), corr, 
00044      1     n, typent, typgeo)
00045 c
00046       return
00047       end
00048 c
00049       subroutine efequl(fid,maa,eq,corr,n,typent,typgeo,cret)
00050 c     DEC$ ATTRIBUTES DLLEXPORT :: efequl
00051 c
00052       implicit none
00053       save
00054 c
00055       character *(*) maa, eq
00056       integer fid, cret, corr(*), n,typent, typgeo
00057       integer edfequl
00058 c
00059       cret = edfequl(fid, maa, len(maa), eq, len(eq), corr, 
00060      1     n, typent, typgeo)
00061 c
00062       return
00063       end
00064 c
00065       subroutine efncor(fid,maa,eq,typent,typgeo,n,cret)
00066 c     DEC$ ATTRIBUTES DLLEXPORT :: efncor
00067 c
00068       implicit none
00069       save
00070 c
00071       character *(*) maa, eq
00072       integer fid, cret, n,typent, typgeo
00073       integer edfncor
00074 c
00075       n = edfncor(fid, maa, len(maa), eq, len(eq), typent,typgeo)
00076       if (n.lt.0) then
00077          cret = -1
00078       else
00079          cret =0
00080       endif
00081 c
00082       return
00083       end
00084 c
00085       subroutine efnequ(fid,maa,n,cret)
00086 c     DEC$ ATTRIBUTES DLLEXPORT :: efnequ
00087 c
00088       implicit none
00089       save
00090 c
00091       character *(*) maa
00092       integer fid, cret, n
00093       integer edfnequ
00094 c
00095       n = edfnequ(fid, maa, len(maa))
00096       if (n.lt.0) then
00097          cret = -1
00098       else
00099          cret =0
00100       endif
00101 c
00102       return
00103       end
00104 c      
00105       subroutine efequi(fid,maa,ind,eq,des,cret)
00106 c     DEC$ ATTRIBUTES DLLEXPORT :: efequi
00107 c
00108       implicit none
00109       save
00110 c
00111       character *(*) maa,eq,des
00112       integer fid, cret,ind
00113       integer edfequi
00114 c
00115       cret = edfequi(fid, maa, len(maa),ind,eq,des)
00116 c
00117       return
00118       end
00119 c            
00120 

Généré le Thu Oct 8 14:26:16 2015 pour MED fichier par  doxygen 1.6.1