Changeset 2126 for LMDZ5/trunk/libf/phylmd/lmdz1d.F90
- Timestamp:
- Oct 15, 2014, 2:03:57 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/libf/phylmd/lmdz1d.F90
r2117 r2126 112 112 logical :: forcing_twpice = .false. 113 113 logical :: forcing_amma = .false. 114 logical :: forcing_dice = .false. 114 115 logical :: forcing_GCM2SCM = .false. 115 116 logical :: forcing_GCSSold = .false. … … 178 179 !--------------------------------------------------------------------- 179 180 logical :: ok_writedem =.true. 181 real :: sollw_in = 0. 182 real :: solsw_in = 0. 180 183 181 184 !--------------------------------------------------------------------- … … 262 265 ! initial profiles from AMMA nc file 263 266 ! 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 264 271 !forcing_type = 40 ==> forcing_GCSSold = .true. 265 272 ! initial profile from GCSS file … … 296 303 elseif (forcing_type .eq.6) THEN 297 304 forcing_amma = .true. 305 elseif (forcing_type .eq.7) THEN 306 forcing_dice = .true. 298 307 elseif (forcing_type .eq.40) THEN 299 308 forcing_GCSSold = .true. … … 319 328 320 329 type_ts_forcing = 0 321 if (forcing_toga.or.forcing_sandu.or.forcing_astex ) &330 if (forcing_toga.or.forcing_sandu.or.forcing_astex .or. forcing_dice) & 322 331 & type_ts_forcing = 1 323 332 … … 366 375 ! Special case for amma which lasts less than one day : 64800s !! (MPL 20120216) 367 376 IF(forcing_type .EQ. 6) fnday=64800./86400. 377 ! IF(forcing_type .EQ. 6) fnday=50400./86400. 368 378 annee_ref = anneeref 369 379 mois = 1 … … 391 401 & (year_ini_amma,mth_ini_amma,day_ini_amma,heure_ini_amma & 392 402 & ,day_ju_ini_amma) 393 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) 394 408 ELSEIF (forcing_type .eq.59) THEN 395 409 ! Convert the initial date of Sandu case to Julian day … … 405 419 406 420 ELSEIF (forcing_type .eq.61) THEN 407 408 421 ! Convert the initial date of Arm_cu case to Julian day 409 422 call ymds2ju &
Note: See TracChangeset
for help on using the changeset viewer.