Class DeepSDP4
- java.lang.Object
-
- org.orekit.propagation.AbstractPropagator
-
- org.orekit.propagation.analytical.AbstractAnalyticalPropagator
-
- org.orekit.propagation.analytical.tle.TLEPropagator
-
- org.orekit.propagation.analytical.tle.DeepSDP4
-
- All Implemented Interfaces:
Propagator,PVCoordinatesProvider
public class DeepSDP4 extends TLEPropagator
This class contains the methods that compute deep space perturbation terms.The user should not bother in this class since it is handled internaly by the
TLEPropagator.This implementation is largely inspired from the paper and source code Revisiting Spacetrack Report #3 and is fully compliant with its results and tests cases.
- Author:
- Felix R. Hoots, Ronald L. Roehrich, December 1980 (original fortran), David A. Vallado, Paul Crawford, Richard Hujsak, T.S. Kelso (C++ translation and improvements), Fabien Maussion (java translation)
-
-
Field Summary
Fields Modifier and Type Field Description protected doubleemNew eccentricity.protected doubleomgadfNew perigee argument.protected doublexincNew inclination.protected doublexllParameter for xl computation.protected doublexnNew mean motion.-
Fields inherited from class org.orekit.propagation.analytical.tle.TLEPropagator
a, a0dp, beta0, beta02, c1, c2, c4, coef, coef1, cosi0, e, e0sq, eeta, eta, etasq, i, omega, omgdot, perige, s4, sini0, t2cof, theta2, tle, tsi, xl, xmdot, xn0dp, xnodcf, xnode, xnodot
-
Fields inherited from interface org.orekit.propagation.Propagator
DEFAULT_LAW, DEFAULT_MASS, EPHEMERIS_GENERATION_MODE, MASTER_MODE, SLAVE_MODE
-
-
Constructor Summary
Constructors Constructor Description DeepSDP4(TLE initialTLE, AttitudeProvider attitudeProvider, double mass)Constructor for a unique initial TLE.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voiddeepPeriodicEffects(double t)Computes periodic terms from current coordinates and epoch.protected voiddeepSecularEffects(double t)Computes secular terms from current coordinates and epoch.protected voidluniSolarTermsComputation()Computes luni - solar terms from initial coordinates and epoch.protected voidsxpInitialize()Initialization proper to each propagator (SGP or SDP).protected voidsxpPropagate(double tSince)Propagation proper to each propagator (SGP or SDP).protected static doublethetaG(AbsoluteDate date)Computes SPACETRACK#3 compliant earth rotation angle.-
Methods inherited from class org.orekit.propagation.analytical.tle.TLEPropagator
getFrame, getMass, getMU, getPVCoordinates, getTLE, propagateOrbit, resetInitialState, resetIntermediateState, selectExtrapolator, selectExtrapolator
-
Methods inherited from class org.orekit.propagation.analytical.AbstractAnalyticalPropagator
acceptStep, addEventDetector, basicPropagate, clearEventsDetectors, getEventsDetectors, getGeneratedEphemeris, getPvProvider, propagate
-
Methods inherited from class org.orekit.propagation.AbstractPropagator
addAdditionalStateProvider, getAdditionalStateProviders, getAttitudeProvider, getFixedStepSize, getInitialState, getManagedAdditionalStates, getMode, getPVCoordinates, getStartDate, getStepHandler, isAdditionalStateManaged, propagate, setAttitudeProvider, setEphemerisMode, setEphemerisMode, setMasterMode, setMasterMode, setSlaveMode, setStartDate, updateAdditionalStates
-
-
-
-
Constructor Detail
-
DeepSDP4
public DeepSDP4(TLE initialTLE, AttitudeProvider attitudeProvider, double mass)
Constructor for a unique initial TLE.- Parameters:
initialTLE- the TLE to propagate.attitudeProvider- provider for attitude computationmass- spacecraft mass (kg)
-
-
Method Detail
-
luniSolarTermsComputation
protected void luniSolarTermsComputation()
Computes luni - solar terms from initial coordinates and epoch.
-
deepSecularEffects
protected void deepSecularEffects(double t)
Computes secular terms from current coordinates and epoch.- Parameters:
t- offset from initial epoch (minutes)
-
deepPeriodicEffects
protected void deepPeriodicEffects(double t)
Computes periodic terms from current coordinates and epoch.- Parameters:
t- offset from initial epoch (min)
-
sxpInitialize
protected void sxpInitialize()
Initialization proper to each propagator (SGP or SDP).- Specified by:
sxpInitializein classTLEPropagator
-
sxpPropagate
protected void sxpPropagate(double tSince)
Propagation proper to each propagator (SGP or SDP).- Specified by:
sxpPropagatein classTLEPropagator- Parameters:
tSince- the offset from initial epoch (minutes)
-
thetaG
protected static double thetaG(AbsoluteDate date)
Computes SPACETRACK#3 compliant earth rotation angle.- Parameters:
date- the current date- Returns:
- the ERA (rad)
-
-