1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*!
Module providing Earth environment models for orbital dynamics calculations.
This module contains implementations of various Earth environmental models used in
orbital dynamics computations, including atmospheric density models and (future)
magnetic field models.
## Atmospheric Density Models
- [`harris_priester`]: Modified Harris-Priester atmospheric density model
- [`nrlmsise00`]: NRLMSISE-00 empirical atmospheric density model
## Usage
```rust
use brahe::earth_models::density_harris_priester;
use nalgebra::Vector3;
let r_sat = Vector3::new(6778137.0, 0.0, 0.0); // ~400 km altitude
let r_sun = Vector3::new(1.5e11, 0.0, 0.0); // Approximate sun position
let density = density_harris_priester(r_sat, r_sun);
```
*/
pub use *;
pub use *;
pub use *;