1 | module rrlw_kg04 |
---|
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 4 |
---|
10 | ! band 4: 630-700 cm-1 (low - h2o,co2; high - o3,co2) |
---|
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 :: no4 = 16 |
---|
28 | |
---|
29 | real(kind=rb) :: fracrefao(no4,9) ,fracrefbo(no4,5) |
---|
30 | real(kind=rb) :: kao(9,5,13,no4) |
---|
31 | real(kind=rb) :: kbo(5,5,13:59,no4) |
---|
32 | real(kind=rb) :: selfrefo(10,no4) ,forrefo(4,no4) |
---|
33 | |
---|
34 | !----------------------------------------------------------------- |
---|
35 | ! rrtmg_lw COMBINED abs. coefficients for interval 4 |
---|
36 | ! band 4: 630-700 cm-1 (low - h2o,co2; high - o3,co2) |
---|
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 | ! absa : real |
---|
46 | ! absb : real |
---|
47 | !fracrefa : real |
---|
48 | !fracrefb : real |
---|
49 | ! ka : real |
---|
50 | ! kb : real |
---|
51 | ! selfref : real |
---|
52 | ! forref : real |
---|
53 | !----------------------------------------------------------------- |
---|
54 | |
---|
55 | integer(kind=im), parameter :: ng4 = 14 |
---|
56 | |
---|
57 | real(kind=rb) :: fracrefa(ng4,9) ,fracrefb(ng4,5) |
---|
58 | real(kind=rb) :: ka(9,5,13,ng4) ,absa(585,ng4) |
---|
59 | real(kind=rb) :: kb(5,5,13:59,ng4),absb(1175,ng4) |
---|
60 | real(kind=rb) :: selfref(10,ng4) ,forref(4,ng4) |
---|
61 | |
---|
62 | equivalence (ka(1,1,1,1),absa(1,1)),(kb(1,1,13,1),absb(1,1)) |
---|
63 | |
---|
64 | end module rrlw_kg04 |
---|