LMDZ
yoerrto2.F90
Go to the documentation of this file.
1 MODULE yoerrto2
2 
3 USE parkind1 ,ONLY : jpim ,jprb
4 
5 IMPLICIT NONE
6 
7 SAVE
8 
9 ! -----------------------------------------------------------------
10 !* ** *YOERRTO2* - RRTM ORIGINAL COEFFICIENTS FOR INTERVAL 2
11 ! BAND 2: 250-500 cm-1 (low - H2O; high - H2O)
12 ! -----------------------------------------------------------------
13 
14 INTEGER(KIND=JPIM), PARAMETER :: no2 = 16
15 
16 ! The ith set of reference fractions are from the ith reference
17 ! pressure level.
18 REAL(KIND=JPRB) :: fracrefao(no2,13), fracrefbo(no2)
19 REAL(KIND=JPRB) :: kao(5,13,no2)
20 REAL(KIND=JPRB) :: kbo(5,13:59,no2)
21 REAL(KIND=JPRB) :: selfrefo(10,no2) , forrefo(no2)
22 
23 ! -----------------------------------------------------------------
24 ! * E.C.M.W.F. PHYSICS PACKAGE ** RRTM LW RADIATION **
25 
26 ! J.-J. MORCRETTE E.C.M.W.F. 98/07/14
27 
28 ! NAME TYPE PURPOSE
29 ! ---- : ---- : ---------------------------------------------------
30 !FRACREFAO: REAL
31 !FRACREFBO: REAL
32 ! KAO : REAL
33 ! KBO : REAL
34 ! SELFREFO: REAL
35 ! FORREFO : REAL
36 ! -----------------------------------------------------------------
37 !$OMP THREADPRIVATE(forrefo,fracrefao,fracrefbo,kao,kbo,selfrefo)
38 END MODULE yoerrto2
real(kind=jprb), dimension(no2) forrefo
Definition: yoerrto2.F90:21
integer(kind=jpim), parameter no2
Definition: yoerrto2.F90:14
integer, parameter jprb
Definition: parkind1.F90:31
real(kind=jprb), dimension(10, no2) selfrefo
Definition: yoerrto2.F90:21
real(kind=jprb), dimension(5, 13, no2) kao
Definition: yoerrto2.F90:19
real(kind=jprb), dimension(no2) fracrefbo
Definition: yoerrto2.F90:18
integer, parameter jpim
Definition: parkind1.F90:13
real(kind=jprb), dimension(no2, 13) fracrefao
Definition: yoerrto2.F90:18
real(kind=jprb), dimension(5, 13:59, no2) kbo
Definition: yoerrto2.F90:20