Ignore:
Timestamp:
Nov 27, 2014, 4:48:31 PM (10 years ago)
Author:
jyg
Message:

1/ Splitting of the boundary layer : the climbing down and up of Pbl_surface is
split between the off-wake and wake regions ; the thermal scheme is applied
only to the off-wake region.
2/ Elimination of wake_scal and calwake_scal.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ5/trunk/libf/phylmd/conf_phys_m.F90

    r2136 r2159  
    164164    REAL, SAVE ::  fmagic_omp, pmagic_omp
    165165    INTEGER,SAVE :: iflag_pbl_omp,lev_histhf_omp,lev_histday_omp,lev_histmth_omp
     166    INTEGER,SAVE :: iflag_pbl_split_omp
    166167    Integer, save :: lev_histins_omp, lev_histLES_omp
    167168    INTEGER, SAVE :: lev_histdayNMC_omp
     
    11981199    iflag_pbl_omp = 1
    11991200    call getin('iflag_pbl',iflag_pbl_omp)
     1201    !
     1202    !Config Key  = iflag_pbl_split
     1203    !Config Desc = binary flag: least signif bit = split vdf; next bit = split thermals
     1204    !Config Def  = 0
     1205    !Config Help = 0-> no splitting; 1-> vdf splitting; 2-> thermals splitting; 3-> full splitting
     1206    !
     1207    iflag_pbl_split_omp = 0
     1208    call getin('iflag_pbl_split',iflag_pbl_split_omp)
    12001209    !
    12011210    !Config Key  = iflag_thermals
     
    18541863    pmagic = pmagic_omp
    18551864    iflag_pbl = iflag_pbl_omp
     1865    iflag_pbl_split = iflag_pbl_split_omp
    18561866    lev_histhf = lev_histhf_omp
    18571867    lev_histday = lev_histday_omp
     
    21102120    write(lunout,*)' freq_calNMC = ',freq_calNMC
    21112121    write(lunout,*)' iflag_pbl = ', iflag_pbl
     2122    write(lunout,*)' iflag_pbl_split = ', iflag_pbl_split
    21122123    write(lunout,*)' iflag_thermals = ', iflag_thermals
    21132124    write(lunout,*)' iflag_thermals_ed = ', iflag_thermals_ed
Note: See TracChangeset for help on using the changeset viewer.