Class GLONASSNumericalPropagator
- All Implemented Interfaces:
Propagator,PVCoordinatesProvider
As recommended by the GLONASS Interface Control Document (ICD),
a 4th order Runge-Kutta technique
shall be used to integrate the equations.
Classical used of this orbit propagator is to compute GLONASS satellite coordinates from the navigation message.
If the projections of luni-solar accelerations to axes of
Greenwich geocentric coordinates X''(tb),
Y''(tb) and Z''(tb)
are available in the navigation message; a transformation is performed to convert these
accelerations into the correct coordinate system. In the case where they are not
available into the navigation message, these accelerations are computed.
Caution: The Glonass numerical propagator can only be used with GLONASSFdmaNavigationMessage.
Using this propagator with a GLONASSAlmanac is prone to error.
- Author:
- Bryan Cazabonne
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.orekit.propagation.integration.AbstractIntegratedPropagator
AbstractIntegratedPropagator.MainStateEquations -
Field Summary
Fields inherited from interface org.orekit.propagation.Propagator
DEFAULT_MASS -
Constructor Summary
ConstructorsConstructorDescriptionGLONASSNumericalPropagator(ClassicalRungeKuttaIntegrator integrator, GLONASSOrbitalElements glonassOrbit, Frame eci, AttitudeProvider provider, double mass, DataContext context, boolean isAccAvailable) Private constructor. -
Method Summary
Modifier and TypeMethodDescriptionprotected StateMappercreateMapper(AbsoluteDate referenceDate, double mu, OrbitType orbitType, PositionAngleType positionAngleType, AttitudeProvider attitudeProvider, Frame frame) Create a mapper between raw double components and spacecraft state. /** Simple constructor.Gets the underlying GLONASS orbital elements.Get the differential equations to integrate (for main state only).propagate(AbsoluteDate date) Propagate towards a target date.Methods inherited from class org.orekit.propagation.integration.AbstractIntegratedPropagator
addAdditionalDerivativesProvider, addEventDetector, afterIntegration, beforeIntegration, clearEphemerisGenerators, clearEventsDetectors, clearMatricesComputation, getAdditionalDerivativesProviders, getBasicDimension, getCalls, getEphemerisGenerator, getEventDetectors, getFrozenAttitudeProvider, getInitialIntegrationState, getIntegrator, getIntegratorName, getManagedAdditionalData, getMu, getOrbitType, getPositionAngleType, getPropagationType, getResetAtEnd, initializeAttitudeProviderForDerivatives, initMapper, isAdditionalDataManaged, propagate, removeAdditionalDerivativesProvider, resetInitialState, setAttitudeProvider, setMu, setOrbitType, setPositionAngleType, setResetAtEnd, setUpEventDetector, setUpStmAndJacobianGenerators, setUpUserEventDetectorsMethods inherited from class org.orekit.propagation.AbstractPropagator
addAdditionalDataProvider, createHarvester, getAdditionalDataProviders, getAttitudeProvider, getFrame, getHarvester, getInitialState, getMultiplexer, getStartDate, initializeAdditionalData, initializePropagation, removeAdditionalDataProvider, resetInitialState, 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
-
Constructor Details
-
GLONASSNumericalPropagator
public GLONASSNumericalPropagator(ClassicalRungeKuttaIntegrator integrator, GLONASSOrbitalElements glonassOrbit, Frame eci, AttitudeProvider provider, double mass, DataContext context, boolean isAccAvailable) Private constructor.- Parameters:
integrator- Runge-Kutta integratorglonassOrbit- Glonass orbital elementseci- Earth Centered Inertial frameprovider- Attitude providermass- Satellite mass (kg)context- Data contextisAccAvailable- true if the acceleration is transmitted within the navigation message
-
-
Method Details
-
getGLONASSOrbitalElements
Gets the underlying GLONASS orbital elements.- Returns:
- the underlying GLONASS orbital elements
-
propagate
Propagate towards a target date.Simple propagators use only the target date as the specification for computing the propagated state. More feature rich propagators can consider other information and provide different operating modes or G-stop facilities to stop at pinpointed events occurrences. In these cases, the target date is only a hint, not a mandatory objective.
- Specified by:
propagatein interfacePropagator- Overrides:
propagatein classAbstractIntegratedPropagator- Parameters:
date- target date towards which orbit state should be propagated- Returns:
- propagated state
-
createMapper
protected StateMapper createMapper(AbsoluteDate referenceDate, double mu, OrbitType orbitType, PositionAngleType positionAngleType, AttitudeProvider attitudeProvider, Frame frame) Description copied from class:AbstractIntegratedPropagatorCreate a mapper between raw double components and spacecraft state. /** Simple constructor.The position parameter type is meaningful only if
propagation orbit typesupport it. As an example, it is not meaningful for propagation inCartesianparameters.- Specified by:
createMapperin classAbstractIntegratedPropagator- Parameters:
referenceDate- reference datemu- central attraction coefficient (m³/s²)orbitType- orbit type to use for mappingpositionAngleType- angle type to use for propagationattitudeProvider- attitude providerframe- inertial frame- Returns:
- new mapper
-
getMainStateEquations
protected AbstractIntegratedPropagator.MainStateEquations getMainStateEquations(ODEIntegrator integ) Description copied from class:AbstractIntegratedPropagatorGet the differential equations to integrate (for main state only).- Specified by:
getMainStateEquationsin classAbstractIntegratedPropagator- Parameters:
integ- numerical integrator to use for propagation.- Returns:
- differential equations for main state
-