Changeset 2253 for LMDZ5/trunk/libf/phylmd/conf_phys_m.F90
- Timestamp:
- Mar 30, 2015, 11:08:45 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/libf/phylmd/conf_phys_m.F90
r2243 r2253 191 191 REAL,SAVE :: ecrit_LES_omp 192 192 REAL,SAVE :: ecrit_tra_omp 193 REAL,SAVE :: cvl_comp_threshold_omp 194 REAL,SAVE :: cvl_sig2feed_omp 193 195 REAL,SAVE :: cvl_corr_omp 194 196 LOGICAL,SAVE :: ok_lic_melt_omp … … 764 766 ! KE 765 767 ! 768 769 !Config key = cvl_comp_threshold 770 !Config Desc = maximum fraction of convective points enabling compression 771 !Config Def = 1.00 772 !Config Help = fields are compressed when less than a fraction cvl_comp_threshold 773 !Config Help = of the points is convective. 774 cvl_comp_threshold_omp = 1.00 775 CALL getin('cvl_comp_threshold', cvl_comp_threshold_omp) 776 777 !Config key = cvl_sig2feed 778 !Config Desc = sigma coordinate at top of feeding layer 779 !Config Def = 0.97 780 !Config Help = deep convection is fed by the layer extending from the surface (pressure ps) 781 !Config Help = and cvl_sig2feed*ps. 782 cvl_sig2feed_omp = 0.97 783 CALL getin('cvl_sig2feed', cvl_sig2feed_omp) 766 784 767 785 !Config key = cvl_corr … … 2034 2052 ecrit_tra = ecrit_tra_omp 2035 2053 ecrit_reg = ecrit_reg_omp 2054 cvl_comp_threshold = cvl_comp_threshold_omp 2055 cvl_sig2feed = cvl_sig2feed_omp 2036 2056 cvl_corr = cvl_corr_omp 2037 2057 ok_lic_melt = ok_lic_melt_omp … … 2135 2155 write(lunout,*)' RN2O_per = ',RN2O_per,' RCFC11_per = ', RCFC11_per 2136 2156 write(lunout,*)' RCFC12_per = ',RCFC12_per 2157 write(lunout,*)' cvl_comp_threshold=', cvl_comp_threshold 2158 write(lunout,*)' cvl_sig2feed=', cvl_sig2feed 2137 2159 write(lunout,*)' cvl_corr=', cvl_corr 2138 2160 write(lunout,*)'ok_lic_melt=', ok_lic_melt
Note: See TracChangeset
for help on using the changeset viewer.