module rrlw_kg12 use parkind ,only : im => kind_im, rb => kind_rb implicit none save !----------------------------------------------------------------- ! rrtmg_lw ORIGINAL abs. coefficients for interval 12 ! band 12: 1800-2080 cm-1 (low - h2o,co2; high - nothing) ! ! Initial version: JJMorcrette, ECMWF, jul1998 ! Revised: MJIacono, AER, jun2006 ! Revised: MJIacono, AER, aug2008 !----------------------------------------------------------------- ! ! name type purpose ! ---- : ---- : --------------------------------------------- !fracrefao: real ! kao : real ! selfrefo: real ! forrefo : real !----------------------------------------------------------------- integer(kind=im), parameter :: no12 = 16 real(kind=rb) :: fracrefao(no12,9) real(kind=rb) :: kao(9,5,13,no12) real(kind=rb) :: selfrefo(10,no12) real(kind=rb) :: forrefo(4,no12) !----------------------------------------------------------------- ! rrtmg_lw COMBINED abs. coefficients for interval 12 ! band 12: 1800-2080 cm-1 (low - h2o,co2; high - nothing) ! ! Initial version: JJMorcrette, ECMWF, jul1998 ! Revised: MJIacono, AER, jun2006 ! Revised: MJIacono, AER, aug2008 !----------------------------------------------------------------- ! ! name type purpose ! ---- : ---- : --------------------------------------------- !fracrefa : real ! ka : real ! selfref : real ! forref : real ! ! absa : real !----------------------------------------------------------------- integer(kind=im), parameter :: ng12 = 8 real(kind=rb) :: fracrefa(ng12,9) real(kind=rb) :: ka(9,5,13,ng12) ,absa(585,ng12) real(kind=rb) :: selfref(10,ng12) real(kind=rb) :: forref(4,ng12) equivalence (ka(1,1,1,1),absa(1,1)) end module rrlw_kg12