Class PhaseTroposphericDelayModifier
- java.lang.Object
-
- org.orekit.estimation.measurements.modifiers.PhaseTroposphericDelayModifier
-
- All Implemented Interfaces:
EstimationModifier<Phase>
,ParameterDriversProvider
public class PhaseTroposphericDelayModifier extends Object implements EstimationModifier<Phase>
Class modifying theoretical phase measurement with tropospheric delay. The effect of tropospheric correction on the phase is directly computed through the computation of the tropospheric delay.- Since:
- 10.2
- Author:
- David Soulard, Bryan Cazabonne
-
-
Constructor Summary
Constructors Constructor Description PhaseTroposphericDelayModifier(DiscreteTroposphericModel model)
Deprecated.as of 12.1, replaced byPhaseTroposphericDelayModifier(TroposphericModel)
PhaseTroposphericDelayModifier(TroposphericModel model)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<ParameterDriver>
getParametersDrivers()
Get the drivers for parameters.void
modify(EstimatedMeasurement<Phase> estimated)
Apply a modifier to an estimated measurement.void
modifyWithoutDerivatives(EstimatedMeasurementBase<Phase> 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
-
PhaseTroposphericDelayModifier
@Deprecated public PhaseTroposphericDelayModifier(DiscreteTroposphericModel model)
Deprecated.as of 12.1, replaced byPhaseTroposphericDelayModifier(TroposphericModel)
Constructor.- Parameters:
model
- Tropospheric delay model appropriate for the current range measurement method.
-
PhaseTroposphericDelayModifier
public PhaseTroposphericDelayModifier(TroposphericModel model)
Constructor.- Parameters:
model
- Tropospheric delay model appropriate for the current range measurement method.- Since:
- 12.1
-
-
Method Detail
-
getParametersDrivers
public List<ParameterDriver> getParametersDrivers()
Get the drivers for parameters.- Specified by:
getParametersDrivers
in interfaceParameterDriversProvider
- Returns:
- drivers for parameters
-
modifyWithoutDerivatives
public void modifyWithoutDerivatives(EstimatedMeasurementBase<Phase> estimated)
Apply a modifier to an estimated measurement without derivatives.- Specified by:
modifyWithoutDerivatives
in interfaceEstimationModifier<Phase>
- Parameters:
estimated
- estimated measurement to modify
-
modify
public void modify(EstimatedMeasurement<Phase> estimated)
Apply a modifier to an estimated measurement.- Specified by:
modify
in interfaceEstimationModifier<Phase>
- Parameters:
estimated
- estimated measurement to modify
-
-