1 | module rrlw_kg15 |
---|
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 15 |
---|
10 | ! band 15: 2380-2600 cm-1 (low - n2o,co2; high - nothing) |
---|
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 | ! kao : real |
---|
21 | ! kao_mn2 : real |
---|
22 | ! selfrefo: real |
---|
23 | ! forrefo : real |
---|
24 | !----------------------------------------------------------------- |
---|
25 | |
---|
26 | integer(kind=im), parameter :: no15 = 16 |
---|
27 | |
---|
28 | real(kind=rb) :: fracrefao(no15,9) |
---|
29 | real(kind=rb) :: kao(9,5,13,no15) |
---|
30 | real(kind=rb) :: kao_mn2(9,19,no15) |
---|
31 | real(kind=rb) :: selfrefo(10,no15) |
---|
32 | real(kind=rb) :: forrefo(4,no15) |
---|
33 | |
---|
34 | |
---|
35 | !----------------------------------------------------------------- |
---|
36 | ! rrtmg_lw COMBINED abs. coefficients for interval 15 |
---|
37 | ! band 15: 2380-2600 cm-1 (low - n2o,co2; high - nothing) |
---|
38 | ! |
---|
39 | ! Initial version: JJMorcrette, ECMWF, jul1998 |
---|
40 | ! Revised: MJIacono, AER, jun2006 |
---|
41 | ! Revised: MJIacono, AER, aug2008 |
---|
42 | !----------------------------------------------------------------- |
---|
43 | ! |
---|
44 | ! name type purpose |
---|
45 | ! ---- : ---- : --------------------------------------------- |
---|
46 | !fracrefa : real |
---|
47 | ! ka : real |
---|
48 | ! ka_mn2 : real |
---|
49 | ! selfref : real |
---|
50 | ! forref : real |
---|
51 | ! |
---|
52 | ! absa : real |
---|
53 | !----------------------------------------------------------------- |
---|
54 | |
---|
55 | integer(kind=im), parameter :: ng15 = 2 |
---|
56 | |
---|
57 | real(kind=rb) :: fracrefa(ng15,9) |
---|
58 | real(kind=rb) :: ka(9,5,13,ng15) ,absa(585,ng15) |
---|
59 | real(kind=rb) :: ka_mn2(9,19,ng15) |
---|
60 | real(kind=rb) :: selfref(10,ng15) |
---|
61 | real(kind=rb) :: forref(4,ng15) |
---|
62 | |
---|
63 | equivalence (ka(1,1,1,1),absa(1,1)) |
---|
64 | |
---|
65 | end module rrlw_kg15 |
---|