Changeset 2287
- Timestamp:
- May 22, 2015, 5:52:37 PM (10 years ago)
- Location:
- LMDZ5/trunk/libf/phylmd
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/libf/phylmd/conf_phys_m.F90
r2254 r2287 40 40 include "thermcell.h" 41 41 include "iniprint.h" 42 42 43 43 44 !IM : on inclut/initialise les taux de CH4, N2O, CFC11 et CFC12 … … 145 146 INTEGER, SAVE :: iflag_mix_omp 146 147 real, save :: scut_omp, qqa1_omp, qqa2_omp, gammas_omp, Fmax_omp, alphas_omp 148 REAL, SAVE :: tmax_fonte_cv_omp 147 149 148 150 REAL,SAVE :: R_ecc_omp,R_peri_omp,R_incl_omp,solaire_omp … … 1788 1790 Fmax_omp = 0.65 1789 1791 call getin('Fmax',Fmax_omp) 1792 1793 ! 1794 !Config Key = tmax_fonte_cv 1795 !Config Desc = 1796 !Config Def = 275.15 1797 !Config Help = 1798 ! 1799 tmax_fonte_cv_omp = 275.15 1800 call getin('tmax_fonte_cv',tmax_fonte_cv_omp) 1790 1801 1791 1802 ! … … 2085 2096 gammas = gammas_omp 2086 2097 Fmax = Fmax_omp 2098 tmax_fonte_cv = tmax_fonte_cv_omp 2087 2099 alphas = alphas_omp 2088 2100 ok_strato = ok_strato_omp … … 2275 2287 write(lunout,*)' gammas = ', gammas 2276 2288 write(lunout,*)' Fmax = ', Fmax 2289 write(lunout,*)' tmax_fonte_cv = ', tmax_fonte_cv 2277 2290 write(lunout,*)' alphas = ', alphas 2278 2291 write(lunout,*)' iflag_wake = ', iflag_wake -
LMDZ5/trunk/libf/phylmd/cv3_routines.F90
r2259 r2287 2224 2224 include "cv3param.h" 2225 2225 include "cvflag.h" 2226 include "nuage.h" 2226 2227 2227 2228 !inputs: … … 2403 2404 2404 2405 IF (cvflag_ice) THEN 2405 thaw = (t(il,i)-273.15)/(275.15-273.15) 2406 !CR:tmax_fonte_cv: T for which ice is totally melted (used to be 275.15) 2407 thaw = (t(il,i)-273.15)/(tmax_fonte_cv-273.15) 2406 2408 thaw = min(max(thaw,0.0), 1.0) 2407 2409 frac(il, i) = frac(il, i)*(1.-thaw) … … 2517 2519 f6 = -100.*sigd(il)*bfac*(ph(il,i)-ph(il,i+1))*evap(il, i) 2518 2520 2519 thaw = (t(il,i)-273.15)/(275.15-273.15) 2521 !CR:tmax_fonte_cv: T for which ice is totally melted (used to be 275.15) 2522 thaw = (t(il,i)-273.15)/(tmax_fonte_cv-273.15) 2520 2523 thaw = min(max(thaw,0.0), 1.0) 2521 2524 water(il, i) = water(il, i+1) + (1-fraci(il,i))*d6 -
LMDZ5/trunk/libf/phylmd/nuage.h
r2205 r2287 7 7 REAL tau_cld_cv,coefw_cld_cv 8 8 9 REAL tmax_fonte_cv 10 9 11 INTEGER iflag_t_glace,iflag_cld_cv 10 12 … … 12 14 & t_glace_min,exposant_glace,rei_min,rei_max, & 13 15 & tau_cld_cv,coefw_cld_cv, & 14 & iflag_t_glace,iflag_cld_cv 16 & iflag_t_glace,iflag_cld_cv,tmax_fonte_cv 15 17 !$OMP THREADPRIVATE(/nuagecom/)
Note: See TracChangeset
for help on using the changeset viewer.