Module nyx_space::propagators::error_ctrl[][src]

Expand description

Provides different methods for controlling the error computation of the integrator.

Structs

LargestError

A largest error control which effectively computes the largest error at each component

LargestState

A largest state error control

LargestStep

A largest step error control which effectively computes the L1 norm of the provided Vector of size 3

RSSCartesianState

An RSS state error control which effectively for the provided vector composed of two vectors of the same unit, both of size 3 (e.g. position + velocity).

RSSCartesianStep

An RSS state error control which effectively for the provided vector composed of two vectors of the same unit, both of size 3 (e.g. position + velocity).

RSSCartesianStepStm

An RSS state error control which effectively for the provided vector composed of two vectors of the same unit, both of size 3 (e.g. position + velocity).

RSSState

An RSS state error control: when in doubt, use this error controller, especially for high accurracy.

RSSStep

An RSS step error control which effectively computes the L2 norm of the provided Vector of size 3

Traits

ErrorCtrl

The Error Control trait manages how a propagator computes the error in the current step.