orts 0.1.0

Orts core — orbital mechanics simulation, force/torque/sensor models, and WASM plugin host runtime.
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod constant_thrust;
mod drag;
mod srp;
mod third_body;

pub use arika::earth::OMEGA as OMEGA_EARTH;
pub use constant_thrust::ConstantThrust;
pub use drag::{AtmosphericDrag, DEFAULT_BALLISTIC_COEFF};
pub(crate) use srp::shadow_function;
pub use srp::{DEFAULT_AREA_TO_MASS, DEFAULT_CR, SOLAR_RADIATION_PRESSURE, SolarRadiationPressure};
pub use third_body::ThirdBodyGravity;