[1585] | 1 | module rrlw_kg16 |
---|
| 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 16 |
---|
| 10 | ! band 16: 2600-3000 cm-1 (low - h2o,ch4; 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 | ! kbo : real |
---|
| 22 | ! selfrefo: real |
---|
| 23 | ! forrefo : real |
---|
| 24 | !----------------------------------------------------------------- |
---|
| 25 | |
---|
| 26 | integer(kind=im), parameter :: no16 = 16 |
---|
| 27 | |
---|
| 28 | real(kind=rb) , dimension(no16) :: fracrefbo |
---|
| 29 | |
---|
| 30 | real(kind=rb) :: fracrefao(no16,9) |
---|
| 31 | real(kind=rb) :: kao(9,5,13,no16) |
---|
| 32 | real(kind=rb) :: kbo(5,13:59,no16) |
---|
| 33 | real(kind=rb) :: selfrefo(10,no16) |
---|
| 34 | real(kind=rb) :: forrefo(4,no16) |
---|
| 35 | |
---|
| 36 | !----------------------------------------------------------------- |
---|
| 37 | ! rrtmg_lw COMBINED abs. coefficients for interval 16 |
---|
| 38 | ! band 16: 2600-3000 cm-1 (low - h2o,ch4; high - nothing) |
---|
| 39 | ! |
---|
| 40 | ! Initial version: JJMorcrette, ECMWF, jul1998 |
---|
| 41 | ! Revised: MJIacono, AER, jun2006 |
---|
| 42 | ! Revised: MJIacono, AER, aug2008 |
---|
| 43 | !----------------------------------------------------------------- |
---|
| 44 | ! |
---|
| 45 | ! name type purpose |
---|
| 46 | ! ---- : ---- : --------------------------------------------- |
---|
| 47 | !fracrefa : real |
---|
| 48 | ! ka : real |
---|
| 49 | ! kb : real |
---|
| 50 | ! selfref : real |
---|
| 51 | ! forref : real |
---|
| 52 | ! |
---|
| 53 | ! absa : real |
---|
| 54 | ! absb : real |
---|
| 55 | !----------------------------------------------------------------- |
---|
| 56 | |
---|
| 57 | integer(kind=im), parameter :: ng16 = 2 |
---|
| 58 | |
---|
| 59 | real(kind=rb) , dimension(ng16) :: fracrefb |
---|
| 60 | |
---|
| 61 | real(kind=rb) :: fracrefa(ng16,9) |
---|
| 62 | real(kind=rb) :: ka(9,5,13,ng16) ,absa(585,ng16) |
---|
| 63 | real(kind=rb) :: kb(5,13:59,ng16), absb(235,ng16) |
---|
| 64 | real(kind=rb) :: selfref(10,ng16) |
---|
| 65 | real(kind=rb) :: forref(4,ng16) |
---|
| 66 | |
---|
| 67 | equivalence (ka(1,1,1,1),absa(1,1)), (kb(1,13,1),absb(1,1)) |
---|
| 68 | |
---|
| 69 | end module rrlw_kg16 |
---|
| 70 | |
---|