source: LMDZ6/trunk/libf/phylmdiso/cv3param_mod_h.f90 @ 5409

Last change on this file since 5409 was 5352, checked in by Laurent Fairhead, 2 weeks ago

Rollback (in a way) of previous commit : Frederic is rewriting the deep convection routines to follow the 'replay' standards
and has done the commits in the phylmd subdirectory. The corresponding routines in the phylmdiso directory are not links to files
in the phylmd and thus still need the old modules for parameters that were linked in before.

File size: 1.5 KB
Line 
1! Replaces cv3param.h
2
3MODULE cv3param_mod_h
4  !------------------------------------------------------------
5  ! Parameters for convectL, iflag_con=3:
6  ! (includes - microphysical parameters,
7  !            - parameters that control the rate of approach
8  !               to quasi-equilibrium)
9  !            - noff & minorig (previously in input of convect1)
10  !------------------------------------------------------------
11  IMPLICIT NONE; PRIVATE
12  PUBLIC sigdz, spfac, pbcrit, ptcrit, elcrit, tlcrit, coef_peel, omtrain, dtovsh, dpbase, &
13          dttrig, dtcrit, tau, beta, alpha, alpha1, T_top_max, tau_stop, noconv_stop, wbmax, &
14          delta, betad, ejectliq, ejectice, flag_wb, flag_epKEorig, cv_flag_feed, noff, minorig, &
15          nl, nlp, nlm
16
17  INTEGER flag_epKEorig
18  REAL flag_wb
19  INTEGER cv_flag_feed
20  INTEGER noff, minorig, nl, nlp, nlm
21  REAL sigdz, spfac
22  REAL pbcrit, ptcrit
23  REAL elcrit, tlcrit
24  REAL coef_peel
25  REAL omtrain
26  REAL dtovsh, dpbase, dttrig
27  REAL dtcrit, tau, beta, alpha, alpha1
28  REAL T_top_max
29  REAL tau_stop, noconv_stop
30  REAL wbmax
31  REAL delta
32  REAL betad
33  REAL ejectliq
34  REAL ejectice
35
36  !$OMP THREADPRIVATE(sigdz, spfac, pbcrit, ptcrit, elcrit, tlcrit, coef_peel, omtrain, dtovsh, dpbase, &
37  !$OMP      dttrig, dtcrit, tau, beta, alpha, alpha1, T_top_max, tau_stop, noconv_stop, wbmax, &
38  !$OMP      delta, betad, ejectliq, ejectice, flag_wb, flag_epKEorig, cv_flag_feed, noff, minorig, &
39  !$OMP      nl, nlp, nlm)
40END MODULE cv3param_mod_h
41
42
43
44
Note: See TracBrowser for help on using the repository browser.