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:
ShiftablePVCoordinatesHolder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description FramegetFrame()Getter for the intrinsic frame.default FieldVector3D<T>getPosition()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.TimeStampedFieldPVCoordinates<T>getPVCoordinates()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>getVelocity()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
shiftedBy
-
Methods inherited from interface org.orekit.time.FieldTimeStamped
durationFrom, durationFrom, getDate
-
Methods inherited from interface org.orekit.time.TimeShiftable
shiftedBy, shiftedBy
-
-
-
-
Method Detail
-
getPVCoordinates
TimeStampedFieldPVCoordinates<T> getPVCoordinates()
Getter for the intrinsic position-velocity vector.- Returns:
- position-velocity
-
getPosition
default FieldVector3D<T> getPosition()
Getter for the position vector.- Returns:
- position
-
getVelocity
default FieldVector3D<T> getVelocity()
Getter for the velocity vector.- Returns:
- velocity
-
getFrame
Frame getFrame()
Getter for the intrinsic frame.- Returns:
- frame
-
getPosition
default FieldVector3D<T> getPosition(Frame outputFrame)
Get the position in a specified frame.- Parameters:
outputFrame- frame in which the position coordinates shall be computed- Returns:
- position
-
getPosition
default FieldVector3D<T> getPosition(FieldAbsoluteDate<T> date, Frame outputFrame)
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
default FieldVector3D<T> getVelocity(Frame outputFrame)
Get the velocity in a specified frame.- Parameters:
outputFrame- frame in which the velocity coordinates shall be computed- Returns:
- velocity
-
getVelocity
default FieldVector3D<T> getVelocity(FieldAbsoluteDate<T> date, Frame outputFrame)
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
default TimeStampedFieldPVCoordinates<T> getPVCoordinates(Frame outputFrame)
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)
-
-