Package org.orekit.utils
Interface FieldBoundedPVCoordinatesProvider<T extends CalculusFieldElement<T>>
- Type Parameters:
T- type of the field elements
- All Superinterfaces:
FieldPVCoordinatesProvider<T>
- All Known Subinterfaces:
FieldBoundedPropagator<T>
- All Known Implementing Classes:
FieldEphemeris,FieldIntegratedEphemeris
public interface FieldBoundedPVCoordinatesProvider<T extends CalculusFieldElement<T>>
extends FieldPVCoordinatesProvider<T>
Interface for bounded, Field PV coordinates providers.
- Since:
- 13.1
- Author:
- Romain Serra
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionGet the last date of the range.Get the first date of the range.Methods inherited from interface org.orekit.utils.FieldPVCoordinatesProvider
getPosition, getPVCoordinates, getVelocity
-
Method Details
-
getMinDate
FieldAbsoluteDate<T> getMinDate()Get the first date of the range.- Returns:
- the first date of the range
-
getMaxDate
FieldAbsoluteDate<T> getMaxDate()Get the last date of the range.- Returns:
- the last date of the range
-