source: LMDZ5/branches/AI-cosp/libf/phylmd/cv3param.h @ 2433

Last change on this file since 2433 was 2398, checked in by jyg, 9 years ago

Introduction of two new flags (ok_conv_stop
[Def=F], ok_intermittent [Def=F]) and one new
parameter (tau_stop [Def=15000]) in
conv_param.data:

. ok_conv_stop=T => convective mass fluxes are

set to zero if there is no trigger for a time
lapse longer than tau_stop.

. ok_intermittent=T => intermittent convection is

represented; the change concerns the upper
bound on the cloud base mass flux in
cv3p2_closure.F90.

The upper bound on Alp in physiq.F90 should

also be changed: this is still to be done.

  • 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.3 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_convstop
10      logical ok_intermittent
11      integer noff, minorig, nl, nlp, nlm
12      real sigdz, spfac
13      integer flag_epKEorig,flag_wb
14      real pbcrit, ptcrit
15      real elcrit, tlcrit
16      real omtrain
17      real dtovsh, dpbase, dttrig
18      real dtcrit, tau, beta, alpha, alpha1
19      real tau_stop, noconv_stop
20      real wbmax
21      real delta
22      real betad
23
24      COMMON /cv3param/ sigdz, spfac &
25                      ,pbcrit, ptcrit &
26                      ,elcrit, tlcrit &
27                      ,omtrain &
28                      ,dtovsh, dpbase, dttrig &
29                      ,dtcrit, tau, beta, alpha, alpha1 &
30                      ,tau_stop, noconv_stop &
31                      ,wbmax &
32                      ,delta, betad  &
33                      ,flag_epKEorig &
34                      ,flag_wb &
35                      ,noff, minorig, nl, nlp, nlm  &
36                      ,ok_convstop, ok_intermittent
37!$OMP THREADPRIVATE(/cv3param/)
38
Note: See TracBrowser for help on using the repository browser.