Skip to content

Integrators Module

Module: brahe.integrators

The integrators module provides numerical integration methods for solving ordinary differential equations (ODEs), with specialized support for orbital mechanics and variational equation propagation.

Module Contents

Common Interface

All integrators implement one of these trait interfaces:

  • FixedStepIntegrator: Fixed time-step integration
  • AdaptiveStepIntegrator: Adaptive time-step integration with error control

Borth of which provide common methods:

  • step(): Advance the state by one time step
  • step_with_varmat(): Advance state and state transition matrix together

See Also