Changeset 2248 for LMDZ5/trunk/libf/dynlonlat_phylonlat/phylmd/ce0l.F90
- Timestamp:
- Mar 25, 2015, 7:04:54 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/libf/dynlonlat_phylonlat/phylmd/ce0l.F90
r2242 r2248 23 23 24 24 #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 26 29 #endif 27 30 … … 44 47 CHARACTER(LEN=15) :: calnd 45 48 REAL, DIMENSION(iip1,jjp1) :: phis ! geopotentiel au sol 49 logical use_filtre_fft 46 50 !------------------------------------------------------------------------------- 47 51 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 48 61 49 62 CALL Init_Phys_lmdz(iim,jjp1,llm,1,(/(jjm-1)*iim+2/))
Note: See TracChangeset
for help on using the changeset viewer.