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