Changeset 2000 for LMDZ5/trunk/libf/phylmd
- Timestamp:
- Mar 26, 2014, 7:05:47 PM (11 years ago)
- Location:
- LMDZ5/trunk/libf/phylmd
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/libf/phylmd/conf_phys_m.F90
r1998 r2000 115 115 116 116 integer,SAVE :: iflag_thermals_ed_omp,iflag_thermals_optflux_omp,iflag_thermals_closure_omp 117 real, SAVE :: fact_thermals_ed_dz_omp 117 118 integer,SAVE :: iflag_thermals_omp,nsplit_thermals_omp 118 119 real,save :: tau_thermals_omp,alp_bl_k_omp … … 1141 1142 iflag_thermals_omp = 0 1142 1143 call getin('iflag_thermals',iflag_thermals_omp) 1144 ! 1145 !Config Key = iflag_thermals_ed 1146 !Config Desc = 1147 !Config Def = 0 1148 !Config Help = 1149 ! 1150 fact_thermals_ed_dz_omp = 0.1 1151 1152 call getin('fact_thermals_ed_dz',fact_thermals_ed_dz_omp) 1143 1153 ! 1144 1154 ! … … 1823 1833 iflag_thermals = iflag_thermals_omp 1824 1834 iflag_thermals_ed = iflag_thermals_ed_omp 1835 fact_thermals_ed_dz = fact_thermals_ed_dz_omp 1825 1836 iflag_thermals_optflux = iflag_thermals_optflux_omp 1826 1837 iflag_thermals_closure = iflag_thermals_closure_omp … … 2015 2026 write(lunout,*)' iflag_thermals = ', iflag_thermals 2016 2027 write(lunout,*)' iflag_thermals_ed = ', iflag_thermals_ed 2028 write(lunout,*)' fact_thermals_ed_dz = ', fact_thermals_ed_dz 2017 2029 write(lunout,*)' iflag_thermals_optflux = ', iflag_thermals_optflux 2018 2030 write(lunout,*)' iflag_thermals_closure = ', iflag_thermals_closure -
LMDZ5/trunk/libf/phylmd/thermcell.h
r1998 r2000 9 9 real,parameter :: r_aspect_thermals=2.,l_mix_thermals=30. 10 10 real :: alp_bl_k 11 real :: tau_thermals 11 real :: tau_thermals,fact_thermals_ed_dz 12 12 integer,parameter :: w2di_thermals=0 13 13 integer :: isplit … … 17 17 18 18 common/ctherm1/iflag_thermals,nsplit_thermals,iflag_thermals_closure 19 common/ctherm2/tau_thermals,alp_bl_k 19 common/ctherm2/tau_thermals,alp_bl_k,fact_thermals_ed_dz 20 20 common/ctherm4/iflag_coupl,iflag_clos,iflag_wake 21 21 common/ctherm5/iflag_thermals_ed,iflag_thermals_optflux -
LMDZ5/trunk/libf/phylmd/thermcell_plume.F90
r1998 r2000 295 295 !Modif AJAM 296 296 297 lmel= 0.1*zlev(ig,l)297 lmel=fact_thermals_ed_dz*zlev(ig,l) 298 298 ! lmel=2.5*(zlev(ig,l)-zlev(ig,l-1)) 299 299 lt=l+1
Note: See TracChangeset
for help on using the changeset viewer.