FieldDSSTJ2SquaredClosedFormContext.java
/* Copyright 2022 Bryan Cazabonne
* 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.
* Bryan Cazabonne 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.propagation.semianalytical.dsst.forces;
import org.hipparchus.CalculusFieldElement;
import org.hipparchus.util.FastMath;
import org.hipparchus.util.FieldSinCos;
import org.orekit.forces.gravity.potential.UnnormalizedSphericalHarmonicsProvider;
import org.orekit.propagation.semianalytical.dsst.utilities.FieldAuxiliaryElements;
/**
* This class is a container for the common parameters used in {@link DSSTJ2SquaredClosedForm}.
* <p>
* It performs parameters initialization at each integration step for the second-order J2-squared
* contribution to the central body gravitational perturbation.
* </p>
* @author Bryan Cazabonne
* @since 12.0
* @param <T> type of the field elements
*/
public class FieldDSSTJ2SquaredClosedFormContext<T extends CalculusFieldElement<T>> extends FieldForceModelContext<T> {
/** Equatorial radius of the central body to the power 4. */
private final double alpha4;
/** Semi major axis to the power 4. */
private final T a4;
/** sqrt(1 - e * e). */
private final T eta;
/** Cosine of the inclination. */
private final T c;
/** Sine of the inclination to the power 2. */
private final T s2;
/**
* Simple constructor.
*
* @param auxiliaryElements auxiliary elements related to the current orbit
* @param provider provider for spherical harmonics
*/
public FieldDSSTJ2SquaredClosedFormContext(final FieldAuxiliaryElements<T> auxiliaryElements,
final UnnormalizedSphericalHarmonicsProvider provider) {
super(auxiliaryElements);
// Sine and cosine of the inclination
final T inc = auxiliaryElements.getOrbit().getI();
final FieldSinCos<T> scI = FastMath.sinCos(inc);
// Other parameters
this.c = scI.cos();
this.s2 = scI.sin().multiply(scI.sin());
final double alpha2 = provider.getAe() * provider.getAe();
this.alpha4 = alpha2 * alpha2;
this.eta = FastMath.sqrt(auxiliaryElements.getEcc().multiply(auxiliaryElements.getEcc()).negate().add(1.0));
final T a2 = auxiliaryElements.getSma().multiply(auxiliaryElements.getSma());
this.a4 = a2.square();
}
/**
* Get the equatorial radius of the central body to the power 4.
* @return the equatorial radius of the central body to the power 4
*/
public double getAlpha4() {
return alpha4;
}
/**
* Get the semi major axis to the power 4.
* @return the semi major axis to the power 4
*/
public T getA4() {
return a4;
}
/**
* Get the eta value.
* @return sqrt(1 - e * e)
*/
public T getEta() {
return eta;
}
/**
* Get the cosine of the inclination.
* @return the cosine of the inclination
*/
public T getC() {
return c;
}
/**
* Get the sine of the inclination to the power 2.
* @return the sine of the inclination to the power 2
*/
public T getS2() {
return s2;
}
}