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

pub struct Ruggiero { /* fields omitted */ }

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

Methods

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: State) -> Self[src]

pub fn achieved(&self, state: &State) -> bool[src]

Returns whether the control law has achieved all goals

Trait Implementations

impl Clone for Ruggiero[src]

impl Debug for Ruggiero[src]

impl ThrustControl for Ruggiero[src]

fn next(&mut self, osc: &State)[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> 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>,