org.orekit.utils
public class PVCoordinates extends Object implements TimeShiftable<PVCoordinates>, Serializable
The state can be slightly shifted to close dates. This shift is based on a simple linear model. It is not intended as a replacement for proper orbit propagation (it is not even Keplerian!) but should be sufficient for either small time shifts or coarse accuracy.
This class is the angular counterpart to AngularCoordinates
.
Instances of this class are guaranteed to be immutable.
Modifier and Type | Field and Description |
---|---|
static PVCoordinates |
ZERO
Fixed position/velocity at origin (both p and v are zero vectors).
|
Constructor and Description |
---|
PVCoordinates()
Simple constructor.
|
PVCoordinates(double a,
PVCoordinates pv)
Multiplicative constructor
|
PVCoordinates(double a1,
PVCoordinates pv1,
double a2,
PVCoordinates pv2)
Linear constructor
|
PVCoordinates(double a1,
PVCoordinates pv1,
double a2,
PVCoordinates pv2,
double a3,
PVCoordinates pv3)
Linear constructor
|
PVCoordinates(double a1,
PVCoordinates pv1,
double a2,
PVCoordinates pv2,
double a3,
PVCoordinates pv3,
double a4,
PVCoordinates pv4)
Linear constructor
|
PVCoordinates(PVCoordinates start,
PVCoordinates end)
Subtractive constructor
|
PVCoordinates(Vector3D position,
Vector3D velocity)
Builds a PVCoordinates pair.
|
Modifier and Type | Method and Description |
---|---|
static Vector3D |
estimateVelocity(Vector3D start,
Vector3D end,
double dt)
Estimate velocity between two positions.
|
Vector3D |
getAngularVelocity()
Get the angular velocity (spin) of this point as seen from the origin.
|
Vector3D |
getMomentum()
Gets the momentum.
|
Vector3D |
getPosition()
Gets the position.
|
Vector3D |
getVelocity()
Gets the velocity.
|
static PVCoordinates |
interpolate(AbsoluteDate date,
boolean useVelocities,
Collection<Pair<AbsoluteDate,PVCoordinates>> sample)
Interpolate position-velocity.
|
PVCoordinates |
negate()
Get the opposite of the instance.
|
PVCoordinates |
shiftedBy(double dt)
Get a time-shifted state.
|
String |
toString()
Return a string representation of this position/velocity pair.
|
public static final PVCoordinates ZERO
public PVCoordinates()
Sets the Coordinates to default : (0 0 0) (0 0 0).
public PVCoordinates(Vector3D position, Vector3D velocity)
position
- the position vector (m)velocity
- the velocity vector (m/s)public PVCoordinates(double a, PVCoordinates pv)
Build a PVCoordinates from another one and a scale factor.
The PVCoordinates built will be a * pv
a
- scale factorpv
- base (unscaled) PVCoordinatespublic PVCoordinates(PVCoordinates start, PVCoordinates end)
Build a relative PVCoordinates from a start and an end position.
The PVCoordinates built will be end - start.
start
- Starting PVCoordinatesend
- ending PVCoordinatespublic PVCoordinates(double a1, PVCoordinates pv1, double a2, PVCoordinates pv2)
Build a PVCoordinates from two other ones and corresponding scale factors.
The PVCoordinates built will be a1 * u1 + a2 * u2
a1
- first scale factorpv1
- first base (unscaled) PVCoordinatesa2
- second scale factorpv2
- second base (unscaled) PVCoordinatespublic PVCoordinates(double a1, PVCoordinates pv1, double a2, PVCoordinates pv2, double a3, PVCoordinates pv3)
Build a PVCoordinates from three other ones and corresponding scale factors.
The PVCoordinates built will be a1 * u1 + a2 * u2 + a3 * u3
a1
- first scale factorpv1
- first base (unscaled) PVCoordinatesa2
- second scale factorpv2
- second base (unscaled) PVCoordinatesa3
- third scale factorpv3
- third base (unscaled) PVCoordinatespublic PVCoordinates(double a1, PVCoordinates pv1, double a2, PVCoordinates pv2, double a3, PVCoordinates pv3, double a4, PVCoordinates pv4)
Build a PVCoordinates from four other ones and corresponding scale factors.
The PVCoordinates built will be a1 * u1 + a2 * u2 + a3 * u3 + a4 * u4
a1
- first scale factorpv1
- first base (unscaled) PVCoordinatesa2
- second scale factorpv2
- second base (unscaled) PVCoordinatesa3
- third scale factorpv3
- third base (unscaled) PVCoordinatesa4
- fourth scale factorpv4
- fourth base (unscaled) PVCoordinatespublic static Vector3D estimateVelocity(Vector3D start, Vector3D end, double dt)
Estimation is based on a simple fixed velocity translation during the time interval between the two positions.
start
- start positionend
- end positiondt
- time elapsed between the dates of the two positionspublic PVCoordinates shiftedBy(double dt)
The state can be slightly shifted to close dates. This shift is based on a simple linear model. It is not intended as a replacement for proper orbit propagation (it is not even Keplerian!) but should be sufficient for either small time shifts or coarse accuracy.
shiftedBy
in interface TimeShiftable<PVCoordinates>
dt
- time shift in secondspublic static PVCoordinates interpolate(AbsoluteDate date, boolean useVelocities, Collection<Pair<AbsoluteDate,PVCoordinates>> sample)
The interpolated instance is created by polynomial Hermite interpolation ensuring velocity remains the exact derivative of position.
Note that even if first time derivatives (velocities) from sample can be ignored, the interpolated instance always includes interpolated derivatives. This feature can be used explicitly to compute these derivatives when it would be too complex to compute them from an analytical formula: just compute a few sample points from the explicit formula and set the derivatives to zero in these sample points, then use interpolation to add derivatives consistent with the positions.
date
- interpolation dateuseVelocities
- if true, use sample points velocities,
otherwise ignore them and use only positionssample
- sample points on which interpolation should be donepublic Vector3D getPosition()
public Vector3D getVelocity()
public Vector3D getMomentum()
This vector is the p ⊗ v where p is position, v is velocity and ⊗ is cross product. To get the real physical angular momentum you need to multiply this vector by the mass.
The returned vector is recomputed each time this method is called, it is not cached.
public Vector3D getAngularVelocity()
The angular velocity vector is parallel to the angular
momentum
and is computed by ω = p × v / ||p||2
public PVCoordinates negate()
Copyright © 2002–2015 CS Syst?mes d'Information. All rights reserved.