avian_fdm 0.1.0

6-DoF Flight Dynamics Model for Bevy + Avian 0.6
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! ISA atmosphere model and wind resource.
//!
//! - [`isa`]: pure ISA / Sutherland functions and constants (no Bevy types).
//! - [`systems`]: Bevy systems that bridge ISA into ECS components.
//! - [`resources`]: [`WindResource`] global wind vector.

pub mod isa;
pub mod resources;
pub mod systems;

pub use isa::sutherland_viscosity;
pub use resources::WindResource;
pub use systems::update_atmosphere;