Class TDOAIonosphericDelayModifier
- java.lang.Object
-
- org.orekit.estimation.measurements.modifiers.TDOAIonosphericDelayModifier
-
- All Implemented Interfaces:
EstimationModifier<TDOA>,ParameterDriversProvider
public class TDOAIonosphericDelayModifier extends Object implements EstimationModifier<TDOA>
Class modifying theoretical TDOA measurements with ionospheric delay.The effect of ionospheric correction on the TDOA is a time delay computed directly from the difference in ionospheric delays for each downlink.
The ionospheric delay depends on the frequency of the signal.
- Since:
- 11.2
- Author:
- Pascal Parraud
-
-
Constructor Summary
Constructors Constructor Description TDOAIonosphericDelayModifier(IonosphericModel model, double freq)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetEffectName()Get the name of the effect modifying the measurement.List<ParameterDriver>getParametersDrivers()Get the drivers for parameters.voidmodify(EstimatedMeasurement<TDOA> estimated)Apply a modifier to an estimated measurement.voidmodifyWithoutDerivatives(EstimatedMeasurementBase<TDOA> estimated)Apply a modifier to an estimated measurement without derivatives.-
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, isSupported
-
-
-
-
Constructor Detail
-
TDOAIonosphericDelayModifier
public TDOAIonosphericDelayModifier(IonosphericModel model, double freq)
Constructor.- Parameters:
model- ionospheric model appropriate for the current TDOA measurement methodfreq- frequency of the signal in Hz
-
-
Method Detail
-
getEffectName
public String getEffectName()
Get the name of the effect modifying the measurement.- Specified by:
getEffectNamein interfaceEstimationModifier<TDOA>- Returns:
- name of the effect modifying the measurement
-
getParametersDrivers
public List<ParameterDriver> getParametersDrivers()
Get the drivers for parameters.- Specified by:
getParametersDriversin interfaceParameterDriversProvider- Returns:
- drivers for parameters
-
modifyWithoutDerivatives
public void modifyWithoutDerivatives(EstimatedMeasurementBase<TDOA> estimated)
Description copied from interface:EstimationModifierApply a modifier to an estimated measurement without derivatives.- Specified by:
modifyWithoutDerivativesin interfaceEstimationModifier<TDOA>- Parameters:
estimated- estimated measurement to modify
-
modify
public void modify(EstimatedMeasurement<TDOA> estimated)
Description copied from interface:EstimationModifierApply a modifier to an estimated measurement.- Specified by:
modifyin interfaceEstimationModifier<TDOA>- Parameters:
estimated- estimated measurement to modify
-
-