/[lmdze]/trunk/phylmd/Conflx/YOECUMF.f90
ViewVC logotype

Contents of /trunk/phylmd/Conflx/YOECUMF.f90

Parent Directory Parent Directory | Revision Log Revision Log


Revision 328 - (show annotations)
Thu Jun 13 14:40:06 2019 UTC (4 years, 11 months ago) by guez
File size: 1599 byte(s)
Change all `.f` suffixes to `.f90`. (The opposite was done in revision
82.)  Because of change of philosopy in GNUmakefile: we already had a
rewritten rule for `.f`, so it does not make the makefile longer to
replace it by a rule for `.f90`. And it spares us options of
makedepf90 and of the compiler. Also we prepare the way for a simpler
`CMakeLists.txt`.

1 module yoecumf
2
3 ! From phylmd/YOECUMF.h, version 1.1.1.1 2004/05/19 12:53:07
4
5 ! M. Tiedtke, ECMWF, 18th Jan. 1989
6 ! Parameters for cumulus massflux scheme
7
8 implicit none
9
10 logical lmfpen ! penetrative convection switched on
11 logical lmfscv ! shallow convection switched on
12 logical lmfmid ! midlevel convection switched on
13 logical lmfdd ! cumulus downdraft switched on
14 logical lmfdudv ! cumulus friction switched on
15 real entrpen ! entrainment rate for penetrative convection
16 real entrscv ! entrainment rate for shallow convection
17 real entrmid ! entrainment rate for midlevel convection
18 real entrdd ! entrainment rate for cumulus downdrafts
19 real cmfctop ! relative cloud massflux at level above nonbuoyanc level
20 real cmfcmax ! maximum massflux value allowed for updrafts etc
21 real cmfcmin ! minimum massflux value (for safety)
22 real cmfdeps ! fractional massflux for downdrafts at lfs
23
24 real rhcdd
25 ! relative saturation in downdrafts (no longer used) (formulation
26 ! implies saturation)
27
28 real cprcon ! coefficients for determining conversion from cloud water to rain
29
30 contains
31
32 SUBROUTINE flxsetup
33
34 ! This routine defines disposable parameters for massflux scheme.
35
36 !--------------------------------------------------------
37
38 ENTRPEN = 1E-4
39 ENTRSCV = 3E-4
40 ENTRMID = 1E-4
41 ENTRDD = 2E-4
42 CMFCTOP = 0.33
43 CMFCMAX = 1.
44 CMFCMIN = 1E-10
45 CMFDEPS = 0.3
46 CPRCON = 2E-4
47 RHCDD = 1.
48 LMFPEN = .TRUE.
49 LMFSCV = .TRUE.
50 LMFMID = .TRUE.
51 LMFDD = .TRUE.
52 LMFDUDV = .TRUE.
53
54 END SUBROUTINE flxsetup
55
56 end module yoecumf

Properties

Name Value
svn:eol-style native

  ViewVC Help
Powered by ViewVC 1.1.21