Changeset 2248


Ignore:
Timestamp:
Mar 25, 2015, 7:04:54 PM (9 years ago)
Author:
lguez
Message:

Correcting an imbroglio from revision 2247. Directory dynlmdz_phylmd
does not exist any longer, and ce0l.F90 should have been modified in
directory dynlonlat_phylonlat/phylmd.

Location:
LMDZ5/trunk/libf
Files:
1 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ5/trunk/libf/dynlonlat_phylonlat/phylmd/ce0l.F90

    r2242 r2248  
    2323
    2424#ifdef CPP_IOIPSL
    25   USE ioipsl, ONLY: ioconf_calendar
     25  USE ioipsl, ONLY: ioconf_calendar, getin
     26#else
     27  ! if not using IOIPSL, we still need to use (a local version of) getin
     28  use ioipsl_getincom, only: getin
    2629#endif
    2730
     
    4447  CHARACTER(LEN=15)             :: calnd
    4548  REAL,    DIMENSION(iip1,jjp1) :: phis ! geopotentiel au sol
     49  logical use_filtre_fft
    4650!-------------------------------------------------------------------------------
    4751  CALL conf_gcm( 99, .TRUE. )
     52
     53  use_filtre_fft=.FALSE.
     54  CALL getin('use_filtre_fft',use_filtre_fft)
     55  IF (use_filtre_fft) THEN
     56     write(lunout, fmt = *) 'FFT filter is not available in the ' &
     57          // 'sequential version of the dynamics.'
     58     write(lunout, fmt = *) &
     59          "Your setting of variable use_filtre_fft is not used."
     60  ENDIF
    4861
    4962  CALL Init_Phys_lmdz(iim,jjp1,llm,1,(/(jjm-1)*iim+2/))
Note: See TracChangeset for help on using the changeset viewer.