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