[][src]Struct nyx_space::dynamics::propulsion::Propulsion

pub struct Propulsion<T: ThrustControl> {
    pub thrusters: Vec<Thruster>,
    pub decrement_mass: bool,
    pub ctrl: T,
}

Propulsion allows returning a propulsion FORCE (not acceleration).

Fields

thrusters: Vec<Thruster>

Will eventually support tank depletion

decrement_mass: bool

Set to true to decrement the fuel mass

ctrl: T

Methods

impl<'a, T: ThrustControl> Propulsion<T>[src]

pub fn new(ctrl: T, thrusters: Vec<Thruster>, decrement_mass: bool) -> Self[src]

pub fn set_state(&mut self, new_orbit: &State)[src]

pub fn eom(&self, osc: &State) -> (Vector3<f64>, f64)[src]

Returns the thrust and the fuel usage

Trait Implementations

impl<T: Clone + ThrustControl> Clone for Propulsion<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Propulsion<T> where
    T: RefUnwindSafe

impl<T> Send for Propulsion<T> where
    T: Send

impl<T> Sync for Propulsion<T> where
    T: Sync

impl<T> Unpin for Propulsion<T> where
    T: Unpin

impl<T> UnwindSafe for Propulsion<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,