Class BistaticRangeRate
java.lang.Object
org.orekit.estimation.measurements.AbstractMeasurement<BistaticRangeRate>
org.orekit.estimation.measurements.SignalBasedMeasurement<BistaticRangeRate>
org.orekit.estimation.measurements.BistaticRangeRelatedMeasurement<BistaticRangeRate>
org.orekit.estimation.measurements.BistaticRangeRate
- All Implemented Interfaces:
Comparable<ComparableMeasurement>,ComparableMeasurement,ObservedMeasurement<BistaticRangeRate>,TimeStamped,ParameterDriversProvider
Class modeling a bistatic range rate measurement using
an emitter ground station and a receiver ground station.
The measurement is considered to be a signal:
- Emitted from the emitter ground station
- Reflected on the spacecraft
- Received on the receiver ground station
The motion of the stations and the spacecraft during the signal flight time are taken into account.
The Doppler measurement can be obtained by multiplying the velocity by (fe/c), where fe is the emission frequency.
- Since:
- 11.2
- Author:
- Pascal Parraud
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionBistaticRangeRate(Observer emitter, Observer receiver, AbsoluteDate date, double rangeRate, double sigma, double baseWeight, ObservableSatellite satellite) Simple constructor.BistaticRangeRate(Observer emitter, Observer receiver, AbsoluteDate date, double rangeRate, MeasurementQuality measurementQuality, SignalTravelTimeModel signalTravelTimeModel, ObservableSatellite satellite) Simple constructor. -
Method Summary
Modifier and TypeMethodDescriptionprotected EstimatedMeasurement<BistaticRangeRate> theoreticalEvaluation(int iteration, int evaluation, SpacecraftState[] states) Estimate the theoretical value.protected EstimatedMeasurementBase<BistaticRangeRate> theoreticalEvaluationWithoutDerivatives(int iteration, int evaluation, SpacecraftState[] states, boolean fillParticipants) Estimate the theoretical value without derivatives.Methods inherited from class org.orekit.estimation.measurements.BistaticRangeRelatedMeasurement
fillEstimation, getEmitter, getEmitterStation, getFieldShifts, getReceiver, getReceiverStation, getShifts, getTwoLeggedSignalTimerMethods 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, setObservedValue, theoreticalEvaluationWithoutDerivativesMethods 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
-
BistaticRangeRate
public BistaticRangeRate(Observer emitter, Observer receiver, AbsoluteDate date, double rangeRate, double sigma, double baseWeight, ObservableSatellite satellite) Simple constructor.- Parameters:
emitter- emitter objectreceiver- receiver objectdate- date of the measurementrangeRate- observed value, m/ssigma- theoretical standard deviationbaseWeight- base weightsatellite- satellite related to this measurement
-
BistaticRangeRate
public BistaticRangeRate(Observer emitter, Observer receiver, AbsoluteDate date, double rangeRate, MeasurementQuality measurementQuality, SignalTravelTimeModel signalTravelTimeModel, ObservableSatellite satellite) Simple constructor.- Parameters:
emitter- emitter objectreceiver- receiver objectdate- date of the measurementrangeRate- observed value, m/smeasurementQuality- measurement quality data as used in orbit determinationsignalTravelTimeModel- signal travel time modelsatellite- satellite related to this measurement- Since:
- 14.0
-
-
Method Details
-
theoreticalEvaluationWithoutDerivatives
protected EstimatedMeasurementBase<BistaticRangeRate> theoreticalEvaluationWithoutDerivatives(int iteration, int evaluation, SpacecraftState[] states, boolean fillParticipants) 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<BistaticRangeRate>- Parameters:
iteration- iteration numberevaluation- evaluation numberstates- orbital states at measurement datefillParticipants- flag to compute and store participants dynamical states at measurement date and along signal path if applicable- Returns:
- theoretical value
- See Also:
-
theoreticalEvaluation
protected EstimatedMeasurement<BistaticRangeRate> theoreticalEvaluation(int iteration, int evaluation, SpacecraftState[] states) Estimate the theoretical value.The theoretical value does not have any modifiers applied.
- Specified by:
theoreticalEvaluationin classAbstractMeasurement<BistaticRangeRate>- Parameters:
iteration- iteration numberevaluation- evaluation numberstates- orbital states at measurement date- Returns:
- theoretical value
- See Also:
-