Ignore:
Timestamp:
Feb 5, 2008, 2:19:31 PM (16 years ago)
Author:
Laurent Fairhead
Message:

Mise sous flag ok_ISCCP d'une sortie d'une variable dependant du simulateur
ISCCP
Correction coquille sur des sorties sous-surfaces
SD/LF

Location:
LMDZ4/branches/LMDZ4_V3_patches/libf/phylmd
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • LMDZ4/branches/LMDZ4_V3_patches/libf/phylmd/ini_histday.h

    r869 r892  
    404404c
    405405cIM     IF (iflag_con.GE.3) THEN
    406          CALL histdef(nid_day, "ptop",
     406          IF (ok_isccp) THEN
     407            CALL histdef(nid_day, "ptop",
    407408c    .                "Cld top pressure","mb",
    408409     .                "Cld top pressure (cf ISCCP simulator)","Pa",
    409410     .                iim,jj_nb,nhori, 1,1,1,-99,
    410411     .                32, "ave(X)", zstophy,zout)
     412          ENDIF
    411413cIM     ENDIF !(iflag_con.GE.3) THEN
    412414c
  • LMDZ4/branches/LMDZ4_V3_patches/libf/phylmd/ini_histmth.h

    r869 r892  
    326326         DO nsrf = 1, nbsrf
    327327C
    328           IF(nsrf.GT.2) THEN
     328          IF(nsrf.GE.2) THEN
    329329           call histdef(nid_mth, "pourc_"//clnsurf(nsrf),
    330330     $         "% "//clnsurf(nsrf), "%", 
     
    336336     $         iim,jj_nb,nhori, 1,1,1, -99, 32,
    337337     $         "ave(X)", zstophy,zout)
    338           ENDIF !nsrf.GT.2
     338          ENDIF !nsrf.GE.2
    339339C
    340340           call histdef(nid_mth, "tsol_"//clnsurf(nsrf),
  • LMDZ4/branches/LMDZ4_V3_patches/libf/phylmd/write_histday.h

    r782 r892  
    364364cIM ema_pct= 0.     CALL gr_fi_ecrit(1, klon,iim,jjmp1, ema_pct,zx_tmp_2d)
    365365cym      CALL gr_fi_ecrit(1, klon,iim,jjmp1, meanptop(:,1),zx_tmp_2d)
    366       CALL histwrite_phy(nid_day,"ptop",itau_w,meanptop(:,1))
     366        IF (ok_isccp) THEN
     367          CALL histwrite_phy(nid_day,"ptop",itau_w,meanptop(:,1))
     368        ENDIF
    367369cIM   ENDIF
    368370c
  • LMDZ4/branches/LMDZ4_V3_patches/libf/phylmd/write_histmth.h

    r862 r892  
    293293      DO nsrf = 1, nbsrf
    294294CYYY
    295        IF(nsrf.GT.2) THEN
     295       IF(nsrf.GE.2) THEN
    296296        zx_tmp_fi2d(1 : klon) = pctsrf( 1 : klon, nsrf)*100.
    297297cym        CALL gr_fi_ecrit(1, klon,iim,jjmp1, zx_tmp_fi2d , zx_tmp_2d)
Note: See TracChangeset for help on using the changeset viewer.