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,OneWayGNSSWindUp,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:
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedAbstractWindUp(Dipole emitter, Dipole receiver) Simple constructor. -
Method Summary
Modifier and TypeMethodDescriptionvoidcacheAngularWindUp(TimeStampedPVCoordinates[] participants, Rotation receiverToInert, Rotation emitterToInert) Cache angular wind-up.protected abstract RotationemitterToInert(EstimatedMeasurementBase<T> estimated) Compute rotation from emitter to inertial frame.doubleGet cached value of angular wind-up.Get the name of the effect modifying the measurement.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.voidsetAngularWindUp(double angularWindUp) Set cached value of angular wind-up.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.orekit.estimation.measurements.EstimationModifier
modifyMethods inherited from interface org.orekit.utils.ParameterDriversProvider
getNbParametersDriversValue, getParameterDriver, getParameters, getParameters, getParameters, getParameters, getParametersAllValues, getParametersAllValues, isSupported
-
Constructor Details
-
AbstractWindUp
Simple constructor.- Parameters:
emitter- emitter dipolereceiver- receiver dipole
-
-
Method Details
-
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
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
Compute rotation from emitter to inertial frame.- Parameters:
estimated- estimated measurement to modify- Returns:
- rotation from emitter to inertial frame
-
receiverToInert
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
-
setAngularWindUp
public void setAngularWindUp(double angularWindUp) Set cached value of angular wind-up.- Parameters:
angularWindUp- angular wind-up value- Since:
- 13.1
-
modifyWithoutDerivatives
Apply a modifier to an estimated measurement without derivatives.- Specified by:
modifyWithoutDerivativesin interfaceEstimationModifier<T extends ObservedMeasurement<T>>- Parameters:
estimated- estimated measurement to modify
-