LMDZ
yoerrto11.F90
Go to the documentation of this file.
1 MODULE yoerrto11
2 
3 USE parkind1 ,ONLY : jpim ,jprb
4 
5 IMPLICIT NONE
6 
7 SAVE
8 
9 ! -----------------------------------------------------------------
10 !* ** *YOERRTO11* - RRTM ORIGINAL COEFFICIENTS FOR INTERVAL 11
11 ! BAND 11: 1480-1800 cm-1 (low - H2O; high - H2O)
12 ! -----------------------------------------------------------------
13 
14 INTEGER(KIND=JPIM), PARAMETER :: no11 = 16
15 
16 REAL(KIND=JPRB) , DIMENSION(NO11) :: fracrefao
17 REAL(KIND=JPRB) , DIMENSION(NO11) :: fracrefbo
18 
19 REAL(KIND=JPRB) :: kao(5,13,no11)
20 REAL(KIND=JPRB) :: kbo(5,13:59,no11)
21 REAL(KIND=JPRB) :: selfrefo(10,no11)
22 
23 ! -----------------------------------------------------------------
24 ! * E.C.M.W.F. PHYSICS PACKAGE *
25 
26 ! J.-J. MORCRETTE E.C.M.W.F. 98/07/14
27 
28 ! NAME TYPE PURPOSE
29 ! ---- : ---- : ---------------------------------------------------
30 ! FRACREFA: REAL
31 ! FRACREFB: REAL
32 ! KA : REAL
33 ! KB : REAL
34 ! SELFREF : REAL
35 ! -----------------------------------------------------------------
36 
37 !$OMP THREADPRIVATE(fracrefao,fracrefbo,kao,kbo,selfrefo)
38 END MODULE yoerrto11
real(kind=jprb), dimension(5, 13, no11) kao
Definition: yoerrto11.F90:19
real(kind=jprb), dimension(no11) fracrefbo
Definition: yoerrto11.F90:17
integer, parameter jprb
Definition: parkind1.F90:31
real(kind=jprb), dimension(no11) fracrefao
Definition: yoerrto11.F90:16
real(kind=jprb), dimension(10, no11) selfrefo
Definition: yoerrto11.F90:21
integer(kind=jpim), parameter no11
Definition: yoerrto11.F90:14
integer, parameter jpim
Definition: parkind1.F90:13
real(kind=jprb), dimension(5, 13:59, no11) kbo
Definition: yoerrto11.F90:20