User Manual 4.13 Directions

De Wiki
Aller à : navigation, rechercher

Introduction

Scope

The “direction” objects are used for attitude computation purposes to describe different types of axis in space that can evolve in time. A direction provides a vector in space at any date in a given frame. A direction can be for example "spacecraft-moon" or "nadir direction of the spacecraft". An attitude law can then be defined using two of those directions.

All available directions belong to the following categories:

  • Defined by a "target" moving point, and a given origin point;
  • Defined by a vector only known to be constant in time in a particular frame, or defined by a physical property.

The available features are listed in the description of the general IDirection interface or of the more specific ITargetDirection interface (for directions pointing a target).

Javadoc

The directions are available in the package fr.cnes.sirius.patrius.attitudes.directions of the PATRIUS library.

Library Javadoc
Patrius [[[:Modèle:JavaDoc4.13]]/fr/cnes/sirius/patrius/attitudes/package-summary.html Package fr.cnes.sirius.patrius.attitudes.directions]

Links

None as of now.

Useful Documents

None as of now.

Package Overview

The following diagram represents the two main interfaces of the "directions" package, and for each interface some of the implemented directions.

Please note that not all implementations are present in the following diagram for the sake of clarity.

PATRIMOINESIRIUSdirections.png

Features Description

Directions

The available directions are:

Basic direction

This direction is defined at any date by a vector; this vector can be constant in a frame, or it can be defined by a physical property (for instance the axis of the poles of a celestial body, the orbit momentum, the velocity vector...).

The getVector and getLine methods of this interface use a PVCoordinatesProvider to represent the origin of the direction, but for some of them this input parameter is unused (for instance for the poles of a celestial body direction). See each javadoc for the associated behavior.

All directions can also provide the line containing the given origin and directed by the vector, expressed in any frame of the tree.

Ground velocity direction

This direction is used for instance when it comes to take pictures of the ground. To avoid distortion, the satellite has to compensate the earth rotation around its yaw axis. On the following drawing, the red direction is the one that has to be followed to compensate the earth rotation.

Vitsol.png

Target direction

This direction also implements the methods of basic directions. It is defined at any date by the position of two points of space: the target (that defines the direction) and the origin given by the user. The associated vector (and line) is computed from the origin to the target.

Aberration corrections

The available aberration corrections are:

  • NONE: no aberration correction is applied.
  • LIGHT_TIME: the light-time aberration correction is applied. This aberration correction takes into account the apparent displacement of the source (from the receiver point of view) or of the observer (from the transmitter point of view) during the time of propagation.
  • STELLAR: the stellar aberration correction is applied. This aberration correction takes into account the observer velocity at reception time (from the receiver point of view) or the source velocity at transmission time (from the transmitter point of view).
  • ALL: both the light-time and the stellar aberration corrections are applied.

Getting Started

Use

For all directions

All the directions implement the "IDirection" interface and so provide the "getVector" method. This method needs a date and a frame to express the vector, and the PV coordinates of the origin point (unused for some of them). It shall be used this way :

Vector3D directionVector = myDirection.getVector(pvCoordinatesProvider, date, frame);

They also provide the "getLine" method, with the same arguments.

Line directionLine = myDirection.getLine(pvCoordinatesProvider, date, frame);

NB : when the PVCoordinatesProvider is null then the origin of the direction is tacitly the frame origin.

For target directions

The directions that implement the "ITargetDirection" interface also provide the "getTarget" method :

PVCoordinates directionTarget = myTargetDirection.getTargetPVCoordinates(date, frame);

Contents

Interfaces

Interface Summary Javadoc
IDirection General interface for all directions classes. All basic directions implement it. [[[:Modèle:JavaDoc4.13]]/fr/cnes/sirius/patrius/attitudes/directions/IDirection.html ...]
ITargetDirection This interface extends IDirection for the particular case of directions defined by a target point. The vector's direction is oriented from the given origin to the target. [[[:Modèle:JavaDoc4.13]]/fr/cnes/sirius/patrius/attitudes/directions/ITargetDirection.html ...]

Classes

Class Summary Javadoc
ConstantVectorDirection Vector constant in one of the frames of the tree. [[[:Modèle:JavaDoc4.13]]/fr/cnes/sirius/patrius/attitudes/directions/ConstantVectorDirection.html ...]
VelocityDirection Velocity of the origin point expressed in a reference frame, projected in the given one. [[[:Modèle:JavaDoc4.13]]/fr/cnes/sirius/patrius/attitudes/directions/VelocityDirection.html ...]
MomentumDirection Momentum : normal vector to the trajectory plane of the origin point around a celestial body. [[[:Modèle:JavaDoc4.13]]/fr/cnes/sirius/patrius/attitudes/directions/MomentumDirection.html ...]
CelestialBodyPolesAxisDirection Axis of the poles of a celestial body. [[[:Modèle:JavaDoc4.13]]/fr/cnes/sirius/patrius/attitudes/directions/CelestialBodyPolesAxisDirection.html ...]
ToCelestialBodyCenterDirection Vector from the origin to the center of a celestial body. [[[:Modèle:JavaDoc4.13]]/fr/cnes/sirius/patrius/attitudes/directions/ToCelestialBodyCenterDirection.html ...]
EarthCenterDirection Vector from the origin to the center of the Earth central body. [[[:Modèle:JavaDoc4.13]]/fr/cnes/sirius/patrius/attitudes/directions/EarthCenterDirection.html ...]
GenericTargetDirection Defined by a PVCoordinatesProvider target. [[[:Modèle:JavaDoc4.13]]/fr/cnes/sirius/patrius/attitudes/directions/GenericTargetDirection.html ...]
BodyPointTargetDirection Defined by target which is a GeodeticPoint on a BodyShape. [[[:Modèle:JavaDoc4.13]]/fr/cnes/sirius/patrius/attitudes/directions/BodyPointTargetDirection.html ...]
GroundVelocityDirection Defined by the location of the ground target point given by the pointing direction of the satellite and the body shape. [[[:Modèle:JavaDoc4.13]]/fr/cnes/sirius/patrius/attitudes/directions/GroundVelocityDirection.html ...]
NadirDirection Defined by the location of the nadir point and the satellite position. [[[:Modèle:JavaDoc4.13]]/fr/cnes/sirius/patrius/attitudes/directions/NadirDirection.html ...]
CrossProductDirection Cross Product of two directions. [[[:Modèle:JavaDoc4.13]]/fr/cnes/sirius/patrius/attitudes/directions/CrossProductDirection.html ...]
GlintApproximatePointingDirection Direction to the Sun specular reflexion point. [[[:Modèle:JavaDoc4.13]]/fr/cnes/sirius/patrius/attitudes/directions/GlintApproximatePointingDirection.html ...]
EarthToCelestialBodyCenterDirection Direction from Earth to the celestial body center. [[[:Modèle:JavaDoc4.13]]/fr/cnes/sirius/patrius/attitudes/directions/EarthToCelestialBodyCenterDirection.html ...]