yoerrto8.F90 Source File


This file depends on

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

Files dependent on this one

sourcefile~~yoerrto8.f90~~AfferentGraph sourcefile~yoerrto8.f90 yoerrto8.F90 sourcefile~rrtm_cmbgb8.f90~2 rrtm_cmbgb8.F90 sourcefile~rrtm_cmbgb8.f90~2->sourcefile~yoerrto8.f90 sourcefile~rrtm_cmbgb8.f90~4 rrtm_cmbgb8.F90 sourcefile~rrtm_cmbgb8.f90~4->sourcefile~yoerrto8.f90 sourcefile~rrtm_cmbgb8.f90~3 rrtm_cmbgb8.F90 sourcefile~rrtm_cmbgb8.f90~3->sourcefile~yoerrto8.f90 sourcefile~rrtm_kgb8.f90~2 rrtm_kgb8.F90 sourcefile~rrtm_kgb8.f90~2->sourcefile~yoerrto8.f90 sourcefile~rrtm_cmbgb8.f90 rrtm_cmbgb8.F90 sourcefile~rrtm_cmbgb8.f90->sourcefile~yoerrto8.f90 sourcefile~rrtm_kgb8.f90~4 rrtm_kgb8.F90 sourcefile~rrtm_kgb8.f90~4->sourcefile~yoerrto8.f90 sourcefile~rrtm_kgb8.f90 rrtm_kgb8.F90 sourcefile~rrtm_kgb8.f90->sourcefile~yoerrto8.f90 sourcefile~rrtm_kgb8.f90~3 rrtm_kgb8.F90 sourcefile~rrtm_kgb8.f90~3->sourcefile~yoerrto8.f90

Contents

Source Code


Source Code

MODULE YOERRTO8

USE PARKIND1  ,ONLY : JPIM     ,JPRB,JPRD

IMPLICIT NONE

PUBLIC

SAVE

!     -----------------------------------------------------------------
!*    ** *YOERRTO8* - RRTM ORIGINAL COEFFICIENTS FOR INTERVAL 8
!     BAND 8:  1080-1180 cm-1 (low (i.e.>~300mb) - H2O; high - O3)
!     ABozzo 201306 updated to rrtmg v4.85
!     -----------------------------------------------------------------

INTEGER(KIND=JPIM), PARAMETER :: NO8  = 16

REAL(KIND=JPRB) , DIMENSION(NO8) :: FRACREFAO
REAL(KIND=JPRB) , DIMENSION(NO8) :: FRACREFBO
REAL(KIND=JPRB) , DIMENSION(NO8) :: CFC12O
REAL(KIND=JPRB) , DIMENSION(NO8) :: CFC22ADJO

REAL(KIND=JPRB) :: KAO(5,13,NO8)
REAL(KIND=JPRB) :: KBO(5,13:59,NO8)
REAL(KIND=JPRD) :: KAO_D(5,13,NO8)
REAL(KIND=JPRD) :: KBO_D(5,13:59,NO8)
REAL(KIND=JPRB) :: SELFREFO(10,NO8)
REAL(KIND=JPRB) :: KAO_MCO2(19,NO8)
REAL(KIND=JPRB) :: KAO_MN2O(19,NO8)
REAL(KIND=JPRB) :: KAO_MO3(19,NO8)
REAL(KIND=JPRB) :: KBO_MCO2(19,NO8)
REAL(KIND=JPRB) :: KBO_MN2O(19,NO8)
REAL(KIND=JPRB) :: FORREFO(4,NO8)



!     -----------------------------------------------------------------
!        * E.C.M.W.F. PHYSICS PACKAGE *

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

!  NAME     TYPE     PURPOSE
!  ----   : ----   : ---------------------------------------------------
! ABSCO2A : REAL     
! ABSCO2B : REAL     
! ABSN2OA : REAL     
! ABSN2OB : REAL 
! CFC12   : REAL     
! CFC22ADJ: REAL     
! FRACREFA: REAL    
! FRACREFB: REAL    
! KA      : REAL     
! KB      : REAL     
! SELFREF : REAL     
!     -----------------------------------------------------------------
END MODULE YOERRTO8