orts 0.2.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
14
15
16
17
18
mod dynamics;
pub mod mtq;
mod panel_srp;
pub mod reaction_wheel;
mod state;
mod surface;
mod thruster;
pub use crate::model::ExternalLoads;
pub use dynamics::SpacecraftDynamics;
pub use mtq::{Mtq, MtqAssembly, MtqAssemblyCore, MtqCommand};
pub use panel_srp::PanelSrp;
pub use reaction_wheel::{ReactionWheelAssembly, RwCommand};
pub use state::SpacecraftState;
pub use surface::{PanelDrag, SpacecraftShape, SurfacePanel};
pub use thruster::{
    BurnWindow, ConstantThrottle, G0, ScheduledBurn, ThrustProfile, Thruster, ThrusterAssembly,
    ThrusterAssemblyCore, ThrusterSpec,
};