Class SBASPropagator
java.lang.Object
org.orekit.propagation.AbstractPropagator
org.orekit.propagation.analytical.AbstractAnalyticalPropagator
org.orekit.propagation.analytical.gnss.SBASPropagator
- All Implemented Interfaces:
Propagator,PVCoordinatesProvider
This class aims at propagating a SBAS orbit from
SBASOrbitalElements.- Since:
- 10.1
- Author:
- Bryan Cazabonne
- See Also:
-
Field Summary
Fields inherited from interface org.orekit.propagation.Propagator
DEFAULT_MASS -
Method Summary
Modifier and TypeMethodDescriptiongetECEF()Gets the Earth Centered Earth Fixed frame used to propagate GNSS orbits.getECI()Gets the Earth Centered Inertial frame used to propagate the orbit.getFrame()Get the frame in which the orbit is propagated.protected doublegetMass(AbsoluteDate date) Get the mass.doublegetMU()Get the Earth gravity coefficient used for SBAS propagation.Get the underlying SBAS orbital elements.propagateInEcef(AbsoluteDate date) Gets the PVCoordinates of the GNSS SV inECEF frame.propagateOrbit(AbsoluteDate date) Extrapolate an orbit up to a specific target date.voidresetInitialState(SpacecraftState state) Reset the propagator initial state.protected voidresetIntermediateState(SpacecraftState state, boolean forward) Reset an intermediate state.Methods inherited from class org.orekit.propagation.analytical.AbstractAnalyticalPropagator
acceptStep, addEventDetector, basicPropagate, clearEventsDetectors, clearMatricesComputation, getEphemerisGenerator, getEventDetectors, getJacobiansColumnsNames, getPvProvider, propagateMethods inherited from class org.orekit.propagation.AbstractPropagator
addAdditionalDataProvider, createHarvester, getAdditionalDataProviders, getAttitudeProvider, getHarvester, getInitialState, getManagedAdditionalData, getMultiplexer, getStartDate, initializeAdditionalData, initializePropagation, isAdditionalDataManaged, propagate, removeAdditionalDataProvider, setAttitudeProvider, setStartDate, setupMatricesComputation, stateChanged, updateAdditionalData, updateUnmanagedDataMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.orekit.propagation.Propagator
clearStepHandlers, getPosition, getPVCoordinates, getVelocity, setStepHandler, setStepHandler
-
Method Details
-
propagateInEcef
Gets the PVCoordinates of the GNSS SV inECEF frame.The algorithm uses automatic differentiation to compute velocity and acceleration.
- Parameters:
date- the computation date- Returns:
- the GNSS SV PVCoordinates in
ECEF frame
-
propagateOrbit
Extrapolate an orbit up to a specific target date.- Specified by:
propagateOrbitin classAbstractAnalyticalPropagator- Parameters:
date- target date for the orbit- Returns:
- extrapolated parameters
-
getMU
public double getMU()Get the Earth gravity coefficient used for SBAS propagation.- Returns:
- the Earth gravity coefficient.
-
getECI
Gets the Earth Centered Inertial frame used to propagate the orbit.- Returns:
- the ECI frame
-
getECEF
Gets the Earth Centered Earth Fixed frame used to propagate GNSS orbits.- Returns:
- the ECEF frame
-
getSBASOrbitalElements
Get the underlying SBAS orbital elements.- Returns:
- the underlying SBAS orbital elements
-
getFrame
Get the frame in which the orbit is propagated.The propagation frame is the definition frame of the initial state, so this method should be called after this state has been set, otherwise it may return null.
- Specified by:
getFramein interfacePropagator- Overrides:
getFramein classAbstractPropagator- Returns:
- frame in which the orbit is propagated
- See Also:
-
resetInitialState
Reset the propagator initial state.- Specified by:
resetInitialStatein interfacePropagator- Overrides:
resetInitialStatein classAbstractPropagator- Parameters:
state- new initial state to consider
-
getMass
Get the mass.- Specified by:
getMassin classAbstractAnalyticalPropagator- Parameters:
date- target date for the orbit- Returns:
- mass mass
-
resetIntermediateState
Reset an intermediate state.- Specified by:
resetIntermediateStatein classAbstractAnalyticalPropagator- Parameters:
state- new intermediate state to considerforward- if true, the intermediate state is valid for propagations after itself
-