UPP  V11.0.0
 All Data Structures Files Functions Pages
CMASSI.f
1  module cmassi_mod
2 !- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3  implicit none
4 !
5 !-----------------------------------------------------------------------
6  REAL, PARAMETER :: dmimin=.05e-3, dmimax=1.e-3, &
7  & XMImin=1.e6*DMImin, XMImax=1.e6*DMImax
8  INTEGER, PARAMETER :: mdimin=xmimin, mdimax=xmimax
9 !-----------------------------------------------------------------------
10 !--- Mean mass of precpitation ice particles as functions of their mean
11 ! size (in microns)
12 !
13  REAL massi(mdimin:mdimax)
14 !
15 !--- Mean rain drop diameters vary from 50 microns to 1000 microns
16 ! DMRmax definition is moved to microinit and has different values depending on imp_physics
17  REAL, PARAMETER :: dmrmin=.05e-3, deldmr=1.e-6 &
18  &, XMRmin=1.E6*DMRmin, N0r0=8.E6, N0rmin=1.e4
19  REAL dmrmax,xmrmax
20  INTEGER, PARAMETER :: mdrmin=xmrmin
21  INTEGER mdrmax
22 !
23 !--- Various rain lookup tables
24 !
25  REAL rqr_drmin,rqr_drmax, &
26  cn0r0,cn0r_dmrmin,cn0r_dmrmax
27 !
28 !--- Other important parameters
29 ! (NLImax, FLARGE2 are used for the older version of the microphysics)
30 !
31  REAL t_ice,nlimax,flarge2,trad_ice
32 !
33  end module cmassi_mod