Class OneWayGNSSRangeRate
- All Implemented Interfaces:
Comparable<ComparableMeasurement>,ComparableMeasurement,ObservedMeasurement<OneWayGNSSRangeRate>,TimeStamped,ParameterDriversProvider
This class can be used in precise orbit determination applications for modeling a range rate measurement between a GNSS emitter and a LEO satellite (receiver).
The one-way GNSS range rate measurement assumes knowledge of the orbit and the clock offset of the emitting GNSS satellite. For instance, it is possible to use a SP3 file or a GNSS navigation message to recover the satellite's orbit and clock.
This class is very similar to InterSatellitesOneWayRangeRate measurement
class. However, using the one-way GNSS range measurement, the orbit and clock
of the emitting GNSS satellite are NOT estimated simultaneously with
LEO satellite coordinates.
- Since:
- 12.1
- Author:
- Luc Maisonobe
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionOneWayGNSSRangeRate(Observer observer, AbsoluteDate date, double rangeRate, double sigma, double baseWeight, ObservableSatellite local) Simple constructor.OneWayGNSSRangeRate(Observer observer, AbsoluteDate date, double rangeRate, MeasurementQuality measurementQuality, SignalTravelTimeModel signalTravelTimeModel, ObservableSatellite local) Simple constructor. -
Method Summary
Modifier and TypeMethodDescriptionprotected EstimatedMeasurement<OneWayGNSSRangeRate> theoreticalEvaluation(int iteration, int evaluation, SpacecraftState[] states) Estimate the theoretical value.protected EstimatedMeasurementBase<OneWayGNSSRangeRate> theoreticalEvaluationWithoutDerivatives(int iteration, int evaluation, SpacecraftState[] states) Estimate the theoretical value without derivatives.Methods inherited from class org.orekit.estimation.measurements.gnss.AbstractOneWayGNSS
fillDerivatives, getObserverMethods inherited from class org.orekit.estimation.measurements.SignalBasedMeasurement
getSignalTravelTimeModel, isTwoWayMethods inherited from class org.orekit.estimation.measurements.AbstractMeasurement
addModifier, addParameterDriver, addParametersDrivers, estimate, estimateWithoutDerivatives, getCoordinates, getDate, getMeasurementQuality, getModifiers, getObservedValue, getParameterIndices, getParametersDrivers, getSatellites, isEnabled, setEnabled, setObservedValueMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.orekit.estimation.measurements.ComparableMeasurement
compareToMethods inherited from interface org.orekit.estimation.measurements.ObservedMeasurement
estimateWithoutDerivatives, getBaseWeight, getDimension, getMeasurementType, getTheoreticalStandardDeviationMethods inherited from interface org.orekit.utils.ParameterDriversProvider
getNbParametersDriversValue, getParameterDriver, getParameters, getParameters, getParameters, getParameters, getParametersAllValues, getParametersAllValues, isSupportedMethods inherited from interface org.orekit.time.TimeStamped
durationFrom
-
Field Details
-
MEASUREMENT_TYPE
Type of the measurement.- See Also:
-
-
Constructor Details
-
OneWayGNSSRangeRate
public OneWayGNSSRangeRate(Observer observer, AbsoluteDate date, double rangeRate, double sigma, double baseWeight, ObservableSatellite local) Simple constructor.- Parameters:
observer- object that sends GNSS signaldate- date of the measurementrangeRate- observed valuesigma- theoretical standard deviationbaseWeight- base weightlocal- satellite which receives the signal and perform the measurement- Since:
- 12.1
-
OneWayGNSSRangeRate
public OneWayGNSSRangeRate(Observer observer, AbsoluteDate date, double rangeRate, MeasurementQuality measurementQuality, SignalTravelTimeModel signalTravelTimeModel, ObservableSatellite local) Simple constructor.- Parameters:
observer- object that sends GNSS signaldate- date of the measurementrangeRate- observed valuemeasurementQuality- measurement quality data as used in orbit determinationsignalTravelTimeModel- signal modellocal- satellite which receives the signal and perform the measurement- Since:
- 14.0
-
-
Method Details
-
theoreticalEvaluationWithoutDerivatives
protected EstimatedMeasurementBase<OneWayGNSSRangeRate> theoreticalEvaluationWithoutDerivatives(int iteration, int evaluation, SpacecraftState[] states) Estimate the theoretical value without derivatives. The default implementation uses the computation with derivatives and ought to be overwritten for performance.The theoretical value does not have any modifiers applied.
- Overrides:
theoreticalEvaluationWithoutDerivativesin classAbstractMeasurement<OneWayGNSSRangeRate>- Parameters:
iteration- iteration numberevaluation- evaluation numberstates- orbital states at measurement date- Returns:
- theoretical value
- See Also:
-
theoreticalEvaluation
protected EstimatedMeasurement<OneWayGNSSRangeRate> theoreticalEvaluation(int iteration, int evaluation, SpacecraftState[] states) Estimate the theoretical value.The theoretical value does not have any modifiers applied.
- Specified by:
theoreticalEvaluationin classAbstractMeasurement<OneWayGNSSRangeRate>- Parameters:
iteration- iteration numberevaluation- evaluation numberstates- orbital states at measurement date- Returns:
- theoretical value
- See Also:
-