yoesrta17.F90 Source File


This file depends on

sourcefile~~yoesrta17.f90~~EfferentGraph sourcefile~yoesrta17.f90 yoesrta17.F90 sourcefile~parkind1.f90 parkind1.F90 sourcefile~yoesrta17.f90->sourcefile~parkind1.f90

Files dependent on this one

sourcefile~~yoesrta17.f90~~AfferentGraph sourcefile~yoesrta17.f90 yoesrta17.F90 sourcefile~srtm_taumol17.f90 srtm_taumol17.F90 sourcefile~srtm_taumol17.f90->sourcefile~yoesrta17.f90 sourcefile~srtm_kgb17.f90~3 srtm_kgb17.F90 sourcefile~srtm_kgb17.f90~3->sourcefile~yoesrta17.f90 sourcefile~srtm_taumol17.f90~2 srtm_taumol17.F90 sourcefile~srtm_taumol17.f90~2->sourcefile~yoesrta17.f90 sourcefile~srtm_kgb17.f90~2 srtm_kgb17.F90 sourcefile~srtm_kgb17.f90~2->sourcefile~yoesrta17.f90 sourcefile~srtm_taumol17.f90~4 srtm_taumol17.F90 sourcefile~srtm_taumol17.f90~4->sourcefile~yoesrta17.f90 sourcefile~srtm_cmbgb17.f90~4 srtm_cmbgb17.F90 sourcefile~srtm_cmbgb17.f90~4->sourcefile~yoesrta17.f90 sourcefile~modify_wv_continuum.f90 modify_wv_continuum.F90 sourcefile~modify_wv_continuum.f90->sourcefile~yoesrta17.f90 sourcefile~srtm_cmbgb17.f90~2 srtm_cmbgb17.F90 sourcefile~srtm_cmbgb17.f90~2->sourcefile~yoesrta17.f90 sourcefile~srtm_kgb17.f90 srtm_kgb17.F90 sourcefile~srtm_kgb17.f90->sourcefile~yoesrta17.f90 sourcefile~srtm_cmbgb17.f90 srtm_cmbgb17.F90 sourcefile~srtm_cmbgb17.f90->sourcefile~yoesrta17.f90 sourcefile~srtm_taumol17.f90~3 srtm_taumol17.F90 sourcefile~srtm_taumol17.f90~3->sourcefile~yoesrta17.f90 sourcefile~srtm_kgb17.f90~4 srtm_kgb17.F90 sourcefile~srtm_kgb17.f90~4->sourcefile~yoesrta17.f90 sourcefile~srtm_cmbgb17.f90~3 srtm_cmbgb17.F90 sourcefile~srtm_cmbgb17.f90~3->sourcefile~yoesrta17.f90

Contents

Source Code


Source Code

MODULE YOESRTA17

USE PARKIND1  ,ONLY : JPIM     ,JPRB,JPRD

IMPLICIT NONE

PUBLIC

SAVE

!     -----------------------------------------------------------------
!*    ** *YOESRTA17* - SRTM COEFFICIENTS FOR INTERVAL 17
!     BAND 17:  3250-4000 cm-1 (low - H2O,CO2; high - H2O,CO2)
!     -----------------------------------------------------------------

INTEGER(KIND=JPIM), PARAMETER ::  JPG = 16, NG17 = 16, NGS16=16

REAL(KIND=JPRB) :: KA(9,5,13,JPG)  
REAL(KIND=JPRB) :: KB(5,5,13:59,JPG)
REAL(KIND=JPRD) :: KA_D(9,5,13,JPG)  
REAL(KIND=JPRD) :: KB_D(5,5,13:59,JPG)
REAL(KIND=JPRB) :: SELFREF(10,JPG)  ,FORREF(4,JPG)
REAL(KIND=JPRB) :: SFLUXREF(JPG,5)
REAL(KIND=JPRB) :: RAYL              ,STRRAT
INTEGER(KIND=JPIM) :: LAYREFFR

REAL(KIND=JPRB) :: KAC(9,5,13,NG17),ABSA(585,NG17)
REAL(KIND=JPRB) :: KBC(5,5,13:59,NG17),ABSB(1175,NG17)
REAL(KIND=JPRB) :: SELFREFC(10,NG17),FORREFC(4,NG17)
REAL(KIND=JPRB) :: SFLUXREFC(NG17,5)

!EQUIVALENCE (KA(1,1,1,1),ABSA(1,1)), (KB(1,1,13,1),ABSB(1,1))
EQUIVALENCE (KAC(1,1,1,1),ABSA(1,1)), (KBC(1,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 YOESRTA17