module rrsw_kg19 use parkind ,only : im => kind_im, rb => kind_rb use parrrsw, only : ng19 implicit none save !----------------------------------------------------------------- ! rrtmg_sw ORIGINAL abs. coefficients for interval 19 ! band 19: 4650-5150 cm-1 (low - h2o,co2; high - co2) ! ! Initial version: JJMorcrette, ECMWF, oct1999 ! Revised: MJIacono, AER, jul2006 ! Revised: MJIacono, AER, aug2008 !----------------------------------------------------------------- ! ! name type purpose ! ---- : ---- : --------------------------------------------- ! kao : real ! kbo : real ! selfrefo: real ! forrefo : real !sfluxrefo: real !----------------------------------------------------------------- integer(kind=im), parameter :: no19 = 16 real(kind=rb) :: kao(9,5,13,no19) real(kind=rb) :: kbo(5,13:59,no19) real(kind=rb) :: selfrefo(10,no19), forrefo(3,no19) real(kind=rb) :: sfluxrefo(no19,9) real(kind=rb) :: rayl !----------------------------------------------------------------- ! rrtmg_sw COMBINED abs. coefficients for interval 19 ! band 19: 4650-5150 cm-1 (low - h2o,co2; high - co2) ! ! Initial version: JJMorcrette, ECMWF, oct1999 ! Revised: MJIacono, AER, jul2006 ! Revised: MJIacono, AER, aug2008 !----------------------------------------------------------------- ! ! name type purpose ! ---- : ---- : --------------------------------------------- ! ka : real ! kb : real ! absa : real ! absb : real ! selfref : real ! forref : real ! sfluxref: real !----------------------------------------------------------------- real(kind=rb) :: ka(9,5,13,ng19), absa(585,ng19) real(kind=rb) :: kb(5,13:59,ng19), absb(235,ng19) real(kind=rb) :: selfref(10,ng19), forref(3,ng19) real(kind=rb) :: sfluxref(ng19,9) equivalence (ka(1,1,1,1),absa(1,1)), (kb(1,13,1),absb(1,1)) end module rrsw_kg19