Class AbstractWindUp<T extends ObservedMeasurement<T>>
- java.lang.Object
-
- org.orekit.estimation.measurements.gnss.AbstractWindUp<T>
-
- Type Parameters:
T- the type of the measurement
- All Implemented Interfaces:
EstimationModifier<T>,ParameterDriversProvider
- Direct Known Subclasses:
InterSatellitesWindUp,WindUp
public abstract class AbstractWindUp<T extends ObservedMeasurement<T>> extends Object implements EstimationModifier<T>
Base class for wind-up effect computation.- Since:
- 12.0
- Author:
- Luc Maisonobe
- See Also:
- Carrier Phase Wind-up Effect
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedAbstractWindUp(Dipole emitter, Dipole receiver)Simple constructor.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description voidcacheAngularWindUp(TimeStampedPVCoordinates[] participants, Rotation receiverToInert, Rotation emitterToInert)Cache angular wind-up.protected abstract RotationemitterToInert(EstimatedMeasurementBase<T> estimated)Compute rotation from emitter to inertial frame.doublegetAngularWindUp()Get cached value of angular wind-up.StringgetEffectName()Get the name of the effect modifying the measurement.List<ParameterDriver>getParametersDrivers()Get the drivers for parameters.voidmodifyWithoutDerivatives(EstimatedMeasurementBase<T> estimated)Apply a modifier to an estimated measurement without derivatives.protected abstract RotationreceiverToInert(EstimatedMeasurementBase<T> estimated)Compute rotation from receiver to inertial frame.-
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.EstimationModifier
modify
-
Methods inherited from interface org.orekit.utils.ParameterDriversProvider
getNbParametersDriversValue, getParameterDriver, getParameters, getParameters, getParameters, getParameters, getParametersAllValues, getParametersAllValues, isSupported
-
-
-
-
Method Detail
-
getEffectName
public String getEffectName()
Get the name of the effect modifying the measurement.- Specified by:
getEffectNamein interfaceEstimationModifier<T extends ObservedMeasurement<T>>- Returns:
- name of the effect modifying the measurement
-
getParametersDrivers
public List<ParameterDriver> getParametersDrivers()
Get the drivers for parameters.Wind-up effect has no parameters, the returned list is always empty.
- Specified by:
getParametersDriversin interfaceParameterDriversProvider- Returns:
- drivers for parameters
-
emitterToInert
protected abstract Rotation emitterToInert(EstimatedMeasurementBase<T> estimated)
Compute rotation from emitter to inertial frame.- Parameters:
estimated- estimated measurement to modify- Returns:
- rotation from emitter to inertial frame
-
receiverToInert
protected abstract Rotation receiverToInert(EstimatedMeasurementBase<T> estimated)
Compute rotation from receiver to inertial frame.- Parameters:
estimated- estimated measurement to modify- Returns:
- rotation from receiver to inertial frame
-
cacheAngularWindUp
public void cacheAngularWindUp(TimeStampedPVCoordinates[] participants, Rotation receiverToInert, Rotation emitterToInert)
Cache angular wind-up.- Parameters:
participants- particpants to the carrier-phase measurementreceiverToInert- rotation for receiver to inertial frameemitterToInert- rotation from emitter to inertial frame- Since:
- 13.0
-
getAngularWindUp
public double getAngularWindUp()
Get cached value of angular wind-up.- Returns:
- cached value of angular wind-up
- Since:
- 13.0
-
modifyWithoutDerivatives
public void modifyWithoutDerivatives(EstimatedMeasurementBase<T> estimated)
Apply a modifier to an estimated measurement without derivatives.- Specified by:
modifyWithoutDerivativesin interfaceEstimationModifier<T extends ObservedMeasurement<T>>- Parameters:
estimated- estimated measurement to modify
-
-