Struct nyx_space::dynamics::thrustctrl::Ruggiero[][src]

pub struct Ruggiero { /* fields omitted */ }

Ruggiero defines the closed loop control law from IEPC 2011-102

Implementations

impl Ruggiero[src]

The Ruggiero is a locally optimal control of a state for specific osculating elements. WARNING: Objectives must be in degrees!

pub fn new(objectives: Vec<Achieve>, initial: Orbit) -> Arc<Self>[src]

Creates a new Ruggiero locally optimal control as an Arc Note: this returns an Arc so it can be plugged into the Spacecraft dynamics directly.

Trait Implementations

impl Clone for Ruggiero[src]

impl Copy for Ruggiero[src]

impl Debug for Ruggiero[src]

impl ThrustControl for Ruggiero[src]

fn achieved(&self, state: &SpacecraftState) -> Result<bool, NyxError>[src]

Returns whether the control law has achieved all goals

fn next(&self, sc: &SpacecraftState) -> GuidanceMode[src]

Update the state for the next iteration

Auto Trait Implementations

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> Pointable for T

type Init = T

The type for initializers.

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>,