Antkeeper
0.0.1
|
Atmospheric density functions. More...
Functions | |
template<class T > | |
T | exponential (T d0, T z, T sh) |
Calculates the density of exponentially-distributed atmospheric particles at a given elevation. More... | |
template<class T > | |
T | triangular (T d0, T z, T a, T b, T c) |
Calculates the density of triangularly-distributed atmospheric particles at a given elevation. More... | |
Atmospheric density functions.
T physics::gas::atmosphere::density::exponential | ( | T | d0, |
T | z, | ||
T | sh | ||
) |
Calculates the density of exponentially-distributed atmospheric particles at a given elevation.
d0 | Density at sea level. |
z | Height above sea level. |
sh | Scale height of the particle type. |
z
.Definition at line 221 of file atmosphere.hpp.
T physics::gas::atmosphere::density::triangular | ( | T | d0, |
T | z, | ||
T | a, | ||
T | b, | ||
T | c | ||
) |
Calculates the density of triangularly-distributed atmospheric particles at a given elevation.
d0 | Density at sea level. |
z | Height above sea level. |
a | Distribution lower limit. |
b | Distribution upper limit. |
c | Distribution mode. |
z
.Definition at line 240 of file atmosphere.hpp.