Interface FieldExplicitRungeKuttaIntegratorBuilder<T extends CalculusFieldElement<T>>
-
- Type Parameters:
T- type of the field elements
- All Superinterfaces:
FieldODEIntegratorBuilder<T>
- All Known Implementing Classes:
ClassicalRungeKuttaFieldIntegratorBuilder,DormandPrince54FieldIntegratorBuilder,DormandPrince853FieldIntegratorBuilder,EulerFieldIntegratorBuilder,GillFieldIntegratorBuilder,HighamHall54FieldIntegratorBuilder,LutherFieldIntegratorBuilder,MidpointFieldIntegratorBuilder,ThreeEighthesFieldIntegratorBuilder
public interface FieldExplicitRungeKuttaIntegratorBuilder<T extends CalculusFieldElement<T>> extends FieldODEIntegratorBuilder<T>
This interface is the top-level abstraction to build first order integrators for propagators conversion.- Since:
- 13.0
- Author:
- Romain Serra
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FieldExplicitRungeKuttaIntegrator<T>buildIntegrator(Field<T> field, Orbit orbit, OrbitType orbitType)Build a first order integrator.FieldExplicitRungeKuttaIntegrator<T>buildIntegrator(Field<T> field, Orbit orbit, OrbitType orbitType, PositionAngleType angleType)Build a first order integrator.FieldExplicitRungeKuttaIntegrator<T>buildIntegrator(FieldOrbit<T> orbit, OrbitType orbitType)Build a first order integrator.FieldExplicitRungeKuttaIntegrator<T>buildIntegrator(FieldAbsolutePVCoordinates<T> fieldAbsolutePVCoordinates)Build a first order integrator.ExplicitRungeKuttaIntegratorBuildertoODEIntegratorBuilder()Form a non-Field equivalent.
-
-
-
Method Detail
-
buildIntegrator
FieldExplicitRungeKuttaIntegrator<T> buildIntegrator(Field<T> field, Orbit orbit, OrbitType orbitType)
Build a first order integrator.- Specified by:
buildIntegratorin interfaceFieldODEIntegratorBuilder<T extends CalculusFieldElement<T>>- Parameters:
field- field to which the elements belongorbit- reference orbitorbitType- orbit type to use- Returns:
- a first order integrator ready to use
-
buildIntegrator
FieldExplicitRungeKuttaIntegrator<T> buildIntegrator(Field<T> field, Orbit orbit, OrbitType orbitType, PositionAngleType angleType)
Build a first order integrator.- Specified by:
buildIntegratorin interfaceFieldODEIntegratorBuilder<T extends CalculusFieldElement<T>>- Parameters:
field- fieldorbit- reference orbitorbitType- orbit type to useangleType- position angle type to use- Returns:
- a first order integrator ready to use
-
buildIntegrator
FieldExplicitRungeKuttaIntegrator<T> buildIntegrator(FieldOrbit<T> orbit, OrbitType orbitType)
Build a first order integrator.- Specified by:
buildIntegratorin interfaceFieldODEIntegratorBuilder<T extends CalculusFieldElement<T>>- Parameters:
orbit- reference orbitorbitType- orbit type to use- Returns:
- a first order integrator ready to use
-
buildIntegrator
FieldExplicitRungeKuttaIntegrator<T> buildIntegrator(FieldAbsolutePVCoordinates<T> fieldAbsolutePVCoordinates)
Build a first order integrator. Non-orbit version.- Specified by:
buildIntegratorin interfaceFieldODEIntegratorBuilder<T extends CalculusFieldElement<T>>- Parameters:
fieldAbsolutePVCoordinates- absolute position-velocity- Returns:
- a first order integrator ready to use
-
toODEIntegratorBuilder
ExplicitRungeKuttaIntegratorBuilder toODEIntegratorBuilder()
Form a non-Field equivalent.- Specified by:
toODEIntegratorBuilderin interfaceFieldODEIntegratorBuilder<T extends CalculusFieldElement<T>>- Returns:
- ODE integrator builder
-
-