Ignore:
Timestamp:
Jun 30, 2017, 12:00:23 PM (8 years ago)
Author:
fcheruy
Message:

Creation of LMDZ branch to incorporate tree drag from ORCHIDEE.
Should merge in LMDZ trunk quickly

  1. Cheruy with assistance from LF
Location:
LMDZ5/branches/LMDZ_tree_FC
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • LMDZ5/branches/LMDZ_tree_FC/libf/phylmd/conf_phys_m.F90

    r2852 r2924  
    186186    INTEGER,SAVE :: iflag_pbl_omp,lev_histhf_omp,lev_histday_omp,lev_histmth_omp
    187187    INTEGER,SAVE :: iflag_pbl_split_omp
     188!FC
     189    INTEGER,SAVE :: ifl_pbltree_omp
     190    REAL,SAVE :: Cd_frein_omp
     191!FC
    188192    INTEGER,SAVE :: iflag_order2_sollw_omp
    189193    INTEGER, SAVE :: lev_histins_omp, lev_histLES_omp
     
    13671371    iflag_pbl_omp = 1
    13681372    CALL getin('iflag_pbl',iflag_pbl_omp)
     1373
     1374!FC
     1375    !Config Key  = ifl_pbltree
     1376    !Config Desc = drag from trees 0 no activated
     1377    !Config Def  = 0
     1378    !Config Help =
     1379    !
     1380    ifl_pbltree_omp = 0
     1381    CALL getin('ifl_pbltree',ifl_pbltree_omp)
     1382!FC
     1383    !Config Key  = Cd_frein
     1384    !Config Desc = drag from trees
     1385    !Config Def  = 7.5E-02 (valeur Masson mais fait planter avec des LAI eleves)
     1386    !Config Help =
     1387    !
     1388    Cd_frein_omp = 7.5E-02
     1389    CALL getin('Cd_frein',Cd_frein_omp)
     1390
    13691391    !
    13701392    !Config Key  = iflag_pbl_split
     
    21592181    iflag_pbl = iflag_pbl_omp
    21602182    iflag_pbl_split = iflag_pbl_split_omp
     2183!FC
     2184    ifl_pbltree = ifl_pbltree_omp
     2185    Cd_frein    =Cd_frein_omp
    21612186    iflag_order2_sollw = iflag_order2_sollw_omp
    21622187    lev_histhf = lev_histhf_omp
     
    25252550    write(lunout,*)' freq_calNMC = ',freq_calNMC
    25262551    write(lunout,*)' iflag_pbl = ', iflag_pbl
     2552!FC
     2553    write(lunout,*)' ifl_pbltree = ', ifl_pbltree
    25272554    write(lunout,*)' iflag_pbl_split = ', iflag_pbl_split
    25282555    write(lunout,*)' iflag_order2_sollw = ', iflag_order2_sollw
Note: See TracChangeset for help on using the changeset viewer.