LMDZ
yoerrta9.F90
Go to the documentation of this file.
1 MODULE yoerrta9
2 
3 USE parkind1 ,ONLY : jpim ,jprb
4 
5 IMPLICIT NONE
6 
7 SAVE
8 
9 ! -----------------------------------------------------------------
10 !* ** *YOERRTA9* - RRTM COEFFICIENTS FOR INTERVAL 9
11 ! BAND 9: 1180-1390 cm-1 (low - H2O,CH4; high - CH4)
12 ! -----------------------------------------------------------------
13 
14 INTEGER(KIND=JPIM), PARAMETER :: ng9 = 12
15 
16 REAL(KIND=JPRB) :: fracrefa(ng9,9)
17 
18 REAL(KIND=JPRB) , DIMENSION(NG9) :: fracrefb
19 REAL(KIND=JPRB) , DIMENSION(13) :: n2oref
20 REAL(KIND=JPRB) , DIMENSION(13) :: h2oref
21 REAL(KIND=JPRB) , DIMENSION(13) :: ch4ref
22 REAL(KIND=JPRB) , DIMENSION(11) :: etaref
23 ! 36 = 3*NG9
24 REAL(KIND=JPRB) , DIMENSION(36) :: absn2o
25 
26 REAL(KIND=JPRB) :: ka(11,5,13,ng9) ,absa(715,ng9)
27 REAL(KIND=JPRB) :: kb(5,13:59,ng9) ,absb(235,ng9)
28 REAL(KIND=JPRB) :: selfref(10,ng9)
29 REAL(KIND=JPRB) :: strrat
30 
31 equivalence(ka(1,1,1,1),absa(1,1)),(kb(1,13,1),absb(1,1))
32 
33 ! -----------------------------------------------------------------
34 ! * E.C.M.W.F. PHYSICS PACKAGE ** RRTM LW RADIATION **
35 
36 ! J.-J. MORCRETTE E.C.M.W.F. 98/07/14
37 
38 ! NAME TYPE PURPOSE
39 ! ---- : ---- : ---------------------------------------------------
40 ! ABSA : REAL
41 ! ABSB : REAL
42 ! ABSN2O : REAL
43 ! CH4REF : REAL
44 ! ETAREF : REAL
45 ! FRACREFA: REAL
46 ! FRACREFB: REAL
47 ! H2OREF : REAL
48 ! N2OREF : REAL
49 ! KA : REAL
50 ! KB : REAL
51 ! SELFREF : REAL
52 ! STRRAT : REAL
53 ! -----------------------------------------------------------------
54 END MODULE yoerrta9
real(kind=jprb), dimension(10, ng9) selfref
Definition: yoerrta9.F90:28
integer(kind=jpim), parameter ng9
Definition: yoerrta9.F90:14
real(kind=jprb), dimension(ng9) fracrefb
Definition: yoerrta9.F90:18
integer, parameter jprb
Definition: parkind1.F90:31
real(kind=jprb), dimension(ng9, 9) fracrefa
Definition: yoerrta9.F90:16
real(kind=jprb), dimension(13) ch4ref
Definition: yoerrta9.F90:21
real(kind=jprb), dimension(13) n2oref
Definition: yoerrta9.F90:19
real(kind=jprb), dimension(5, 13:59, ng9) kb
Definition: yoerrta9.F90:27
real(kind=jprb), dimension(36) absn2o
Definition: yoerrta9.F90:24
real(kind=jprb) strrat
Definition: yoerrta9.F90:29
integer, parameter jpim
Definition: parkind1.F90:13
real(kind=jprb), dimension(11) etaref
Definition: yoerrta9.F90:22
real(kind=jprb), dimension(11, 5, 13, ng9) ka
Definition: yoerrta9.F90:26
real(kind=jprb), dimension(235, ng9) absb
Definition: yoerrta9.F90:27
real(kind=jprb), dimension(13) h2oref
Definition: yoerrta9.F90:20
real(kind=jprb), dimension(715, ng9) absa
Definition: yoerrta9.F90:26