yoerrto3.F90 Source File


This file depends on

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

Files dependent on this one

sourcefile~~yoerrto3.f90~~AfferentGraph sourcefile~yoerrto3.f90 yoerrto3.F90 sourcefile~rrtm_kgb3.f90 rrtm_kgb3.F90 sourcefile~rrtm_kgb3.f90->sourcefile~yoerrto3.f90 sourcefile~rrtm_kgb3.f90~4 rrtm_kgb3.F90 sourcefile~rrtm_kgb3.f90~4->sourcefile~yoerrto3.f90 sourcefile~rrtm_cmbgb3.f90 rrtm_cmbgb3.F90 sourcefile~rrtm_cmbgb3.f90->sourcefile~yoerrto3.f90 sourcefile~rrtm_cmbgb3.f90~2 rrtm_cmbgb3.F90 sourcefile~rrtm_cmbgb3.f90~2->sourcefile~yoerrto3.f90 sourcefile~rrtm_kgb3.f90~2 rrtm_kgb3.F90 sourcefile~rrtm_kgb3.f90~2->sourcefile~yoerrto3.f90 sourcefile~rrtm_cmbgb3.f90~3 rrtm_cmbgb3.F90 sourcefile~rrtm_cmbgb3.f90~3->sourcefile~yoerrto3.f90 sourcefile~rrtm_kgb3.f90~3 rrtm_kgb3.F90 sourcefile~rrtm_kgb3.f90~3->sourcefile~yoerrto3.f90 sourcefile~rrtm_cmbgb3.f90~4 rrtm_cmbgb3.F90 sourcefile~rrtm_cmbgb3.f90~4->sourcefile~yoerrto3.f90

Contents

Source Code


Source Code

MODULE YOERRTO3

USE PARKIND1  ,ONLY : JPIM     ,JPRB,JPRD

IMPLICIT NONE

PUBLIC

SAVE

!     -----------------------------------------------------------------
!*    ** *YOERRTO3* - RRTM ORIGINAL COEFFICIENTS FOR INTERVAL 3
!     BAND 3:  500-630 cm-1 (low - H2O,CO2; high - H2O,CO2)
!      ABozzo 200130517 updated to rrtmg_lw_v4.85:
!     band 3:  500-630 cm-1 (low key - h2o,co2; low minor - n2o)
!                           (high key - h2o,co2; high minor - n2o)
!     -----------------------------------------------------------------

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

REAL(KIND=JPRB) :: FRACREFAO(NO3,9) ,FRACREFBO(NO3,5)

REAL(KIND=JPRB) :: KAO_MN2O(9,19,NO3), KBO_MN2O(5,19,NO3)
REAL(KIND=JPRB) :: KAO(9,5,13,NO3)
REAL(KIND=JPRB) :: KBO(5,5,13:59,NO3)
REAL(KIND=JPRD) :: KAO_D(9,5,13,NO3)
REAL(KIND=JPRD) :: KBO_D(5,5,13:59,NO3)
REAL(KIND=JPRB) :: SELFREFO(10,NO3),FORREFO(4,NO3)


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

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

!  NAME     TYPE     PURPOSE
!  ----   : ----   : ---------------------------------------------------
! ABSN2OAO: REAL
! ABSN2OBO: REAL
!FRACREFAO: REAL    
!FRACREFBO: REAL
! KAO     : REAL     
! KBO     : REAL     
! SELFREFO: REAL     
!     -----------------------------------------------------------------
END MODULE YOERRTO3