source: LMDZ6/trunk/libf/phylmdiso/cvparam_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: 702 bytes
Line 
1MODULE cvparam_mod_h
2  IMPLICIT NONE; PRIVATE
3  PUBLIC noff, minorig, nl, nlp, nlm &
4          , elcrit, tlcrit &
5          , entp, sigs, sigd &
6          , omtrain, omtsnow, coeffr, coeffs &
7          , dtmax, cu, betad, alpha, damp, delta
8
9  integer noff, minorig, nl, nlp, nlm
10  real elcrit, tlcrit
11  real entp
12  real sigs, sigd
13  real omtrain, omtsnow, coeffr, coeffs
14  real dtmax
15  real cu
16  real betad
17  real alpha, damp
18  real delta
19
20  !$OMP THREADPRIVATE(noff, minorig, nl, nlp, nlm &
21  !$OMP          , elcrit, tlcrit &
22  !$OMP          , entp, sigs, sigd &
23  !$OMP          , omtrain, omtsnow, coeffr, coeffs &
24  !$OMP          , dtmax, cu, betad, alpha, damp, delta)
25END MODULE cvparam_mod_h
Note: See TracBrowser for help on using the repository browser.