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