Interface ExplicitRungeKuttaIntegratorBuilder
- All Superinterfaces:
ODEIntegratorBuilder
- All Known Implementing Classes:
AbstractFixedSingleStepIntegratorBuilder,ClassicalRungeKuttaIntegratorBuilder,DormandPrince54IntegratorBuilder,DormandPrince853IntegratorBuilder,EulerIntegratorBuilder,GillIntegratorBuilder,HighamHall54IntegratorBuilder,LutherIntegratorBuilder,MidpointIntegratorBuilder,ThreeEighthesIntegratorBuilder
This interface is for builders of explicit Runge-Kutta integrators (adaptive or not).
- Since:
- 13.0
- Author:
- Romain Serra
- See Also:
-
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
ExplicitRungeKuttaIntegrator buildIntegrator(Orbit orbit, OrbitType orbitType, PositionAngleType angleType) Build a first order integrator.- Specified by:
buildIntegratorin interfaceODEIntegratorBuilder- Parameters:
orbit- reference orbitorbitType- orbit type to useangleType- position angle type to use- Returns:
- a first order integrator ready to use
-
buildIntegrator
Build a first order integrator.- Specified by:
buildIntegratorin interfaceODEIntegratorBuilder- 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.- Specified by:
buildIntegratorin interfaceODEIntegratorBuilder- Parameters:
absolutePVCoordinates- absolute position-velocity vector- Returns:
- a first order integrator ready to use
-