Ignore:
Timestamp:
May 7, 2014, 11:05:48 AM (10 years ago)
Author:
fhourdin
Message:

Possibilité d'imposer le nombre de pas de temps de la simulation avec nday<0
If nday<0, nday is the total number of time step of the simulation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ5/trunk/libf/dyn3dpar/gcm.F

    r2021 r2038  
    477477
    478478
    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
    480485      WRITE(lunout,300)day_ini,day_end
    481486 300  FORMAT('1'/,15x,'run du jour',i7,2x,'au jour',i7//)
Note: See TracChangeset for help on using the changeset viewer.