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

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

RSSState

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

RSSStatePV

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).

RSSStep

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

RSSStepPV

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).

Traits

ErrorCtrl

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