Closest Approach#
- public class ClosestApproach#
A close approach between an orbit and a target orbit. Obtained by calling
Orbit.nextClosestApproach(Orbit)orOrbit.closestApproaches(Orbit, int).Note
A close approach is a snapshot: the time of closest approach is estimated once when the object is created, and every member describes the state at that time. Relative quantities are the target relative to the orbiting object (target minus self).
- double getUT()#
The universal time of the closest approach, in seconds.
- double getTimeTo()#
The time until the closest approach, in seconds.
- double getDistance()#
The distance between the objects at the closest approach, in meters.
- double getRelativeSpeed()#
The relative speed of the objects at the closest approach, in meters per second. This is the magnitude of
ClosestApproach.relativeVelocity(ReferenceFrame), and does not depend on the choice of reference frame.
- CelestialBody getBody()#
The celestial body doing the approaching, or
nullif it is not a celestial body.
- CelestialBody getTargetBody()#
The celestial body being approached, or
nullif the target is not a celestial body.
- org.javatuples.Triplet<Double, Double, Double> position(ReferenceFrame referenceFrame)#
The position of the orbiting object at the closest approach.
- Parameters:
referenceFrame (
ReferenceFrame) – The reference frame that the returned position vector is in. Defaults to the orbital reference frame of the object the orbit belongs to.
- Returns:
The position as a vector.
- org.javatuples.Triplet<Double, Double, Double> targetPosition(ReferenceFrame referenceFrame)#
The position of the target object at the closest approach.
- Parameters:
referenceFrame (
ReferenceFrame) – The reference frame that the returned position vector is in. Defaults to the orbital reference frame of the object the orbit belongs to.
- Returns:
The position as a vector.
- org.javatuples.Triplet<Double, Double, Double> velocity(ReferenceFrame referenceFrame)#
The velocity of the orbiting object at the closest approach.
- Parameters:
referenceFrame (
ReferenceFrame) – The reference frame that the returned velocity vector is in. Defaults to the orbital reference frame of the object the orbit belongs to.
- Returns:
The velocity as a vector.
- org.javatuples.Triplet<Double, Double, Double> targetVelocity(ReferenceFrame referenceFrame)#
The velocity of the target object at the closest approach.
- Parameters:
referenceFrame (
ReferenceFrame) – The reference frame that the returned velocity vector is in. Defaults to the orbital reference frame of the object the orbit belongs to.
- Returns:
The velocity as a vector.
- org.javatuples.Triplet<Double, Double, Double> relativePosition(ReferenceFrame referenceFrame)#
The position of the target relative to the orbiting object at the closest approach.
- Parameters:
referenceFrame (
ReferenceFrame) – The reference frame whose axes the returned vector is expressed in. Defaults to the orbital reference frame of the object the orbit belongs to.
- Returns:
The relative position as a vector.
- org.javatuples.Triplet<Double, Double, Double> relativeVelocity(ReferenceFrame referenceFrame)#
The velocity of the target relative to the orbiting object at the closest approach.
- Parameters:
referenceFrame (
ReferenceFrame) – The reference frame whose axes the returned vector is expressed in. Defaults to the orbital reference frame of the object the orbit belongs to.
- Returns:
The relative velocity as a vector.