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