1 | module rrlw_kg02 |
---|
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 2 |
---|
10 | ! band 2: 250-500 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 :: no2 = 16 |
---|
28 | |
---|
29 | real(kind=rb) :: fracrefao(no2) , fracrefbo(no2) |
---|
30 | real(kind=rb) :: kao(5,13,no2) |
---|
31 | real(kind=rb) :: kbo(5,13:59,no2) |
---|
32 | real(kind=rb) :: selfrefo(10,no2) , forrefo(4,no2) |
---|
33 | |
---|
34 | !----------------------------------------------------------------- |
---|
35 | ! rrtmg_lw COMBINED abs. coefficients for interval 2 |
---|
36 | ! band 2: 250-500 cm-1 (low - h2o; high - h2o) |
---|
37 | ! |
---|
38 | ! Initial version: JJMorcrette, ECMWF, jul1998 |
---|
39 | ! Revised: MJIacono, AER, jun2006 |
---|
40 | ! Revised: MJIacono, AER, aug2008 |
---|
41 | !----------------------------------------------------------------- |
---|
42 | ! |
---|
43 | ! name type purpose |
---|
44 | ! ---- : ---- : --------------------------------------------- |
---|
45 | !fracrefa : real |
---|
46 | !fracrefb : real |
---|
47 | ! ka : real |
---|
48 | ! kb : real |
---|
49 | ! absa : real |
---|
50 | ! absb : real |
---|
51 | ! selfref : real |
---|
52 | ! forref : real |
---|
53 | ! |
---|
54 | ! refparam: real |
---|
55 | !----------------------------------------------------------------- |
---|
56 | |
---|
57 | integer(kind=im), parameter :: ng2 = 12 |
---|
58 | |
---|
59 | real(kind=rb) :: fracrefa(ng2) , fracrefb(ng2) |
---|
60 | real(kind=rb) :: ka(5,13,ng2) , absa(65,ng2) |
---|
61 | real(kind=rb) :: kb(5,13:59,ng2), absb(235,ng2) |
---|
62 | real(kind=rb) :: selfref(10,ng2), forref(4,ng2) |
---|
63 | |
---|
64 | real(kind=rb) :: refparam(13) |
---|
65 | |
---|
66 | equivalence (ka(1,1,1),absa(1,1)),(kb(1,13,1),absb(1,1)) |
---|
67 | |
---|
68 | end module rrlw_kg02 |
---|
69 | |
---|
70 | |
---|