Class FieldEquinoctialOrbit<T extends CalculusFieldElement<T>>
- Type Parameters:
T- type of the field elements
- All Implemented Interfaces:
PositionAngleBased<FieldEquinoctialOrbit<T>>,FieldTimeShiftable<ShiftableFieldPVCoordinatesHolder<FieldOrbit<T>,,T>, T> FieldTimeStamped<T>,TimeShiftable<ShiftableFieldPVCoordinatesHolder<FieldOrbit<T>,,T>> FieldPVCoordinatesProvider<T>,ShiftableFieldPVCoordinatesHolder<FieldOrbit<T>,T>
The parameters used internally are the equinoctial elements which can be related to Keplerian elements as follows:
a
ex = e cos(ω + Ω)
ey = e sin(ω + Ω)
hx = tan(i/2) cos(Ω)
hy = tan(i/2) sin(Ω)
lv = v + ω + Ω
where ω stands for the Perigee Argument and Ω stands for the
Right Ascension of the Ascending Node.
The conversion equations from and to Keplerian elements given above hold only when both sides are unambiguously defined, i.e. when orbit is neither equatorial nor circular. When orbit is either equatorial or circular, the equinoctial parameters are still unambiguously defined whereas some Keplerian elements (more precisely ω and Ω) become ambiguous. For this reason, equinoctial parameters are the recommended way to represent orbits. Note however than the present implementation does not handle non-elliptical cases.
The instance EquinoctialOrbit is guaranteed to be immutable.
- Since:
- 9.0
- Author:
- Mathieu Roméro, Luc Maisonobe, Guylaine Prat, Fabien Maussion, Véronique Pommier-Maurussane
- See Also:
-
Field Summary
Fields inherited from class org.orekit.orbits.FieldOrbit
TOLERANCE_POSITION_ANGLE_RATE -
Constructor Summary
ConstructorsConstructorDescriptionFieldEquinoctialOrbit(Field<T> field, EquinoctialOrbit op) Constructor from Field and EquinoctialOrbit.FieldEquinoctialOrbit(Field<T> field, Orbit op) Constructor from Field and Orbit.Constructor from any kind of orbital parameters.FieldEquinoctialOrbit(FieldPVCoordinates<T> pvCoordinates, Frame frame, FieldAbsoluteDate<T> date, T mu) Constructor from Cartesian parameters.FieldEquinoctialOrbit(TimeStampedFieldPVCoordinates<T> pvCoordinates, Frame frame, T mu) Constructor from Cartesian parameters.FieldEquinoctialOrbit(T a, T ex, T ey, T hx, T hy, T l, PositionAngleType type, Frame frame, FieldAbsoluteDate<T> date, T mu) Creates a new instance.FieldEquinoctialOrbit(T a, T ex, T ey, T hx, T hy, T l, PositionAngleType type, PositionAngleType cachedPositionAngleType, Frame frame, FieldAbsoluteDate<T> date, T mu) Creates a new instance.FieldEquinoctialOrbit(T a, T ex, T ey, T hx, T hy, T l, T aDot, T exDot, T eyDot, T hxDot, T hyDot, T lDot, PositionAngleType type, Frame frame, FieldAbsoluteDate<T> date, T mu) Creates a new instance.FieldEquinoctialOrbit(T a, T ex, T ey, T hx, T hy, T l, T aDot, T exDot, T eyDot, T hxDot, T hyDot, T lDot, PositionAngleType type, PositionAngleType cachedPositionAngleType, Frame frame, FieldAbsoluteDate<T> date, T mu) Creates a new instance. -
Method Summary
Modifier and TypeMethodDescriptionvoidaddKeplerContribution(PositionAngleType type, T gm, T[] pDot) Add the contribution of the Keplerian motion to parameters derivativesprotected T[][]Compute the Jacobian of the orbital parameters with eccentric angle with respect to the Cartesian parameters.protected T[][]Compute the Jacobian of the orbital parameters with mean angle with respect to the Cartesian parameters.protected T[][]Compute the Jacobian of the orbital parameters with true angle with respect to the Cartesian parameters.getA()Get the semi-major axis.getADot()Get the semi-major axis derivative.Get the cachedPositionAngleType.getE()Get the eccentricity.getEDot()Get the eccentricity derivative.Get the first component of the equinoctial eccentricity vector.Get the first component of the equinoctial eccentricity vector derivative.Get the second component of the equinoctial eccentricity vector.Get the second component of the equinoctial eccentricity vector derivative.getHx()Get the first component of the inclination vector.getHxDot()Get the first component of the inclination vector derivative.getHy()Get the second component of the inclination vector.getHyDot()Get the second component of the inclination vector derivative.getI()Get the inclination.getIDot()Get the inclination derivative.getL(PositionAngleType type) Get the longitude argument.getLDot(PositionAngleType type) Get the longitude argument derivative.getLE()Get the eccentric longitude argument.getLEDot()Get the eccentric longitude argument derivative.getLM()Get the mean longitude argument.getLMDot()Get the mean longitude argument derivative.getLv()Get the true longitude argument.getLvDot()Get the true longitude argument derivative.getType()Get the orbit type.booleanCheck if orbit includes non-Keplerian rates.booleanTells whether the instance holds rates (first-order time derivatives) for dependent variables that are incompatible with Keplerian motion.Create a new object representing the same physical orbital state, but attached to a different reference frame.protected FieldVector3D<T> Compute the position coordinates from the canonical parameters.protected TimeStampedFieldPVCoordinates<T> Compute the position/velocity coordinates from the canonical parameters.shiftedBy(double dt) Get a time-shifted orbit.shiftedBy(TimeOffset dt) Get a time-shifted orbit.Get a time-shifted orbit.toOrbit()Transforms the FieldOrbit instance into an Orbit instance.toString()Returns a string representation of this equinoctial parameters object.withCachedPositionAngleType(PositionAngleType positionAngleType) Creates a new instance with the provided type used for caching.Creates a new instance such thatPositionAngleBased.hasNonKeplerianRates()is false.Methods inherited from class org.orekit.orbits.FieldOrbit
fillHalfRow, fillHalfRow, fillHalfRow, fillHalfRow, fillHalfRow, fillHalfRow, getDate, getDecompositionSolver, getField, getFrame, getJacobianWrtCartesian, getJacobianWrtParameters, getKeplerianMeanMotion, getKeplerianPeriod, getMeanAnomalyDotWrtA, getMu, getOne, getPosition, getPosition, getPosition, getPVCoordinates, getPVCoordinates, getPVCoordinates, getVelocity, getZero, hasNonKeplerianAcceleration, isElliptical, nonKeplerianAcceleration, shiftNonKeplerianMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface org.orekit.time.FieldTimeStamped
durationFrom, durationFromMethods inherited from interface org.orekit.utils.ShiftableFieldPVCoordinatesHolder
getVelocity, getVelocity
-
Constructor Details
-
FieldEquinoctialOrbit
public FieldEquinoctialOrbit(T a, T ex, T ey, T hx, T hy, T l, PositionAngleType type, PositionAngleType cachedPositionAngleType, Frame frame, FieldAbsoluteDate<T> date, T mu) throws IllegalArgumentException Creates a new instance.- Parameters:
a- semi-major axis (m)ex- e cos(ω + Ω), first component of eccentricity vectorey- e sin(ω + Ω), second component of eccentricity vectorhx- tan(i/2) cos(Ω), first component of inclination vectorhy- tan(i/2) sin(Ω), second component of inclination vectorl- (M or E or v) + ω + Ω, mean, eccentric or true longitude argument (rad)type- type of longitude argumentcachedPositionAngleType- type of cached longitude argumentframe- the frame in which the parameters are defined (must be apseudo-inertial frame)date- date of the orbital parametersmu- central attraction coefficient (m³/s²)- Throws:
IllegalArgumentException- if eccentricity is equal to 1 or larger or if frame is not apseudo-inertial frame- Since:
- 12.1
-
FieldEquinoctialOrbit
public FieldEquinoctialOrbit(T a, T ex, T ey, T hx, T hy, T l, PositionAngleType type, Frame frame, FieldAbsoluteDate<T> date, T mu) throws IllegalArgumentException Creates a new instance.- Parameters:
a- semi-major axis (m)ex- e cos(ω + Ω), first component of eccentricity vectorey- e sin(ω + Ω), second component of eccentricity vectorhx- tan(i/2) cos(Ω), first component of inclination vectorhy- tan(i/2) sin(Ω), second component of inclination vectorl- (M or E or v) + ω + Ω, mean, eccentric or true longitude argument (rad)type- type of longitude argumentframe- the frame in which the parameters are defined (must be apseudo-inertial frame)date- date of the orbital parametersmu- central attraction coefficient (m³/s²)- Throws:
IllegalArgumentException- if eccentricity is equal to 1 or larger or if frame is not apseudo-inertial frame
-
FieldEquinoctialOrbit
public FieldEquinoctialOrbit(T a, T ex, T ey, T hx, T hy, T l, T aDot, T exDot, T eyDot, T hxDot, T hyDot, T lDot, PositionAngleType type, PositionAngleType cachedPositionAngleType, Frame frame, FieldAbsoluteDate<T> date, T mu) throws IllegalArgumentException Creates a new instance.- Parameters:
a- semi-major axis (m)ex- e cos(ω + Ω), first component of eccentricity vectorey- e sin(ω + Ω), second component of eccentricity vectorhx- tan(i/2) cos(Ω), first component of inclination vectorhy- tan(i/2) sin(Ω), second component of inclination vectorl- (M or E or v) + ω + Ω, mean, eccentric or true longitude argument (rad)aDot- semi-major axis derivative (m/s)exDot- d(e cos(ω + Ω))/dt, first component of eccentricity vector derivativeeyDot- d(e sin(ω + Ω))/dt, second component of eccentricity vector derivativehxDot- d(tan(i/2) cos(Ω))/dt, first component of inclination vector derivativehyDot- d(tan(i/2) sin(Ω))/dt, second component of inclination vector derivativelDot- d(M or E or v) + ω + Ω)/dr, mean, eccentric or true longitude argument derivative (rad/s)type- type of longitude argumentcachedPositionAngleType- of cached longitude argumentframe- the frame in which the parameters are defined (must be apseudo-inertial frame)date- date of the orbital parametersmu- central attraction coefficient (m³/s²)- Throws:
IllegalArgumentException- if eccentricity is equal to 1 or larger or if frame is not apseudo-inertial frame- Since:
- 12.1
-
FieldEquinoctialOrbit
public FieldEquinoctialOrbit(T a, T ex, T ey, T hx, T hy, T l, T aDot, T exDot, T eyDot, T hxDot, T hyDot, T lDot, PositionAngleType type, Frame frame, FieldAbsoluteDate<T> date, T mu) throws IllegalArgumentException Creates a new instance.- Parameters:
a- semi-major axis (m)ex- e cos(ω + Ω), first component of eccentricity vectorey- e sin(ω + Ω), second component of eccentricity vectorhx- tan(i/2) cos(Ω), first component of inclination vectorhy- tan(i/2) sin(Ω), second component of inclination vectorl- (M or E or v) + ω + Ω, mean, eccentric or true longitude argument (rad)aDot- semi-major axis derivative (m/s)exDot- d(e cos(ω + Ω))/dt, first component of eccentricity vector derivativeeyDot- d(e sin(ω + Ω))/dt, second component of eccentricity vector derivativehxDot- d(tan(i/2) cos(Ω))/dt, first component of inclination vector derivativehyDot- d(tan(i/2) sin(Ω))/dt, second component of inclination vector derivativelDot- d(M or E or v) + ω + Ω)/dr, mean, eccentric or true longitude argument derivative (rad/s)type- type of longitude argumentframe- the frame in which the parameters are defined (must be apseudo-inertial frame)date- date of the orbital parametersmu- central attraction coefficient (m³/s²)- Throws:
IllegalArgumentException- if eccentricity is equal to 1 or larger or if frame is not apseudo-inertial frame- Since:
- 12.1
-
FieldEquinoctialOrbit
public FieldEquinoctialOrbit(TimeStampedFieldPVCoordinates<T> pvCoordinates, Frame frame, T mu) throws IllegalArgumentException Constructor from Cartesian parameters.The acceleration provided in
pvCoordinatesis accessible usingFieldOrbit.getPVCoordinates()andFieldOrbit.getPVCoordinates(Frame). All other methods usemuand the position to compute the acceleration, includingshiftedBy(CalculusFieldElement)andFieldOrbit.getPVCoordinates(FieldAbsoluteDate, Frame).- Parameters:
pvCoordinates- the position, velocity and accelerationframe- the frame in which are defined theFieldPVCoordinates(must be apseudo-inertial frame)mu- central attraction coefficient (m³/s²)- Throws:
IllegalArgumentException- if eccentricity is equal to 1 or larger or if frame is not apseudo-inertial frame
-
FieldEquinoctialOrbit
public FieldEquinoctialOrbit(FieldPVCoordinates<T> pvCoordinates, Frame frame, FieldAbsoluteDate<T> date, T mu) throws IllegalArgumentException Constructor from Cartesian parameters.The acceleration provided in
pvCoordinatesis accessible usingFieldOrbit.getPVCoordinates()andFieldOrbit.getPVCoordinates(Frame). All other methods usemuand the position to compute the acceleration, includingshiftedBy(CalculusFieldElement)andFieldOrbit.getPVCoordinates(FieldAbsoluteDate, Frame).- Parameters:
pvCoordinates- the position end velocityframe- the frame in which are defined theFieldPVCoordinates(must be apseudo-inertial frame)date- date of the orbital parametersmu- central attraction coefficient (m³/s²)- Throws:
IllegalArgumentException- if eccentricity is equal to 1 or larger or if frame is not apseudo-inertial frame
-
FieldEquinoctialOrbit
Constructor from any kind of orbital parameters.- Parameters:
op- orbital parameters to copy
-
FieldEquinoctialOrbit
Constructor from Field and EquinoctialOrbit.Build a FieldEquinoctialOrbit from non-Field EquinoctialOrbit.
- Parameters:
field- CalculusField to base object onop- non-field orbit with only "constant" terms- Since:
- 12.0
-
FieldEquinoctialOrbit
Constructor from Field and Orbit.Build a FieldEquinoctialOrbit from any non-Field Orbit.
- Parameters:
field- CalculusField to base object onop- non-field orbit with only "constant" terms- Since:
- 12.0
-
-
Method Details
-
getType
Get the orbit type.- Specified by:
getTypein classFieldOrbit<T extends CalculusFieldElement<T>>- Returns:
- orbit type
-
getA
Get the semi-major axis.Note that the semi-major axis is considered negative for hyperbolic orbits.
- Specified by:
getAin classFieldOrbit<T extends CalculusFieldElement<T>>- Returns:
- semi-major axis (m)
-
getADot
Get the semi-major axis derivative.Note that the semi-major axis is considered negative for hyperbolic orbits.
If the orbit was created without derivatives, the value returned is null.
- Specified by:
getADotin classFieldOrbit<T extends CalculusFieldElement<T>>- Returns:
- semi-major axis derivative (m/s)
-
getEquinoctialEx
Get the first component of the equinoctial eccentricity vector.- Specified by:
getEquinoctialExin classFieldOrbit<T extends CalculusFieldElement<T>>- Returns:
- first component of the equinoctial eccentricity vector
-
getEquinoctialExDot
Get the first component of the equinoctial eccentricity vector derivative.If the orbit was created without derivatives, the value returned is null.
- Specified by:
getEquinoctialExDotin classFieldOrbit<T extends CalculusFieldElement<T>>- Returns:
- first component of the equinoctial eccentricity vector derivative
-
getEquinoctialEy
Get the second component of the equinoctial eccentricity vector.- Specified by:
getEquinoctialEyin classFieldOrbit<T extends CalculusFieldElement<T>>- Returns:
- second component of the equinoctial eccentricity vector
-
getEquinoctialEyDot
Get the second component of the equinoctial eccentricity vector derivative.If the orbit was created without derivatives, the value returned is null.
- Specified by:
getEquinoctialEyDotin classFieldOrbit<T extends CalculusFieldElement<T>>- Returns:
- second component of the equinoctial eccentricity vector derivative
-
getHx
Get the first component of the inclination vector.- Specified by:
getHxin classFieldOrbit<T extends CalculusFieldElement<T>>- Returns:
- first component of the inclination vector
-
getHxDot
Get the first component of the inclination vector derivative.If the orbit was created without derivatives, the value returned is null.
- Specified by:
getHxDotin classFieldOrbit<T extends CalculusFieldElement<T>>- Returns:
- first component of the inclination vector derivative
-
getHy
Get the second component of the inclination vector.- Specified by:
getHyin classFieldOrbit<T extends CalculusFieldElement<T>>- Returns:
- second component of the inclination vector
-
getHyDot
Get the second component of the inclination vector derivative.- Specified by:
getHyDotin classFieldOrbit<T extends CalculusFieldElement<T>>- Returns:
- second component of the inclination vector derivative
-
getLv
Get the true longitude argument.- Specified by:
getLvin classFieldOrbit<T extends CalculusFieldElement<T>>- Returns:
- v + ω + Ω true longitude argument (rad)
-
getLvDot
Get the true longitude argument derivative.If the orbit was created without derivatives, the value returned is null.
- Specified by:
getLvDotin classFieldOrbit<T extends CalculusFieldElement<T>>- Returns:
- d(v + ω + Ω)/dt true longitude argument derivative (rad/s)
-
getLE
Get the eccentric longitude argument.- Specified by:
getLEin classFieldOrbit<T extends CalculusFieldElement<T>>- Returns:
- E + ω + Ω eccentric longitude argument (rad)
-
getLEDot
Get the eccentric longitude argument derivative.If the orbit was created without derivatives, the value returned is null.
- Specified by:
getLEDotin classFieldOrbit<T extends CalculusFieldElement<T>>- Returns:
- d(E + ω + Ω)/dt eccentric longitude argument derivative (rad/s)
-
getLM
Get the mean longitude argument.- Specified by:
getLMin classFieldOrbit<T extends CalculusFieldElement<T>>- Returns:
- M + ω + Ω mean longitude argument (rad)
-
getLMDot
Get the mean longitude argument derivative.If the orbit was created without derivatives, the value returned is null.
- Specified by:
getLMDotin classFieldOrbit<T extends CalculusFieldElement<T>>- Returns:
- d(M + ω + Ω)/dt mean longitude argument derivative (rad/s)
-
getL
Get the longitude argument.- Parameters:
type- type of the angle- Returns:
- longitude argument (rad)
-
getLDot
Get the longitude argument derivative.- Parameters:
type- type of the angle- Returns:
- longitude argument derivative (rad/s)
-
hasNonKeplerianAcceleration
public boolean hasNonKeplerianAcceleration()Check if orbit includes non-Keplerian rates.- Overrides:
hasNonKeplerianAccelerationin classFieldOrbit<T extends CalculusFieldElement<T>>- Returns:
- true if orbit includes non-Keplerian derivatives
- See Also:
-
getE
Get the eccentricity.- Specified by:
getEin classFieldOrbit<T extends CalculusFieldElement<T>>- Returns:
- eccentricity
-
getEDot
Get the eccentricity derivative.If the orbit was created without derivatives, the value returned is null.
- Specified by:
getEDotin classFieldOrbit<T extends CalculusFieldElement<T>>- Returns:
- eccentricity derivative
-
getI
Get the inclination.If the orbit was created without derivatives, the value returned is null.
- Specified by:
getIin classFieldOrbit<T extends CalculusFieldElement<T>>- Returns:
- inclination (rad)
-
getIDot
Get the inclination derivative.- Specified by:
getIDotin classFieldOrbit<T extends CalculusFieldElement<T>>- Returns:
- inclination derivative (rad/s)
-
initPosition
Compute the position coordinates from the canonical parameters.- Specified by:
initPositionin classFieldOrbit<T extends CalculusFieldElement<T>>- Returns:
- computed position coordinates
-
initPVCoordinates
Compute the position/velocity coordinates from the canonical parameters.- Specified by:
initPVCoordinatesin classFieldOrbit<T extends CalculusFieldElement<T>>- Returns:
- computed position/velocity coordinates
-
inFrame
Create a new object representing the same physical orbital state, but attached to a different reference frame. If the new frame is not inertial, an exception will be thrown.- Specified by:
inFramein classFieldOrbit<T extends CalculusFieldElement<T>>- Parameters:
inertialFrame- reference frame of output orbit- Returns:
- orbit with different frame
-
withCachedPositionAngleType
Creates a new instance with the provided type used for caching.- Specified by:
withCachedPositionAngleTypein interfacePositionAngleBased<T extends CalculusFieldElement<T>>- Parameters:
positionAngleType- position angle type to use for caching value- Returns:
- new object
-
shiftedBy
Get a time-shifted orbit.The orbit can be slightly shifted to close dates. This shift is based on a simple Keplerian model. It is not intended as a replacement for proper orbit and attitude propagation but should be sufficient for small time shifts or coarse accuracy.
- Specified by:
shiftedByin interfaceTimeShiftable<T extends CalculusFieldElement<T>>- Specified by:
shiftedByin classFieldOrbit<T extends CalculusFieldElement<T>>- Parameters:
dt- time shift in seconds- Returns:
- a new orbit, shifted with respect to the instance (which is immutable)
-
shiftedBy
Get a time-shifted orbit.The orbit can be slightly shifted to close dates. This shift is based on a simple Keplerian model. It is not intended as a replacement for proper orbit and attitude propagation but should be sufficient for small time shifts or coarse accuracy.
- Specified by:
shiftedByin interfaceFieldTimeShiftable<ShiftableFieldPVCoordinatesHolder<FieldOrbit<T extends CalculusFieldElement<T>>,T extends CalculusFieldElement<T>>, T extends CalculusFieldElement<T>> - Specified by:
shiftedByin classFieldOrbit<T extends CalculusFieldElement<T>>- Parameters:
dt- time shift in seconds- Returns:
- a new orbit, shifted with respect to the instance (which is immutable)
-
shiftedBy
Get a time-shifted orbit.The orbit can be slightly shifted to close dates. This shift is based on a simple Keplerian model. It is not intended as a replacement for proper orbit and attitude propagation but should be sufficient for small time shifts or coarse accuracy.
- Specified by:
shiftedByin interfaceTimeShiftable<T extends CalculusFieldElement<T>>- Specified by:
shiftedByin classFieldOrbit<T extends CalculusFieldElement<T>>- Parameters:
dt- time shift in seconds- Returns:
- a new orbit, shifted with respect to the instance (which is immutable)
- Since:
- 13.1.3
-
computeJacobianMeanWrtCartesian
Compute the Jacobian of the orbital parameters with mean angle with respect to the Cartesian parameters.Element
jacobian[i][j]is the derivative of parameter i of the orbit with respect to Cartesian coordinate j. This means each row correspond to one orbital parameter whereas columns 0 to 5 correspond to the Cartesian coordinates x, y, z, xDot, yDot and zDot.- Specified by:
computeJacobianMeanWrtCartesianin classFieldOrbit<T extends CalculusFieldElement<T>>- Returns:
- 6x6 Jacobian matrix
- See Also:
-
computeJacobianEccentricWrtCartesian
Compute the Jacobian of the orbital parameters with eccentric angle with respect to the Cartesian parameters.Element
jacobian[i][j]is the derivative of parameter i of the orbit with respect to Cartesian coordinate j. This means each row correspond to one orbital parameter whereas columns 0 to 5 correspond to the Cartesian coordinates x, y, z, xDot, yDot and zDot.- Specified by:
computeJacobianEccentricWrtCartesianin classFieldOrbit<T extends CalculusFieldElement<T>>- Returns:
- 6x6 Jacobian matrix
- See Also:
-
computeJacobianTrueWrtCartesian
Compute the Jacobian of the orbital parameters with true angle with respect to the Cartesian parameters.Element
jacobian[i][j]is the derivative of parameter i of the orbit with respect to Cartesian coordinate j. This means each row correspond to one orbital parameter whereas columns 0 to 5 correspond to the Cartesian coordinates x, y, z, xDot, yDot and zDot.- Specified by:
computeJacobianTrueWrtCartesianin classFieldOrbit<T extends CalculusFieldElement<T>>- Returns:
- 6x6 Jacobian matrix
- See Also:
-
addKeplerContribution
Add the contribution of the Keplerian motion to parameters derivativesThis method is used by integration-based propagators to evaluate the part of Keplerian motion to evolution of the orbital state.
- Specified by:
addKeplerContributionin classFieldOrbit<T extends CalculusFieldElement<T>>- Parameters:
type- type of the position angle in the stategm- attraction coefficient to usepDot- array containing orbital state derivatives to update (the Keplerian part must be added to the array components, as the array may already contain some non-zero elements corresponding to non-Keplerian parts)
-
toString
Returns a string representation of this equinoctial parameters object. -
getCachedPositionAngleType
Get the cachedPositionAngleType.- Specified by:
getCachedPositionAngleTypein interfacePositionAngleBased<T extends CalculusFieldElement<T>>- Returns:
- cached type of position angle
-
hasNonKeplerianRates
public boolean hasNonKeplerianRates()Tells whether the instance holds rates (first-order time derivatives) for dependent variables that are incompatible with Keplerian motion.- Specified by:
hasNonKeplerianRatesin interfacePositionAngleBased<T extends CalculusFieldElement<T>>- Returns:
- true if and only if holding non-Keplerian rates
-
withKeplerianRates
Creates a new instance such thatPositionAngleBased.hasNonKeplerianRates()is false.- Specified by:
withKeplerianRatesin interfacePositionAngleBased<T extends CalculusFieldElement<T>>- Returns:
- new object without rates
-
toOrbit
Transforms the FieldOrbit instance into an Orbit instance.- Specified by:
toOrbitin classFieldOrbit<T extends CalculusFieldElement<T>>- Returns:
- Orbit instance with same properties
-