module rrlw_kg14 use parkind ,only : im => kind_im, rb => kind_rb implicit none save !----------------------------------------------------------------- ! rrtmg_lw ORIGINAL abs. coefficients for interval 14 ! band 14: 2250-2380 cm-1 (low - co2; high - co2) ! ! Initial version: JJMorcrette, ECMWF, jul1998 ! Revised: MJIacono, AER, jun2006 ! Revised: MJIacono, AER, aug2008 !----------------------------------------------------------------- ! ! name type purpose ! ---- : ---- : --------------------------------------------- !fracrefao: real !fracrefbo: real ! kao : real ! kbo : real ! selfrefo: real ! forrefo : real !----------------------------------------------------------------- integer(kind=im), parameter :: no14 = 16 real(kind=rb) , dimension(no14) :: fracrefao real(kind=rb) , dimension(no14) :: fracrefbo real(kind=rb) :: kao(5,13,no14) real(kind=rb) :: kbo(5,13:59,no14) real(kind=rb) :: selfrefo(10,no14) real(kind=rb) :: forrefo(4,no14) !----------------------------------------------------------------- ! rrtmg_lw COMBINED abs. coefficients for interval 14 ! band 14: 2250-2380 cm-1 (low - co2; high - co2) ! ! Initial version: JJMorcrette, ECMWF, jul1998 ! Revised: MJIacono, AER, jun2006 ! Revised: MJIacono, AER, aug2008 !----------------------------------------------------------------- ! ! name type purpose ! ---- : ---- : --------------------------------------------- !fracrefa : real !fracrefb : real ! ka : real ! kb : real ! selfref : real ! forref : real ! ! absa : real ! absb : real !----------------------------------------------------------------- integer(kind=im), parameter :: ng14 = 2 real(kind=rb) , dimension(ng14) :: fracrefa real(kind=rb) , dimension(ng14) :: fracrefb real(kind=rb) :: ka(5,13,ng14) ,absa(65,ng14) real(kind=rb) :: kb(5,13:59,ng14),absb(235,ng14) real(kind=rb) :: selfref(10,ng14) real(kind=rb) :: forref(4,ng14) equivalence (ka(1,1,1),absa(1,1)), (kb(1,13,1),absb(1,1)) end module rrlw_kg14