Changeset 1279 for LMDZ4/trunk/libf/bibio
- Timestamp:
- Dec 10, 2009, 10:02:56 AM (15 years ago)
- Location:
- LMDZ4/trunk
- Files:
-
- 7 edited
- 17 copied
Legend:
- Unmodified
- Added
- Removed
-
LMDZ4/trunk
- Property svn:mergeinfo changed
/LMDZ4/branches/LMDZ4-dev merged: 1150-1162,1164-1193,1195-1231,1234-1235,1237-1240,1242-1274,1276
- Property svn:mergeinfo changed
-
LMDZ4/trunk/libf/bibio/initdynav.F
r1146 r1279 1 1 ! 2 ! $ Header$2 ! $Id$ 3 3 ! 4 c5 c6 4 subroutine initdynav(infile,day0,anne0,tstep,t_ops,t_wrt 7 5 . ,fileid) 8 6 7 #ifdef CPP_IOIPSL 9 8 USE IOIPSL 9 #endif 10 10 USE infotrac, ONLY : nqtot, ttext 11 11 … … 48 48 #include "description.h" 49 49 #include "serre.h" 50 #include "iniprint.h" 50 51 51 52 C Arguments 52 53 C 53 54 character*(*) infile 54 integer *4day0, anne055 integer day0, anne0 55 56 real tstep, t_ops, t_wrt 56 57 integer fileid 57 integer thoriid, zvertiid58 58 59 #ifdef CPP_IOIPSL 60 ! This routine needs IOIPSL to work 59 61 C Variables locales 60 62 C 63 integer thoriid, zvertiid 61 64 integer tau0 62 65 real zjulian … … 161 164 C 162 165 call histend(fileid) 166 #else 167 ! tell the user this routine should be run with ioipsl 168 write(lunout,*)"initdynav: Warning this routine should not be", 169 & " used without ioipsl" 170 #endif 171 ! of #ifdef CPP_IOIPSL 163 172 return 164 173 end -
LMDZ4/trunk/libf/bibio/initfluxsto.F
r1146 r1279 1 1 ! 2 ! $ Header$2 ! $Id$ 3 3 ! 4 4 subroutine initfluxsto … … 6 6 . fileid,filevid,filedid) 7 7 8 #ifdef CPP_IOIPSL 8 9 USE IOIPSL 9 10 #endif 10 11 implicit none 11 12 … … 47 48 #include "description.h" 48 49 #include "serre.h" 50 #include "iniprint.h" 49 51 50 52 C Arguments 51 53 C 52 54 character*(*) infile 53 integer*4 itau54 55 real tstep, t_ops, t_wrt 55 56 integer fileid, filevid,filedid 56 integer ndex(1) 57 58 #ifdef CPP_IOIPSL 59 ! This routine needs IOIPSL to work 60 C Variables locales 61 C 57 62 real nivd(1) 58 59 C Variables locales60 C61 63 integer tau0 62 64 real zjulian … … 222 224 endif 223 225 226 #else 227 ! tell the user this routine should be run with ioipsl 228 write(lunout,*)"initfluxsto: Warning this routine should not be", 229 & " used without ioipsl" 230 #endif 231 ! of #ifdef CPP_IOIPSL 224 232 return 225 233 end -
LMDZ4/trunk/libf/bibio/inithist.F
r1146 r1279 1 1 ! 2 ! $ Header$2 ! $Id$ 3 3 ! 4 4 subroutine inithist(infile,day0,anne0,tstep,t_ops,t_wrt,fileid, 5 5 . filevid) 6 6 7 #ifdef CPP_IOIPSL 7 8 USE IOIPSL 9 #endif 8 10 USE infotrac, ONLY : nqtot, ttext 9 11 … … 48 50 #include "description.h" 49 51 #include "serre.h" 52 #include "iniprint.h" 50 53 51 54 C Arguments 52 55 C 53 56 character*(*) infile 54 integer *4day0, anne057 integer day0, anne0 55 58 real tstep, t_ops, t_wrt 56 59 integer fileid, filevid 57 60 61 #ifdef CPP_IOIPSL 62 ! This routine needs IOIPSL to work 58 63 C Variables locales 59 64 C … … 181 186 call histend(fileid) 182 187 call histend(filevid) 188 #else 189 ! tell the user this routine should be run with ioipsl 190 write(lunout,*)"inithist: Warning this routine should not be", 191 & " used without ioipsl" 192 #endif 193 ! of #ifdef CPP_IOIPSL 183 194 return 184 195 end -
LMDZ4/trunk/libf/bibio/write_field.F90
r772 r1279 1 1 ! 2 ! $ Header$2 ! $Id$ 3 3 ! 4 4 module write_field … … 72 72 73 73 subroutine WriteField_gen(name,Field,dimx,dimy,dimz) 74 USE ioipsl75 74 implicit none 76 75 include 'netcdf.inc' … … 109 108 110 109 subroutine CreateNewField(name,dimx,dimy,dimz) 111 USE ioipsl112 110 implicit none 113 111 include 'netcdf.inc' … … 229 227 write (id,spacing) 230 228 else 231 write (id,' ')229 write (id,'("")') 232 230 write (id,spacing) 233 231 endif -
LMDZ4/trunk/libf/bibio/writedynav.F
r1146 r1279 1 1 ! 2 ! $ Header$2 ! $Id$ 3 3 ! 4 4 subroutine writedynav( histid, time, vcov, 5 5 , ucov,teta,ppk,phi,q,masse,ps,phis) 6 6 7 #ifdef CPP_IOIPSL 7 8 USE ioipsl 9 #endif 8 10 USE infotrac, ONLY : nqtot, ttext 9 11 implicit none … … 45 47 #include "description.h" 46 48 #include "serre.h" 49 #include "iniprint.h" 47 50 48 51 C … … 59 62 60 63 64 #ifdef CPP_IOIPSL 65 ! This routine needs IOIPSL to work 61 66 C Variables locales 62 67 C … … 138 143 C 139 144 if (ok_sync) call histsync(histid) 145 146 #else 147 ! tell the user this routine should be run with ioipsl 148 write(lunout,*)"writedynav: Warning this routine should not be", 149 & " used without ioipsl" 150 #endif 151 ! of #ifdef CPP_IOIPSL 140 152 return 141 153 end -
LMDZ4/trunk/libf/bibio/writehist.F
r1146 r1279 1 1 ! 2 ! $ Header$2 ! $Id$ 3 3 ! 4 4 subroutine writehist( histid, histvid, time, vcov, 5 5 , ucov,teta,phi,q,masse,ps,phis) 6 6 7 #ifdef CPP_IOIPSL 7 8 USE ioipsl 9 #endif 8 10 USE infotrac, ONLY : nqtot, ttext 9 11 implicit none … … 46 48 #include "description.h" 47 49 #include "serre.h" 50 #include "iniprint.h" 48 51 49 52 C … … 60 63 61 64 65 #ifdef CPP_IOIPSL 66 ! This routine needs IOIPSL to work 62 67 C Variables locales 63 68 C … … 124 129 call histsync(histvid) 125 130 endif 131 #else 132 ! tell the user this routine should be run with ioipsl 133 write(lunout,*)"writehist: Warning this routine should not be", 134 & " used without ioipsl" 135 #endif 136 ! of #ifdef CPP_IOIPSL 126 137 return 127 138 end
Note: See TracChangeset
for help on using the changeset viewer.