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