Package org.orekit.utils
Interface ShiftableFieldPVCoordinatesHolder<S extends FieldPVCoordinatesProvider<T>,T extends CalculusFieldElement<T>>
- All Superinterfaces:
FieldPVCoordinatesProvider<T>,FieldTimeShiftable<ShiftableFieldPVCoordinatesHolder<S,,T>, T> FieldTimeStamped<T>,TimeShiftable<ShiftableFieldPVCoordinatesHolder<S,T>>
- All Known Implementing Classes:
FieldAbsolutePVCoordinates,FieldCartesianOrbit,FieldCircularOrbit,FieldEquinoctialOrbit,FieldKeplerianOrbit,FieldOrbit
public interface ShiftableFieldPVCoordinatesHolder<S extends FieldPVCoordinatesProvider<T>,T extends CalculusFieldElement<T>>
extends FieldPVCoordinatesProvider<T>, FieldTimeStamped<T>, FieldTimeShiftable<ShiftableFieldPVCoordinatesHolder<S,T>,T>
Interface for time-shiftable Field PV provider holding themselves PV coordinates.
- Since:
- 14.0
- Author:
- Romain Serra
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiongetFrame()Getter for the intrinsic frame.default FieldVector3D<T> Getter for the position vector.default FieldVector3D<T> getPosition(Frame outputFrame) Get the position in a specified frame.default FieldVector3D<T> getPosition(FieldAbsoluteDate<T> date, Frame outputFrame) Get the position of the body in the selected frame.Getter for the intrinsic position-velocity vector.default TimeStampedFieldPVCoordinates<T> getPVCoordinates(Frame outputFrame) Get the position-velocity vector in a specified frame.default TimeStampedFieldPVCoordinates<T> getPVCoordinates(FieldAbsoluteDate<T> date, Frame outputFrame) Get theFieldPVCoordinatesof the body in the selected frame.default FieldVector3D<T> Getter for the velocity vector.default FieldVector3D<T> getVelocity(Frame outputFrame) Get the velocity in a specified frame.default FieldVector3D<T> getVelocity(FieldAbsoluteDate<T> date, Frame outputFrame) Get the velocity of the body in the selected frame.Methods inherited from interface org.orekit.time.FieldTimeShiftable
shiftedByMethods inherited from interface org.orekit.time.FieldTimeStamped
durationFrom, durationFrom, getDateMethods inherited from interface org.orekit.time.TimeShiftable
shiftedBy, shiftedBy
-
Method Details
-
getPVCoordinates
TimeStampedFieldPVCoordinates<T> getPVCoordinates()Getter for the intrinsic position-velocity vector.- Returns:
- position-velocity
-
getPosition
Getter for the position vector.- Returns:
- position
-
getVelocity
Getter for the velocity vector.- Returns:
- velocity
-
getFrame
Frame getFrame()Getter for the intrinsic frame.- Returns:
- frame
-
getPosition
Get the position in a specified frame.- Parameters:
outputFrame- frame in which the position coordinates shall be computed- Returns:
- position
-
getPosition
Description copied from interface:FieldPVCoordinatesProviderGet the position of the body in the selected frame.- Specified by:
getPositionin interfaceFieldPVCoordinatesProvider<S extends FieldPVCoordinatesProvider<T>>- Parameters:
date- current dateoutputFrame- the frame where to define the position- Returns:
- position of the body (m and)
-
getVelocity
Get the velocity in a specified frame.- Parameters:
outputFrame- frame in which the velocity coordinates shall be computed- Returns:
- velocity
-
getVelocity
Description copied from interface:FieldPVCoordinatesProviderGet the velocity of the body in the selected frame.- Specified by:
getVelocityin interfaceFieldPVCoordinatesProvider<S extends FieldPVCoordinatesProvider<T>>- Parameters:
date- current dateoutputFrame- the frame where to define the velocity- Returns:
- velocity of the body (m/s)
-
getPVCoordinates
Get the position-velocity vector in a specified frame.- Parameters:
outputFrame- frame in which the coordinates shall be computed- Returns:
- vector
-
getPVCoordinates
default TimeStampedFieldPVCoordinates<T> getPVCoordinates(FieldAbsoluteDate<T> date, Frame outputFrame) Description copied from interface:FieldPVCoordinatesProviderGet theFieldPVCoordinatesof the body in the selected frame.- Specified by:
getPVCoordinatesin interfaceFieldPVCoordinatesProvider<S extends FieldPVCoordinatesProvider<T>>- Parameters:
date- current dateoutputFrame- the frame where to define the position- Returns:
- time-stamped position/velocity of the body (m and m/s)
-