yoerrta13.F90 Source File


This file depends on

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

Files dependent on this one

sourcefile~~yoerrta13.f90~~AfferentGraph sourcefile~yoerrta13.f90 yoerrta13.F90 sourcefile~rrtm_taumol13.f90~2 rrtm_taumol13.F90 sourcefile~rrtm_taumol13.f90~2->sourcefile~yoerrta13.f90 sourcefile~rrtm_kgb13.f90~4 rrtm_kgb13.F90 sourcefile~rrtm_kgb13.f90~4->sourcefile~yoerrta13.f90 sourcefile~rrtm_taumol13.f90~3 rrtm_taumol13.F90 sourcefile~rrtm_taumol13.f90~3->sourcefile~yoerrta13.f90 sourcefile~rrtm_taumol13.f90~4 rrtm_taumol13.F90 sourcefile~rrtm_taumol13.f90~4->sourcefile~yoerrta13.f90 sourcefile~rrtm_cmbgb13.f90~4 rrtm_cmbgb13.F90 sourcefile~rrtm_cmbgb13.f90~4->sourcefile~yoerrta13.f90 sourcefile~rrtm_cmbgb13.f90 rrtm_cmbgb13.F90 sourcefile~rrtm_cmbgb13.f90->sourcefile~yoerrta13.f90 sourcefile~rrtm_cmbgb13.f90~2 rrtm_cmbgb13.F90 sourcefile~rrtm_cmbgb13.f90~2->sourcefile~yoerrta13.f90 sourcefile~rrtm_cmbgb13.f90~3 rrtm_cmbgb13.F90 sourcefile~rrtm_cmbgb13.f90~3->sourcefile~yoerrta13.f90 sourcefile~rrtm_taumol13.f90 rrtm_taumol13.F90 sourcefile~rrtm_taumol13.f90->sourcefile~yoerrta13.f90 sourcefile~rrtm_kgb13.f90~3 rrtm_kgb13.F90 sourcefile~rrtm_kgb13.f90~3->sourcefile~yoerrta13.f90

Contents

Source Code


Source Code

MODULE YOERRTA13

USE PARKIND1  ,ONLY : JPIM     ,JPRB

IMPLICIT NONE

PUBLIC

SAVE

!     -----------------------------------------------------------------
!*    ** *YOERRTA13* - RRTM COEFFICIENTS FOR INTERVAL 13
!     BAND 13:  2080-2250 cm-1 (low - H2O,N2O; high - nothing)
!     ABozzo 201306 updated to rrtmg v4.85
!     -----------------------------------------------------------------

INTEGER(KIND=JPIM), PARAMETER :: NG13 = 4

REAL(KIND=JPRB) :: FRACREFA(NG13,9)
REAL(KIND=JPRB) , DIMENSION(NG13) :: FRACREFB

REAL(KIND=JPRB) :: KA(9,5,13,NG13) ,ABSA(585,NG13)
REAL(KIND=JPRB) :: SELFREF(10,NG13)
REAL(KIND=JPRB) :: FORREF(4,NG13)
REAL(KIND=JPRB) :: KA_MCO2(9,19,NG13)
REAL(KIND=JPRB) :: KA_MCO(9,19,NG13)
REAL(KIND=JPRB) :: KB_MO3(19,NG13)

EQUIVALENCE (KA(1,1,1,1),ABSA(1,1))

!     -----------------------------------------------------------------
!        * E.C.M.W.F. PHYSICS PACKAGE ** RRTM LW RADIATION **

!     J.-J. MORCRETTE       E.C.M.W.F.      98/07/14

!  NAME     TYPE     PURPOSE
!  ----   : ----   : ---------------------------------------------------
! ABSA    : REAL     absorption coefficient of major absorber for M reference tropospheric 
!                    pressures and N reference tropospheric temperatures 
! FRACREFA: REAL     distance from r and T reference tabulated points (troposphere)
! KA      : REAL     absorption coefficient of major absorber (equiv. to ABSA)   
! SELFREF : REAL     self broadening coefficient for water vapour
! STRRAT  : REAL     weighting factors for the transition between tropospheric 
!                    and stratospheric computations
!     -----------------------------------------------------------------
END MODULE YOERRTA13