Package org.orekit.utils
Interface FieldPVCoordinatesProvider<T extends org.hipparchus.RealFieldElement<T>>
-
- All Known Subinterfaces:
FieldBoundedPropagator<T>,FieldPropagator<T>
- All Known Implementing Classes:
FieldAbstractAnalyticalPropagator,FieldAbstractIntegratedPropagator,FieldAbstractPropagator,FieldCartesianOrbit,FieldCircularOrbit,FieldEcksteinHechlerPropagator,FieldEquinoctialOrbit,FieldIntegratedEphemeris,FieldKeplerianOrbit,FieldKeplerianPropagator,FieldNumericalPropagator,FieldOrbit
public interface FieldPVCoordinatesProvider<T extends org.hipparchus.RealFieldElement<T>>Interface for PV coordinates providers.- Author:
- Veronique Pommier
The PV coordinates provider interface can be used by any class used for position/velocity computation, for example celestial bodies or spacecraft position/velocity propagators, and many others...
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TimeStampedFieldPVCoordinates<T>getPVCoordinates(FieldAbsoluteDate<T> date, Frame frame)Get theFieldPVCoordinatesof the body in the selected frame.
-
-
-
Method Detail
-
getPVCoordinates
TimeStampedFieldPVCoordinates<T> getPVCoordinates(FieldAbsoluteDate<T> date, Frame frame)
Get theFieldPVCoordinatesof the body in the selected frame.- Parameters:
date- current dateframe- the frame where to define the position- Returns:
- time-stamped position/velocity of the body (m and m/s)
-
-