Class Phase
java.lang.Object
org.orekit.estimation.measurements.AbstractMeasurement<Phase>
org.orekit.estimation.measurements.SignalBasedMeasurement<Phase>
org.orekit.estimation.measurements.gnss.Phase
- All Implemented Interfaces:
Comparable<ComparableMeasurement>,ComparableMeasurement,ObservedMeasurement<Phase>,TimeStamped,ParameterDriversProvider
Class modeling a phase measurement from a ground station.
The measurement is considered to be a signal emitted from a spacecraft and received on a ground station. Its value is the number of cycles between emission and reception. The motion of both the station and the spacecraft during the signal flight time are taken into account. The date of the measurement corresponds to the reception on ground of the emitted signal.
- Since:
- 9.2
- Author:
- Thierry Ceolin, Luc Maisonobe, Maxime Journot
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionPhase(Observer observer, AbsoluteDate date, double phase, double wavelength, double sigma, double baseWeight, ObservableSatellite satellite, AmbiguityCache cache) Simple constructor.Phase(Observer observer, AbsoluteDate date, double phase, double wavelength, MeasurementQuality measurementQuality, SignalTravelTimeModel signalTravelTimeModel, ObservableSatellite satellite, AmbiguityCache cache) Simple constructor. -
Method Summary
Modifier and TypeMethodDescriptionGet the driver for phase ambiguity.final ObserverGet receiving observer.doubleGet the wavelength.protected EstimatedMeasurement<Phase> theoreticalEvaluation(int iteration, int evaluation, SpacecraftState[] states) Estimate the theoretical value.protected EstimatedMeasurementBase<Phase> theoreticalEvaluationWithoutDerivatives(int iteration, int evaluation, SpacecraftState[] states) Estimate the theoretical value without derivatives.Methods inherited from class org.orekit.estimation.measurements.SignalBasedMeasurement
getSignalTravelTimeModel, isTwoWayMethods inherited from class org.orekit.estimation.measurements.AbstractMeasurement
addModifier, addParameterDriver, addParametersDrivers, estimate, estimateWithoutDerivatives, getCoordinates, getDate, getMeasurementQuality, getModifiers, getObservedValue, getParameterIndices, getParametersDrivers, getSatellites, isEnabled, setEnabled, setObservedValueMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.orekit.estimation.measurements.ComparableMeasurement
compareToMethods inherited from interface org.orekit.estimation.measurements.ObservedMeasurement
estimateWithoutDerivatives, getBaseWeight, getDimension, getMeasurementType, getTheoreticalStandardDeviationMethods inherited from interface org.orekit.utils.ParameterDriversProvider
getNbParametersDriversValue, getParameterDriver, getParameters, getParameters, getParameters, getParameters, getParametersAllValues, getParametersAllValues, isSupportedMethods inherited from interface org.orekit.time.TimeStamped
durationFrom
-
Field Details
-
MEASUREMENT_TYPE
Type of the measurement.- See Also:
-
-
Constructor Details
-
Phase
public Phase(Observer observer, AbsoluteDate date, double phase, double wavelength, double sigma, double baseWeight, ObservableSatellite satellite, AmbiguityCache cache) Simple constructor.- Parameters:
observer- observer that performs the measurementdate- date of the measurementphase- observed value (cycles)wavelength- phase observed value wavelength (m)sigma- theoretical standard deviationbaseWeight- base weightsatellite- satellite related to this measurementcache- from which ambiguity drive should come- Since:
- 12.1
-
Phase
public Phase(Observer observer, AbsoluteDate date, double phase, double wavelength, MeasurementQuality measurementQuality, SignalTravelTimeModel signalTravelTimeModel, ObservableSatellite satellite, AmbiguityCache cache) Simple constructor.- Parameters:
observer- observer that performs the measurementdate- date of the measurementphase- observed value (cycles)wavelength- phase observed value wavelength (m)measurementQuality- measurement quality data as used in orbit determinationsignalTravelTimeModel- signal modelsatellite- satellite related to this measurementcache- from which ambiguity drive should come- Since:
- 14.0
-
-
Method Details
-
getObserver
Get receiving observer.- Returns:
- observer
-
getWavelength
public double getWavelength()Get the wavelength.- Returns:
- wavelength (m)
-
getAmbiguityDriver
Get the driver for phase ambiguity.- Returns:
- the driver for phase ambiguity
- Since:
- 10.3
-
theoreticalEvaluationWithoutDerivatives
protected EstimatedMeasurementBase<Phase> theoreticalEvaluationWithoutDerivatives(int iteration, int evaluation, SpacecraftState[] states) Estimate the theoretical value without derivatives. The default implementation uses the computation with derivatives and ought to be overwritten for performance.The theoretical value does not have any modifiers applied.
- Overrides:
theoreticalEvaluationWithoutDerivativesin classAbstractMeasurement<Phase>- Parameters:
iteration- iteration numberevaluation- evaluation numberstates- orbital states at measurement date- Returns:
- theoretical value
- See Also:
-
theoreticalEvaluation
protected EstimatedMeasurement<Phase> theoreticalEvaluation(int iteration, int evaluation, SpacecraftState[] states) Estimate the theoretical value.The theoretical value does not have any modifiers applied.
- Specified by:
theoreticalEvaluationin classAbstractMeasurement<Phase>- Parameters:
iteration- iteration numberevaluation- evaluation numberstates- orbital states at measurement date- Returns:
- theoretical value
- See Also:
-