Changeset 5082 for LMDZ6/branches/Amaury_dev/libf/dyn3dmem/gcm.F90
- Timestamp:
- Jul 19, 2024, 5:41:58 PM (4 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/Amaury_dev/libf/dyn3dmem/gcm.F90
r4996 r5082 222 222 ! we still need to run iniacademic to initialize some 223 223 ! constants & fields, if we run the 'newtonian' or 'SW' cases: 224 if (iflag_phys .ne.1) then224 if (iflag_phys/=1) then 225 225 CALL iniacademic_loc(vcov,ucov,teta,q,masse,ps,phis,time_0) 226 226 endif … … 254 254 ! on recalcule eventuellement le pas de temps 255 255 256 IF(MOD(day_step,iperiod) .NE.0) THEN256 IF(MOD(day_step,iperiod)/=0) THEN 257 257 abort_message = & 258 258 'Il faut choisir un nb de pas par jour multiple de iperiod' … … 260 260 ENDIF 261 261 262 IF(MOD(day_step,iphysiq) .NE.0) THEN262 IF(MOD(day_step,iphysiq)/=0) THEN 263 263 abort_message = & 264 264 'Il faut choisir un nb de pas par jour multiple de iphysiq' … … 267 267 268 268 zdtvr = daysec/REAL(day_step) 269 IF(dtvr .NE.zdtvr) THEN269 IF(dtvr/=zdtvr) THEN 270 270 WRITE(lunout,*) & 271 271 'WARNING!!! changement de pas de temps',dtvr,'>',zdtvr … … 295 295 write(lunout,*) & 296 296 'GCM: On reinitialise a la date lue dans gcm.def' 297 ELSE IF (annee_ref .ne. anneeref .or. day_ref .ne.dayref) THEN297 ELSE IF (annee_ref /= anneeref .or. day_ref /= dayref) THEN 298 298 write(lunout,*) & 299 299 'GCM: Attention les dates initiales lues dans le fichier' … … 353 353 #endif 354 354 355 if (iflag_phys .eq.1) then355 if (iflag_phys==1) then 356 356 ! these initialisations have already been done (via iniacademic) 357 357 ! if running in SW or Newtonian mode
Note: See TracChangeset
for help on using the changeset viewer.