FE-Project
|
module FElib / Fluid dyn solver / Atmosphere / Common More...
Data Types | |
interface | hydrostaic_build_rho_xyz |
Functions/Subroutines | |
subroutine, public | hydrostatic_calc_basicstate_constt (dens_hyd, pres_hyd, temp0, pres_sfc, x, y, z, lcmesh3d, elem) |
Calculate density and pressure in hydrostatic balance with a constant temperature. | |
subroutine, public | hydrostatic_calc_basicstate_constpt (dens_hyd, pres_hyd, pottemp0, pres_sfc, x, y, z, lcmesh3d, elem) |
Calculate density and pressure in hydrostatic balance with a constant potential temperature. | |
subroutine, public | hydrostatic_calc_basicstate_constbvfreq (dens_hyd, pres_hyd, bruntvaisalafreq, pottemp0, pres_sfc, x, y, z, lcmesh3d, elem) |
Calculate density and pressure in hydrostatic balance with a constant Brunt–Väisälä frequency. | |
subroutine, public | hydrostatic_calc_basicstate_consttlaps (dens_hyd, pres_hyd, tlaps, temp0, pres_sfc, x, y, z, lcmesh3d, elem) |
Calculate density and pressure in hydrostatic balance with a constant lapse rate of temperature. | |
subroutine, public | hydrostatic_calc_basicstate_constptlaps (dens_hyd, pres_hyd, ptlaps, pottemp0, pres_sfc, x, y, z, lcmesh3d, elem) |
Calculate density and pressure in hydrostatic balance with a constant lapse rate of potential temperature. | |
module FElib / Fluid dyn solver / Atmosphere / Common
subroutine, public scale_atm_dyn_dgm_hydrostatic::hydrostatic_calc_basicstate_constt | ( | real(rp), dimension(elem%np,lcmesh3d%nea), intent(out) | dens_hyd, |
real(rp), dimension(elem%np,lcmesh3d%nea), intent(out) | pres_hyd, | ||
real(rp), intent(in) | temp0, | ||
real(rp), intent(in) | pres_sfc, | ||
real(rp), dimension(elem%np,lcmesh3d%ne), intent(in) | x, | ||
real(rp), dimension(elem%np,lcmesh3d%ne), intent(in) | y, | ||
real(rp), dimension(elem%np,lcmesh3d%ne), intent(in) | z, | ||
class(localmesh3d), intent(in) | lcmesh3d, | ||
class(elementbase3d), intent(in) | elem ) |
Calculate density and pressure in hydrostatic balance with a constant temperature.
DENS_hyd | hydrostatic density [kg/m3] |
PRES_hyd | hydrostatic pressure [Pa] |
Temp0 | Temperature of isothermal atmosphere [K] |
PRES_sfc | Surface pressure [Pa] |
x | x-coordinate |
y | y-coordinate |
z | z-coordinate [m] |
lcmesh3D | A object to manage a local 3D mesh |
elem | A object to manage a 3D finite element |
Definition at line 86 of file scale_atm_dyn_dgm_hydrostatic.F90.
subroutine, public scale_atm_dyn_dgm_hydrostatic::hydrostatic_calc_basicstate_constpt | ( | real(rp), dimension(elem%np,lcmesh3d%nea), intent(out) | dens_hyd, |
real(rp), dimension(elem%np,lcmesh3d%nea), intent(out) | pres_hyd, | ||
real(rp), intent(in) | pottemp0, | ||
real(rp), intent(in) | pres_sfc, | ||
real(rp), dimension(elem%np,lcmesh3d%ne), intent(in) | x, | ||
real(rp), dimension(elem%np,lcmesh3d%ne), intent(in) | y, | ||
real(rp), dimension(elem%np,lcmesh3d%ne), intent(in) | z, | ||
class(localmesh3d), intent(in) | lcmesh3d, | ||
class(elementbase3d), intent(in) | elem ) |
Calculate density and pressure in hydrostatic balance with a constant potential temperature.
DENS_hyd | hydrostatic density [kg/m3] |
PRES_hyd | hydrostatic pressure [Pa] |
PotTemp0 | Constant potential temperature of atmosphere [K] |
PRES_sfc | Surface pressure [Pa] |
x | x-coordinate |
y | y-coordinate |
z | z-coordinate [m] |
lcmesh3D | A object to manage a local 3D mesh |
elem | A object to manage a 3D finite element |
Definition at line 129 of file scale_atm_dyn_dgm_hydrostatic.F90.
subroutine, public scale_atm_dyn_dgm_hydrostatic::hydrostatic_calc_basicstate_constbvfreq | ( | real(rp), dimension(elem%np,lcmesh3d%nea), intent(out) | dens_hyd, |
real(rp), dimension(elem%np,lcmesh3d%nea), intent(out) | pres_hyd, | ||
real(rp), intent(in) | bruntvaisalafreq, | ||
real(rp), intent(in) | pottemp0, | ||
real(rp), intent(in) | pres_sfc, | ||
real(rp), dimension(elem%np,lcmesh3d%ne), intent(in) | x, | ||
real(rp), dimension(elem%np,lcmesh3d%ne), intent(in) | y, | ||
real(rp), dimension(elem%np,lcmesh3d%ne), intent(in) | z, | ||
class(localmesh3d), intent(in) | lcmesh3d, | ||
class(elementbase3d), intent(in) | elem ) |
Calculate density and pressure in hydrostatic balance with a constant Brunt–Väisälä frequency.
DENS_hyd | hydrostatic density [kg/m3] |
PRES_hyd | hydrostatic pressure [Pa] |
BruntVaisalaFreq | Constant Brunt–Väisälä frequency [s-1] |
PotTemp0 | Constant potential temperature of atmosphere [K] |
PRES_sfc | Surface pressure [Pa] |
x | x-coordinate |
y | y-coordinate |
z | z-coordinate [m] |
lcmesh3D | A object to manage a local 3D mesh |
elem | A object to manage a 3D finite element |
Definition at line 181 of file scale_atm_dyn_dgm_hydrostatic.F90.
subroutine, public scale_atm_dyn_dgm_hydrostatic::hydrostatic_calc_basicstate_consttlaps | ( | real(rp), dimension(elem%np,lcmesh3d%nea), intent(out) | dens_hyd, |
real(rp), dimension(elem%np,lcmesh3d%nea), intent(out) | pres_hyd, | ||
real(rp), intent(in) | tlaps, | ||
real(rp), intent(in) | temp0, | ||
real(rp), intent(in) | pres_sfc, | ||
real(rp), dimension(elem%np,lcmesh3d%ne), intent(in) | x, | ||
real(rp), dimension(elem%np,lcmesh3d%ne), intent(in) | y, | ||
real(rp), dimension(elem%np,lcmesh3d%ne), intent(in) | z, | ||
class(localmesh3d), intent(in) | lcmesh3d, | ||
class(elementbase3d), intent(in) | elem ) |
Calculate density and pressure in hydrostatic balance with a constant lapse rate of temperature.
DENS_hyd | hydrostatic density [kg/m3] |
PRES_hyd | hydrostatic pressure [Pa] |
TLAPS | Constant lapse rate of atmosphere [K/m] |
Temp0 | Temperature at z=0 [K] |
PRES_sfc | Surface pressure [Pa] |
x | x-coordinate |
y | y-coordinate |
z | z-coordinate [m] |
lcmesh3D | A object to manage a local 3D mesh |
elem | A object to manage a 3D finite element |
Definition at line 238 of file scale_atm_dyn_dgm_hydrostatic.F90.
subroutine, public scale_atm_dyn_dgm_hydrostatic::hydrostatic_calc_basicstate_constptlaps | ( | real(rp), dimension(elem%np,lcmesh3d%nea), intent(out) | dens_hyd, |
real(rp), dimension(elem%np,lcmesh3d%nea), intent(out) | pres_hyd, | ||
real(rp), intent(in) | ptlaps, | ||
real(rp), intent(in) | pottemp0, | ||
real(rp), intent(in) | pres_sfc, | ||
real(rp), dimension(elem%np,lcmesh3d%ne), intent(in) | x, | ||
real(rp), dimension(elem%np,lcmesh3d%ne), intent(in) | y, | ||
real(rp), dimension(elem%np,lcmesh3d%ne), intent(in) | z, | ||
class(localmesh3d), intent(in) | lcmesh3d, | ||
class(elementbase3d), intent(in) | elem ) |
Calculate density and pressure in hydrostatic balance with a constant lapse rate of potential temperature.
DENS_hyd | hydrostatic density [kg/m3] |
PRES_hyd | hydrostatic pressure [Pa] |
PTLAPS | Constant lapse rate of potential temperature in atmosphere [K/m] |
PotTemp0 | Potentital temperature at z=0 [K] |
PRES_sfc | Surface pressure [Pa] |
x | x-coordinate |
y | y-coordinate |
z | z-coordinate [m] |
lcmesh3D | A object to manage a local 3D mesh |
elem | A object to manage a 3D finite element |
Definition at line 286 of file scale_atm_dyn_dgm_hydrostatic.F90.