1 | !------------------------------------------------------------ |
---|
2 | ! Parameters for convectL, iflag_con=3: |
---|
3 | ! (includes - microphysical parameters, |
---|
4 | ! - parameters that control the rate of approach |
---|
5 | ! to quasi-equilibrium) |
---|
6 | ! - noff & minorig (previously in input of convect1) |
---|
7 | !------------------------------------------------------------ |
---|
8 | |
---|
9 | integer flag_epKEorig |
---|
10 | real flag_wb |
---|
11 | integer cv_flag_feed |
---|
12 | integer noff, minorig, nl, nlp, nlm |
---|
13 | real sigdz, spfac |
---|
14 | real pbcrit, ptcrit |
---|
15 | real elcrit, tlcrit |
---|
16 | real coef_peel |
---|
17 | real omtrain |
---|
18 | real dtovsh, dpbase, dttrig |
---|
19 | real dtcrit, tau, beta, alpha, alpha1 |
---|
20 | real T_top_max |
---|
21 | real tau_stop, noconv_stop |
---|
22 | real wbmax |
---|
23 | real delta |
---|
24 | real betad |
---|
25 | real ejectliq |
---|
26 | real ejectice |
---|
27 | |
---|
28 | COMMON /cv3param/ sigdz, spfac & |
---|
29 | ,pbcrit, ptcrit & |
---|
30 | ,elcrit, tlcrit & |
---|
31 | ,coef_peel & |
---|
32 | ,omtrain & |
---|
33 | ,dtovsh, dpbase, dttrig & |
---|
34 | ,dtcrit, tau, beta, alpha, alpha1 & |
---|
35 | ,T_top_max & |
---|
36 | ,tau_stop, noconv_stop & |
---|
37 | ,wbmax & |
---|
38 | ,delta, betad & |
---|
39 | ,ejectliq, ejectice & |
---|
40 | ,flag_epKEorig & |
---|
41 | ,flag_wb, cv_flag_feed & |
---|
42 | ,noff, minorig, nl, nlp, nlm |
---|
43 | !$OMP THREADPRIVATE(/cv3param/) |
---|
44 | |
---|