Changeset 2038 for LMDZ5/trunk/libf/dyn3d
- Timestamp:
- May 7, 2014, 11:05:48 AM (11 years ago)
- Location:
- LMDZ5/trunk/libf/dyn3d
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/libf/dyn3d/gcm.F
r2021 r2038 462 462 463 463 464 day_end = day_ini + nday 464 if (nday>=0) then 465 day_end = day_ini + nday 466 else 467 day_end = day_ini - nday/day_step 468 endif 465 469 WRITE(lunout,300)day_ini,day_end 466 470 300 FORMAT('1'/,15x,'run du jour',i7,2x,'au jour',i7//) -
LMDZ5/trunk/libf/dyn3d/leapfrog.F
r2021 r2038 198 198 199 199 200 itaufin = nday*day_step 200 if (nday>=0) then 201 itaufin = nday*day_step 202 else 203 itaufin = -nday 204 endif 201 205 itaufinp1 = itaufin +1 202 206 itau = 0
Note: See TracChangeset
for help on using the changeset viewer.