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

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

Functions

largest_error

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

largest_state

A largest state error control

largest_step

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

largest_step_pos_vel

A largest step error control which effectively computes the L1 norm of the provided vector composed of two vectors of the same unit, both of size 3 (e.g. position + velocity).

rss_state

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

rss_state_pos_vel

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

rss_step

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

rss_step_pos_vel

A largest step error control which effectively computes the L1 norm of the provided vector composed of two vectors of the same unit, both of size 3 (e.g. position + velocity).