Class YawCompensation
- All Implemented Interfaces:
AttitudeProvider,AttitudeProviderModifier,AttitudeRotationModel,EventDetectorsProvider,ParameterDriversProvider
Yaw compensation is mainly used for Earth observation satellites. As a satellites moves along its track, the image of ground points move on the focal point of the optical sensor. This motion is a combination of the satellite motion, but also on the Earth rotation and on the current attitude (in particular if the pointing includes Roll or Pitch offset). In order to reduce geometrical distortion, the yaw angle is changed a little from the simple ground pointing attitude such that the apparent motion of ground points is along a prescribed axis (orthogonal to the optical sensors rows), taking into account all effects.
This attitude is implemented as a wrapper on top of an underlying ground pointing law that defines the roll and pitch angles.
Instances of this class are guaranteed to be immutable.
- Author:
- Véronique Pommier-Maurussane
- See Also:
-
Field Summary
Fields inherited from interface org.orekit.propagation.events.EventDetectorsProvider
DATATION_ACCURACY -
Constructor Summary
ConstructorsConstructorDescriptionYawCompensation(Frame inertialFrame, GroundPointing groundPointingLaw) Creates a new instance. -
Method Summary
Modifier and TypeMethodDescription<T extends CalculusFieldElement<T>>
FieldAttitude<T> getAttitude(FieldPVCoordinatesProvider<T> pvProv, FieldAbsoluteDate<T> date, Frame frame) Compute the attitude corresponding to an orbital state.getAttitude(PVCoordinatesProvider pvProv, AbsoluteDate date, Frame frame) Compute the attitude corresponding to an orbital state.<T extends CalculusFieldElement<T>>
TgetYawAngle(FieldPVCoordinatesProvider<T> pvProv, FieldAbsoluteDate<T> date, Frame frame) Compute the yaw compensation angle at date.doublegetYawAngle(PVCoordinatesProvider pvProv, AbsoluteDate date, Frame frame) Compute the yaw compensation angle at date.Methods inherited from class org.orekit.attitudes.GroundPointingAttitudeModifier
getBaseState, getBaseState, getTargetPosition, getTargetPosition, getTargetPV, getTargetPV, getUnderlyingAttitudeProviderMethods inherited from class org.orekit.attitudes.GroundPointing
getAttitudeRotation, getAttitudeRotation, getBodyFrameMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.orekit.attitudes.AttitudeProvider
getAttitudeRotation, getAttitudeRotation, getAttitudeRotation, getAttitudeRotation, getEventDetectors, getFieldEventDetectorsMethods inherited from interface org.orekit.attitudes.AttitudeProviderModifier
getEventDetectors, getFieldEventDetectors, getParametersDrivers, getUnderlyingAttitudeProviderMethods inherited from interface org.orekit.propagation.events.EventDetectorsProvider
getDateDetector, getFieldDateDetectorMethods inherited from interface org.orekit.utils.ParameterDriversProvider
getNbParametersDriversValue, getParameterDriver, getParameters, getParameters, getParameters, getParameters, getParametersAllValues, getParametersAllValues, isSupported
-
Constructor Details
-
YawCompensation
Creates a new instance.- Parameters:
inertialFrame- frame in which orbital velocities are computedgroundPointingLaw- ground pointing attitude provider without yaw compensation- Since:
- 7.1
-
-
Method Details
-
getAttitude
Compute the attitude corresponding to an orbital state.- Specified by:
getAttitudein interfaceAttitudeProvider- Specified by:
getAttitudein interfaceAttitudeProviderModifier- Overrides:
getAttitudein classGroundPointing- Parameters:
pvProv- local position-velocity provider around current datedate- current dateframe- reference frame from which attitude is computed- Returns:
- attitude on the specified date and position-velocity state
-
getAttitude
public <T extends CalculusFieldElement<T>> FieldAttitude<T> getAttitude(FieldPVCoordinatesProvider<T> pvProv, FieldAbsoluteDate<T> date, Frame frame) Compute the attitude corresponding to an orbital state.- Specified by:
getAttitudein interfaceAttitudeProvider- Specified by:
getAttitudein interfaceAttitudeProviderModifier- Overrides:
getAttitudein classGroundPointing- Type Parameters:
T- type of the field elements- Parameters:
pvProv- local position-velocity provider around current datedate- current dateframe- reference frame from which attitude is computed- Returns:
- attitude on the specified date and position-velocity state
-
getYawAngle
Compute the yaw compensation angle at date.- Parameters:
pvProv- provider for PV coordinatesdate- date at which compensation is requestedframe- reference frame from which attitude is computed- Returns:
- yaw compensation angle for orbit.
-
getYawAngle
public <T extends CalculusFieldElement<T>> T getYawAngle(FieldPVCoordinatesProvider<T> pvProv, FieldAbsoluteDate<T> date, Frame frame) Compute the yaw compensation angle at date.- Type Parameters:
T- type of the field elements- Parameters:
pvProv- provider for PV coordinatesdate- date at which compensation is requestedframe- reference frame from which attitude is computed- Returns:
- yaw compensation angle for orbit.
- Since:
- 9.0
-