All Implemented Interfaces:
Comparable<ComparableMeasurement>, ComparableMeasurement, ObservedMeasurement<TDOA>, TimeStamped, ParameterDriversProvider

public class TDOA extends SignalBasedMeasurement<TDOA>
Class modeling a Time Difference of Arrival measurement with a satellite as emitter and two observers as receivers.

TDOA measures the difference in signal arrival time between the emitter and receivers, corresponding to a difference in ranges from the two receivers to the emitter.

The date of the measurement corresponds to the reception of the signal by the prime station. The measurement corresponds to the date of the measurement minus the date of reception of the signal by the second station: tdoa = tr1 - tr2

The motion of the sensors and the satellite during the signal flight time are taken into account.

Since:
11.2
Author:
Pascal Parraud
  • Field Details

  • Constructor Details

    • TDOA

      public TDOA(Observer primeObserver, Observer secondObserver, AbsoluteDate date, double tdoa, double sigma, double baseWeight, ObservableSatellite satellite)
      Constructor.
      Parameters:
      primeObserver - observer that gives the measurement date
      secondObserver - observer that gives the measurement value
      date - date of the measurement
      tdoa - observed value (s)
      sigma - theoretical standard deviation
      baseWeight - base weight
      satellite - satellite related to this measurement
    • TDOA

      public TDOA(Observer primeObserver, Observer secondObserver, AbsoluteDate date, double tdoa, MeasurementQuality measurementQuality, SignalTravelTimeModel signalTravelTimeModel, ObservableSatellite satellite)
      Constructor.
      Parameters:
      primeObserver - observer that gives the measurement date
      secondObserver - observer that gives the measurement value
      date - date of the measurement
      tdoa - observed value (s)
      measurementQuality - measurement quality data as used in orbit determination
      signalTravelTimeModel - signal travel time model
      satellite - satellite related to this measurement
      Since:
      14.0
  • Method Details

    • theoreticalEvaluationWithoutDerivatives

      protected EstimatedMeasurementBase<TDOA> 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:
      theoreticalEvaluationWithoutDerivatives in class AbstractMeasurement<TDOA>
      Parameters:
      iteration - iteration number
      evaluation - evaluation number
      states - orbital states at measurement date
      Returns:
      theoretical value
      See Also:
    • theoreticalEvaluation

      protected EstimatedMeasurement<TDOA> theoreticalEvaluation(int iteration, int evaluation, SpacecraftState[] states)
      Estimate the theoretical value.

      The theoretical value does not have any modifiers applied.

      Specified by:
      theoreticalEvaluation in class AbstractMeasurement<TDOA>
      Parameters:
      iteration - iteration number
      evaluation - evaluation number
      states - orbital states at measurement date
      Returns:
      theoretical value
      See Also:
    • getPrimeStation

      @Deprecated public GroundStation getPrimeStation()
      Deprecated.
      as of 14.0, replaced by getPrimeObserver()
      Get the prime ground station, the one that receives the signal first.
      Returns:
      prime ground station
    • getPrimeObserver

      public Observer getPrimeObserver()
      Get the prime observer, the one that receives the signal first.
      Returns:
      prime observer
    • getSecondStation

      @Deprecated public GroundStation getSecondStation()
      Deprecated.
      as of 14.0, replaced by getSecondObserver()
      Get the second ground station, the one that receives the signal first.
      Returns:
      second ground station
    • getSecondObserver

      public Observer getSecondObserver()
      Get the second observer, the one that gives the measurement.
      Returns:
      second observer
    • computeDelays

      protected Gradient[] computeDelays(SpacecraftState[] states)
      Compute signal delays (always positive).
      Parameters:
      states - observed states
      Returns:
      delays (to prime and second sensors)
    • fillEstimation

      protected void fillEstimation(Gradient quantity, Map<String,Integer> paramIndices, EstimatedMeasurement<TDOA> estimated)
      Fill estimated measurements with value and derivatives.
      Parameters:
      quantity - estimated quantity
      paramIndices - indices mapping parameter names to derivative indices
      estimated - theoretical measurement class