1 | module rrlw_kg10 |
---|
2 | |
---|
3 | use parkind ,only : im => kind_im, rb => kind_rb |
---|
4 | |
---|
5 | implicit none |
---|
6 | save |
---|
7 | |
---|
8 | !----------------------------------------------------------------- |
---|
9 | ! rrtmg_lw ORIGINAL abs. coefficients for interval 10 |
---|
10 | ! band 10: 1390-1480 cm-1 (low - h2o; high - h2o) |
---|
11 | ! |
---|
12 | ! Initial version: JJMorcrette, ECMWF, jul1998 |
---|
13 | ! Revised: MJIacono, AER, jun2006 |
---|
14 | ! Revised: MJIacono, AER, aug2008 |
---|
15 | !----------------------------------------------------------------- |
---|
16 | ! |
---|
17 | ! name type purpose |
---|
18 | ! ---- : ---- : --------------------------------------------- |
---|
19 | !fracrefao: real |
---|
20 | !fracrefbo: real |
---|
21 | ! kao : real |
---|
22 | ! kbo : real |
---|
23 | ! selfrefo: real |
---|
24 | ! forrefo : real |
---|
25 | !----------------------------------------------------------------- |
---|
26 | |
---|
27 | integer(kind=im), parameter :: no10 = 16 |
---|
28 | |
---|
29 | real(kind=rb) , dimension(no10) :: fracrefao |
---|
30 | real(kind=rb) , dimension(no10) :: fracrefbo |
---|
31 | |
---|
32 | real(kind=rb) :: kao(5,13,no10) |
---|
33 | real(kind=rb) :: kbo(5,13:59,no10) |
---|
34 | real(kind=rb) :: selfrefo(10,no10) |
---|
35 | real(kind=rb) :: forrefo(4,no10) |
---|
36 | |
---|
37 | !----------------------------------------------------------------- |
---|
38 | ! rrtmg_lw COMBINED abs. coefficients for interval 10 |
---|
39 | ! band 10: 1390-1480 cm-1 (low - h2o; high - h2o) |
---|
40 | ! |
---|
41 | ! Initial version: JJMorcrette, ECMWF, jul1998 |
---|
42 | ! Revised: MJIacono, AER, jun2006 |
---|
43 | ! Revised: MJIacono, AER, aug2008 |
---|
44 | !----------------------------------------------------------------- |
---|
45 | ! |
---|
46 | ! name type purpose |
---|
47 | ! ---- : ---- : --------------------------------------------- |
---|
48 | !fracrefao: real |
---|
49 | !fracrefbo: real |
---|
50 | ! kao : real |
---|
51 | ! kbo : real |
---|
52 | ! selfref : real |
---|
53 | ! forref : real |
---|
54 | ! |
---|
55 | ! absa : real |
---|
56 | ! absb : real |
---|
57 | !----------------------------------------------------------------- |
---|
58 | |
---|
59 | integer(kind=im), parameter :: ng10 = 6 |
---|
60 | |
---|
61 | real(kind=rb) , dimension(ng10) :: fracrefa |
---|
62 | real(kind=rb) , dimension(ng10) :: fracrefb |
---|
63 | |
---|
64 | real(kind=rb) :: ka(5,13,ng10) , absa(65,ng10) |
---|
65 | real(kind=rb) :: kb(5,13:59,ng10), absb(235,ng10) |
---|
66 | real(kind=rb) :: selfref(10,ng10) |
---|
67 | real(kind=rb) :: forref(4,ng10) |
---|
68 | |
---|
69 | equivalence (ka(1,1,1),absa(1,1)),(kb(1,13,1),absb(1,1)) |
---|
70 | |
---|
71 | end module rrlw_kg10 |
---|