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