Changeset 4651 for LMDZ6/trunk/libf/phylmdiso
- Timestamp:
- Aug 28, 2023, 4:34:20 PM (2 years ago)
- Location:
- LMDZ6/trunk/libf/phylmdiso
- Files:
-
- 1 added
- 2 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/libf/phylmdiso/fisrtilp.F90
r4535 r4651 20 20 USE icefrac_lsc_mod ! compute ice fraction (JBM 3/14) 21 21 USE print_control_mod, ONLY: prt_level, lunout 22 USE cloudth_mod22 USE lmdz_cloudth, only : cloudth, cloudth_v3, cloudth_v6 23 23 USE ioipsl_getin_p_mod, ONLY : getin_p 24 24 USE phys_local_var_mod, ONLY: ql_seri,qs_seri … … 31 31 USE lscp_ini_mod, ONLY: cld_tau_lsc, cld_tau_con, cld_lc_lsc, cld_lc_con 32 32 USE lscp_ini_mod, ONLY: reevap_ice, iflag_bergeron, iflag_fisrtilp_qsat, iflag_pdf 33 use phys_output_var_mod, ONLY : cloudth_sth,cloudth_senv 34 use phys_output_var_mod, ONLY : cloudth_sigmath,cloudth_sigmaenv 35 33 36 34 37 … … 1124 1127 zq,zqta,fraca, & 1125 1128 qcloud,ctot,zpspsk,paprs,pplay,ztla,zthl, & 1126 ratqs,zqs,t) 1129 ratqs,zqs,t, & 1130 cloudth_sth,cloudth_senv,cloudth_sigmath,cloudth_sigmaenv) 1131 1127 1132 elseif (iflag_cloudth_vert>=3 .and. iflag_cloudth_vert<=5) then 1128 1133 call cloudth_v3(klon,klev,k,ztv, & 1129 1134 zq,zqta,fraca, & 1130 1135 qcloud,ctot,ctot_vol,zpspsk,paprs,pplay,ztla,zthl, & 1131 ratqs,zqs,t) 1136 ratqs,zqs,t, & 1137 cloudth_sth,cloudth_senv,cloudth_sigmath,cloudth_sigmaenv) 1138 1132 1139 !---------------------------------- 1133 1140 !Version these Jean Jouhaud, Decembre 2018 … … 1137 1144 zq,zqta,fraca, & 1138 1145 qcloud,ctot,ctot_vol,zpspsk,paprs,pplay,ztla,zthl, & 1139 ratqs,zqs,t) 1146 ratqs,zqs,t, & 1147 cloudth_sth,cloudth_senv,cloudth_sigmath,cloudth_sigmaenv) 1148 1140 1149 1141 1150 endif -
LMDZ6/trunk/libf/phylmdiso/lmdz_cloudth.F90
r4650 r4651 1 link ../phylmd/ cloudth_mod.F901 link ../phylmd/lmdz_cloudth.F90 -
LMDZ6/trunk/libf/phylmdiso/physiq_mod.F90
r4639 r4651 87 87 USE lmdz_ratqs_main, ONLY : ratqs_main 88 88 USE lmdz_ratqs_ini, ONLY : ratqs_ini 89 USE phys_output_var_mod, ONLY : cloudth_sth,cloudth_senv,cloudth_sigmath,cloudth_sigmaenv 90 89 91 90 92 !USE cmp_seri_mod … … 1919 1921 & RG,RD,RCPD,RKAPPA,RLVTT,RETV) 1920 1922 CALL ratqs_ini(klon,klev,iflag_thermals,lunout,nbsrf,is_lic,is_ter,RG,RV,RD,RCPD,RLSTT,RLVTT,RTT) 1921 CALL lscp_ini(pdtphys,ok_ice_sursat, RCPD, RLSTT, RLVTT, RLMLT, RVTMP2, RTT,RD,RG)1923 CALL lscp_ini(pdtphys,ok_ice_sursat,iflag_ratqs,RCPD, RLSTT, RLVTT, RLMLT, RVTMP2, RTT,RD,RG) 1922 1924 CALL blowing_snow_ini(prt_level,lunout, & 1923 1925 RCPD, RLSTT, RLVTT, RLMLT, & … … 4808 4810 iflag_ice_thermo, ok_ice_sursat, zqsatl, zqsats, distcltop, temp_cltop, & 4809 4811 qclr, qcld, qss, qvc, rnebclr, rnebss, gamma_ss, & 4810 Tcontr, qcontr, qcontr2, fcontrN, fcontrP ) 4812 Tcontr, qcontr, qcontr2, fcontrN, fcontrP , & 4813 cloudth_sth,cloudth_senv,cloudth_sigmath,cloudth_sigmaenv) 4814 4811 4815 4812 4816 ELSE
Note: See TracChangeset
for help on using the changeset viewer.