Class FieldMaxGapInterpolationGrid<T extends CalculusFieldElement<T>>
- java.lang.Object
-
- org.orekit.propagation.semianalytical.dsst.utilities.FieldMaxGapInterpolationGrid<T>
-
- Type Parameters:
T
- type of the field elements
- All Implemented Interfaces:
FieldInterpolationGrid<T>
public class FieldMaxGapInterpolationGrid<T extends CalculusFieldElement<T>> extends Object implements FieldInterpolationGrid<T>
Interpolation grid where points obey a maximum time gap.The grid is adapted to the step considered, meaning that for short steps, the grid will have numerous points.
- Since:
- 7.1
- Author:
- Luc Maisonobe
-
-
Constructor Summary
Constructors Constructor Description FieldMaxGapInterpolationGrid(Field<T> field, T maxGap)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description T[]
getGridPoints(T stepStart, T stepEnd)
Get grid points that are within the current step.
-
-
-
Method Detail
-
getGridPoints
public T[] getGridPoints(T stepStart, T stepEnd)
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
-
-