Class PythonFieldInterpolationGrid<T extends CalculusFieldElement<T>>
- java.lang.Object
-
- org.orekit.propagation.semianalytical.dsst.utilities.PythonFieldInterpolationGrid<T>
-
- All Implemented Interfaces:
FieldInterpolationGrid<T>
public class PythonFieldInterpolationGrid<T extends CalculusFieldElement<T>> extends Object implements FieldInterpolationGrid<T>
-
-
Field Summary
Fields Modifier and Type Field Description protected long
pythonObject
Part of JCC Python interface to object
-
Constructor Summary
Constructors Constructor Description PythonFieldInterpolationGrid()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
finalize()
T[]
getGridPoints(T stepStart, T stepEnd)
Get grid points that are within the current step.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()
-
getGridPoints
public T[] getGridPoints(T stepStart, T stepEnd)
Description copied from interface:FieldInterpolationGrid
Get grid points that are within the current step.The step is defined by its start and its end time.
- Specified by:
getGridPoints
in interfaceFieldInterpolationGrid<T extends CalculusFieldElement<T>>
- Parameters:
stepStart
- start of the stepstepEnd
- end of the step- Returns:
- time points between start and end
-
-