AbstractOrbitInterpolator.java

/* Copyright 2002-2024 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.orbits;

import org.orekit.errors.OrekitIllegalArgumentException;
import org.orekit.errors.OrekitMessages;
import org.orekit.frames.Frame;
import org.orekit.time.AbsoluteDate;
import org.orekit.time.AbstractTimeInterpolator;

import java.util.ArrayList;
import java.util.Collection;
import java.util.List;

/**
 * Abstract class for orbit interpolator.
 *
 * @author Vincent Cucchietti
 */
public abstract class AbstractOrbitInterpolator extends AbstractTimeInterpolator<Orbit> {

    /** Output inertial frame. */
    private final Frame outputInertialFrame;

    /**
     * Constructor.
     *
     * @param interpolationPoints number of interpolation points
     * @param extrapolationThreshold extrapolation threshold beyond which the propagation will fail
     * @param outputInertialFrame output inertial frame
     */
    public AbstractOrbitInterpolator(final int interpolationPoints, final double extrapolationThreshold,
                                     final Frame outputInertialFrame) {
        super(interpolationPoints, extrapolationThreshold);
        checkFrameIsInertial(outputInertialFrame);
        this.outputInertialFrame = outputInertialFrame;
    }

    /**
     * Check orbits consistency by comparing their gravitational parameters ยต.
     *
     * @param sample orbits sample
     */
    public static void checkOrbitsConsistency(final Collection<Orbit> sample) {
        // Convert sample to list
        final List<Orbit> sampleList = new ArrayList<>(sample);

        // Check consistency
        for (int i = 0; i < sampleList.size() - 1; i++) {
            final Orbit currentOrbit = sampleList.get(i);
            final Orbit nextOrbit    = sampleList.get(i + 1);

            if (currentOrbit.getMu() != nextOrbit.getMu()) {
                throw new OrekitIllegalArgumentException(OrekitMessages.ORBITS_MUS_MISMATCH, currentOrbit.getMu(),
                                                         nextOrbit.getMu());
            }
        }
    }

    /** {@inheritDoc}. */
    @Override
    public Orbit interpolate(final AbsoluteDate interpolationDate, final Collection<Orbit> sample) {

        // Check orbits consistency
        checkOrbitsConsistency(sample);

        return super.interpolate(interpolationDate, sample);
    }

    /** Get output inertial frame.
     * @return output inertial frame
     */
    public Frame getOutputInertialFrame() {
        return outputInertialFrame;
    }

    /**
     * Check if given frame is pseudo inertial and throw an error otherwise.
     *
     * @param frame frame to check
     *
     * @throws OrekitIllegalArgumentException if given frame is not pseudo inertial
     */
    private void checkFrameIsInertial(final Frame frame) {
        if (!frame.isPseudoInertial()) {
            throw new OrekitIllegalArgumentException(OrekitMessages.NON_PSEUDO_INERTIAL_FRAME, frame.getName());
        }
    }
}