Antkeeper
0.0.1
|
Index of refraction formulas. More...
Functions | |
template<class T > | |
T | cauchy (T lambda, T a, T b) |
Two-term form of Cauchy's transmission equation. More... | |
template<class T > | |
T | cauchy (T lambda, T a, T b, T c) |
Three-term form of Cauchy's transmission equation. More... | |
template<class T > | |
T | sellmeier (T lambda, T b1, T c1, T b2, T c2) |
Two-term form of the Sellmeier equation. More... | |
template<class T > | |
T | sellmeier (T lambda, T b1, T c1, T b2, T c2, T b3, T c3) |
Three-term form of the Sellmeier equation. More... | |
Index of refraction formulas.
T physics::light::ior::cauchy | ( | T | lambda, |
T | a, | ||
T | b | ||
) |
Two-term form of Cauchy's transmission equation.
lambda | Wavelength of light, in micrometers. |
a | First coefficient of the medium. |
b | Second coefficient of the medium. |
Definition at line 40 of file refraction.hpp.
T physics::light::ior::cauchy | ( | T | lambda, |
T | a, | ||
T | b, | ||
T | c | ||
) |
Three-term form of Cauchy's transmission equation.
lambda | Wavelength of light, in micrometers. |
a | First coefficient. |
b | Second coefficient. |
c | Third coefficient. |
Definition at line 57 of file refraction.hpp.
T physics::light::ior::sellmeier | ( | T | lambda, |
T | b1, | ||
T | c1, | ||
T | b2, | ||
T | c2 | ||
) |
Two-term form of the Sellmeier equation.
lambda | Wavelength of light, in micrometers. |
b1 | B1 coefficient. |
c1 | C1 coefficient. |
b2 | B2 coefficient. |
c2 | C2 coefficient. |
Definition at line 76 of file refraction.hpp.
T physics::light::ior::sellmeier | ( | T | lambda, |
T | b1, | ||
T | c1, | ||
T | b2, | ||
T | c2, | ||
T | b3, | ||
T | c3 | ||
) |
Three-term form of the Sellmeier equation.
lambda | Wavelength of light, in micrometers. |
b1 | B1 coefficient. |
c1 | C1 coefficient. |
b2 | B2 coefficient. |
c2 | C2 coefficient. |
b3 | B3 coefficient. |
c3 | C3 coefficient. |
Definition at line 101 of file refraction.hpp.