CCPP SciDoc v7.0.0  v7.0.0
Common Community Physics Package Developed at DTC
 
Loading...
Searching...
No Matches
radcons.f90
1
3
4
7 module radcons
8!
9 use machine, only : kind_phys
10!
11 implicit none
12!
13 public
14
15! --- version tag and last revision date
16 character(40), parameter :: &
17 & VTAGRAD='NCEP-Radiation_driver v5.2 Jan 2013 '
18! & VTAGRAD='NCEP-Radiation_driver v5.1 Nov 2012 '
19! & VTAGRAD='NCEP-Radiation_driver v5.0 Aug 2012 '
20
22 real (kind=kind_phys) :: qmin
23 real (kind=kind_phys) :: qme5
24 real (kind=kind_phys) :: qme6
26 real (kind=kind_phys) :: epsq
27! parameter (QMIN=1.0e-10, QME5=1.0e-5, QME6=1.0e-6, EPSQ=1.0e-12)
28 parameter(qmin=1.0e-10, qme5=1.0e-7, qme6=1.0e-7, epsq=1.0e-12)
29! parameter (QMIN=1.0e-10, QME5=1.0e-20, QME6=1.0e-20, EPSQ=1.0e-12)
30
32 real, parameter :: prsmin = 1.0e-6
33
36 integer :: itsfc =0
37
39 integer :: month0=0, iyear0=0, monthd=0
40
44 logical :: loz1st =.true.
45
46!----------------------------
47! Module variable definitions
48!----------------------------
49!CCPP: copy from GFS_driver.F90
50 real(kind=kind_phys), parameter :: con_24 = 24.0_kind_phys
51 real(kind=kind_phys), parameter :: con_hr = 3600.0_kind_phys
52 real(kind=kind_phys), parameter :: con_99 = 99.0_kind_phys
53 real(kind=kind_phys), parameter :: con_100 = 100.0_kind_phys
54 ! real(kind=kind_phys), parameter :: qmin = 1.0e-10
55
56
57!........................................!
58 end module radcons !
59!========================================!
This module contains some of the most frequently used math and physics constants for RRTMG.
Definition radcons.f90:7