[1992] | 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 | !------------------------------------------------------------ |
---|
[879] | 8 | |
---|
[2398] | 9 | logical ok_convstop |
---|
| 10 | logical ok_intermittent |
---|
[879] | 11 | integer noff, minorig, nl, nlp, nlm |
---|
| 12 | real sigdz, spfac |
---|
[1516] | 13 | integer flag_epKEorig,flag_wb |
---|
[879] | 14 | real pbcrit, ptcrit |
---|
[1515] | 15 | real elcrit, tlcrit |
---|
[2458] | 16 | real coef_peel |
---|
[879] | 17 | real omtrain |
---|
| 18 | real dtovsh, dpbase, dttrig |
---|
| 19 | real dtcrit, tau, beta, alpha, alpha1 |
---|
[2398] | 20 | real tau_stop, noconv_stop |
---|
[1516] | 21 | real wbmax |
---|
[879] | 22 | real delta |
---|
| 23 | real betad |
---|
| 24 | |
---|
[2253] | 25 | COMMON /cv3param/ sigdz, spfac & |
---|
[1992] | 26 | ,pbcrit, ptcrit & |
---|
| 27 | ,elcrit, tlcrit & |
---|
[2458] | 28 | ,coef_peel & |
---|
[1992] | 29 | ,omtrain & |
---|
| 30 | ,dtovsh, dpbase, dttrig & |
---|
| 31 | ,dtcrit, tau, beta, alpha, alpha1 & |
---|
[2398] | 32 | ,tau_stop, noconv_stop & |
---|
[2253] | 33 | ,wbmax & |
---|
| 34 | ,delta, betad & |
---|
| 35 | ,flag_epKEorig & |
---|
| 36 | ,flag_wb & |
---|
[2398] | 37 | ,noff, minorig, nl, nlp, nlm & |
---|
| 38 | ,ok_convstop, ok_intermittent |
---|
[987] | 39 | !$OMP THREADPRIVATE(/cv3param/) |
---|
[879] | 40 | |
---|