TurnAroundRangeIonosphericDelayModifier.java
/* Copyright 2002-2019 CS Systèmes d'Information
* Licensed to CS Systèmes d'Information (CS) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* CS licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.orekit.estimation.measurements.modifiers;
import java.util.Arrays;
import java.util.List;
import org.hipparchus.RealFieldElement;
import org.hipparchus.analysis.differentiation.DerivativeStructure;
import org.orekit.estimation.measurements.EstimatedMeasurement;
import org.orekit.estimation.measurements.EstimationModifier;
import org.orekit.estimation.measurements.GroundStation;
import org.orekit.estimation.measurements.TurnAroundRange;
import org.orekit.frames.TopocentricFrame;
import org.orekit.models.earth.ionosphere.IonosphericModel;
import org.orekit.propagation.FieldSpacecraftState;
import org.orekit.propagation.Propagator;
import org.orekit.propagation.SpacecraftState;
import org.orekit.utils.Differentiation;
import org.orekit.utils.ParameterDriver;
import org.orekit.utils.ParameterFunction;
/** Class modifying theoretical TurnAroundRange measurement with ionospheric delay.
* The effect of ionospheric correction on the TurnAroundRange is directly computed
* through the computation of the ionospheric delay.
*
* The ionospheric delay depends on the frequency of the signal (GNSS, VLBI, ...).
* For optical measurements (e.g. SLR), the ray is not affected by ionosphere charged particles.
* <p>
* Since 10.0, state derivatives and ionospheric parameters derivates are computed
* using automatic differentiation.
* </p>
* @author Maxime Journot
* @since 9.0
*/
public class TurnAroundRangeIonosphericDelayModifier implements EstimationModifier<TurnAroundRange> {
/** Ionospheric delay model. */
private final IonosphericModel ionoModel;
/** Frequency [Hz]. */
private final double frequency;
/** Constructor.
*
* @param model Ionospheric delay model appropriate for the current TurnAroundRange measurement method.
* @param freq frequency of the signal in Hz
*/
public TurnAroundRangeIonosphericDelayModifier(final IonosphericModel model,
final double freq) {
ionoModel = model;
frequency = freq;
}
/** Compute the measurement error due to ionosphere.
* @param station station
* @param state spacecraft state
* @return the measurement error due to ionosphere
*/
private double rangeErrorIonosphericModel(final GroundStation station,
final SpacecraftState state) {
// Base frame associated with the station
final TopocentricFrame baseFrame = station.getBaseFrame();
// Delay in meters
final double delay = ionoModel.pathDelay(state, baseFrame, frequency, ionoModel.getParameters());
return delay;
}
/** Compute the measurement error due to ionosphere.
* @param <T> type of the elements
* @param station station
* @param state spacecraft state
* @param parameters ionospheric model parameters
* @return the measurement error due to ionosphere
*/
private <T extends RealFieldElement<T>> T rangeErrorIonosphericModel(final GroundStation station,
final FieldSpacecraftState<T> state,
final T[] parameters) {
// Base frame associated with the station
final TopocentricFrame baseFrame = station.getBaseFrame();
// Delay in meters
final T delay = ionoModel.pathDelay(state, baseFrame, frequency, parameters);
return delay;
}
/** Compute the Jacobian of the delay term wrt state using
* automatic differentiation.
*
* @param derivatives ionospheric delay derivatives
* @param freeStateParameters dimension of the state.
*
* @return Jacobian of the delay wrt state
*/
private double[][] rangeErrorJacobianState(final double[] derivatives, final int freeStateParameters) {
final double[][] finiteDifferencesJacobian = new double[1][6];
for (int i = 0; i < freeStateParameters; i++) {
// First element is the value of the delay
finiteDifferencesJacobian[0][i] = derivatives[i + 1];
}
return finiteDifferencesJacobian;
}
/** Compute the derivative of the delay term wrt parameters.
*
* @param station ground station
* @param driver driver for the station offset parameter
* @param state spacecraft state
* @return derivative of the delay wrt station offset parameter
*/
private double rangeErrorParameterDerivative(final GroundStation station,
final ParameterDriver driver,
final SpacecraftState state) {
final ParameterFunction rangeError = new ParameterFunction() {
/** {@inheritDoc} */
@Override
public double value(final ParameterDriver parameterDriver) {
return rangeErrorIonosphericModel(station, state);
}
};
final ParameterFunction rangeErrorDerivative =
Differentiation.differentiate(rangeError, 3, 10.0 * driver.getScale());
return rangeErrorDerivative.value(driver);
}
/** Compute the derivative of the delay term wrt parameters using
* automatic differentiation.
*
* @param derivatives ionospheric delay derivatives
* @param freeStateParameters dimension of the state.
* @return derivative of the delay wrt ionospheric model parameters
*/
private double[] rangeErrorParameterDerivative(final double[] derivatives, final int freeStateParameters) {
// 0 -> value of the delay
// 1 ... freeStateParameters -> derivatives of the delay wrt state
// freeStateParameters + 1 ... n -> derivatives of the delay wrt ionospheric parameters
final int dim = derivatives.length - 1 - freeStateParameters;
final double[] rangeError = new double[dim];
for (int i = 0; i < dim; i++) {
rangeError[i] = derivatives[1 + freeStateParameters + i];
}
return rangeError;
}
/** {@inheritDoc} */
@Override
public List<ParameterDriver> getParametersDrivers() {
return ionoModel.getParametersDrivers();
}
@Override
public void modify(final EstimatedMeasurement<TurnAroundRange> estimated) {
final TurnAroundRange measurement = estimated.getObservedMeasurement();
final GroundStation masterStation = measurement.getMasterStation();
final GroundStation slaveStation = measurement.getSlaveStation();
final SpacecraftState state = estimated.getStates()[0];
final double[] oldValue = estimated.getEstimatedValue();
// Update estimated derivatives with Jacobian of the measure wrt state
final IonosphericDSConverter converter = new IonosphericDSConverter(state, 6, Propagator.DEFAULT_LAW);
final FieldSpacecraftState<DerivativeStructure> dsState = converter.getState(ionoModel);
final DerivativeStructure[] dsParameters = converter.getParameters(dsState, ionoModel);
final DerivativeStructure masterDSDelay = rangeErrorIonosphericModel(masterStation, dsState, dsParameters);
final DerivativeStructure slaveDSDelay = rangeErrorIonosphericModel(slaveStation, dsState, dsParameters);
final double[] masterDerivatives = masterDSDelay.getAllDerivatives();
final double[] slaveDerivatives = masterDSDelay.getAllDerivatives();
final double[][] masterDjac = rangeErrorJacobianState(masterDerivatives, converter.getFreeStateParameters());
final double[][] slaveDjac = rangeErrorJacobianState(slaveDerivatives, converter.getFreeStateParameters());
final double[][] stateDerivatives = estimated.getStateDerivatives(0);
for (int irow = 0; irow < stateDerivatives.length; ++irow) {
for (int jcol = 0; jcol < stateDerivatives[0].length; ++jcol) {
stateDerivatives[irow][jcol] += masterDjac[irow][jcol] + slaveDjac[irow][jcol];
}
}
estimated.setStateDerivatives(0, stateDerivatives);
int indexMaster = 0;
for (final ParameterDriver driver : getParametersDrivers()) {
if (driver.isSelected()) {
// update estimated derivatives with derivative of the modification wrt ionospheric parameters
double parameterDerivative = estimated.getParameterDerivatives(driver)[0];
final double[] derivatives = rangeErrorParameterDerivative(masterDerivatives, converter.getFreeStateParameters());
parameterDerivative += derivatives[indexMaster];
estimated.setParameterDerivatives(driver, parameterDerivative);
indexMaster += 1;
}
}
int indexSlave = 0;
for (final ParameterDriver driver : getParametersDrivers()) {
if (driver.isSelected()) {
// update estimated derivatives with derivative of the modification wrt ionospheric parameters
double parameterDerivative = estimated.getParameterDerivatives(driver)[0];
final double[] derivatives = rangeErrorParameterDerivative(slaveDerivatives, converter.getFreeStateParameters());
parameterDerivative += derivatives[indexSlave];
estimated.setParameterDerivatives(driver, parameterDerivative);
indexSlave += 1;
}
}
// Update derivatives with respect to master station position
for (final ParameterDriver driver : Arrays.asList(masterStation.getClockOffsetDriver(),
masterStation.getEastOffsetDriver(),
masterStation.getNorthOffsetDriver(),
masterStation.getZenithOffsetDriver())) {
if (driver.isSelected()) {
double parameterDerivative = estimated.getParameterDerivatives(driver)[0];
parameterDerivative += rangeErrorParameterDerivative(masterStation, driver, state);
estimated.setParameterDerivatives(driver, parameterDerivative);
}
}
// Update derivatives with respect to slave station position
for (final ParameterDriver driver : Arrays.asList(slaveStation.getEastOffsetDriver(),
slaveStation.getNorthOffsetDriver(),
slaveStation.getZenithOffsetDriver())) {
if (driver.isSelected()) {
double parameterDerivative = estimated.getParameterDerivatives(driver)[0];
parameterDerivative += rangeErrorParameterDerivative(slaveStation, driver, state);
estimated.setParameterDerivatives(driver, parameterDerivative);
}
}
// Update estimated value taking into account the ionospheric delay.
// The ionospheric delay is directly added to the TurnAroundRange.
final double[] newValue = oldValue.clone();
newValue[0] = newValue[0] + masterDSDelay.getReal() + slaveDSDelay.getReal();
estimated.setEstimatedValue(newValue);
}
}