Class Phase
- java.lang.Object
-
- org.orekit.estimation.measurements.AbstractMeasurement<Phase>
-
- org.orekit.estimation.measurements.Phase
-
- All Implemented Interfaces:
Comparable<ComparableMeasurement>
,ComparableMeasurement
,ObservedMeasurement<Phase>
,TimeStamped
public class Phase extends AbstractMeasurement<Phase>
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
-
-
Constructor Summary
Constructors Constructor Description Phase(GroundStation station, AbsoluteDate date, double phase, double wavelength, double sigma, double baseWeight)
Deprecated.Phase(GroundStation station, AbsoluteDate date, double phase, double wavelength, double sigma, double baseWeight, int propagatorIndex)
Deprecated.Phase(GroundStation station, AbsoluteDate date, double phase, double wavelength, double sigma, double baseWeight, ObservableSatellite satellite)
Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GroundStation
getStation()
Get the ground station from which measurement is performed.protected EstimatedMeasurement<Phase>
theoreticalEvaluation(int iteration, int evaluation, SpacecraftState[] states)
Estimate the theoretical value.-
Methods inherited from class org.orekit.estimation.measurements.AbstractMeasurement
addModifier, addParameterDriver, estimate, getBaseWeight, getCoordinates, getDate, getDimension, getModifiers, getObservedValue, getParametersDrivers, getPropagatorsIndices, getSatellites, getTheoreticalStandardDeviation, isEnabled, setEnabled, signalTimeOfFlight, signalTimeOfFlight
-
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.ComparableMeasurement
compareTo
-
-
-
-
Constructor Detail
-
Phase
@Deprecated public Phase(GroundStation station, AbsoluteDate date, double phase, double wavelength, double sigma, double baseWeight)
Deprecated.Simple constructor.This constructor uses 0 as the index of the propagator related to this measurement, thus being well suited for mono-satellite orbit determination.
- Parameters:
station
- ground station from which measurement is performeddate
- date of the measurementphase
- observed valuewavelength
- phase observed value wavelengthsigma
- theoretical standard deviationbaseWeight
- base weight
-
Phase
@Deprecated public Phase(GroundStation station, AbsoluteDate date, double phase, double wavelength, double sigma, double baseWeight, int propagatorIndex)
Deprecated.Simple constructor.- Parameters:
station
- ground station from which measurement is performeddate
- date of the measurementphase
- observed valuewavelength
- phase observed value wavelengthsigma
- theoretical standard deviationbaseWeight
- base weightpropagatorIndex
- index of the propagator related to this measurement
-
Phase
public Phase(GroundStation station, AbsoluteDate date, double phase, double wavelength, double sigma, double baseWeight, ObservableSatellite satellite)
Simple constructor.- Parameters:
station
- ground station from which measurement is performeddate
- date of the measurementphase
- observed valuewavelength
- phase observed value wavelengthsigma
- theoretical standard deviationbaseWeight
- base weightsatellite
- satellite related to this measurement- Since:
- 9.3
-
-
Method Detail
-
getStation
public GroundStation getStation()
Get the ground station from which measurement is performed.- Returns:
- ground station from which measurement is performed
-
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:
theoreticalEvaluation
in classAbstractMeasurement<Phase>
- Parameters:
iteration
- iteration numberevaluation
- evaluation numberstates
- orbital states at measurement date- Returns:
- theoretical value
- See Also:
AbstractMeasurement.estimate(int, int, SpacecraftState[])
-
-