Class TurnAroundRange
- java.lang.Object
-
- org.orekit.estimation.measurements.AbstractMeasurement<TurnAroundRange>
-
- org.orekit.estimation.measurements.TurnAroundRange
-
- All Implemented Interfaces:
Comparable<ComparableMeasurement>
,ComparableMeasurement
,ObservedMeasurement<TurnAroundRange>
,TimeStamped
public class TurnAroundRange extends AbstractMeasurement<TurnAroundRange>
Class modeling a turn-around range measurement using a master ground station and a slave ground station.The measurement is considered to be a signal: - Emitted from the master ground station - Reflected on the spacecraft - Reflected on the slave ground station - Reflected on the spacecraft again - Received on the master ground station Its value is the elapsed time between emission and reception divided by 2c were c is the speed of light. The motion of the stations 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 reflected signal.
- Since:
- 9.0
- Author:
- Thierry Ceolin, Luc Maisonobe, Maxime Journot
-
-
Constructor Summary
Constructors Constructor Description TurnAroundRange(GroundStation masterStation, GroundStation slaveStation, AbsoluteDate date, double turnAroundRange, double sigma, double baseWeight)
Deprecated.TurnAroundRange(GroundStation masterStation, GroundStation slaveStation, AbsoluteDate date, double turnAroundRange, double sigma, double baseWeight, int propagatorIndex)
Deprecated.TurnAroundRange(GroundStation masterStation, GroundStation slaveStation, AbsoluteDate date, double turnAroundRange, double sigma, double baseWeight, ObservableSatellite satellite)
Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GroundStation
getMasterStation()
Get the master ground station from which measurement is performed.GroundStation
getSlaveStation()
Get the slave ground station reflecting the signal.protected EstimatedMeasurement<TurnAroundRange>
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
-
TurnAroundRange
@Deprecated public TurnAroundRange(GroundStation masterStation, GroundStation slaveStation, AbsoluteDate date, double turnAroundRange, 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:
masterStation
- ground station from which measurement is performedslaveStation
- ground station reflecting the signaldate
- date of the measurementturnAroundRange
- observed valuesigma
- theoretical standard deviationbaseWeight
- base weight
-
TurnAroundRange
@Deprecated public TurnAroundRange(GroundStation masterStation, GroundStation slaveStation, AbsoluteDate date, double turnAroundRange, double sigma, double baseWeight, int propagatorIndex)
Deprecated.Simple constructor.- Parameters:
masterStation
- ground station from which measurement is performedslaveStation
- ground station reflecting the signaldate
- date of the measurementturnAroundRange
- observed valuesigma
- theoretical standard deviationbaseWeight
- base weightpropagatorIndex
- index of the propagator related to this measurement- Since:
- 9.0
-
TurnAroundRange
public TurnAroundRange(GroundStation masterStation, GroundStation slaveStation, AbsoluteDate date, double turnAroundRange, double sigma, double baseWeight, ObservableSatellite satellite)
Simple constructor.- Parameters:
masterStation
- ground station from which measurement is performedslaveStation
- ground station reflecting the signaldate
- date of the measurementturnAroundRange
- observed valuesigma
- theoretical standard deviationbaseWeight
- base weightsatellite
- satellite related to this measurement- Since:
- 9.3
-
-
Method Detail
-
getMasterStation
public GroundStation getMasterStation()
Get the master ground station from which measurement is performed.- Returns:
- master ground station from which measurement is performed
-
getSlaveStation
public GroundStation getSlaveStation()
Get the slave ground station reflecting the signal.- Returns:
- slave ground station reflecting the signal
-
theoreticalEvaluation
protected EstimatedMeasurement<TurnAroundRange> 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<TurnAroundRange>
- Parameters:
iteration
- iteration numberevaluation
- evaluation numberstates
- orbital states at measurement date- Returns:
- theoretical value
- See Also:
AbstractMeasurement.estimate(int, int, SpacecraftState[])
-
-