Skip to content
Snippets Groups Projects
sfx_phys_const.f90 414 B
Newer Older
Evgeny Mortikov's avatar
Evgeny Mortikov committed
module sfx_phys_const
数学の武士's avatar
数学の武士 committed
    !< @brief general physics constants
    !< @details  all in SI units
Evgeny Mortikov's avatar
Evgeny Mortikov committed
    implicit none
    public

数学の武士's avatar
数学の武士 committed
    real, parameter :: g = 9.81                 !< acceleration due to gravity [m/s^2]
数学の武士's avatar
数学の武士 committed
    real, parameter :: nu_air = 0.000015e0      !< kinematic viscosity of air [m^2/s]
    real, parameter :: Pr_m = 0.71              !< molecular Prandtl number (air) [n/d]
Evgeny Mortikov's avatar
Evgeny Mortikov committed

end module sfx_phys_const