yoesrta16.F90 Source File


This file depends on

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

Files dependent on this one

sourcefile~~yoesrta16.f90~~AfferentGraph sourcefile~yoesrta16.f90 yoesrta16.F90 sourcefile~srtm_cmbgb16.f90 srtm_cmbgb16.F90 sourcefile~srtm_cmbgb16.f90->sourcefile~yoesrta16.f90 sourcefile~srtm_kgb16.f90~2 srtm_kgb16.F90 sourcefile~srtm_kgb16.f90~2->sourcefile~yoesrta16.f90 sourcefile~srtm_cmbgb16.f90~4 srtm_cmbgb16.F90 sourcefile~srtm_cmbgb16.f90~4->sourcefile~yoesrta16.f90 sourcefile~srtm_taumol16.f90~3 srtm_taumol16.F90 sourcefile~srtm_taumol16.f90~3->sourcefile~yoesrta16.f90 sourcefile~srtm_cmbgb16.f90~3 srtm_cmbgb16.F90 sourcefile~srtm_cmbgb16.f90~3->sourcefile~yoesrta16.f90 sourcefile~srtm_cmbgb16.f90~2 srtm_cmbgb16.F90 sourcefile~srtm_cmbgb16.f90~2->sourcefile~yoesrta16.f90 sourcefile~srtm_taumol16.f90~2 srtm_taumol16.F90 sourcefile~srtm_taumol16.f90~2->sourcefile~yoesrta16.f90 sourcefile~srtm_kgb16.f90~4 srtm_kgb16.F90 sourcefile~srtm_kgb16.f90~4->sourcefile~yoesrta16.f90 sourcefile~modify_wv_continuum.f90 modify_wv_continuum.F90 sourcefile~modify_wv_continuum.f90->sourcefile~yoesrta16.f90 sourcefile~srtm_kgb16.f90 srtm_kgb16.F90 sourcefile~srtm_kgb16.f90->sourcefile~yoesrta16.f90 sourcefile~srtm_taumol16.f90 srtm_taumol16.F90 sourcefile~srtm_taumol16.f90->sourcefile~yoesrta16.f90 sourcefile~srtm_taumol16.f90~4 srtm_taumol16.F90 sourcefile~srtm_taumol16.f90~4->sourcefile~yoesrta16.f90 sourcefile~srtm_kgb16.f90~3 srtm_kgb16.F90 sourcefile~srtm_kgb16.f90~3->sourcefile~yoesrta16.f90

Contents

Source Code


Source Code

MODULE YOESRTA16

USE PARKIND1  ,ONLY : JPIM     ,JPRB,JPRD

IMPLICIT NONE

PUBLIC

SAVE

!     -----------------------------------------------------------------
!*    ** *YOESRTA16* - SRTM COEFFICIENTS FOR INTERVAL 16
!     BAND 16:  2600-3250 cm-1 (low - H2O,CH4; high - CH4)
!     -----------------------------------------------------------------

INTEGER(KIND=JPIM), PARAMETER :: JPG=16, NG16 = 16, NGS15 = 0

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)
REAL(KIND=JPRB) :: RAYL            ,STRRAT1
INTEGER(KIND=JPIM) :: LAYREFFR

REAL(KIND=JPRB) :: KAC(9,5,13,NG16),ABSA(585,NG16)
REAL(KIND=JPRB) :: KBC(5,13:59,NG16),ABSB(235,NG16)
REAL(KIND=JPRB) :: SELFREFC(10,NG16),FORREFC(3,NG16)
REAL(KIND=JPRB) :: SFLUXREFC(NG16)

!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
! STRRAT1 : 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 YOESRTA16