Ignore:
Timestamp:
Jan 30, 2015, 2:57:13 PM (9 years ago)
Author:
Laurent Fairhead
Message:

Merged trunk changes -r2158:2186 into testing branch.

Location:
LMDZ5/branches/testing
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • LMDZ5/branches/testing

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

    r2160 r2187  
    2727    USE phys_cal_mod
    2828    USE carbon_cycle_mod, ONLY : carbon_cycle_tr, carbon_cycle_cpl
    29     use control_mod
     29    USE control_mod
     30    USE mod_grid_phy_lmdz, only: klon_glo
     31
     32
    3033
    3134    include "conema3.h"
     
    164167    REAL, SAVE ::  fmagic_omp, pmagic_omp
    165168    INTEGER,SAVE :: iflag_pbl_omp,lev_histhf_omp,lev_histday_omp,lev_histmth_omp
     169    INTEGER,SAVE :: iflag_pbl_split_omp
    166170    Integer, save :: lev_histins_omp, lev_histLES_omp
    167171    INTEGER, SAVE :: lev_histdayNMC_omp
     
    878882    !Config Help =
    879883    !
    880     NSW_omp = 2
     884    NSW_omp = 6
    881885    call getin('NSW',NSW_omp)
    882886
     
    11991203    call getin('iflag_pbl',iflag_pbl_omp)
    12001204    !
     1205    !Config Key  = iflag_pbl_split
     1206    !Config Desc = binary flag: least signif bit = split vdf; next bit = split thermals
     1207    !Config Def  = 0
     1208    !Config Help = 0-> no splitting; 1-> vdf splitting; 2-> thermals splitting; 3-> full splitting
     1209    !
     1210    iflag_pbl_split_omp = 0
     1211    call getin('iflag_pbl_split',iflag_pbl_split_omp)
     1212    !
    12011213    !Config Key  = iflag_thermals
    12021214    !Config Desc =
     
    17191731
    17201732    ok_gwd_rando_omp = .FALSE.
    1721     CALL getin('ok_gwd_rando', ok_gwd_rando_omp)
     1733    IF ( klon_glo == 1 ) THEN
     1734       print*,'La parametrisation des ondes de gravites non orographiques'
     1735       print*,'ne fonctionne pas en 1D'
     1736    ELSE
     1737       CALL getin('ok_gwd_rando', ok_gwd_rando_omp)
     1738    ENDIF
    17221739
    17231740    GWD_RANDO_RUWMAX_omp = 0.01
     
    18541871    pmagic = pmagic_omp
    18551872    iflag_pbl = iflag_pbl_omp
     1873    iflag_pbl_split = iflag_pbl_split_omp
    18561874    lev_histhf = lev_histhf_omp
    18571875    lev_histday = lev_histday_omp
     
    21102128    write(lunout,*)' freq_calNMC = ',freq_calNMC
    21112129    write(lunout,*)' iflag_pbl = ', iflag_pbl
     2130    write(lunout,*)' iflag_pbl_split = ', iflag_pbl_split
    21122131    write(lunout,*)' iflag_thermals = ', iflag_thermals
    21132132    write(lunout,*)' iflag_thermals_ed = ', iflag_thermals_ed
Note: See TracChangeset for help on using the changeset viewer.