Ignore:
Timestamp:
Oct 9, 2019, 3:11:07 PM (5 years ago)
Author:
Laurent Fairhead
Message:

Make aquaplanets run again (on jean-zay)
EM & MP

Location:
LMDZ6/trunk/libf/dyn3dmem
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/trunk/libf/dyn3dmem/conf_gcm.F90

    r2665 r3579  
    2525  USE serre_mod, ONLY: clon,clat,grossismx,grossismy,dzoomx,dzoomy, &
    2626                       alphax,alphay,taux,tauy
    27   USE temps_mod, ONLY: calend
     27  USE temps_mod, ONLY: calend, year_len
    2828
    2929  IMPLICIT NONE
     
    144144  !Config         
    145145  calend = 'earth_360d'
     146! initialize year_len for aquaplanets and 1D
    146147  CALL getin('calend', calend)
     148     if (calend == 'earth_360d') then
     149        year_len=360
     150      else if (calend == 'earth_365d') then
     151        year_len=365
     152      else if (calend == 'earth_366d') then
     153        year_len=366
     154      else
     155        year_len=1
     156      endif
     157 
    147158
    148159  !Config  Key  = dayref
  • LMDZ6/trunk/libf/dyn3dmem/gcm.F90

    r3435 r3579  
    233233       'GCM: AVANT iniacademic AVANT AVANT AVANT AVANT'
    234234  if (.not.read_start) then
     235     start_time=0.
    235236     annee_ref=anneeref
    236237     CALL iniacademic_loc(vcov,ucov,teta,q,masse,ps,phis,time_0)
  • LMDZ6/trunk/libf/dyn3dmem/temps_mod.F90

    r2601 r3579  
    1313  INTEGER   annee_ref
    1414  INTEGER   day_ref
     15  INTEGER   year_len
    1516  REAL      dt ! (dynamics) time step (changes if doing Matsuno or LF step)
    1617  REAL      jD_ref ! reference julian day date (beginning of experiment)
Note: See TracChangeset for help on using the changeset viewer.