|
@ -17,35 +17,20 @@ |
|
|
* along with Antkeeper source code. If not, see <http://www.gnu.org/licenses/>.
|
|
|
* along with Antkeeper source code. If not, see <http://www.gnu.org/licenses/>.
|
|
|
*/ |
|
|
*/ |
|
|
|
|
|
|
|
|
#ifndef ANTKEEPER_PHYSICS_ATMOSPHERE_HPP
|
|
|
|
|
|
#define ANTKEEPER_PHYSICS_ATMOSPHERE_HPP
|
|
|
|
|
|
|
|
|
#ifndef ANTKEEPER_PHYSICS_GAS_ATMOSPHERE_HPP
|
|
|
|
|
|
#define ANTKEEPER_PHYSICS_GAS_ATMOSPHERE_HPP
|
|
|
|
|
|
|
|
|
#include "physics/constants.hpp"
|
|
|
#include "physics/constants.hpp"
|
|
|
#include "math/constants.hpp"
|
|
|
#include "math/constants.hpp"
|
|
|
|
|
|
#include <algorithm>
|
|
|
#include <cmath>
|
|
|
#include <cmath>
|
|
|
|
|
|
|
|
|
namespace physics { |
|
|
namespace physics { |
|
|
|
|
|
namespace gas { |
|
|
|
|
|
|
|
|
/// Atmosphere-related functions.
|
|
|
/// Atmosphere-related functions.
|
|
|
namespace atmosphere { |
|
|
namespace atmosphere { |
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Calculates the density of exponentially-distributed atmospheric particles at a given altitude. |
|
|
|
|
|
* |
|
|
|
|
|
* @param d0 Density at sea level. |
|
|
|
|
|
* @param z Height above sea level. |
|
|
|
|
|
* @param sh Scale height of the particle type. |
|
|
|
|
|
* @return Particle density at altitude. |
|
|
|
|
|
* |
|
|
|
|
|
* @see https://en.wikipedia.org/wiki/Scale_height
|
|
|
|
|
|
* @see https://en.wikipedia.org/wiki/Barometric_formula
|
|
|
|
|
|
*/ |
|
|
|
|
|
template <class T> |
|
|
|
|
|
T density(T d0, T z, T sh) |
|
|
|
|
|
{ |
|
|
|
|
|
return d0 * std::exp(-z / sh); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
/**
|
|
|
* Calculates a particle polarizability factor used in computing scattering coefficients. |
|
|
* Calculates a particle polarizability factor used in computing scattering coefficients. |
|
|
* |
|
|
* |
|
@ -66,10 +51,10 @@ T polarization(T ior, T density) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/**
|
|
|
/**
|
|
|
* Calculates a Rayleigh scattering coefficient at sea level (wavelength-dependent). |
|
|
|
|
|
|
|
|
* Calculates a Rayleigh scattering coefficient (wavelength-dependent). |
|
|
* |
|
|
* |
|
|
* @param wavelength Wavelength of light, in meters. |
|
|
* @param wavelength Wavelength of light, in meters. |
|
|
* @param density Molecular density of Rayleigh particles at sea level. |
|
|
|
|
|
|
|
|
* @param density Molecular density of Rayleigh particles. |
|
|
* @param polarization Rayleigh particle polarization factor. |
|
|
* @param polarization Rayleigh particle polarization factor. |
|
|
* |
|
|
* |
|
|
* @see atmosphere::polarization |
|
|
* @see atmosphere::polarization |
|
@ -81,15 +66,17 @@ template |
|
|
T scattering_rayleigh(T wavelength, T density, T polarization) |
|
|
T scattering_rayleigh(T wavelength, T density, T polarization) |
|
|
{ |
|
|
{ |
|
|
const T wavelength2 = wavelength * wavelength; |
|
|
const T wavelength2 = wavelength * wavelength; |
|
|
return T(4) * math::pi<T> * density / (wavelength2 * wavelength2) * polarization; |
|
|
|
|
|
|
|
|
return math::four_pi<T> * density / (wavelength2 * wavelength2) * polarization; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/**
|
|
|
/**
|
|
|
* Calculates a Mie scattering coefficient at sea level (wavelength-independent). |
|
|
|
|
|
|
|
|
* Calculates a Mie scattering coefficient (wavelength-independent). |
|
|
* |
|
|
* |
|
|
* @param density Molecular density of Mie particles at sea level. |
|
|
|
|
|
|
|
|
* @param density Molecular density of Mie particles. |
|
|
* @param polarization Mie particle polarization factor. |
|
|
* @param polarization Mie particle polarization factor. |
|
|
* |
|
|
* |
|
|
|
|
|
* @return Mie scattering coefficient. |
|
|
|
|
|
* |
|
|
* @see atmosphere::polarization |
|
|
* @see atmosphere::polarization |
|
|
* |
|
|
* |
|
|
* @see Elek, Oskar. (2009). Rendering Parametrizable Planetary Atmospheres with Multiple Scattering in Real-Time. |
|
|
* @see Elek, Oskar. (2009). Rendering Parametrizable Planetary Atmospheres with Multiple Scattering in Real-Time. |
|
@ -98,7 +85,22 @@ T scattering_rayleigh(T wavelength, T density, T polarization) |
|
|
template <class T> |
|
|
template <class T> |
|
|
T scattering_mie(T density, T polarization) |
|
|
T scattering_mie(T density, T polarization) |
|
|
{ |
|
|
{ |
|
|
return T(4) * math::pi<T> * density * polarization; |
|
|
|
|
|
|
|
|
return math::four_pi<T> * density * polarization; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Calculates a Mie absorption coefficient (wavelength-independent). |
|
|
|
|
|
* |
|
|
|
|
|
* @param scattering Mie scattering coefficient. |
|
|
|
|
|
* |
|
|
|
|
|
* @return Mie absorption coefficient. |
|
|
|
|
|
* |
|
|
|
|
|
* @see Bruneton, E. and Neyret, F. (2008), Precomputed Atmospheric Scattering. Computer Graphics Forum, 27: 1079-1086. https://doi.org/10.1111/j.1467-8659.2008.01245.x
|
|
|
|
|
|
*/ |
|
|
|
|
|
template <class T> |
|
|
|
|
|
T absorption_mie(T scattering) |
|
|
|
|
|
{ |
|
|
|
|
|
return scattering / T(9); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/**
|
|
|
/**
|
|
@ -138,7 +140,7 @@ T albedo(T s, T e) |
|
|
* @return Optical depth between @p a and @p b. |
|
|
* @return Optical depth between @p a and @p b. |
|
|
*/ |
|
|
*/ |
|
|
template <class T> |
|
|
template <class T> |
|
|
T optical_depth(const math::vector3<T>& a, const math::vector3<T>& b, T r, T sh, std::size_t n) |
|
|
|
|
|
|
|
|
T optical_depth_exp(const math::vector3<T>& a, const math::vector3<T>& b, T r, T sh, std::size_t n) |
|
|
{ |
|
|
{ |
|
|
sh = T(-1) / sh; |
|
|
sh = T(-1) / sh; |
|
|
|
|
|
|
|
@ -162,8 +164,95 @@ T optical_depth(const math::vector3& a, const math::vector3& b, T r, T sh, |
|
|
return sum / T(2) * h; |
|
|
return sum / T(2) * h; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Approximates the optical depth of triangularly-distributed atmospheric particles between two points using the trapezoidal rule. |
|
|
|
|
|
* |
|
|
|
|
|
* @param p0 Start point. |
|
|
|
|
|
* @param p1 End point. |
|
|
|
|
|
* @param r Radius of the planet. |
|
|
|
|
|
* @param a Distribution lower limit. |
|
|
|
|
|
* @param b Distribution upper limit. |
|
|
|
|
|
* @param c Distribution upper mode. |
|
|
|
|
|
* @param n Number of samples. |
|
|
|
|
|
* @return Optical depth between @p a and @p b. |
|
|
|
|
|
*/ |
|
|
|
|
|
template <class T> |
|
|
|
|
|
T optical_depth_tri(const math::vector3<T>& p0, const math::vector3<T>& p1, T r, T a, T b, T c, std::size_t n) |
|
|
|
|
|
{ |
|
|
|
|
|
a = T(1) / (a - c); |
|
|
|
|
|
b = T(1) / (b - c); |
|
|
|
|
|
|
|
|
|
|
|
const T h = math::length(p1 - p0) / T(n); |
|
|
|
|
|
|
|
|
|
|
|
math::vector3<T> dy = (p1 - p0) / T(n); |
|
|
|
|
|
math::vector3<T> y = p0 + dy; |
|
|
|
|
|
|
|
|
|
|
|
T z = math::length(p0) - r; |
|
|
|
|
|
T f_x = std::max(T(0), std::max(T(0), c - z) * a - std::max(T(0), z - c) * b + T(1)); |
|
|
|
|
|
|
|
|
|
|
|
z = math::length(y) - r; |
|
|
|
|
|
T f_y = std::max(T(0), std::max(T(0), c - z) * a - std::max(T(0), z - c) * b + T(1)); |
|
|
|
|
|
T sum = (f_x + f_y); |
|
|
|
|
|
|
|
|
|
|
|
for (std::size_t i = 1; i < n; ++i) |
|
|
|
|
|
{ |
|
|
|
|
|
f_x = f_y; |
|
|
|
|
|
y += dy; |
|
|
|
|
|
|
|
|
|
|
|
z = math::length(y) - r; |
|
|
|
|
|
f_y = std::max(T(0), std::max(T(0), c - z) * a - std::max(T(0), z - c) * b + T(1)); |
|
|
|
|
|
|
|
|
|
|
|
sum += (f_x + f_y); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
return sum / T(2) * h; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/// Atmospheric density functions.
|
|
|
|
|
|
namespace density { |
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Calculates the density of exponentially-distributed atmospheric particles at a given elevation. |
|
|
|
|
|
* |
|
|
|
|
|
* @param d0 Density at sea level. |
|
|
|
|
|
* @param z Height above sea level. |
|
|
|
|
|
* @param sh Scale height of the particle type. |
|
|
|
|
|
* |
|
|
|
|
|
* @return Particle density at elevation @p z. |
|
|
|
|
|
* |
|
|
|
|
|
* @see https://en.wikipedia.org/wiki/Barometric_formula
|
|
|
|
|
|
* @see https://en.wikipedia.org/wiki/Scale_height
|
|
|
|
|
|
*/ |
|
|
|
|
|
template <class T> |
|
|
|
|
|
T exponential(T d0, T z, T sh) |
|
|
|
|
|
{ |
|
|
|
|
|
return d0 * std::exp(-z / sh); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Calculates the density of triangularly-distributed atmospheric particles at a given elevation. |
|
|
|
|
|
* |
|
|
|
|
|
* @param d0 Density at sea level. |
|
|
|
|
|
* @param z Height above sea level. |
|
|
|
|
|
* @param a Distribution lower limit. |
|
|
|
|
|
* @param b Distribution upper limit. |
|
|
|
|
|
* @param c Distribution mode. |
|
|
|
|
|
* |
|
|
|
|
|
* @return Particle density at elevation @p z. |
|
|
|
|
|
* |
|
|
|
|
|
* @see https://en.wikipedia.org/wiki/Triangular_distribution
|
|
|
|
|
|
*/ |
|
|
|
|
|
template <class T> |
|
|
|
|
|
T triangular(T d0, T z, T a, T b, T c) |
|
|
|
|
|
{ |
|
|
|
|
|
return d0 * max(T(0), max(T(0), c - z) / (a - c) - max(T(0), z - c) / (b - c) + T(1)); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} // namespace density
|
|
|
|
|
|
|
|
|
} // namespace atmosphere
|
|
|
} // namespace atmosphere
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace gas
|
|
|
} // namespace physics
|
|
|
} // namespace physics
|
|
|
|
|
|
|
|
|
#endif // ANTKEEPER_PHYSICS_ATMOSPHERE_HPP
|
|
|
|
|
|
|
|
|
#endif // ANTKEEPER_PHYSICS_GAS_ATMOSPHERE_HPP
|