brahe 1.3.4

Brahe is a modern satellite dynamics library for research and engineering applications designed to be easy-to-learn, high-performance, and quick-to-deploy. The north-star of the development is enabling users to solve meaningful problems and answer questions quickly, easily, and correctly.
Documentation
/*!
Module implementing orbit dynamics models.
 */

pub use drag::*;
pub use ephemerides::*;
pub use gravity::*;
pub use relativity::*;
pub use solar_radiation_pressure::*;
pub use third_body::*;

// Re-export atmospheric density models from earth_models for backward compatibility
pub mod atmospheric_density_models {
    //! Backward-compatible re-export of atmospheric density models.
    //!
    //! These models have been moved to [`crate::earth_models`].
    //! This module is kept for backward compatibility.
    pub use crate::earth_models::*;
}

pub mod drag;
pub mod ephemerides;
pub mod gravity;
pub mod relativity;
pub mod solar_radiation_pressure;
pub mod third_body;