Changeset 943


Ignore:
Timestamp:
Apr 11, 2008, 2:32:17 PM (16 years ago)
Author:
lmdzadmin
Message:

Ajout coordonnees geographiques et pourcentages pour les plantages
IM

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  
    22! $Header$
    33!
    4       SUBROUTINE hgardfou (t,tsol,text)
     4      SUBROUTINE hgardfou (rlon,rlat,pctsrf,t,tsol,text)
    55      use dimphy
    66      IMPLICIT none
     
    88c Verifier la temperature
    99c======================================================================
    10 cym#include "dimensions.h"
     10#include "dimensions.h"
    1111cym#include "dimphy.h"
    1212#include "YOMCST.h"
    1313#include "indicesol.h"
     14      REAL rlon(klon), rlat(klon), pctsrf(klon, nbsrf)
    1415      REAL t(klon,klev), tsol(klon,nbsrf)
    1516      CHARACTER*(*) text
     
    2627         PRINT*, 'hgardfou garantit la temperature dans [100,370] K'
    2728         firstcall = .FALSE.
     29c
     30         DO i = 1, klon
     31          print*,'i=',i,'rlon=',rlon(i),'rlat=',rlat(i)
     32         ENDDO
     33c
    2834      ENDIF
    2935c
     
    4753           ok = .FALSE.
    4854           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)
    5058           ENDDO
    5159         ENDIF
     
    6573           ok = .FALSE.
    6674           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)
    6878           ENDDO
    6979         ENDIF
     
    8898           ok = .FALSE.
    8999           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)
    91103           ENDDO
    92104         ENDIF
     
    106118           ok = .FALSE.
    107119           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)
    109123           ENDDO
    110124         ENDIF
  • LMDZ4/branches/LMDZ4_V3_patches/libf/phylmd/physiq.F

    r918 r943  
    19831983cIM END
    19841984c
    1985       CALL hgardfou(t_seri,ftsol,'debutphy')
     1985      CALL hgardfou(rlon,rlat,pctsrf,t_seri,ftsol,'debutphy')
    19861986c
    19871987cIM BEG
Note: See TracChangeset for help on using the changeset viewer.