Interface ODEIntegratorBuilder
- All Known Subinterfaces:
ExplicitRungeKuttaIntegratorBuilder
- All Known Implementing Classes:
AbstractFixedSingleStepIntegratorBuilder,AbstractIntegratorBuilder,AbstractVariableStepIntegratorBuilder,AdamsBashforthIntegratorBuilder,AdamsMoultonIntegratorBuilder,ClassicalRungeKuttaIntegratorBuilder,DormandPrince54IntegratorBuilder,DormandPrince853IntegratorBuilder,EulerIntegratorBuilder,GillIntegratorBuilder,GraggBulirschStoerIntegratorBuilder,HighamHall54IntegratorBuilder,LutherIntegratorBuilder,MidpointIntegratorBuilder,ThreeEighthesIntegratorBuilder
public interface ODEIntegratorBuilder
This interface is the top-level abstraction to build first order integrators for propagators conversion.
- Since:
- 6.0
- Author:
- Pascal Parraud
-
Method Summary
Modifier and TypeMethodDescriptionbuildIntegrator(Orbit orbit, OrbitType orbitType) Build a first order integrator.buildIntegrator(Orbit orbit, OrbitType orbitType, PositionAngleType angleType) Build a first order integrator.buildIntegrator(AbsolutePVCoordinates absolutePVCoordinates) Build a first order integrator.
-
Method Details
-
buildIntegrator
Build a first order integrator.- Parameters:
orbit- reference orbitorbitType- orbit type to useangleType- position angle type to use- Returns:
- a first order integrator ready to use
- Since:
- 13.0
-
buildIntegrator
Build a first order integrator.- Parameters:
orbit- reference orbitorbitType- orbit type to use- Returns:
- a first order integrator ready to use
-
buildIntegrator
Build a first order integrator. Non-orbit version.- Parameters:
absolutePVCoordinates- absolute position-velocity vector- Returns:
- a first order integrator ready to use
- Since:
- 12.2
-