yoerdu.F90 Source File


This file depends on

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

Files dependent on this one

sourcefile~~yoerdu.f90~~AfferentGraph sourcefile~yoerdu.f90 yoerdu.F90 sourcefile~swu.f90 swu.F90 sourcefile~swu.f90->sourcefile~yoerdu.f90 sourcefile~srtm_reftra.f90~2 srtm_reftra.F90 sourcefile~srtm_reftra.f90~2->sourcefile~yoerdu.f90 sourcefile~radlsw.f90~2 radlsw.F90 sourcefile~radlsw.f90~2->sourcefile~yoerdu.f90 sourcefile~swde.f90~2 swde.F90 sourcefile~swde.f90~2->sourcefile~yoerdu.f90 sourcefile~liquid_effective_radius.f90 liquid_effective_radius.F90 sourcefile~liquid_effective_radius.f90->sourcefile~yoerdu.f90 sourcefile~lwbv.f90 lwbv.F90 sourcefile~lwbv.f90->sourcefile~yoerdu.f90 sourcefile~srtm_reftra.f90 srtm_reftra.F90 sourcefile~srtm_reftra.f90->sourcefile~yoerdu.f90 sourcefile~suecrad.f90~2 suecrad.F90 sourcefile~suecrad.f90~2->sourcefile~yoerdu.f90 sourcefile~swclr.f90 swclr.F90 sourcefile~swclr.f90->sourcefile~yoerdu.f90 sourcefile~lwu.f90~2 lwu.F90 sourcefile~lwu.f90~2->sourcefile~yoerdu.f90 sourcefile~swclr.f90~2 swclr.F90 sourcefile~swclr.f90~2->sourcefile~yoerdu.f90 sourcefile~recmwf_aero.f90 recmwf_aero.F90 sourcefile~recmwf_aero.f90->sourcefile~yoerdu.f90 sourcefile~lwbv.f90~2 lwbv.F90 sourcefile~lwbv.f90~2->sourcefile~yoerdu.f90 sourcefile~radlsw.f90 radlsw.F90 sourcefile~radlsw.f90->sourcefile~yoerdu.f90 sourcefile~swde.f90 swde.F90 sourcefile~swde.f90->sourcefile~yoerdu.f90 sourcefile~recmwf_aero.f90~2 recmwf_aero.F90 sourcefile~recmwf_aero.f90~2->sourcefile~yoerdu.f90 sourcefile~lwu.f90 lwu.F90 sourcefile~lwu.f90->sourcefile~yoerdu.f90 sourcefile~suecrad.f90 suecrad.F90 sourcefile~suecrad.f90->sourcefile~yoerdu.f90 sourcefile~swu.f90~2 swu.F90 sourcefile~swu.f90~2->sourcefile~yoerdu.f90 sourcefile~swni.f90~2 swni.F90 sourcefile~swni.f90~2->sourcefile~yoerdu.f90 sourcefile~swni.f90 swni.F90 sourcefile~swni.f90->sourcefile~yoerdu.f90

Contents

Source Code


Source Code

! (C) Copyright 1989- ECMWF.
! (C) Copyright 1989- Meteo-France.
!
! This software is licensed under the terms of the Apache Licence Version 2.0
! which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
!
! In applying this licence, ECMWF does not waive the privileges and immunities
! granted to it by virtue of its status as an intergovernmental organisation
! nor does it submit to any jurisdiction.

MODULE YOERDU

USE PARKIND1  ,ONLY : JPIM     ,JPRB

IMPLICIT NONE

SAVE

!     ------------------------------------------------------------------
!*    ** *YOERDU* - CONTROL, PARAMETERS AND SECURITY IN RADIATION
!     ------------------------------------------------------------------

INTEGER(KIND=JPIM) :: NUAER
INTEGER(KIND=JPIM) :: NTRAER
INTEGER(KIND=JPIM) :: NIMP
INTEGER(KIND=JPIM) :: NOUT

REAL(KIND=JPRB) :: R10E
REAL(KIND=JPRB) :: REPLOG = 1.0E-12_JPRB
REAL(KIND=JPRB) :: REPSC
REAL(KIND=JPRB) :: REPSCA
REAL(KIND=JPRB) :: REPSCO
REAL(KIND=JPRB) :: REPSCQ
REAL(KIND=JPRB) :: REPSCT
REAL(KIND=JPRB) :: REPSCW = 1.0E-12_JPRB
REAL(KIND=JPRB) :: DIFF

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

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

!  NAME     TYPE     PURPOSE
!  ----  :  ----   : ---------------------------------------------------
! NUAER  : INTEGER   NUMBER OF ABSORBER AMOUNTS        W OR W/O AEROSOLS
! NTRAER : INTEGER   NUMBER OF TRANSMISSION FUNCTIONS  W OR W/O AEROSOLS
! NIMP   : INTEGER   INDEX FOR EXTRA PRINTS WITHIN RADIATION CODE
! NOUT   : INTEGER   UNIT NUMBER FOR THE EXTRA PRINTS
! RCDAY  : REAL
! CCO2   : REAL      CONVERSION COEFFICIENT FOR CO2 IN S.W. CODE
! CH2O   : REAL      CONVERSION COEFFICIENT FOR H2O IN S.W. CODE
! R10E   : REAL      DECIMAL/NATURAL LOG.FACTOR
! DIFF   : REAL      DIFFUSIVITY FACTOR
!-SECURITY THRESHOLDS
! REPLOG : REAL      SEC. EPSILON FOR ABS.AMOUNT IN LAPLACE TRANSFORM
! REPSC  : REAL      SEC. EPSILON FOR CLOUD COVER
! REPSCO : REAL      SEC. EPSILON FOR OZONE AMOUNT
! REPSCQ : REAL      SEC. EPSILON FOR WATER VAPOR
! REPSCT : REAL      SEC. EPSILON FOR SHORTWAVE OPTICAL THICKNESS
! REPSCW : REAL      SEC. EPSILON FOR CLOUD LIQUID WATER PATH

!     -----------------------------------------------------------------
END MODULE YOERDU