Package org.orekit.utils
Interface ExtendedPVCoordinatesProvider
-
- All Superinterfaces:
PVCoordinatesProvider
- All Known Subinterfaces:
CelestialBody
public interface ExtendedPVCoordinatesProvider extends PVCoordinatesProvider
Interface for PV coordinates providers that also support fields.- Since:
- 9.2
- Author:
- Luc Maisonobe
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description <T extends org.hipparchus.RealFieldElement<T>>
TimeStampedFieldPVCoordinates<T>getPVCoordinates(FieldAbsoluteDate<T> date, Frame frame)
Get theFieldPVCoordinates
of the body in the selected frame.default <T extends org.hipparchus.RealFieldElement<T>>
FieldPVCoordinatesProvider<T>toFieldPVCoordinatesProvider(org.hipparchus.Field<T> field)
Convert to aFieldPVCoordinatesProvider
with a specific type.-
Methods inherited from interface org.orekit.utils.PVCoordinatesProvider
getPVCoordinates
-
-
-
-
Method Detail
-
toFieldPVCoordinatesProvider
default <T extends org.hipparchus.RealFieldElement<T>> FieldPVCoordinatesProvider<T> toFieldPVCoordinatesProvider(org.hipparchus.Field<T> field)
Convert to aFieldPVCoordinatesProvider
with a specific type.- Type Parameters:
T
- the type of the field elements- Parameters:
field
- field for the argument and value- Returns:
- converted function
-
getPVCoordinates
<T extends org.hipparchus.RealFieldElement<T>> TimeStampedFieldPVCoordinates<T> getPVCoordinates(FieldAbsoluteDate<T> date, Frame frame)
Get theFieldPVCoordinates
of the body in the selected frame.- Type Parameters:
T
- type for the field elements- Parameters:
date
- current dateframe
- the frame where to define the position- Returns:
- time-stamped position/velocity of the body (m and m/s)
-
-