[1585] | 1 | module rrsw_kg27 |
---|
| 2 | |
---|
| 3 | use parkind ,only : im => kind_im, rb => kind_rb |
---|
| 4 | use parrrsw, only : ng27 |
---|
| 5 | |
---|
| 6 | implicit none |
---|
| 7 | save |
---|
| 8 | |
---|
| 9 | !----------------------------------------------------------------- |
---|
| 10 | ! rrtmg_sw ORIGINAL abs. coefficients for interval 27 |
---|
| 11 | ! band 27: 29000-38000 cm-1 (low - o3; high - o3) |
---|
| 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 | !sfluxrefo: real |
---|
| 23 | ! raylo : real |
---|
| 24 | !----------------------------------------------------------------- |
---|
| 25 | |
---|
| 26 | integer(kind=im), parameter :: no27 = 16 |
---|
| 27 | |
---|
| 28 | real(kind=rb) :: kao(5,13,no27) |
---|
| 29 | real(kind=rb) :: kbo(5,13:59,no27) |
---|
| 30 | real(kind=rb) :: sfluxrefo(no27) |
---|
| 31 | real(kind=rb) :: raylo(no27) |
---|
| 32 | |
---|
| 33 | !----------------------------------------------------------------- |
---|
| 34 | ! rrtmg_sw COMBINED abs. coefficients for interval 27 |
---|
| 35 | ! band 27: 29000-38000 cm-1 (low - o3; high - o3) |
---|
| 36 | ! |
---|
| 37 | ! Initial version: JJMorcrette, ECMWF, oct1999 |
---|
| 38 | ! Revised: MJIacono, AER, jul2006 |
---|
| 39 | ! Revised: MJIacono, AER, aug2008 |
---|
| 40 | !----------------------------------------------------------------- |
---|
| 41 | ! |
---|
| 42 | ! name type purpose |
---|
| 43 | ! ---- : ---- : --------------------------------------------- |
---|
| 44 | ! ka : real |
---|
| 45 | ! kb : real |
---|
| 46 | ! absa : real |
---|
| 47 | ! absb : real |
---|
| 48 | ! sfluxref: real |
---|
| 49 | ! rayl : real |
---|
| 50 | !----------------------------------------------------------------- |
---|
| 51 | |
---|
| 52 | real(kind=rb) :: ka(5,13,ng27), absa(65,ng27) |
---|
| 53 | real(kind=rb) :: kb(5,13:59,ng27), absb(235,ng27) |
---|
| 54 | real(kind=rb) :: sfluxref(ng27) |
---|
| 55 | real(kind=rb) :: rayl(ng27) |
---|
| 56 | |
---|
| 57 | equivalence (ka(1,1,1),absa(1,1)), (kb(1,13,1),absb(1,1)) |
---|
| 58 | |
---|
| 59 | end module rrsw_kg27 |
---|
| 60 | |
---|