Interface FieldODEIntegratorBuilder<T extends CalculusFieldElement<T>>
-
- Type Parameters:
T- type of the field elements
- All Known Subinterfaces:
FieldExplicitRungeKuttaIntegratorBuilder<T>
- All Known Implementing Classes:
AbstractFixedStepFieldIntegratorBuilder,AbstractLimitedVariableStepFieldIntegratorBuilder,AbstractVariableStepFieldIntegratorBuilder,AdamsBashforthFieldIntegratorBuilder,AdamsMoultonFieldIntegratorBuilder,ClassicalRungeKuttaFieldIntegratorBuilder,DormandPrince54FieldIntegratorBuilder,DormandPrince853FieldIntegratorBuilder,EulerFieldIntegratorBuilder,FieldAbstractIntegratorBuilder,GillFieldIntegratorBuilder,HighamHall54FieldIntegratorBuilder,LutherFieldIntegratorBuilder,MidpointFieldIntegratorBuilder,ThreeEighthesFieldIntegratorBuilder
public interface FieldODEIntegratorBuilder<T extends CalculusFieldElement<T>>This interface is the top-level abstraction to build first order integrators for propagators conversion.- Since:
- 12.0
- Author:
- Pascal Parraud, Vincent Cucchietti
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FieldODEIntegrator<T>buildIntegrator(Field<T> field, Orbit orbit, OrbitType orbitType)Build a first order integrator.FieldODEIntegrator<T>buildIntegrator(Field<T> field, Orbit orbit, OrbitType orbitType, PositionAngleType angleType)Build a first order integrator.FieldODEIntegrator<T>buildIntegrator(FieldOrbit<T> orbit, OrbitType orbitType)Build a first order integrator.FieldODEIntegrator<T>buildIntegrator(FieldAbsolutePVCoordinates<T> fieldAbsolutePVCoordinates)Build a first order integrator.ODEIntegratorBuildertoODEIntegratorBuilder()Form a non-Field equivalent.
-
-
-
Method Detail
-
buildIntegrator
FieldODEIntegrator<T> buildIntegrator(Field<T> field, Orbit orbit, OrbitType orbitType)
Build a first order integrator.- Parameters:
field- field to which the elements belongorbit- reference orbitorbitType- orbit type to use- Returns:
- a first order integrator ready to use
-
buildIntegrator
FieldODEIntegrator<T> buildIntegrator(Field<T> field, Orbit orbit, OrbitType orbitType, PositionAngleType angleType)
Build a first order integrator.- Parameters:
field- fieldorbit- reference orbitorbitType- orbit type to useangleType- position angle type to use- Returns:
- a first order integrator ready to use
- Since:
- 13.0
-
buildIntegrator
FieldODEIntegrator<T> buildIntegrator(FieldOrbit<T> orbit, OrbitType orbitType)
Build a first order integrator.- Parameters:
orbit- reference orbitorbitType- orbit type to use- Returns:
- a first order integrator ready to use
-
buildIntegrator
FieldODEIntegrator<T> buildIntegrator(FieldAbsolutePVCoordinates<T> fieldAbsolutePVCoordinates)
Build a first order integrator. Non-orbit version.- Parameters:
fieldAbsolutePVCoordinates- absolute position-velocity- Returns:
- a first order integrator ready to use
- Since:
- 12.2
-
toODEIntegratorBuilder
ODEIntegratorBuilder toODEIntegratorBuilder()
Form a non-Field equivalent.- Returns:
- ODE integrator builder
- Since:
- 13.0
-
-