Package org.orekit.propagation.sampling
Class PythonFieldOrekitStepHandler<T extends CalculusFieldElement<T>>
- java.lang.Object
-
- org.orekit.propagation.sampling.PythonFieldOrekitStepHandler<T>
-
- All Implemented Interfaces:
FieldOrekitStepHandler<T>
public class PythonFieldOrekitStepHandler<T extends CalculusFieldElement<T>> extends Object implements FieldOrekitStepHandler<T>
-
-
Constructor Summary
Constructors Constructor Description PythonFieldOrekitStepHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
finalize()
Part of JCC Python interface to objectvoid
finish(FieldSpacecraftState<T> finalState)
Finalize propagation.void
handleStep(FieldOrekitStepInterpolator<T> interpolator)
Handle the current step.void
init(FieldSpacecraftState<T> s0, FieldAbsoluteDate<T> t)
Initialize step handler at the start of a propagation.void
pythonDecRef()
Part of JCC Python interface to objectlong
pythonExtension()
Part of JCC Python interface to objectvoid
pythonExtension(long pythonObject)
Part of JCC Python interface to object
-
-
-
Method Detail
-
pythonExtension
public void pythonExtension(long pythonObject)
Part of JCC Python interface to object
-
pythonExtension
public long pythonExtension()
Part of JCC Python interface to object
-
finalize
public void finalize() throws Throwable
Part of JCC Python interface to object
-
pythonDecRef
public void pythonDecRef()
Part of JCC Python interface to object
-
init
public void init(FieldSpacecraftState<T> s0, FieldAbsoluteDate<T> t)
Initialize step handler at the start of a propagation.This method is called once at the start of the propagation. It may be used by the step handler to initialize some internal data if needed.
- Specified by:
init
in interfaceFieldOrekitStepHandler<T extends CalculusFieldElement<T>>
- Parameters:
s0
- initial statet
- target time for the integration
-
handleStep
public void handleStep(FieldOrekitStepInterpolator<T> interpolator)
Handle the current step.- Specified by:
handleStep
in interfaceFieldOrekitStepHandler<T extends CalculusFieldElement<T>>
- Parameters:
interpolator
- interpolator set up for the current stepisLast
- if true, this is the last integration step
-
finish
public void finish(FieldSpacecraftState<T> finalState)
Finalize propagation.- Specified by:
finish
in interfaceFieldOrekitStepHandler<T extends CalculusFieldElement<T>>
- Parameters:
finalState
- state at propagation end- Since:
- 11.0
-
-