Class PythonFieldODEIntegratorBuilder<T extends CalculusFieldElement<T>>
- java.lang.Object
-
- org.orekit.propagation.conversion.PythonFieldODEIntegratorBuilder<T>
-
- All Implemented Interfaces:
FieldODEIntegratorBuilder<T>
public class PythonFieldODEIntegratorBuilder<T extends CalculusFieldElement<T>> extends Object implements FieldODEIntegratorBuilder<T>
-
-
Field Summary
Fields Modifier and Type Field Description protected long
pythonObject
Part of JCC Python interface to object
-
Constructor Summary
Constructors Constructor Description PythonFieldODEIntegratorBuilder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AbstractFieldIntegrator<T>
buildIntegrator(Field<T> field, Orbit orbit, OrbitType orbitType)
Build a first order integrator.AbstractFieldIntegrator<T>
buildIntegrator(FieldOrbit<T> orbit, OrbitType orbitType)
Build a first order integrator.void
finalize()
void
pythonDecRef()
long
pythonExtension()
void
pythonExtension(long pythonObject)
-
-
-
Method Detail
-
pythonExtension
public void pythonExtension(long pythonObject)
-
pythonExtension
public long pythonExtension()
-
finalize
public void finalize() throws Throwable
-
pythonDecRef
public void pythonDecRef()
-
buildIntegrator
public AbstractFieldIntegrator<T> buildIntegrator(Field<T> field, Orbit orbit, OrbitType orbitType)
Description copied from interface:FieldODEIntegratorBuilder
Build a first order integrator.- Specified by:
buildIntegrator
in 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 AbstractFieldIntegrator<T> buildIntegrator(FieldOrbit<T> orbit, OrbitType orbitType)
Description copied from interface:FieldODEIntegratorBuilder
Build a first order integrator.- Specified by:
buildIntegrator
in interfaceFieldODEIntegratorBuilder<T extends CalculusFieldElement<T>>
- Parameters:
orbit
- reference orbitorbitType
- orbit type to use- Returns:
- a first order integrator ready to use
-
-