|
Peano
|
Functions | |
| template<auto param> | |
| static auto | constant () |
| Returns the Coriolis parameter f for a given position. | |
| template<auto f0, auto beta> | |
| static auto | betaPlane (const auto y) |
| Returns the Coriolis parameter f for a given position. | |
| template<auto omega> | |
| static auto | sphere (const auto latDeg) |
| Returns the Coriolis parameter f for a given position. | |
|
static |
Returns the Coriolis parameter f for a given position.
This function provides the β-plane approximation (linearly varying with y).
| y | Cartesian y-coordinate representing the north-south direction |
Definition at line 11 of file MeteotsunamiLaws.cpph.
|
static |
Returns the Coriolis parameter f for a given position.
This function provides the Coriolis parameter using the f-plane approximation (constant value).
Definition at line 6 of file MeteotsunamiLaws.cpph.
|
static |
Returns the Coriolis parameter f for a given position.
The full spherical model, where the Coriolis parameter is computed as f = 2 * Ω * sin(φ). (φ = geographic latitude, Ω = Earth's rotation rate) ⇒ f varies with latitude.
| lat | geographic latitude in [-pi, pi] rad |
Definition at line 16 of file MeteotsunamiLaws.cpph.