CartesianAdjointDerivativesProvider.java
/* Copyright 2022-2024 Romain Serra
* Licensed to CS GROUP (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.control.indirect.adjoint;
import org.hipparchus.geometry.euclidean.threed.Vector3D;
import org.hipparchus.util.FastMath;
import org.orekit.control.indirect.adjoint.cost.CartesianCost;
import org.orekit.errors.OrekitException;
import org.orekit.errors.OrekitMessages;
import org.orekit.frames.Frame;
import org.orekit.orbits.OrbitType;
import org.orekit.propagation.SpacecraftState;
import org.orekit.propagation.integration.AdditionalDerivativesProvider;
import org.orekit.propagation.integration.CombinedDerivatives;
import org.orekit.time.AbsoluteDate;
import org.orekit.utils.PVCoordinates;
/**
* Class defining the adjoint dynamics, as defined in the Pontryagin Maximum Principle, in the case where Cartesian coordinates in an inertial frame are the dependent variable.
* The time derivatives of the adjoint variables are obtained by differentiating the so-called Hamiltonian.
* They depend on the force model and the cost being minimized.
* For the former, it is the user's responsibility to make sure the provided {@link CartesianAdjointEquationTerm} are consistent with the {@link org.orekit.forces.ForceModel}.
* For the latter, the cost function is represented through the interface {@link CartesianCost}.
* @author Romain Serra
* @see AdditionalDerivativesProvider
* @see org.orekit.propagation.numerical.NumericalPropagator
* @since 12.2
*/
public class CartesianAdjointDerivativesProvider extends AbstractCartesianAdjointDerivativesProvider implements AdditionalDerivativesProvider {
/** Contributing terms to the adjoint equation. */
private final CartesianAdjointEquationTerm[] adjointEquationTerms;
/**
* Constructor.
* @param cost cost function
* @param adjointEquationTerms terms contributing to the adjoint equations. If none, then the propagator should have no forces, not even a Newtonian attraction.
*/
public CartesianAdjointDerivativesProvider(final CartesianCost cost,
final CartesianAdjointEquationTerm... adjointEquationTerms) {
super(cost);
this.adjointEquationTerms = adjointEquationTerms;
}
/** {@inheritDoc} */
@Override
public void init(final SpacecraftState initialState, final AbsoluteDate target) {
AdditionalDerivativesProvider.super.init(initialState, target);
if (initialState.isOrbitDefined() && initialState.getOrbit().getType() != OrbitType.CARTESIAN) {
throw new OrekitException(OrekitMessages.WRONG_COORDINATES_FOR_ADJOINT_EQUATION);
}
}
/** {@inheritDoc} */
@Override
public CombinedDerivatives combinedDerivatives(final SpacecraftState state) {
// pre-computations
final double[] adjointVariables = state.getAdditionalState(getName());
final int adjointDimension = getDimension();
final double[] additionalDerivatives = new double[adjointDimension];
final double[] cartesianVariablesAndMass = formCartesianAndMassVector(state);
final double mass = state.getMass();
// mass flow rate and control acceleration
final double[] mainDerivativesIncrements = new double[7];
final Vector3D thrustAccelerationVector = getCost().getThrustAccelerationVector(adjointVariables, mass);
mainDerivativesIncrements[3] = thrustAccelerationVector.getX();
mainDerivativesIncrements[4] = thrustAccelerationVector.getY();
mainDerivativesIncrements[5] = thrustAccelerationVector.getZ();
mainDerivativesIncrements[6] = -getCost().getMassFlowRateFactor() * thrustAccelerationVector.getNorm() * mass;
// Cartesian position adjoint
additionalDerivatives[3] = -adjointVariables[0];
additionalDerivatives[4] = -adjointVariables[1];
additionalDerivatives[5] = -adjointVariables[2];
// update position and velocity adjoint derivatives
final AbsoluteDate date = state.getDate();
final Frame propagationFrame = state.getFrame();
for (final CartesianAdjointEquationTerm equationTerm: adjointEquationTerms) {
final double[] contribution = equationTerm.getRatesContribution(date, cartesianVariablesAndMass, adjointVariables,
propagationFrame);
for (int i = 0; i < FastMath.min(adjointDimension, contribution.length); i++) {
additionalDerivatives[i] += contribution[i];
}
}
// other
getCost().updateAdjointDerivatives(adjointVariables, mass, additionalDerivatives);
return new CombinedDerivatives(additionalDerivatives, mainDerivativesIncrements);
}
/**
* Gather Cartesian variables and mass in same vector.
* @param state propagation state
* @return Cartesian variables and mass
*/
private double[] formCartesianAndMassVector(final SpacecraftState state) {
final double[] cartesianVariablesAndMass = new double[7];
final PVCoordinates pvCoordinates = state.getPVCoordinates();
System.arraycopy(pvCoordinates.getPosition().toArray(), 0, cartesianVariablesAndMass, 0, 3);
System.arraycopy(pvCoordinates.getVelocity().toArray(), 0, cartesianVariablesAndMass, 3, 3);
final double mass = state.getMass();
cartesianVariablesAndMass[6] = mass;
return cartesianVariablesAndMass;
}
/**
* Evaluate the Hamiltonian from Pontryagin's Maximum Principle.
* @param state state assumed to hold the adjoint variables
* @return Hamiltonian
*/
public double evaluateHamiltonian(final SpacecraftState state) {
final double[] cartesianAndMassVector = formCartesianAndMassVector(state);
final double[] adjointVariables = state.getAdditionalState(getName());
double hamiltonian = adjointVariables[0] * cartesianAndMassVector[3] + adjointVariables[1] * cartesianAndMassVector[4] + adjointVariables[2] * cartesianAndMassVector[5];
final AbsoluteDate date = state.getDate();
final Frame propagationFrame = state.getFrame();
for (final CartesianAdjointEquationTerm adjointEquationTerm : adjointEquationTerms) {
hamiltonian += adjointEquationTerm.getHamiltonianContribution(date, adjointVariables, adjointVariables,
propagationFrame);
}
if (adjointVariables.length != 6) {
final double mass = state.getMass();
final double thrustAccelerationNorm = getCost().getThrustAccelerationVector(adjointVariables, mass).getNorm();
hamiltonian -= getCost().getMassFlowRateFactor() * adjointVariables[6] * thrustAccelerationNorm * mass;
}
hamiltonian += getCost().getHamiltonianContribution(adjointVariables, state.getMass());
return hamiltonian;
}
}