Custom Query (113 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (88 - 90 of 113)

Ticket Resolution Summary Owner Reporter
#34 fixed Little inconsistency with histday IO in IPSLCM2_v2 sdipsl sdipsl
Description

Running lev_histday > 3 without isccp simulator leads to a crash with LMDZ4_V3_1.

Remedy : commit some if statement.

Error message :

 Fromcpl: Reading fields from CPL, ktime=  0

    * 253 Invalid operation PROG=histcom.histwrite_real ELN=376(400ca8a7c)
 ****  99 Execution suspended PROG=histcom.histwrite_real ELN=376(400ca8a7c)
                 Called from histcom.histwrite_r2d ELN=1999(400d6d3a4)
                 Called from iophy.histwrite2d_phy ELN=109(4003c1af4)
    * 253 Invalid operation PROG=histcom.histwrite_r2d ELN=150(400ca8a7c)
                 Called from physiq ELN=8592(4001af888)
                 Called from calfis_p ELN=833(4000c3b50)

Remedy dans ini_histday.h :

c
cIM     IF (iflag_con.GE.3) THEN 
         IF (ok_isccp) THEN
         CALL histdef(nid_day, "ptop",
c    .                "Cld top pressure","mb",
     .                "Cld top pressure (cf ISCCP simulator)","Pa",
     .                iim,jj_nb,nhori, 1,1,1,-99,
     .                32, "ave(X)", zstophy,zout)
        ENDIF
cIM     ENDIF !(iflag_con.GE.3) THEN 

puis

        IF (ok_isccp) THEN
        CALL histdef(nid_day,"meantaucld",
     .                "ISCCP mean cloud optical thickness","1",
     .                iim,jj_nb,nhori, 1,1,1, -99, 32,
     .                "ave(X)", zstophy,zout)
        ENDIF

Remedy dans write_histday.h :

cIM   IF (iflag_con.GE.3) THEN
cIM ema_pct= 0.     CALL gr_fi_ecrit(1, klon,iim,jjmp1, ema_pct,zx_tmp_2d)
cym      CALL gr_fi_ecrit(1, klon,iim,jjmp1, meanptop(:,1),zx_tmp_2d)
      IF (ok_isccp) THEN
         CALL histwrite_phy(nid_day,"ptop",itau_w,meanptop(:,1))
      ENDIF
cIM   ENDIF

puis

      IF (ok_isccp) THEN
      CALL histwrite_phy(nid_day,"meantaucld",itau_w,meantaucld)
      ENDIF
#33 fixed ISCCP output with IPSLCM4_V2 tag lead to a crash sdipsl sdipsl
Description

Activating ISCCP with IPSLCM4_v2 and LMDZ4OR_v2 (LMDZ4_V3_1) will lead to an invalid operation. This occurs at least when you define histNMC, histHF, histISCCP and ask for histhf3d, for the resolution 144x142

physiq.F :

c======================================================================
c   CLEFS CPP POUR LES IO
c   =====================
#define histhf
#define histday
#define histmth
c#define histins
#define histmthNMC
#define histISCCP

Message d'erreur :

 Fromcpl: Reading fields from CPL, ktime=  0

    * 253 Invalid operation PROG=physiq ELN=10650(400198960)
 ****  99 Execution suspended PROG=physiq ELN=10650(400198960)
                 Called from calfis_p ELN=833(4000c3b50)
                 Called from leapfrog_p ELN=1077(400056294)
                 Called from gcm ELN=704(400001d80)
#32 fixed Rebuild on TX7 at IDRIS mafoipsl aclsce
Description

Rebuild on TX7 at IDRIS

Compilation of IOIPSL_PLUS to evaluate performance of rebuild on TX7.

Note: See TracQuery for help on using queries.