MODULE YOESRTA22 USE PARKIND1 ,ONLY : JPIM ,JPRB,JPRD IMPLICIT NONE PUBLIC SAVE ! ----------------------------------------------------------------- !* ** *YOESRTA22* - SRTM COEFFICIENTS FOR INTERVAL 22 ! BAND 22: 7700-8050 cm-1 (low - H2O,O2; high - O2) ! ----------------------------------------------------------------- INTEGER(KIND=JPIM), PARAMETER :: JPG = 16, NG22 = 16 REAL(KIND=JPRB) :: KA(9,5,13,JPG) REAL(KIND=JPRB) :: KB(5,13:59,JPG) REAL(KIND=JPRD) :: KA_D(9,5,13,JPG) REAL(KIND=JPRD) :: KB_D(5,13:59,JPG) REAL(KIND=JPRB) :: SELFREF(10,JPG),FORREF(3,JPG) REAL(KIND=JPRB) :: SFLUXREF(JPG,9) REAL(KIND=JPRB) :: RAYL ,STRRAT INTEGER(KIND=JPIM) :: LAYREFFR REAL(KIND=JPRB) :: KAC(9,5,13,NG22) ,ABSA(585,NG22) REAL(KIND=JPRB) :: KBC(5,13:59,NG22),ABSB(235,NG22) REAL(KIND=JPRB) :: SELFREFC(10,NG22),FORREFC(3,NG22) REAL(KIND=JPRB) :: SFLUXREFC(NG22,9) !EQUIVALENCE (KA(1,1,1,1),ABSA(1,1)), (KB(1,13,1),ABSB(1,1)) EQUIVALENCE (KAC(1,1,1,1),ABSA(1,1)), (KBC(1,13,1),ABSB(1,1)) ! ----------------------------------------------------------------- ! * E.C.M.W.F. PHYSICS PACKAGE ** RRTM SW RADIATION ** ! J.-J. MORCRETTE E.C.M.W.F. 02/10/29 ! M. J. IACONO AER 12/09/03 ! NAME TYPE PURPOSE ! ---- : ---- : --------------------------------------------------- ! KA : REAL absorption coefficient of major absorber ! KB : REAL absorption coefficient of secondary absorber ! SELFREF : REAL self brodening coefficient for water vapour ! FORREF : REAL foreign broadening coefficient for water vapour ! SFLUXREF: REAL Incident solar radiation in the spectral interval ! RAYL : REAL Rayleigh scattering parameter ! STRRAT : REAL weighting factor for the transition between tropospheric ! and stratospheric computations ! LAYREFFR: INTEGER reference level for the transition ! KAC : REAL Reduced g-point array for KA ! KBC : REAL Reduced g-point array for KB ! SELFREFC: REAL Reduced g-point array for SELFREF ! FORREFC : REAL Reduced g-point array for FORREF !SFLUXREFC: REAL Reduced g-point array for SFLUXREF ! ----------------------------------------------------------------- END MODULE YOESRTA22