Interface ExplicitRungeKuttaIntegratorBuilder
-
- All Superinterfaces:
ODEIntegratorBuilder
- All Known Implementing Classes:
AbstractFixedSingleStepIntegratorBuilder
,ClassicalRungeKuttaIntegratorBuilder
,DormandPrince54IntegratorBuilder
,DormandPrince853IntegratorBuilder
,EulerIntegratorBuilder
,GillIntegratorBuilder
,HighamHall54IntegratorBuilder
,LutherIntegratorBuilder
,MidpointIntegratorBuilder
,ThreeEighthesIntegratorBuilder
public interface ExplicitRungeKuttaIntegratorBuilder extends ODEIntegratorBuilder
This interface is for builders of explicit Runge-Kutta integrators (adaptive or not).- Since:
- 13.0
- Author:
- Romain Serra
- See Also:
ExplicitRungeKuttaIntegrator
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExplicitRungeKuttaIntegrator
buildIntegrator(Orbit orbit, OrbitType orbitType)
Build a first order integrator.ExplicitRungeKuttaIntegrator
buildIntegrator(Orbit orbit, OrbitType orbitType, PositionAngleType angleType)
Build a first order integrator.ExplicitRungeKuttaIntegrator
buildIntegrator(AbsolutePVCoordinates absolutePVCoordinates)
Build a first order integrator.
-
-
-
Method Detail
-
buildIntegrator
ExplicitRungeKuttaIntegrator buildIntegrator(Orbit orbit, OrbitType orbitType, PositionAngleType angleType)
Build a first order integrator.- Specified by:
buildIntegrator
in interfaceODEIntegratorBuilder
- Parameters:
orbit
- reference orbitorbitType
- orbit type to useangleType
- position angle type to use- Returns:
- a first order integrator ready to use
-
buildIntegrator
ExplicitRungeKuttaIntegrator buildIntegrator(Orbit orbit, OrbitType orbitType)
Build a first order integrator.- Specified by:
buildIntegrator
in interfaceODEIntegratorBuilder
- Parameters:
orbit
- reference orbitorbitType
- orbit type to use- Returns:
- a first order integrator ready to use
-
buildIntegrator
ExplicitRungeKuttaIntegrator buildIntegrator(AbsolutePVCoordinates absolutePVCoordinates)
Build a first order integrator. Non-orbit version.- Specified by:
buildIntegrator
in interfaceODEIntegratorBuilder
- Parameters:
absolutePVCoordinates
- absolute position-velocity vector- Returns:
- a first order integrator ready to use
-
-