mod_radcon.f90 Source File


This file depends on

sourcefile~~mod_radcon.f90~~EfferentGraph sourcefile~mod_radcon.f90 mod_radcon.f90 sourcefile~types.f90 types.f90 sourcefile~mod_radcon.f90->sourcefile~types.f90 sourcefile~params.f90 params.f90 sourcefile~mod_radcon.f90->sourcefile~params.f90 sourcefile~params.f90->sourcefile~types.f90

Files dependent on this one

sourcefile~~mod_radcon.f90~~AfferentGraph sourcefile~mod_radcon.f90 mod_radcon.f90 sourcefile~surface_fluxes.f90 surface_fluxes.f90 sourcefile~surface_fluxes.f90->sourcefile~mod_radcon.f90 sourcefile~sea_model.f90 sea_model.f90 sourcefile~sea_model.f90->sourcefile~mod_radcon.f90 sourcefile~shortwave_radiation.f90 shortwave_radiation.f90 sourcefile~shortwave_radiation.f90->sourcefile~mod_radcon.f90 sourcefile~longwave_radiation.f90 longwave_radiation.f90 sourcefile~longwave_radiation.f90->sourcefile~mod_radcon.f90 sourcefile~forcing.f90 forcing.f90 sourcefile~forcing.f90->sourcefile~mod_radcon.f90 sourcefile~forcing.f90->sourcefile~surface_fluxes.f90 sourcefile~forcing.f90->sourcefile~shortwave_radiation.f90 sourcefile~forcing.f90->sourcefile~longwave_radiation.f90 sourcefile~speedy.f90 speedy.f90 sourcefile~speedy.f90->sourcefile~forcing.f90 sourcefile~coupler.f90 coupler.f90 sourcefile~speedy.f90->sourcefile~coupler.f90 sourcefile~initialization.f90 initialization.f90 sourcefile~speedy.f90->sourcefile~initialization.f90 sourcefile~time_stepping.f90 time_stepping.f90 sourcefile~speedy.f90->sourcefile~time_stepping.f90 sourcefile~coupler.f90->sourcefile~sea_model.f90 sourcefile~initialization.f90->sourcefile~sea_model.f90 sourcefile~initialization.f90->sourcefile~forcing.f90 sourcefile~initialization.f90->sourcefile~coupler.f90 sourcefile~initialization.f90->sourcefile~time_stepping.f90 sourcefile~physics.f90 physics.f90 sourcefile~physics.f90->sourcefile~surface_fluxes.f90 sourcefile~physics.f90->sourcefile~sea_model.f90 sourcefile~physics.f90->sourcefile~shortwave_radiation.f90 sourcefile~physics.f90->sourcefile~longwave_radiation.f90 sourcefile~tendencies.f90 tendencies.f90 sourcefile~tendencies.f90->sourcefile~physics.f90 sourcefile~speedy_driver.f90 speedy_driver.f90 sourcefile~speedy_driver.f90->sourcefile~speedy.f90 sourcefile~speedy_driver.f90->sourcefile~initialization.f90 sourcefile~time_stepping.f90->sourcefile~tendencies.f90

Contents

Source Code


Source Code

!> Radiation and cloud constants
module mod_radcon
    use types, only : p
    use params

    implicit none

    private
    public albsea, albice, albsn, epslw, emisfc

    real(p), parameter :: albsea = 0.07 !! Albedo over sea
    real(p), parameter :: albice = 0.60 !! Albedo over ice  (for ice fraction = 1)
    real(p), parameter :: albsn = 0.60 !! Albedo over snow (for snow cover = 1)

    real(p), parameter :: epslw = 0.05 !! Fraction of blackbody spectrum absorbed/emitted by PBL only
    real(p), parameter :: emisfc = 0.98 !! Longwave surface emissivity

end module