MultipleShooter.java
- /* Copyright 2002-2025 CS GROUP
- * 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.utils;
- import java.util.List;
- import java.util.Map;
- import org.orekit.propagation.SpacecraftState;
- import org.orekit.propagation.numerical.EpochDerivativesEquations;
- import org.orekit.propagation.numerical.NumericalPropagator;
- /**
- * Multiple shooting method applicable for trajectories, in an ephemeris model.
- * Not suited for closed orbits.
- * @see "TRAJECTORY DESIGN AND ORBIT MAINTENANCE STRATEGIES IN MULTI-BODY DYNAMICAL REGIMES by Thomas A. Pavlak, Purdue University"
- * @author William Desprats
- * @author Alberto Fossà
- * @since 10.2
- */
- public class MultipleShooter extends AbstractMultipleShooting {
- /** Name of the additional derivatives. */
- private static final String DERIVATIVES = "derivatives";
- /** Derivatives linked to the Propagators.
- * @since 11.1
- */
- private final List<EpochDerivativesEquations> epochEquations;
- /** Simple Constructor.
- * <p> Standard constructor for multiple shooting which can be used with non-autonomous systems.</p>
- * @param initialGuessList initial patch points to be corrected
- * @param propagatorList list of propagators associated to each patch point
- * @param epochEquations list of additional derivatives providers linked to propagatorList
- * @param tolerance convergence tolerance on the constraint vector
- * @param maxIter maximum number of iterations
- */
- public MultipleShooter(final List<SpacecraftState> initialGuessList,
- final List<NumericalPropagator> propagatorList,
- final List<EpochDerivativesEquations> epochEquations,
- final double tolerance, final int maxIter) {
- super(initialGuessList, propagatorList, tolerance, maxIter, false, DERIVATIVES);
- this.epochEquations = epochEquations;
- }
- /** {@inheritDoc} */
- protected SpacecraftState getAugmentedInitialState(final int i) {
- return epochEquations.get(i).setInitialJacobians(getPatchPoint(i));
- }
- /** {@inheritDoc} */
- protected double[][] computeAdditionalJacobianMatrix(final List<SpacecraftState> propagatedSP) {
- final Map<Integer, Double> mapConstraints = getConstraintsMap();
- final double[][] M = new double[mapConstraints.size()][getNumberOfFreeComponents()];
- int k = 0;
- for (int index : mapConstraints.keySet()) {
- M[k][index] = 1.0;
- k++;
- }
- return M;
- }
- /** {@inheritDoc} */
- protected double[] computeAdditionalConstraints(final List<SpacecraftState> propagatedSP) {
- // The additional constraint vector has the following form :
- // [ y1i - y1d ]---- other constraints (component of
- // Fadd(X) = [ ... ] | a patch point equals to a
- // [vz2i - vz2d]---- desired value)
- // Number of additional constraints
- final double[] fxAdditional = new double[getConstraintsMap().size()];
- // Update additional constraints
- updateAdditionalConstraints(0, fxAdditional);
- return fxAdditional;
- }
- }