1 | module rrsw_kg26 |
---|
2 | |
---|
3 | use parkind ,only : im => kind_im, rb => kind_rb |
---|
4 | use parrrsw, only : ng26 |
---|
5 | |
---|
6 | implicit none |
---|
7 | save |
---|
8 | |
---|
9 | !----------------------------------------------------------------- |
---|
10 | ! rrtmg_sw ORIGINAL abs. coefficients for interval 26 |
---|
11 | ! band 26: 22650-29000 cm-1 (low - nothing; 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 | !sfluxrefo: real |
---|
21 | ! raylo : real |
---|
22 | !----------------------------------------------------------------- |
---|
23 | |
---|
24 | integer(kind=im), parameter :: no26 = 16 |
---|
25 | |
---|
26 | real(kind=rb) :: sfluxrefo(no26) |
---|
27 | real(kind=rb) :: raylo(no26) |
---|
28 | |
---|
29 | !----------------------------------------------------------------- |
---|
30 | ! rrtmg_sw COMBINED abs. coefficients for interval 26 |
---|
31 | ! band 26: 22650-29000 cm-1 (low - nothing; high - nothing) |
---|
32 | ! |
---|
33 | ! Initial version: JJMorcrette, ECMWF, oct1999 |
---|
34 | ! Revised: MJIacono, AER, jul2006 |
---|
35 | ! Revised: MJIacono, AER, aug2008 |
---|
36 | !----------------------------------------------------------------- |
---|
37 | ! |
---|
38 | ! name type purpose |
---|
39 | ! ---- : ---- : --------------------------------------------- |
---|
40 | ! sfluxref: real |
---|
41 | ! rayl : real |
---|
42 | !----------------------------------------------------------------- |
---|
43 | |
---|
44 | real(kind=rb) :: sfluxref(ng26) |
---|
45 | real(kind=rb) :: rayl(ng26) |
---|
46 | |
---|
47 | end module rrsw_kg26 |
---|
48 | |
---|