- Timestamp:
- Apr 11, 2008, 2:32:17 PM (17 years ago)
- Location:
- LMDZ4/branches/LMDZ4_V3_patches/libf/phylmd
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ4/branches/LMDZ4_V3_patches/libf/phylmd/hgardfou.F
r766 r943 2 2 ! $Header$ 3 3 ! 4 SUBROUTINE hgardfou ( t,tsol,text)4 SUBROUTINE hgardfou (rlon,rlat,pctsrf,t,tsol,text) 5 5 use dimphy 6 6 IMPLICIT none … … 8 8 c Verifier la temperature 9 9 c====================================================================== 10 cym#include "dimensions.h"10 #include "dimensions.h" 11 11 cym#include "dimphy.h" 12 12 #include "YOMCST.h" 13 13 #include "indicesol.h" 14 REAL rlon(klon), rlat(klon), pctsrf(klon, nbsrf) 14 15 REAL t(klon,klev), tsol(klon,nbsrf) 15 16 CHARACTER*(*) text … … 26 27 PRINT*, 'hgardfou garantit la temperature dans [100,370] K' 27 28 firstcall = .FALSE. 29 c 30 DO i = 1, klon 31 print*,'i=',i,'rlon=',rlon(i),'rlat=',rlat(i) 32 ENDDO 33 c 28 34 ENDIF 29 35 c … … 47 53 ok = .FALSE. 48 54 DO i = 1, jbad 49 PRINT *,'i,k,temperature =',jadrs(i),k,zt(jadrs(i)) 55 PRINT *,'i,k,temperature,lon,lat,pourc ter,oce,lic,sic =', 56 $ jadrs(i),k,zt(jadrs(i)),rlon(jadrs(i)),rlat(jadrs(i)), 57 $ (pctsrf(jadrs(i),nsrf),nsrf=1,nbsrf) 50 58 ENDDO 51 59 ENDIF … … 65 73 ok = .FALSE. 66 74 DO i = 1, jbad 67 PRINT *,'i,k,temperature =',jadrs(i),k,zt(jadrs(i)) 75 PRINT *,'i,k,temperature,lon,lat,pourc ter,oce,lic,sic =', 76 $ jadrs(i),k,zt(jadrs(i)),rlon(jadrs(i)),rlat(jadrs(i)), 77 $ (pctsrf(jadrs(i),nsrf),nsrf=1,nbsrf) 68 78 ENDDO 69 79 ENDIF … … 88 98 ok = .FALSE. 89 99 DO i = 1, jbad 90 PRINT *,'i,nsrf,temperature =',jadrs(i),nsrf,zt(jadrs(i)) 100 PRINT *,'i,nsrf,temperature,lon,lat,pourc ter,oce,lic,sic =' 101 $ ,jadrs(i),nsrf,zt(jadrs(i)),rlon(jadrs(i)),rlat(jadrs(i)) 102 $ ,pctsrf(jadrs(i),nsrf) 91 103 ENDDO 92 104 ENDIF … … 106 118 ok = .FALSE. 107 119 DO i = 1, jbad 108 PRINT *,'i,nsrf,temperature =',jadrs(i),nsrf,zt(jadrs(i)) 120 PRINT *,'i,nsrf,temperature,lon,lat,pourc ter,oce,lic,sic =' 121 $ ,jadrs(i),nsrf,zt(jadrs(i)),rlon(jadrs(i)),rlat(jadrs(i)) 122 $ ,pctsrf(jadrs(i),nsrf) 109 123 ENDDO 110 124 ENDIF -
LMDZ4/branches/LMDZ4_V3_patches/libf/phylmd/physiq.F
r918 r943 1983 1983 cIM END 1984 1984 c 1985 CALL hgardfou( t_seri,ftsol,'debutphy')1985 CALL hgardfou(rlon,rlat,pctsrf,t_seri,ftsol,'debutphy') 1986 1986 c 1987 1987 cIM BEG
Note: See TracChangeset
for help on using the changeset viewer.