Enum nyx_space::NyxError[][src]

pub enum NyxError {
    SingularStateTransitionMatrix,
    FuelExhausted,
    ConditionNeverTriggered,
    UnsufficientTriggers(usizeusize),
    MaxIterReached(usize),
    EventNotInEpochBraket(StringString),
    StateTransitionMatrixNotUpdated,
    StateTransitionMatrixUnset,
    SensitivityNotUpdated,
    SingularKalmanGain,
    SingularCovarianceMatrix,
    TargetsTooClose,
    LambertNotReasonablePhi,
    LambertMultiRevNotSupported,
    PartialsUndefined,
    LoadingError(String),
    ObjectNotFound(String),
    NoInterpolationData(String),
    InvalidInterpolationData(String),
    OutOfInterpolationWindow(String),
    NoStateData(String),
    DisjointFrameOrientations(StringString),
    CtrlExistsButNoThrusterAvail,
    CtrlNotAUnitVector(f64),
    CtrlThrottleRangeErr(f64),
    NoObjectiveDefined,
    ExportError(String),
    CustomError(String),
}

Variants

SingularStateTransitionMatrix

STM is singular, check the automatic differentiation function and file a bug

FuelExhausted

Fuel exhausted error, try running without fuel depletion, and then adding it.

ConditionNeverTriggered

Propagation event not triggered withinin the max propagation time

UnsufficientTriggers(usizeusize)

Propagation event not hit enough times (requested, found).

MaxIterReached(usize)

Maximum iterations reached, value corresponds to the number of iterations used

EventNotInEpochBraket(StringString)

Event not in braket

StateTransitionMatrixNotUpdated

The STM was not updated prior to requesting a filter update

StateTransitionMatrixUnset

The operation was expecting the state to have an STM, but it isn’t present.

SensitivityNotUpdated

The sensitivity matrix was not updated prior to requesting a filter measurement update

SingularKalmanGain

Kalman gain is singular, file a bug if this is encountered

SingularCovarianceMatrix

Covariance is singular

TargetsTooClose
LambertNotReasonablePhi
LambertMultiRevNotSupported
PartialsUndefined

Returns this error if the partials for this model are not defined, thereby preventing the computation of the STM

LoadingError(String)
ObjectNotFound(String)
NoInterpolationData(String)
InvalidInterpolationData(String)
OutOfInterpolationWindow(String)
NoStateData(String)
DisjointFrameOrientations(StringString)
CtrlExistsButNoThrusterAvail

When there is a controller but there isn’t any thruster available

CtrlNotAUnitVector(f64)

The control vector returned by a controller must be a unit vector. Use the throttle() function to specify the amount.

CtrlThrottleRangeErr(f64)

The control throttle range must be between 0.0 and 1.0 (both included) as it represents a percentage.

NoObjectiveDefined

An objective based analysis or control was attempted, but no objective was defined.

ExportError(String)

Error when exporting data

CustomError(String)

Some custom error for new dynamics

Trait Implementations

impl Clone for NyxError[src]

impl Debug for NyxError[src]

impl Display for NyxError[src]

impl Error for NyxError[src]

impl PartialEq<NyxError> for NyxError[src]

impl StructuralPartialEq for NyxError[src]

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> ToString for T where
    T: Display + ?Sized
[src]

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