Class RangeRateTroposphericDelayModifier
- java.lang.Object
-
- org.orekit.estimation.measurements.modifiers.BaseRangeRateTroposphericDelayModifier
-
- org.orekit.estimation.measurements.modifiers.RangeRateTroposphericDelayModifier
-
- All Implemented Interfaces:
EstimationModifier<RangeRate>
,ParameterDriversProvider
public class RangeRateTroposphericDelayModifier extends BaseRangeRateTroposphericDelayModifier implements EstimationModifier<RangeRate>
Class modifying theoretical range-rate measurements with tropospheric delay.The effect of tropospheric correction on the range-rate is directly computed through the computation of the tropospheric delay difference with respect to time.
In general, for GNSS, VLBI, ... there is hardly any frequency dependence in the delay. For SLR techniques however, the frequency dependence is sensitive.
- Since:
- 8.0
- Author:
- Joris Olympio
-
-
Constructor Summary
Constructors Constructor Description RangeRateTroposphericDelayModifier(DiscreteTroposphericModel model, boolean tw)
Deprecated.as of 12.1, replaced bybRangeRateTroposphericDelayModifier(TroposphericModel, boolean)
RangeRateTroposphericDelayModifier(TroposphericModel model, boolean tw)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
modify(EstimatedMeasurement<RangeRate> estimated)
Apply a modifier to an estimated measurement.void
modifyWithoutDerivatives(EstimatedMeasurementBase<RangeRate> estimated)
Apply a modifier to an estimated measurement without derivatives.<T extends CalculusFieldElement<T>>
TrangeRateErrorTroposphericModel(GroundStation station, FieldSpacecraftState<T> state, T[] parameters)
Compute the measurement error due to Troposphere.double
rangeRateErrorTroposphericModel(GroundStation station, SpacecraftState state)
Compute the measurement error due to Troposphere.-
Methods inherited from class org.orekit.estimation.measurements.modifiers.BaseRangeRateTroposphericDelayModifier
getParametersDrivers, getTropoModel
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.orekit.utils.ParameterDriversProvider
getNbParametersDriversValue, getParameterDriver, getParameters, getParameters, getParameters, getParameters, getParametersAllValues, getParametersAllValues, getParametersDrivers, isSupported
-
-
-
-
Constructor Detail
-
RangeRateTroposphericDelayModifier
@Deprecated public RangeRateTroposphericDelayModifier(DiscreteTroposphericModel model, boolean tw)
Deprecated.as of 12.1, replaced bybRangeRateTroposphericDelayModifier(TroposphericModel, boolean)
Constructor.- Parameters:
model
- Tropospheric delay model appropriate for the current range-rate measurement method.tw
- Flag indicating whether the measurement is two-way.
-
RangeRateTroposphericDelayModifier
public RangeRateTroposphericDelayModifier(TroposphericModel model, boolean tw)
Constructor.- Parameters:
model
- Tropospheric delay model appropriate for the current range-rate measurement method.tw
- Flag indicating whether the measurement is two-way.- Since:
- 12.1
-
-
Method Detail
-
rangeRateErrorTroposphericModel
public double rangeRateErrorTroposphericModel(GroundStation station, SpacecraftState state)
Compute the measurement error due to Troposphere.- Overrides:
rangeRateErrorTroposphericModel
in classBaseRangeRateTroposphericDelayModifier
- Parameters:
station
- stationstate
- spacecraft state- Returns:
- the measurement error due to Troposphere
-
rangeRateErrorTroposphericModel
public <T extends CalculusFieldElement<T>> T rangeRateErrorTroposphericModel(GroundStation station, FieldSpacecraftState<T> state, T[] parameters)
Compute the measurement error due to Troposphere.- Overrides:
rangeRateErrorTroposphericModel
in classBaseRangeRateTroposphericDelayModifier
- Type Parameters:
T
- type of the element- Parameters:
station
- stationstate
- spacecraft stateparameters
- tropospheric model parameters- Returns:
- the measurement error due to Troposphere
-
modifyWithoutDerivatives
public void modifyWithoutDerivatives(EstimatedMeasurementBase<RangeRate> estimated)
Apply a modifier to an estimated measurement without derivatives.- Specified by:
modifyWithoutDerivatives
in interfaceEstimationModifier<RangeRate>
- Parameters:
estimated
- estimated measurement to modify
-
modify
public void modify(EstimatedMeasurement<RangeRate> estimated)
Apply a modifier to an estimated measurement.- Specified by:
modify
in interfaceEstimationModifier<RangeRate>
- Parameters:
estimated
- estimated measurement to modify
-
-