Changeset 1403 for trunk/LMDZ.COMMON/libf/dyn3d
- Timestamp:
- Mar 31, 2015, 3:49:07 PM (10 years ago)
- Location:
- trunk/LMDZ.COMMON/libf/dyn3d
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/dyn3d/leapfrog.F
r1302 r1403 170 170 logical ok_sync 171 171 parameter (ok_sync = .true.) 172 logical physic 172 logical physics 173 173 174 174 data callinigrads/.true./ … … 251 251 252 252 itau = 0 253 physic =.true.254 if (iflag_phys==0.or.iflag_phys==2) physic =.false.253 physics=.true. 254 if (iflag_phys==0.or.iflag_phys==2) physics=.false. 255 255 256 256 c iday = day_ini+itau/day_step … … 362 362 s apdiss = .TRUE. 363 363 IF( MOD(itau,iphysiq ).EQ.0.AND..NOT.forward 364 s .and. physic ) apphys = .TRUE.364 s .and. physics ) apphys = .TRUE. 365 365 ELSE 366 366 ! Leapfrog/Matsuno time stepping … … 368 368 IF( MOD(itau+1,dissip_period).EQ.0 .AND. .NOT. forward ) 369 369 s apdiss = .TRUE. 370 IF( MOD(itau+1,iphysiq).EQ.0.AND.physic ) apphys=.TRUE.370 IF( MOD(itau+1,iphysiq).EQ.0.AND.physics ) apphys=.TRUE. 371 371 END IF 372 372 -
trunk/LMDZ.COMMON/libf/dyn3d/logic.h
r1302 r1403 12 12 & ,read_start,ok_guide,ok_strato,tidal,ok_gradsfile & 13 13 & ,ok_limit,ok_etat0,hybrid & 14 & ,moyzon_mu,moyzon_ch 14 & ,moyzon_mu,moyzon_ch,grireg,physic 15 15 16 16 COMMON/logici/ iflag_phys,iflag_trac … … 26 26 27 27 integer iflag_phys,iflag_trac 28 29 ! stuff for compatibility with Mars/Generic old dyn cores. To be cleaned! 30 logical grireg,physic 31 28 32 !-----------------------------------------------------------------------
Note: See TracChangeset
for help on using the changeset viewer.