Class BistaticRange
- java.lang.Object
-
- org.orekit.estimation.measurements.AbstractMeasurement<T>
-
- org.orekit.estimation.measurements.SignalBasedMeasurement<T>
-
- org.orekit.estimation.measurements.BistaticRange
-
- All Implemented Interfaces:
Comparable<ComparableMeasurement>,ComparableMeasurement,ObservedMeasurement<BistaticRange>,TimeStamped,ParameterDriversProvider
public class BistaticRange extends SignalBasedMeasurement<T>
Class modeling a bistatic range 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.
- Since:
- 11.2
- Author:
- Mark Rutten
-
-
Field Summary
Fields Modifier and Type Field Description static StringMEASUREMENT_TYPEType of the measurement.
-
Constructor Summary
Constructors Constructor Description BistaticRange(Observer emitter, Observer receiver, AbsoluteDate date, double range, double sigma, double baseWeight, ObservableSatellite satellite)Simple constructor.BistaticRange(Observer emitter, Observer receiver, AbsoluteDate date, double range, double sigma, double baseWeight, SignalTravelTimeModel signalTravelTimeModel, ObservableSatellite satellite)Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description protected voidfillEstimation(Gradient quantity, Map<String,Integer> paramIndices, EstimatedMeasurement<T> estimated)Fill estimated measurements with value and derivatives.ObservergetEmitter()Get the emitter object.GroundStationgetEmitterStation()Deprecated.as of 14.0, replaced bygetEmitter()protected Gradient[]getFieldShifts(SpacecraftState[] states)Method computing consecutive Field time shifts of participants, starting from observation date.protected TimeStampedPVCoordinates[]getParticipants(SpacecraftState state)Method returning the full kinematic coordinates of signal participants at transmission dates.ObservergetReceiver()Get the receiver object.GroundStationgetReceiverStation()Deprecated.as of 14.0, replaced bygetReceiver()TwoLeggedSignalTravelTimergetTwoLeggedSignalTimer()Getter for the two legs timer.protected EstimatedMeasurement<BistaticRange>theoreticalEvaluation(int iteration, int evaluation, SpacecraftState[] states)Estimate the theoretical value.protected EstimatedMeasurementBase<BistaticRange>theoreticalEvaluationWithoutDerivatives(int iteration, int evaluation, SpacecraftState[] states)Estimate the theoretical value without derivatives.-
Methods inherited from class org.orekit.estimation.measurements.SignalBasedMeasurement
getSignalTravelTimeModel, isTwoWay
-
Methods inherited from class org.orekit.estimation.measurements.AbstractMeasurement
addModifier, addParameterDriver, addParametersDrivers, estimate, estimateWithoutDerivatives, getBaseWeight, getCoordinates, getDate, getDimension, getMeasurementQuality, getModifiers, getObservedValue, getParameterIndices, getParametersDrivers, getSatellites, getTheoreticalStandardDeviation, isEnabled, setEnabled, setObservedValue
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.orekit.estimation.measurements.ComparableMeasurement
compareTo
-
Methods inherited from interface org.orekit.estimation.measurements.ObservedMeasurement
estimateWithoutDerivatives, getMeasurementType
-
Methods inherited from interface org.orekit.utils.ParameterDriversProvider
getNbParametersDriversValue, getParameterDriver, getParameters, getParameters, getParameters, getParameters, getParametersAllValues, getParametersAllValues, isSupported
-
Methods inherited from interface org.orekit.time.TimeStamped
durationFrom
-
-
-
-
Field Detail
-
MEASUREMENT_TYPE
public static final String MEASUREMENT_TYPE
Type of the measurement.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
BistaticRange
public BistaticRange(Observer emitter, Observer receiver, AbsoluteDate date, double range, double sigma, double baseWeight, ObservableSatellite satellite)
Simple constructor.- Parameters:
emitter- emitter objectreceiver- receiver objectdate- date of the measurementrange- observed valuesigma- theoretical standard deviationbaseWeight- base weightsatellite- satellite related to this measurement- Since:
- 11.2
-
BistaticRange
public BistaticRange(Observer emitter, Observer receiver, AbsoluteDate date, double range, double sigma, double baseWeight, SignalTravelTimeModel signalTravelTimeModel, ObservableSatellite satellite)
Simple constructor.- Parameters:
emitter- emitter objectreceiver- receiver objectdate- date of the measurementrange- observed valuesigma- theoretical standard deviationbaseWeight- base weightsignalTravelTimeModel- signal travel time modelsatellite- satellite related to this measurement- Since:
- 14.0
-
-
Method Detail
-
theoreticalEvaluationWithoutDerivatives
protected EstimatedMeasurementBase<BistaticRange> 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<BistaticRange>- Parameters:
iteration- iteration numberevaluation- evaluation numberstates- orbital states at measurement date- Returns:
- theoretical value
- See Also:
AbstractMeasurement.estimate(int, int, SpacecraftState[])
-
theoreticalEvaluation
protected EstimatedMeasurement<BistaticRange> theoreticalEvaluation(int iteration, int evaluation, SpacecraftState[] states)
Estimate the theoretical value.The theoretical value does not have any modifiers applied.
- Specified by:
theoreticalEvaluationin classAbstractMeasurement<BistaticRange>- Parameters:
iteration- iteration numberevaluation- evaluation numberstates- orbital states at measurement date- Returns:
- theoretical value
- See Also:
AbstractMeasurement.estimate(int, int, SpacecraftState[])
-
getTwoLeggedSignalTimer
public TwoLeggedSignalTravelTimer getTwoLeggedSignalTimer()
Getter for the two legs timer.- Returns:
- model
-
getEmitterStation
@Deprecated public GroundStation getEmitterStation()
Deprecated.as of 14.0, replaced bygetEmitter()Get the emitter ground station.- Returns:
- emitter ground station
-
getEmitter
public Observer getEmitter()
Get the emitter object.- Returns:
- emitter object
- Since:
- 14.0
-
getReceiverStation
@Deprecated public GroundStation getReceiverStation()
Deprecated.as of 14.0, replaced bygetReceiver()Get the receiver ground station.- Returns:
- receiver ground station
-
getReceiver
public Observer getReceiver()
Get the receiver object.- Returns:
- receiver object
- Since:
- 14.0
-
getParticipants
protected TimeStampedPVCoordinates[] getParticipants(SpacecraftState state)
Method returning the full kinematic coordinates of signal participants at transmission dates.- Parameters:
state- observable state- Returns:
- signal participants
-
getFieldShifts
protected Gradient[] getFieldShifts(SpacecraftState[] states)
Method computing consecutive Field time shifts of participants, starting from observation date.- Parameters:
states- observables- Returns:
- time shifts
-
fillEstimation
protected void fillEstimation(Gradient quantity, Map<String,Integer> paramIndices, EstimatedMeasurement<T> estimated)
Fill estimated measurements with value and derivatives.- Parameters:
quantity- estimated quantityparamIndices- indices mapping parameter names to derivative indicesestimated- theoretical measurement class
-
-