[1585] | 1 | module rrlw_kg06 |
---|
| 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 6 |
---|
| 10 | ! band 6: 820-980 cm-1 (low - h2o; 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 | ! kao_mco2: real |
---|
| 22 | ! selfrefo: real |
---|
| 23 | ! forrefo : real |
---|
| 24 | !cfc11adjo: real |
---|
| 25 | ! cfc12o : real |
---|
| 26 | !----------------------------------------------------------------- |
---|
| 27 | |
---|
| 28 | integer(kind=im), parameter :: no6 = 16 |
---|
| 29 | |
---|
| 30 | real(kind=rb) , dimension(no6) :: fracrefao |
---|
| 31 | real(kind=rb) :: kao(5,13,no6) |
---|
| 32 | real(kind=rb) :: kao_mco2(19,no6) |
---|
| 33 | real(kind=rb) :: selfrefo(10,no6) |
---|
| 34 | real(kind=rb) :: forrefo(4,no6) |
---|
| 35 | |
---|
| 36 | real(kind=rb) , dimension(no6) :: cfc11adjo |
---|
| 37 | real(kind=rb) , dimension(no6) :: cfc12o |
---|
| 38 | |
---|
| 39 | !----------------------------------------------------------------- |
---|
| 40 | ! rrtmg_lw COMBINED abs. coefficients for interval 6 |
---|
| 41 | ! band 6: 820-980 cm-1 (low - h2o; high - nothing) |
---|
| 42 | ! |
---|
| 43 | ! Initial version: JJMorcrette, ECMWF, jul1998 |
---|
| 44 | ! Revised: MJIacono, AER, jun2006 |
---|
| 45 | ! Revised: MJIacono, AER, aug2008 |
---|
| 46 | !----------------------------------------------------------------- |
---|
| 47 | ! |
---|
| 48 | ! name type purpose |
---|
| 49 | ! ---- : ---- : --------------------------------------------- |
---|
| 50 | !fracrefa : real |
---|
| 51 | ! ka : real |
---|
| 52 | ! ka_mco2 : real |
---|
| 53 | ! selfref : real |
---|
| 54 | ! forref : real |
---|
| 55 | !cfc11adj : real |
---|
| 56 | ! cfc12 : real |
---|
| 57 | ! |
---|
| 58 | ! absa : real |
---|
| 59 | !----------------------------------------------------------------- |
---|
| 60 | |
---|
| 61 | integer(kind=im), parameter :: ng6 = 8 |
---|
| 62 | |
---|
| 63 | real(kind=rb) , dimension(ng6) :: fracrefa |
---|
| 64 | real(kind=rb) :: ka(5,13,ng6),absa(65,ng6) |
---|
| 65 | real(kind=rb) :: ka_mco2(19,ng6) |
---|
| 66 | real(kind=rb) :: selfref(10,ng6) |
---|
| 67 | real(kind=rb) :: forref(4,ng6) |
---|
| 68 | |
---|
| 69 | real(kind=rb) , dimension(ng6) :: cfc11adj |
---|
| 70 | real(kind=rb) , dimension(ng6) :: cfc12 |
---|
| 71 | |
---|
| 72 | equivalence (ka(1,1,1),absa(1,1)) |
---|
| 73 | |
---|
| 74 | end module rrlw_kg06 |
---|