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