1 | module rrsw_kg23 |
---|
2 | |
---|
3 | use parkind ,only : im => kind_im, rb => kind_rb |
---|
4 | use parrrsw, only : ng23 |
---|
5 | |
---|
6 | implicit none |
---|
7 | save |
---|
8 | |
---|
9 | !----------------------------------------------------------------- |
---|
10 | ! rrtmg_sw ORIGINAL abs. coefficients for interval 23 |
---|
11 | ! band 23: 8050-12850 cm-1 (low - h2o; high - nothing) |
---|
12 | ! |
---|
13 | ! Initial version: JJMorcrette, ECMWF, oct1999 |
---|
14 | ! Revised: MJIacono, AER, jul2006 |
---|
15 | ! Revised: MJIacono, AER, aug2008 |
---|
16 | !----------------------------------------------------------------- |
---|
17 | ! |
---|
18 | ! name type purpose |
---|
19 | ! ---- : ---- : --------------------------------------------- |
---|
20 | ! kao : real |
---|
21 | ! kbo : real |
---|
22 | ! selfrefo: real |
---|
23 | ! forrefo : real |
---|
24 | !sfluxrefo: real |
---|
25 | !----------------------------------------------------------------- |
---|
26 | |
---|
27 | integer(kind=im), parameter :: no23 = 16 |
---|
28 | |
---|
29 | real(kind=rb) :: kao(5,13,no23) |
---|
30 | real(kind=rb) :: selfrefo(10,no23), forrefo(3,no23) |
---|
31 | real(kind=rb) :: sfluxrefo(no23) |
---|
32 | real(kind=rb) :: raylo(no23) |
---|
33 | |
---|
34 | !----------------------------------------------------------------- |
---|
35 | ! rrtmg_sw COMBINED abs. coefficients for interval 23 |
---|
36 | ! band 23: 8050-12850 cm-1 (low - h2o; high - nothing) |
---|
37 | ! |
---|
38 | ! Initial version: JJMorcrette, ECMWF, oct1999 |
---|
39 | ! Revised: MJIacono, AER, jul2006 |
---|
40 | ! Revised: MJIacono, AER, aug2008 |
---|
41 | !----------------------------------------------------------------- |
---|
42 | ! |
---|
43 | ! name type purpose |
---|
44 | ! ---- : ---- : --------------------------------------------- |
---|
45 | ! ka : real |
---|
46 | ! kb : real |
---|
47 | ! absa : real |
---|
48 | ! absb : real |
---|
49 | ! selfref : real |
---|
50 | ! forref : real |
---|
51 | ! sfluxref: real |
---|
52 | !----------------------------------------------------------------- |
---|
53 | |
---|
54 | real(kind=rb) :: ka(5,13,ng23), absa(65,ng23) |
---|
55 | real(kind=rb) :: selfref(10,ng23), forref(3,ng23) |
---|
56 | real(kind=rb) :: sfluxref(ng23), rayl(ng23) |
---|
57 | |
---|
58 | equivalence (ka(1,1,1),absa(1,1)) |
---|
59 | |
---|
60 | end module rrsw_kg23 |
---|
61 | |
---|