Ignore:
Timestamp:
Jan 25, 2013, 9:26:03 AM (11 years ago)
Author:
Ehouarn Millour
Message:

Added "arch" files for Ada (using dynamic libraries for NetCDF, you must have
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/smplocal/pub/NetCDF/4.1.3/lib:/smplocal/pub/HDF5/1.8.9/seq/lib
in your .bashrc or .bash_login or in your job to run).
Also updated some sources so that gcm bench runs in "debug" mode (note that all these changes are minor and have already been implemented in LMDZ5 trunk).
EM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ4/branches/LMDZ4_AR5/libf/phylmd/physiq.F

    r1536 r1717  
    11861186      REAL, dimension(klon, klev) :: cldtaurad  ! epaisseur optique pour radlwsw,COSP
    11871187      REAL, dimension(klon, klev) :: cldemirad  ! emissivite pour radlwsw,COSP
    1188 
     1188      integer iostat
    11891189cIM for NMC files
    11901190      missing_val=nf90_fill_real
     
    14741474      nCFMIP=npCFMIP
    14751475      OPEN(98,file='npCFMIP_param.data',status='old',
    1476      $          form='formatted',err=999)
     1476     $          form='formatted',iostat=iostat)
     1477            if (iostat == 0) then
    14771478      READ(98,*,end=998) nCFMIP
    14781479998   CONTINUE
     
    15061507     $tabijGCM, lonGCM, latGCM, iGCM, jGCM)
    15071508c
    1508 999      CONTINUE
     1509            else
     1510               ALLOCATE(tabijGCM(0))
     1511               ALLOCATE(lonGCM(0), latGCM(0))
     1512               ALLOCATE(iGCM(0), jGCM(0))
     1513            end if
    15091514         ENDIF !debut
    15101515 
Note: See TracChangeset for help on using the changeset viewer.