pub struct IntegratorConfig {
pub dt: f64,
pub mu: Mu,
pub thrust: ThrustProfile,
}Expand description
Configuration for the RK4 integrator.
Fields§
§dt: f64Time step (s)
mu: MuCentral body gravitational parameter (km³/s²)
thrust: ThrustProfileThrust profile
Trait Implementations§
Source§impl Clone for IntegratorConfig
impl Clone for IntegratorConfig
Source§fn clone(&self) -> IntegratorConfig
fn clone(&self) -> IntegratorConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for IntegratorConfig
impl Debug for IntegratorConfig
impl Copy for IntegratorConfig
Auto Trait Implementations§
impl Freeze for IntegratorConfig
impl RefUnwindSafe for IntegratorConfig
impl Send for IntegratorConfig
impl Sync for IntegratorConfig
impl Unpin for IntegratorConfig
impl UnwindSafe for IntegratorConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more