equf.f

Aller à la documentation de ce fichier.
00001 C*  This file is part of MED.
00002 C*
00003 C*  COPYRIGHT (C) 1999 - 2011  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
00020       implicit none
00021       save
00022 c     
00023       character *(*) maa, des, eq
00024       integer fid, cret
00025       integer edfequc
00026 c
00027       cret = edfequc(fid, maa, len(maa), eq, len(eq), des, len(des))
00028 c
00029       return
00030       end
00031 c
00032       subroutine efeque (fid,maa,eq,corr,n,typent,typgeo,cret)
00033 c
00034       implicit none
00035       save
00036 c
00037       character *(*) maa, eq
00038       integer fid, cret, corr(*), n, typent, typgeo
00039       integer edfeque
00040 c
00041       cret = edfeque(fid, maa, len(maa), eq, len(eq), corr, 
00042      1     n, typent, typgeo)
00043 c
00044       return
00045       end
00046 c
00047       subroutine efequl(fid,maa,eq,corr,n,typent,typgeo,cret)
00048 c
00049       implicit none
00050       save
00051 c
00052       character *(*) maa, eq
00053       integer fid, cret, corr(*), n,typent, typgeo
00054       integer edfequl
00055 c
00056       cret = edfequl(fid, maa, len(maa), eq, len(eq), corr, 
00057      1     n, typent, typgeo)
00058 c
00059       return
00060       end
00061 c
00062       subroutine efncor(fid,maa,eq,typent,typgeo,n,cret)
00063 c
00064       implicit none
00065       save
00066 c
00067       character *(*) maa, eq
00068       integer fid, cret, n,typent, typgeo
00069       integer edfncor
00070 c
00071       n = edfncor(fid, maa, len(maa), eq, len(eq), typent,typgeo)
00072       if (n.lt.0) then
00073          cret = -1
00074       else
00075          cret =0
00076       endif
00077 c
00078       return
00079       end
00080 c
00081       subroutine efnequ(fid,maa,n,cret)
00082 c
00083       implicit none
00084       save
00085 c
00086       character *(*) maa
00087       integer fid, cret, n
00088       integer edfnequ
00089 c
00090       n = edfnequ(fid, maa, len(maa))
00091       if (n.lt.0) then
00092          cret = -1
00093       else
00094          cret =0
00095       endif
00096 c
00097       return
00098       end
00099 c      
00100       subroutine efequi(fid,maa,ind,eq,des,cret)
00101 c
00102       implicit none
00103       save
00104 c
00105       character *(*) maa,eq,des
00106       integer fid, cret,ind
00107       integer edfequi
00108 c
00109       cret = edfequi(fid, maa, len(maa),ind,eq,des)
00110 c
00111       return
00112       end
00113 c            
00114 

Généré le Mon May 16 17:10:22 2011 pour MED fichier par  doxygen 1.6.1