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
12
13
mod dynamics;
mod panel_srp;
pub mod reaction_wheel;
mod state;
mod surface;
mod thruster;
pub use crate::model::ExternalLoads;
pub use dynamics::SpacecraftDynamics;
pub use panel_srp::PanelSrp;
pub use reaction_wheel::ReactionWheelAssembly;
pub use state::SpacecraftState;
pub use surface::{PanelDrag, SpacecraftShape, SurfacePanel};
pub use thruster::{BurnWindow, ConstantThrottle, G0, ScheduledBurn, ThrustProfile, Thruster};