Class FieldAbstractIntegratorBuilder<T extends CalculusFieldElement<T>,W extends AbstractFieldIntegrator<T>>
java.lang.Object
org.orekit.propagation.conversion.FieldAbstractIntegratorBuilder<T,W>
- Type Parameters:
T- type of the field elementsW- type of the field integrator
- All Implemented Interfaces:
FieldODEIntegratorBuilder<T>
- Direct Known Subclasses:
AbstractFixedStepFieldIntegratorBuilder,AbstractVariableStepFieldIntegratorBuilder
public abstract class FieldAbstractIntegratorBuilder<T extends CalculusFieldElement<T>,W extends AbstractFieldIntegrator<T>>
extends Object
implements FieldODEIntegratorBuilder<T>
This abstract class implements some of the required methods for integrators in propagators conversion.
- Since:
- 13.0
- Author:
- Vincent Cucchietti, Romain Serra
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbuildIntegrator(Field<T> field, Orbit orbit, OrbitType orbitType) Build a first order integrator.abstract WbuildIntegrator(Field<T> field, Orbit orbit, OrbitType orbitType, PositionAngleType angleType) Build a first order integrator.buildIntegrator(FieldOrbit<T> orbit, OrbitType orbitType) Build a first order integrator.buildIntegrator(FieldAbsolutePVCoordinates<T> fieldAbsolutePVCoordinates) Build a first order integrator.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.orekit.propagation.conversion.FieldODEIntegratorBuilder
toODEIntegratorBuilder
-
Constructor Details
-
FieldAbstractIntegratorBuilder
public FieldAbstractIntegratorBuilder()
-
-
Method Details
-
buildIntegrator
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
public abstract W 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
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
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
-