1 | MODULE YOERRTA16 |
---|
2 | |
---|
3 | USE PARKIND1 ,ONLY : JPIM ,JPRB |
---|
4 | |
---|
5 | IMPLICIT NONE |
---|
6 | |
---|
7 | PUBLIC |
---|
8 | |
---|
9 | SAVE |
---|
10 | |
---|
11 | ! ----------------------------------------------------------------- |
---|
12 | !* ** *YOERRTA16* - RRTM COEFFICIENTS FOR INTERVAL 16 |
---|
13 | ! BAND 16: 2600-3000 cm-1 (low - H2O,CH4; high - nothing) |
---|
14 | ! ABozzo 201306 updated to rrtmg v4.85 |
---|
15 | ! band 16: 2600-3250 cm-1 (low key- h2o,ch4; high key - ch4) |
---|
16 | ! ----------------------------------------------------------------- |
---|
17 | |
---|
18 | INTEGER(KIND=JPIM), PARAMETER :: NG16 = 2 |
---|
19 | |
---|
20 | REAL(KIND=JPRB) :: FRACREFA(NG16,9) |
---|
21 | REAL(KIND=JPRB) , DIMENSION(NG16) :: FRACREFB |
---|
22 | |
---|
23 | REAL(KIND=JPRB) :: KA(9,5,13,NG16) ,ABSA(585,NG16) |
---|
24 | REAL(KIND=JPRB) :: KB(5,13:59,NG16), ABSB(235,NG16) |
---|
25 | REAL(KIND=JPRB) :: SELFREF(10,NG16) |
---|
26 | REAL(KIND=JPRB) :: FORREF(4,NG16) |
---|
27 | |
---|
28 | EQUIVALENCE (KA(1,1,1,1),ABSA(1,1)), (KB(1,13,1),ABSB(1,1)) |
---|
29 | |
---|
30 | ! ----------------------------------------------------------------- |
---|
31 | ! * E.C.M.W.F. PHYSICS PACKAGE ** RRTM LW RADIATION ** |
---|
32 | |
---|
33 | ! J.-J. MORCRETTE E.C.M.W.F. 98/07/14 |
---|
34 | |
---|
35 | ! NAME TYPE PURPOSE |
---|
36 | ! ---- : ---- : --------------------------------------------------- |
---|
37 | ! ABSA : REAL absorption coefficient of major absorber for M reference tropospheric |
---|
38 | ! pressures and N reference tropospheric temperatures |
---|
39 | ! FRACREFA: REAL distance from r and T reference tabulated points (troposphere) |
---|
40 | ! KA : REAL absorption coefficient of major absorber (equiv. to ABSA) |
---|
41 | ! SELFREF : REAL self broadening coefficient for water vapour |
---|
42 | ! STRRAT : REAL weighting factors for the transition between tropospheric |
---|
43 | ! and stratospheric computations |
---|
44 | ! ----------------------------------------------------------------- |
---|
45 | END MODULE YOERRTA16 |
---|