1 | module rrlw_kg08 |
---|
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 8 |
---|
10 | ! band 8: 1080-1180 cm-1 (low (i.e.>~300mb) - h2o; high - o3) |
---|
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 | ! kao_mco2: real |
---|
24 | ! kbo_mco2: real |
---|
25 | ! kao_mn2o: real |
---|
26 | ! kbo_mn2o: real |
---|
27 | ! kao_mo3 : real |
---|
28 | ! selfrefo: real |
---|
29 | ! forrefo : real |
---|
30 | ! cfc12o : real |
---|
31 | !cfc22adjo: real |
---|
32 | !----------------------------------------------------------------- |
---|
33 | |
---|
34 | integer(kind=im), parameter :: no8 = 16 |
---|
35 | |
---|
36 | real(kind=rb) , dimension(no8) :: fracrefao |
---|
37 | real(kind=rb) , dimension(no8) :: fracrefbo |
---|
38 | real(kind=rb) , dimension(no8) :: cfc12o |
---|
39 | real(kind=rb) , dimension(no8) :: cfc22adjo |
---|
40 | |
---|
41 | real(kind=rb) :: kao(5,13,no8) |
---|
42 | real(kind=rb) :: kao_mco2(19,no8) |
---|
43 | real(kind=rb) :: kao_mn2o(19,no8) |
---|
44 | real(kind=rb) :: kao_mo3(19,no8) |
---|
45 | real(kind=rb) :: kbo(5,13:59,no8) |
---|
46 | real(kind=rb) :: kbo_mco2(19,no8) |
---|
47 | real(kind=rb) :: kbo_mn2o(19,no8) |
---|
48 | real(kind=rb) :: selfrefo(10,no8) |
---|
49 | real(kind=rb) :: forrefo(4,no8) |
---|
50 | |
---|
51 | !----------------------------------------------------------------- |
---|
52 | ! rrtmg_lw COMBINED abs. coefficients for interval 8 |
---|
53 | ! band 8: 1080-1180 cm-1 (low (i.e.>~300mb) - h2o; high - o3) |
---|
54 | ! |
---|
55 | ! Initial version: JJMorcrette, ECMWF, jul1998 |
---|
56 | ! Revised: MJIacono, AER, jun2006 |
---|
57 | ! Revised: MJIacono, AER, aug2008 |
---|
58 | !----------------------------------------------------------------- |
---|
59 | ! |
---|
60 | ! name type purpose |
---|
61 | ! ---- : ---- : --------------------------------------------- |
---|
62 | !fracrefa : real |
---|
63 | !fracrefb : real |
---|
64 | ! ka : real |
---|
65 | ! kb : real |
---|
66 | ! ka_mco2 : real |
---|
67 | ! kb_mco2 : real |
---|
68 | ! ka_mn2o : real |
---|
69 | ! kb_mn2o : real |
---|
70 | ! ka_mo3 : real |
---|
71 | ! selfref : real |
---|
72 | ! forref : real |
---|
73 | ! cfc12 : real |
---|
74 | ! cfc22adj: real |
---|
75 | ! |
---|
76 | ! absa : real |
---|
77 | ! absb : real |
---|
78 | !----------------------------------------------------------------- |
---|
79 | |
---|
80 | integer(kind=im), parameter :: ng8 = 8 |
---|
81 | |
---|
82 | real(kind=rb) , dimension(ng8) :: fracrefa |
---|
83 | real(kind=rb) , dimension(ng8) :: fracrefb |
---|
84 | real(kind=rb) , dimension(ng8) :: cfc12 |
---|
85 | real(kind=rb) , dimension(ng8) :: cfc22adj |
---|
86 | |
---|
87 | real(kind=rb) :: ka(5,13,ng8) ,absa(65,ng8) |
---|
88 | real(kind=rb) :: kb(5,13:59,ng8) ,absb(235,ng8) |
---|
89 | real(kind=rb) :: ka_mco2(19,ng8) |
---|
90 | real(kind=rb) :: ka_mn2o(19,ng8) |
---|
91 | real(kind=rb) :: ka_mo3(19,ng8) |
---|
92 | real(kind=rb) :: kb_mco2(19,ng8) |
---|
93 | real(kind=rb) :: kb_mn2o(19,ng8) |
---|
94 | real(kind=rb) :: selfref(10,ng8) |
---|
95 | real(kind=rb) :: forref(4,ng8) |
---|
96 | |
---|
97 | equivalence (ka(1,1,1),absa(1,1)),(kb(1,13,1),absb(1,1)) |
---|
98 | |
---|
99 | end module rrlw_kg08 |
---|
100 | |
---|