| 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 | !------------------------------------------------------------ |
|---|
| 8 | |
|---|
| 9 | INTEGER flag_epKEorig |
|---|
| 10 | REAL flag_wb |
|---|
| 11 | INTEGER cv_flag_feed |
|---|
| 12 | INTEGER noff, minorig, nl, nlp, nlm |
|---|
| 13 | REAL sigdz, spfac |
|---|
| 14 | REAL pbcrit, ptcrit |
|---|
| 15 | REAL elcrit, tlcrit |
|---|
| 16 | REAL coef_peel |
|---|
| 17 | REAL omtrain |
|---|
| 18 | REAL dtovsh, dpbase, dttrig |
|---|
| 19 | REAL dtcrit, tau, beta, alpha, alpha1 |
|---|
| 20 | REAL T_top_max |
|---|
| 21 | REAL tau_stop, noconv_stop |
|---|
| 22 | REAL wbmax |
|---|
| 23 | REAL delta |
|---|
| 24 | REAL betad |
|---|
| 25 | REAL ejectliq |
|---|
| 26 | REAL ejectice |
|---|
| 27 | |
|---|
| 28 | COMMON /cv3param/ sigdz, spfac & |
|---|
| 29 | ,pbcrit, ptcrit & |
|---|
| 30 | ,elcrit, tlcrit & |
|---|
| 31 | ,coef_peel & |
|---|
| 32 | ,omtrain & |
|---|
| 33 | ,dtovsh, dpbase, dttrig & |
|---|
| 34 | ,dtcrit, tau, beta, alpha, alpha1 & |
|---|
| 35 | ,T_top_max & |
|---|
| 36 | ,tau_stop, noconv_stop & |
|---|
| 37 | ,wbmax & |
|---|
| 38 | ,delta, betad & |
|---|
| 39 | ,ejectliq, ejectice & |
|---|
| 40 | ,flag_wb & |
|---|
| 41 | ,flag_epKEorig & |
|---|
| 42 | ,cv_flag_feed & |
|---|
| 43 | ,noff, minorig, nl, nlp, nlm |
|---|
| 44 | !$OMP THREADPRIVATE(/cv3param/) |
|---|
| 45 | |
|---|