Changeset 2564
- Timestamp:
- Sep 21, 2021, 2:55:36 PM (3 years ago)
- Location:
- trunk/LMDZ.COMMON/libf
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/dyn3d/gcm.F90
r2507 r2564 137 137 REAL :: heure 138 138 logical use_filtre_fft 139 logical :: present 139 140 140 141 !----------------------------------------------------------------------- … … 151 152 152 153 !---------------------------------------------------------------------- 153 ! lecture des fichiers gcm.def ourun.def154 ! Load flags and options from run.def 154 155 ! --------------------------------------- 155 156 ! 157 ! Start by checking that there indeed is a run.def file 158 INQUIRE(file="run.def", EXIST=present) 159 IF(.not. present) then 160 CALL abort_gcm("gcm", "file run.def not found, Aborting!",1) 161 ENDIF 162 156 163 CALL conf_gcm( 99, .TRUE. ) 157 164 if (mod(iphysiq, iperiod) /= 0) call abort_gcm("conf_gcm", & -
trunk/LMDZ.COMMON/libf/dyn3dpar/gcm.F
r2507 r2564 138 138 REAL :: heure 139 139 140 logical :: present 140 141 141 142 c----------------------------------------------------------------------- … … 165 166 166 167 c---------------------------------------------------------------------- 167 c lecture des fichiers gcm.def ourun.def168 c Load flags and options from run.def 168 169 c --------------------------------------- 169 170 c 170 ! Ehouarn: dump possibility of using defrun 171 !#ifdef CPP_IOIPSL 171 ! Start by checking that there indeed is a run.def file 172 INQUIRE(file="run.def", EXIST=present) 173 IF(.not. present) then 174 CALL abort_gcm("gcm", "file run.def not found, Aborting!",1) 175 ENDIF 176 172 177 CALL conf_gcm( 99, .TRUE. ) 173 178 if (mod(iphysiq, iperiod) /= 0) call abort_gcm("conf_gcm", 174 179 s "iphysiq must be a multiple of iperiod", 1) 175 !#else176 ! CALL defrun( 99, .TRUE. , clesphy0 )177 !#endif178 180 c 179 181 c
Note: See TracChangeset
for help on using the changeset viewer.