Ignore:
Timestamp:
Nov 28, 2014, 4:36:29 PM (10 years ago)
Author:
Laurent Fairhead
Message:

Merged trunk changes -r2070:2158 into testing branch. Compilation problems introduced by revision r2155 have been corrected by hand

Location:
LMDZ5/branches/testing
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • LMDZ5/branches/testing

  • LMDZ5/branches/testing/libf/phylmd/lmdz1d.F90

    r2056 r2160  
    2121      USE indice_sol_mod
    2222      USE phyaqua_mod
     23      USE mod_1D_cases_read
    2324
    2425      implicit none
     
    111112        logical :: forcing_twpice  = .false.
    112113        logical :: forcing_amma    = .false.
     114        logical :: forcing_dice    = .false.
    113115        logical :: forcing_GCM2SCM = .false.
    114116        logical :: forcing_GCSSold = .false.
     
    177179!---------------------------------------------------------------------
    178180      logical :: ok_writedem =.true.
     181      real :: sollw_in = 0.
     182      real :: solsw_in = 0.
    179183     
    180184!---------------------------------------------------------------------
     
    261265!             initial profiles from AMMA nc file
    262266!             LS convergence, omega and surface fluxes imposed from AMMA file 
     267!forcing_type = 7 ==> forcing_dice = .true.
     268!             initial profiles and large scale forcings in dice_driver.nc
     269!             Different stages: soil model alone, atm. model alone
     270!             then both models coupled
    263271!forcing_type = 40 ==> forcing_GCSSold = .true.
    264272!             initial profile from GCSS file
     
    295303      elseif (forcing_type .eq.6) THEN
    296304       forcing_amma = .true.
     305      elseif (forcing_type .eq.7) THEN
     306       forcing_dice = .true.
    297307      elseif (forcing_type .eq.40) THEN
    298308       forcing_GCSSold = .true.
     
    318328
    319329        type_ts_forcing = 0
    320         if (forcing_toga.or.forcing_sandu.or.forcing_astex)                 &
     330        if (forcing_toga.or.forcing_sandu.or.forcing_astex .or. forcing_dice)                 &
    321331     &    type_ts_forcing = 1
    322332
     
    365375! Special case for amma which lasts less than one day : 64800s !! (MPL 20120216)
    366376      IF(forcing_type .EQ. 6) fnday=64800./86400.
     377!     IF(forcing_type .EQ. 6) fnday=50400./86400.
    367378      annee_ref = anneeref
    368379      mois = 1
     
    390401     & (year_ini_amma,mth_ini_amma,day_ini_amma,heure_ini_amma              &
    391402     & ,day_ju_ini_amma)
    392 
     403      ELSEIF (forcing_type .eq.7) THEN
     404! Convert the initial date of DICE to Julian day
     405      call ymds2ju                                                         &
     406     & (year_ini_dice,mth_ini_dice,day_ini_dice,heure_ini_dice             &
     407     & ,day_ju_ini_dice)
    393408      ELSEIF (forcing_type .eq.59) THEN
    394409! Convert the initial date of Sandu case to Julian day
     
    404419
    405420      ELSEIF (forcing_type .eq.61) THEN
    406 
    407421! Convert the initial date of Arm_cu case to Julian day
    408422      call ymds2ju                                                          &
Note: See TracChangeset for help on using the changeset viewer.