source: LMDZ6/trunk/libf/phylmd/lscp_ini_mod.F90 @ 4640

Last change on this file since 4640 was 4639, checked in by evignon, 12 months ago

modification de Lea pour inclure une dependance de la phase a la temperature du sommet du nuage

File size: 10.6 KB
Line 
1module lscp_ini_mod
2
3implicit none
4
5  ! PARAMETERS for lscp:
6  !--------------------
7 
8  REAL RCPD, RLSTT, RLVTT, RLMLT, RVTMP2, RTT, RD, RG
9  !$OMP THREADPRIVATE(RCPD, RLSTT, RLVTT, RLMLT, RVTMP2, RTT, RD, RG)
10
11  REAL, SAVE :: seuil_neb=0.001                 ! cloud fraction threshold: a cloud really exists when exceeded
12  !$OMP THREADPRIVATE(seuil_neb)
13
14  INTEGER, SAVE :: niter_lscp=5                 ! number of iterations to calculate autoconversion to precipitation
15  !$OMP THREADPRIVATE(niter_lscp)
16
17  INTEGER,SAVE :: iflag_evap_prec=1             ! precipitation evaporation flag. 0: nothing, 1: "old way",
18                                                ! 2: Max cloud fraction above to calculate the max of reevaporation
19                                                ! >=4: LTP'method i.e. evaporation in the clear-sky fraction of the mesh only
20                                                ! pay attention that iflag_evap_prec=4 may lead to unrealistic and overestimated
21                                                ! evaporation. Use 5 instead
22  !$OMP THREADPRIVATE(iflag_evap_prec)
23
24  REAL t_coup                                   ! temperature threshold which determines the phase
25  PARAMETER (t_coup=234.0)                      ! for which the saturation vapor pressure is calculated
26
27  REAL DDT0                                     ! iteration parameter
28  PARAMETER (DDT0=.01)
29
30  REAL ztfondue                                 ! parameter to calculate melting fraction of precipitation
31  PARAMETER (ztfondue=278.15)
32
33  REAL temp_nowater                             ! temperature below which liquid water no longer exists
34  PARAMETER (temp_nowater=233.15)
35
36  REAL, SAVE    :: rain_int_min=0.001           ! Minimum local rain intensity [mm/s] before the decrease in associated precipitation fraction
37  !$OMP THREADPRIVATE(rain_int_min)
38
39  REAL, SAVE :: a_tr_sca(4)                     ! Variables for tracers temporary: alpha parameter for scavenging, 4 possible scavenging processes
40  !$OMP THREADPRIVATE(a_tr_sca)
41 
42  INTEGER, SAVE ::  iflag_mpc_bl=0              ! flag to activate boundary layer mixed phase cloud param
43  !$OMP THREADPRIVATE(iflag_mpc_bl)
44 
45  LOGICAL, SAVE :: ok_radocond_snow=.false.       ! take into account the mass of ice precip in the cloud ice content seen by radiation
46  !$OMP THREADPRIVATE(ok_radocond_snow)
47
48  REAL, SAVE :: t_glace_min=258.0                ! lower-bound temperature parameter for cloud phase determination
49  !$OMP THREADPRIVATE(t_glace_min)
50
51  REAL, SAVE :: t_glace_max=273.15               ! upper-bound temperature parameter for cloud phase determination
52  !$OMP THREADPRIVATE(t_glace_max)
53
54  REAL, SAVE :: exposant_glace=1.0               ! parameter for cloud phase determination
55  !$OMP THREADPRIVATE(exposant_glace)
56
57  INTEGER, SAVE :: iflag_vice=0                  ! which expression for ice crystall fall velocity
58  !$OMP THREADPRIVATE(iflag_vice)
59
60  INTEGER, SAVE :: iflag_t_glace=0               ! which expression for cloud phase partitioning
61  !$OMP THREADPRIVATE(iflag_t_glace)
62
63  INTEGER, SAVE :: iflag_cloudth_vert=0          ! option for determining cloud fraction and content in convective boundary layers
64  !$OMP THREADPRIVATE(iflag_cloudth_vert)
65
66  INTEGER, SAVE :: iflag_gammasat=0              ! which threshold for homogeneous nucleation below -40oC
67  !$OMP THREADPRIVATE(iflag_gammasat)
68
69  INTEGER, SAVE :: iflag_rain_incloud_vol=0      ! use of volume cloud fraction for rain autoconversion
70  !$OMP THREADPRIVATE(iflag_rain_incloud_vol)
71
72  INTEGER, SAVE :: iflag_bergeron=0              ! bergeron effect for liquid precipitation treatment 
73  !$OMP THREADPRIVATE(iflag_bergeron)
74
75  INTEGER, SAVE :: iflag_fisrtilp_qsat=0         ! qsat adjustment (iterative) during autoconversion
76  !$OMP THREADPRIVATE(iflag_fisrtilp_qsat)
77
78  INTEGER, SAVE :: iflag_pdf=0                   ! type of subgrid scale qtot pdf
79  !$OMP THREADPRIVATE(iflag_pdf)
80
81  INTEGER, SAVE :: iflag_autoconversion=0        ! autoconversion option
82  !$OMP THREADPRIVATE(iflag_autoconversion)
83
84  LOGICAL, SAVE :: reevap_ice=.false.            ! no liquid precip for T< threshold
85  !$OMP THREADPRIVATE(reevap_ice)
86
87  REAL, SAVE :: cld_lc_lsc=2.6e-4                ! liquid autoconversion coefficient, stratiform rain
88  !$OMP THREADPRIVATE(cld_lc_lsc)
89
90  REAL, SAVE :: cld_lc_con=2.6e-4                ! liquid autoconversion coefficient, convective rain
91  !$OMP THREADPRIVATE(cld_lc_con)
92
93  REAL, SAVE :: cld_tau_lsc=3600.                ! liquid autoconversion timescale, stratiform rain
94  !$OMP THREADPRIVATE(cld_tau_lsc)
95
96  REAL, SAVE :: cld_tau_con=3600.                ! liquid autoconversion timescale, convective rain
97  !$OMP THREADPRIVATE(cld_tau_con)
98
99  REAL, SAVE :: cld_expo_lsc=2.                  ! liquid autoconversion threshold exponent, stratiform rain
100  !$OMP THREADPRIVATE(cld_expo_lsc)
101
102  REAL, SAVE :: cld_expo_con=2.                  ! liquid autoconversion threshold exponent, convective rain
103  !$OMP THREADPRIVATE(cld_expo_con)
104
105  REAL, SAVE :: ffallv_lsc=1.                    ! tuning coefficient crystal fall velocity, stratiform
106  !$OMP THREADPRIVATE(ffallv_lsc)
107
108  REAL, SAVE :: ffallv_con=1.                    ! tuning coefficient crystal fall velocity, convective
109  !$OMP THREADPRIVATE(ffallv_con)
110
111  REAL, SAVE :: coef_eva=2e-5                    ! tuning coefficient liquid precip evaporation
112  !$OMP THREADPRIVATE(coef_eva)
113
114  REAL, SAVE :: coef_eva_i                       ! tuning coefficient ice precip sublimation
115  !$OMP THREADPRIVATE(coef_eva_i)
116
117  REAL cice_velo                                 ! factor in the ice fall velocity formulation
118  PARAMETER (cice_velo=1.645)
119
120  REAL dice_velo                                 ! exponent in the ice fall velocity formulation
121  PARAMETER (dice_velo=0.16)
122
123  REAL, SAVE :: dist_liq=300.                    ! typical deph of cloud-top liquid layer in mpcs
124  !$OMP THREADPRIVATE(dist_liq)
125
126  REAL, SAVE    :: tresh_cl=0.0                  ! cloud fraction threshold for cloud top search
127  !$OMP THREADPRIVATE(tresh_cl)
128
129CONTAINS
130
131SUBROUTINE lscp_ini(dtime,ok_ice_sursat, RCPD_in, RLSTT_in, RLVTT_in, RLMLT_in, &
132                    RVTMP2_in, RTT_in,RD_in,RG_in)
133
134
135   USE ioipsl_getin_p_mod, ONLY : getin_p
136   USE print_control_mod, ONLY: prt_level, lunout
137   USE ice_sursat_mod, ONLY: ice_sursat_init
138
139   REAL, INTENT(IN)      :: dtime
140   LOGICAL, INTENT(IN)   :: ok_ice_sursat 
141
142   REAL, INTENT(IN)      :: RCPD_in, RLSTT_in, RLVTT_in, RLMLT_in
143   REAL, INTENT(IN)      ::  RVTMP2_in, RTT_in, RD_in, RG_in
144   character (len=20) :: modname='lscp_ini_mod'
145   character (len=80) :: abort_message
146
147
148    RG=RG_in
149    RD=RD_in
150    RCPD=RCPD_in
151    RLVTT=RLVTT_in
152    RLSTT=RLSTT_in
153    RLMLT=RLMLT_in
154    RTT=RTT_in
155    RG=RG_in
156    RVTMP2=RVTMP2_in
157
158
159
160    CALL getin_p('niter_lscp',niter_lscp)
161    CALL getin_p('iflag_evap_prec',iflag_evap_prec)
162    CALL getin_p('seuil_neb',seuil_neb)
163    CALL getin_p('rain_int_min',rain_int_min)
164    CALL getin_p('iflag_mpc_bl',iflag_mpc_bl)
165    CALL getin_p('ok_radocond_snow',ok_radocond_snow)
166    CALL getin_p('t_glace_max',t_glace_max)
167    CALL getin_p('t_glace_min',t_glace_min)
168    CALL getin_p('exposant_glace',exposant_glace)
169    CALL getin_p('iflag_vice',iflag_vice)
170    CALL getin_p('iflag_t_glace',iflag_t_glace)
171    CALL getin_p('iflag_cloudth_vert',iflag_cloudth_vert)
172    CALL getin_p('iflag_gammasat',iflag_gammasat)
173    CALL getin_p('iflag_rain_incloud_vol',iflag_rain_incloud_vol)
174    CALL getin_p('iflag_bergeron',iflag_bergeron)
175    CALL getin_p('iflag_fisrtilp_qsat',iflag_fisrtilp_qsat)
176    CALL getin_p('iflag_pdf',iflag_pdf)
177    CALL getin_p('reevap_ice',reevap_ice)
178    CALL getin_p('cld_lc_lsc',cld_lc_lsc)
179    CALL getin_p('cld_lc_con',cld_lc_con)
180    CALL getin_p('cld_tau_lsc',cld_tau_lsc)
181    CALL getin_p('cld_tau_con',cld_tau_con)
182    CALL getin_p('cld_expo_lsc',cld_expo_lsc)
183    CALL getin_p('cld_expo_con',cld_expo_con)
184    CALL getin_p('ffallv_lsc',ffallv_lsc)
185    CALL getin_p('ffallv_lsc',ffallv_con)
186    CALL getin_p('coef_eva',coef_eva)
187    coef_eva_i=coef_eva
188    CALL getin_p('coef_eva_i',coef_eva_i)
189    CALL getin_p('iflag_autoconversion',iflag_autoconversion)
190    CALL getin_p('dist_liq',dist_liq)
191    CALL getin_p('tresh_cl',tresh_cl)
192
193
194
195
196    WRITE(lunout,*) 'lscp, niter_lscp:', niter_lscp
197    WRITE(lunout,*) 'lscp, iflag_evap_prec:', iflag_evap_prec
198    WRITE(lunout,*) 'lscp, seuil_neb:', seuil_neb
199    WRITE(lunout,*) 'lscp, rain_int_min:', rain_int_min
200    WRITE(lunout,*) 'lscp, iflag_mpc_bl:', iflag_mpc_bl
201    WRITE(lunout,*) 'lscp, ok_radocond_snow:', ok_radocond_snow
202    WRITE(lunout,*) 'lscp, t_glace_max:', t_glace_max
203    WRITE(lunout,*) 'lscp, t_glace_min:', t_glace_min
204    WRITE(lunout,*) 'lscp, exposant_glace:', exposant_glace
205    WRITE(lunout,*) 'lscp, iflag_vice:', iflag_vice
206    WRITE(lunout,*) 'lscp, iflag_t_glace:', iflag_t_glace
207    WRITE(lunout,*) 'lscp, iflag_cloudth_vert:', iflag_cloudth_vert
208    WRITE(lunout,*) 'lscp, iflag_gammasat:', iflag_gammasat
209    WRITE(lunout,*) 'lscp, iflag_rain_incloud_vol:', iflag_rain_incloud_vol
210    WRITE(lunout,*) 'lscp, iflag_bergeron:', iflag_bergeron
211    WRITE(lunout,*) 'lscp, iflag_fisrtilp_qsat:', iflag_fisrtilp_qsat
212    WRITE(lunout,*) 'lscp, iflag_pdf', iflag_pdf
213    WRITE(lunout,*) 'lscp, reevap_ice', reevap_ice
214    WRITE(lunout,*) 'lscp, cld_lc_lsc', cld_lc_lsc
215    WRITE(lunout,*) 'lscp, cld_lc_con', cld_lc_con
216    WRITE(lunout,*) 'lscp, cld_tau_lsc', cld_tau_lsc
217    WRITE(lunout,*) 'lscp, cld_tau_con', cld_tau_con
218    WRITE(lunout,*) 'lscp, cld_expo_lsc', cld_expo_lsc
219    WRITE(lunout,*) 'lscp, cld_expo_con', cld_expo_con
220    WRITE(lunout,*) 'lscp, ffallv_lsc', ffallv_lsc
221    WRITE(lunout,*) 'lscp, ffallv_con', ffallv_con
222    WRITE(lunout,*) 'lscp, coef_eva', coef_eva
223    WRITE(lunout,*) 'lscp, coef_eva_i', coef_eva_i
224    WRITE(lunout,*) 'lscp, iflag_autoconversion', iflag_autoconversion
225    WRITE(lunout,*) 'lscp, dist_liq', dist_liq
226    WRITE(lunout,*) 'lscp, tresh_cl', tresh_cl
227
228
229
230
231
232    ! check for precipitation sub-time steps
233    IF (ABS(dtime/REAL(niter_lscp)-360.0).GT.0.001) THEN
234        WRITE(lunout,*) 'lscp: it is not expected, see Z.X.Li', dtime
235        WRITE(lunout,*) 'I would prefer a 6 min sub-timestep'
236    ENDIF
237
238    ! check consistency between numerical resolution of autoconversion
239    ! and other options
240   
241    IF (iflag_autoconversion .EQ. 2) THEN
242        IF ((iflag_vice .NE. 0) .OR. (niter_lscp .GT. 1)) THEN
243           abort_message = 'in lscp, iflag_autoconversion=2 requires iflag_vice=0 and niter_lscp=1'
244           CALL abort_physic (modname,abort_message,1)
245        ENDIF
246    ENDIF
247
248
249    !AA Temporary initialisation
250    a_tr_sca(1) = -0.5
251    a_tr_sca(2) = -0.5
252    a_tr_sca(3) = -0.5
253    a_tr_sca(4) = -0.5
254   
255    IF (ok_ice_sursat) CALL ice_sursat_init()
256
257
258
259end subroutine lscp_ini
260
261end module lscp_ini_mod
Note: See TracBrowser for help on using the repository browser.