Changeset 2038 for LMDZ5/trunk/libf/dyn3dmem
- Timestamp:
- May 7, 2014, 11:05:48 AM (11 years ago)
- Location:
- LMDZ5/trunk/libf/dyn3dmem
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/libf/dyn3dmem/gcm.F
r2021 r2038 477 477 478 478 479 day_end = day_ini + nday 479 if (nday>=0) then 480 day_end = day_ini + nday 481 else 482 day_end = day_ini - nday/day_step 483 endif 484 480 485 WRITE(lunout,300)day_ini,day_end 481 486 300 FORMAT('1'/,15x,'run du jour',i7,2x,'au jour',i7//) -
LMDZ5/trunk/libf/dyn3dmem/leapfrog_loc.F
r2021 r2038 214 214 lafin=.false. 215 215 216 itaufin = nday*day_step 216 if (nday>=0) then 217 itaufin = nday*day_step 218 else 219 itaufin = -nday 220 endif 221 217 222 itaufinp1 = itaufin +1 218 223
Note: See TracChangeset
for help on using the changeset viewer.