source: LMDZ6/trunk/libf/phylmd/cv3param.h @ 3492

Last change on this file since 3492 was 3492, checked in by jyg, 5 years ago

New computations of the lifted parcel in Emanuel's
convective scheme, controlled by two new flags:

Integer flag icvflag_Tpa:

0 -> Ice fraction in the adiabatic ascents =

function of environment tempertaure.
Computation in two steps: the first is ice
free; the second adds ice (Arnaud Jam
scheme)

1 -> Ice fraction in the adiabatic ascents =

function of environment tempertaure.
Computation in one single step.

2 -> Ice fraction in the adiabatic ascents =

function of ascent temperature.
Computation in one single step.

Logical flag qsat_depends_on_qt:

When True, specific hunidity at saturation

is a function of the amount of condsensate.

Else it is equal to qsat.

  • Property copyright set to
    Name of program: LMDZ
    Creation date: 1984
    Version: LMDZ5
    License: CeCILL version 2
    Holder: Laboratoire de m\'et\'eorologie dynamique, CNRS, UMR 8539
    See the license file in the root directory
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.7 KB
Line 
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      logical ok_homo_tend
10      logical ok_optim_yield
11      logical ok_entrain
12      logical ok_convstop
13      logical ok_intermittent
14      logical qsat_depends_on_qt
15      integer noff, minorig, nl, nlp, nlm
16      integer cv_flag_feed
17      integer flag_epKEorig,flag_wb
18      real sigdz, spfac
19      real pbcrit, ptcrit
20      real elcrit, tlcrit
21      real coef_peel
22      real omtrain
23      real dtovsh, dpbase, dttrig
24      real dtcrit, tau, beta, alpha, alpha1
25      real T_top_max
26      real tau_stop, noconv_stop
27      real wbmax
28      real delta
29      real betad
30
31      COMMON /cv3param/ sigdz, spfac &
32                      ,pbcrit, ptcrit &
33                      ,elcrit, tlcrit &
34                      ,coef_peel &
35                      ,omtrain &
36                      ,dtovsh, dpbase, dttrig &
37                      ,dtcrit, tau, beta, alpha, alpha1 &
38                      ,T_top_max &
39                      ,tau_stop, noconv_stop &
40                      ,wbmax &
41                      ,delta, betad  &
42                      ,flag_epKEorig &
43                      ,flag_wb, cv_flag_feed &
44                      ,noff, minorig, nl, nlp, nlm  &
45                      ,ok_convstop, ok_intermittent &
46                      ,ok_optim_yield &
47                      ,ok_entrain &
48                      ,ok_homo_tend &
49                      ,qsat_depends_on_qt
50!$OMP THREADPRIVATE(/cv3param/)
51
Note: See TracBrowser for help on using the repository browser.