LMDZ
yoerrta2.F90
Go to the documentation of this file.
1 MODULE yoerrta2
2 
3 USE parkind1 ,ONLY : jpim ,jprb
4 
5 IMPLICIT NONE
6 
7 SAVE
8 
9 ! -----------------------------------------------------------------
10 !* ** *YOERRTA2* - RRTM COEFFICIENTS FOR INTERVAL 2
11 ! BAND 2: 250-500 cm-1 (low - H2O; high - H2O)
12 ! -----------------------------------------------------------------
13 
14 INTEGER(KIND=JPIM), PARAMETER :: ng2 = 14
15 
16 ! The ith set of reference fractions are from the ith reference
17 ! pressure level.
18 REAL(KIND=JPRB) :: fracrefa(ng2,13), fracrefb(ng2), refparam(13)
19 REAL(KIND=JPRB) :: ka(5,13,ng2) , absa(65,ng2)
20 REAL(KIND=JPRB) :: kb(5,13:59,ng2), absb(235,ng2)
21 REAL(KIND=JPRB) :: selfref(10,ng2), forref(ng2)
22 
23 equivalence(ka(1,1,1),absa(1,1)),(kb(1,13,1),absb(1,1))
24 
25 ! -----------------------------------------------------------------
26 ! * E.C.M.W.F. PHYSICS PACKAGE ** RRTM LW RADIATION **
27 
28 ! J.-J. MORCRETTE E.C.M.W.F. 98/07/14
29 
30 ! NAME TYPE PURPOSE
31 ! ---- : ---- : ---------------------------------------------------
32 ! ABSA : REAL
33 ! ABSB : REAL
34 ! FRACREFA: REAL
35 ! FRACREFB: REAL
36 ! REFPARAM: REAL
37 ! KA : REAL
38 ! KB : REAL
39 ! SELFREF : REAL
40 ! FORREF : REAL
41 ! -----------------------------------------------------------------
42 END MODULE yoerrta2
43 
real(kind=jprb), dimension(13) refparam
Definition: yoerrta2.F90:18
real(kind=jprb), dimension(5, 13, ng2) ka
Definition: yoerrta2.F90:19
real(kind=jprb), dimension(ng2) forref
Definition: yoerrta2.F90:21
real(kind=jprb), dimension(235, ng2) absb
Definition: yoerrta2.F90:20
integer, parameter jprb
Definition: parkind1.F90:31
real(kind=jprb), dimension(65, ng2) absa
Definition: yoerrta2.F90:19
real(kind=jprb), dimension(5, 13:59, ng2) kb
Definition: yoerrta2.F90:20
real(kind=jprb), dimension(ng2, 13) fracrefa
Definition: yoerrta2.F90:18
real(kind=jprb), dimension(10, ng2) selfref
Definition: yoerrta2.F90:21
real(kind=jprb), dimension(ng2) fracrefb
Definition: yoerrta2.F90:18
integer(kind=jpim), parameter ng2
Definition: yoerrta2.F90:14
integer, parameter jpim
Definition: parkind1.F90:13