All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.orekit.propagation.FieldSpacecraftState Maven / Gradle / Ivy

Go to download

OREKIT (ORbits Extrapolation KIT) is a low level space dynamics library. It provides basic elements (orbits, dates, attitude, frames ...) and various algorithms to handle them (conversions, analytical and numerical propagation, pointing ...).

There is a newer version: 12.2
Show newest version
/* Copyright 2002-2020 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.propagation;


import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.stream.Stream;

import org.hipparchus.Field;
import org.hipparchus.RealFieldElement;
import org.hipparchus.analysis.interpolation.FieldHermiteInterpolator;
import org.hipparchus.exception.LocalizedCoreFormats;
import org.hipparchus.exception.MathIllegalArgumentException;
import org.hipparchus.exception.MathIllegalStateException;
import org.hipparchus.geometry.euclidean.threed.FieldVector3D;
import org.hipparchus.util.FastMath;
import org.hipparchus.util.MathArrays;
import org.orekit.attitudes.FieldAttitude;
import org.orekit.attitudes.LofOffset;
import org.orekit.errors.OrekitException;
import org.orekit.errors.OrekitIllegalArgumentException;
import org.orekit.errors.OrekitIllegalStateException;
import org.orekit.errors.OrekitMessages;
import org.orekit.frames.FieldTransform;
import org.orekit.frames.Frame;
import org.orekit.frames.LOFType;
import org.orekit.orbits.FieldOrbit;
import org.orekit.orbits.PositionAngle;
import org.orekit.time.FieldAbsoluteDate;
import org.orekit.time.FieldTimeInterpolable;
import org.orekit.time.FieldTimeShiftable;
import org.orekit.time.FieldTimeStamped;
import org.orekit.utils.FieldAbsolutePVCoordinates;
import org.orekit.utils.FieldPVCoordinates;
import org.orekit.utils.TimeStampedFieldPVCoordinates;


/** This class is the representation of a complete state holding orbit, attitude
 * and mass information at a given date.
 *
 * 

It contains an {@link FieldOrbit orbital state} at a current * {@link FieldAbsoluteDate} both handled by an {@link FieldOrbit}, plus the current * mass and attitude. FieldOrbitand state are guaranteed to be consistent in terms * of date and reference frame. The spacecraft state may also contain additional * states, which are simply named double arrays which can hold any user-defined * data. *

*

* The state can be slightly shifted to close dates. This shift is based on * a simple Keplerian model for orbit, a linear extrapolation for attitude * taking the spin rate into account and no mass change. It is not * intended as a replacement for proper orbit and attitude propagation but * should be sufficient for either small time shifts or coarse accuracy. *

*

* The instance {@code FieldSpacecraftState} is guaranteed to be immutable. *

* @see org.orekit.propagation.numerical.NumericalPropagator * @author Fabien Maussion * @author Véronique Pommier-Maurussane * @author Luc Maisonobe * @author Vincent Mouraux */ public class FieldSpacecraftState > implements FieldTimeStamped, FieldTimeShiftable, T>, FieldTimeInterpolable, T> { /** Default mass. */ private static final double DEFAULT_MASS = 1000.0; /** * tolerance on date comparison in {@link #checkConsistency(FieldOrbit, FieldAttitude)}. 100 ns * corresponds to sub-mm accuracy at LEO orbital velocities. */ private static final double DATE_INCONSISTENCY_THRESHOLD = 100e-9; /** Orbital state. */ private final FieldOrbit orbit; /** Trajectory state, when it is not an orbit. */ private final FieldAbsolutePVCoordinates absPva; /** FieldAttitude. */ private final FieldAttitude attitude; /** Current mass (kg). */ private final T mass; /** Additional states. */ private final Map additional; /** Build a spacecraft state from orbit only. *

FieldAttitude and mass are set to unspecified non-null arbitrary values.

* @param orbit the orbit */ public FieldSpacecraftState(final FieldOrbit orbit) { this(orbit, new LofOffset(orbit.getFrame(), LOFType.VVLH).getAttitude(orbit, orbit.getDate(), orbit.getFrame()), orbit.getA().getField().getZero().add(DEFAULT_MASS), null); } /** Build a spacecraft state from orbit and attitude provider. *

Mass is set to an unspecified non-null arbitrary value.

* @param orbit the orbit * @param attitude attitude * @exception IllegalArgumentException if orbit and attitude dates * or frames are not equal */ public FieldSpacecraftState(final FieldOrbit orbit, final FieldAttitude attitude) throws IllegalArgumentException { this(orbit, attitude, orbit.getA().getField().getZero().add(DEFAULT_MASS), null); } /** Create a new instance from orbit and mass. *

FieldAttitude law is set to an unspecified default attitude.

* @param orbit the orbit * @param mass the mass (kg) */ public FieldSpacecraftState(final FieldOrbit orbit, final T mass) { this(orbit, new LofOffset(orbit.getFrame(), LOFType.VVLH).getAttitude(orbit, orbit.getDate(), orbit.getFrame()), mass, null); } /** Build a spacecraft state from orbit, attitude provider and mass. * @param orbit the orbit * @param attitude attitude * @param mass the mass (kg) * @exception IllegalArgumentException if orbit and attitude dates * or frames are not equal */ public FieldSpacecraftState(final FieldOrbit orbit, final FieldAttitude attitude, final T mass) throws IllegalArgumentException { this(orbit, attitude, mass, null); } /** Build a spacecraft state from orbit only. *

FieldAttitude and mass are set to unspecified non-null arbitrary values.

* @param orbit the orbit * @param additional additional states */ public FieldSpacecraftState(final FieldOrbit orbit, final Map additional) { this(orbit, new LofOffset(orbit.getFrame(), LOFType.VVLH).getAttitude(orbit, orbit.getDate(), orbit.getFrame()), orbit.getA().getField().getZero().add(DEFAULT_MASS), additional); } /** Build a spacecraft state from orbit and attitude provider. *

Mass is set to an unspecified non-null arbitrary value.

* @param orbit the orbit * @param attitude attitude * @param additional additional states * @exception IllegalArgumentException if orbit and attitude dates * or frames are not equal */ public FieldSpacecraftState(final FieldOrbit orbit, final FieldAttitude attitude, final Map additional) throws IllegalArgumentException { this(orbit, attitude, orbit.getA().getField().getZero().add(DEFAULT_MASS), additional); } /** Create a new instance from orbit and mass. *

FieldAttitude law is set to an unspecified default attitude.

* @param orbit the orbit * @param mass the mass (kg) * @param additional additional states */ public FieldSpacecraftState(final FieldOrbit orbit, final T mass, final Map additional) { this(orbit, new LofOffset(orbit.getFrame(), LOFType.VVLH).getAttitude(orbit, orbit.getDate(), orbit.getFrame()), mass, additional); } /** Build a spacecraft state from orbit, attitude provider and mass. * @param orbit the orbit * @param attitude attitude * @param mass the mass (kg) * @param additional additional states (may be null if no additional states are available) * @exception IllegalArgumentException if orbit and attitude dates * or frames are not equal */ public FieldSpacecraftState(final FieldOrbit orbit, final FieldAttitude attitude, final T mass, final Map additional) throws IllegalArgumentException { checkConsistency(orbit, attitude); this.orbit = orbit; this.attitude = attitude; this.mass = mass; this.absPva = null; if (additional == null) { this.additional = Collections.emptyMap(); } else { this.additional = new HashMap(additional.size()); for (final Map.Entry entry : additional.entrySet()) { this.additional.put(entry.getKey(), entry.getValue().clone()); } } } /** Convert a {@link FieldSpacecraftState}. * @param field field to which the elements belong * @param state state to convert */ public FieldSpacecraftState(final Field field, final SpacecraftState state) { if (state.isOrbitDefined()) { final double[] stateD = new double[6]; final double[] stateDotD = state.getOrbit().hasDerivatives() ? new double[6] : null; state.getOrbit().getType().mapOrbitToArray(state.getOrbit(), PositionAngle.TRUE, stateD, stateDotD); final T[] stateF = MathArrays.buildArray(field, 6); for (int i = 0; i < stateD.length; ++i) { stateF[i] = field.getZero().add(stateD[i]); } final T[] stateDotF; if (stateDotD == null) { stateDotF = null; } else { stateDotF = MathArrays.buildArray(field, 6); for (int i = 0; i < stateDotD.length; ++i) { stateDotF[i] = field.getZero().add(stateDotD[i]); } } final FieldAbsoluteDate dateF = new FieldAbsoluteDate<>(field, state.getDate()); this.orbit = state.getOrbit().getType().mapArrayToOrbit(stateF, stateDotF, PositionAngle.TRUE, dateF, field.getZero().add(state.getMu()), state.getFrame()); this.attitude = new FieldAttitude<>(field, state.getAttitude()); this.mass = field.getZero().add(state.getMass()); this.absPva = null; final Map additionalD = state.getAdditionalStates(); if (additionalD.isEmpty()) { this.additional = Collections.emptyMap(); } else { this.additional = new HashMap(additionalD.size()); for (final Map.Entry entry : additionalD.entrySet()) { final T[] array = MathArrays.buildArray(field, entry.getValue().length); for (int k = 0; k < array.length; ++k) { array[k] = field.getZero().add(entry.getValue()[k]); } this.additional.put(entry.getKey(), array); } } } else { final T zero = field.getZero(); final T x = zero.add(state.getPVCoordinates().getPosition().getX()); final T y = zero.add(state.getPVCoordinates().getPosition().getY()); final T z = zero.add(state.getPVCoordinates().getPosition().getZ()); final T vx = zero.add(state.getPVCoordinates().getVelocity().getX()); final T vy = zero.add(state.getPVCoordinates().getVelocity().getY()); final T vz = zero.add(state.getPVCoordinates().getVelocity().getZ()); final T ax = zero.add(state.getPVCoordinates().getAcceleration().getX()); final T ay = zero.add(state.getPVCoordinates().getAcceleration().getY()); final T az = zero.add(state.getPVCoordinates().getAcceleration().getZ()); final FieldPVCoordinates pva_f = new FieldPVCoordinates<>(new FieldVector3D<>(x, y, z), new FieldVector3D<>(vx, vy, vz), new FieldVector3D<>(ax, ay, az)); final FieldAbsoluteDate dateF = new FieldAbsoluteDate<>(field, state.getDate()); this.orbit = null; this.attitude = new FieldAttitude<>(field, state.getAttitude()); this.mass = field.getZero().add(state.getMass()); this.absPva = new FieldAbsolutePVCoordinates<>(state.getFrame(), dateF, pva_f); final Map additionalD = state.getAdditionalStates(); if (additionalD.isEmpty()) { this.additional = Collections.emptyMap(); } else { this.additional = new HashMap(additionalD.size()); for (final Map.Entry entry : additionalD.entrySet()) { final T[] array = MathArrays.buildArray(field, entry.getValue().length); for (int k = 0; k < array.length; ++k) { array[k] = field.getZero().add(entry.getValue()[k]); } this.additional.put(entry.getKey(), array); } } } } /** Build a spacecraft state from orbit only. *

Attitude and mass are set to unspecified non-null arbitrary values.

* @param absPva position-velocity-acceleration */ public FieldSpacecraftState(final FieldAbsolutePVCoordinates absPva) { this(absPva, new LofOffset(absPva.getFrame(), LOFType.VVLH).getAttitude(absPva, absPva.getDate(), absPva.getFrame()), absPva.getDate().getField().getZero().add(DEFAULT_MASS), null); } /** Build a spacecraft state from orbit and attitude provider. *

Mass is set to an unspecified non-null arbitrary value.

* @param absPva position-velocity-acceleration * @param attitude attitude * @exception IllegalArgumentException if orbit and attitude dates * or frames are not equal */ public FieldSpacecraftState(final FieldAbsolutePVCoordinates absPva, final FieldAttitude attitude) throws IllegalArgumentException { this(absPva, attitude, absPva.getDate().getField().getZero().add(DEFAULT_MASS), null); } /** Create a new instance from orbit and mass. *

Attitude law is set to an unspecified default attitude.

* @param absPva position-velocity-acceleration * @param mass the mass (kg) */ public FieldSpacecraftState(final FieldAbsolutePVCoordinates absPva, final T mass) { this(absPva, new LofOffset(absPva.getFrame(), LOFType.VVLH).getAttitude(absPva, absPva.getDate(), absPva.getFrame()), mass, null); } /** Build a spacecraft state from orbit, attitude provider and mass. * @param absPva position-velocity-acceleration * @param attitude attitude * @param mass the mass (kg) * @exception IllegalArgumentException if orbit and attitude dates * or frames are not equal */ public FieldSpacecraftState(final FieldAbsolutePVCoordinates absPva, final FieldAttitude attitude, final T mass) throws IllegalArgumentException { this(absPva, attitude, mass, null); } /** Build a spacecraft state from orbit only. *

Attitude and mass are set to unspecified non-null arbitrary values.

* @param absPva position-velocity-acceleration * @param additional additional states */ public FieldSpacecraftState(final FieldAbsolutePVCoordinates absPva, final Map additional) { this(absPva, new LofOffset(absPva.getFrame(), LOFType.VVLH).getAttitude(absPva, absPva.getDate(), absPva.getFrame()), absPva.getDate().getField().getZero().add(DEFAULT_MASS), additional); } /** Build a spacecraft state from orbit and attitude provider. *

Mass is set to an unspecified non-null arbitrary value.

* @param absPva position-velocity-acceleration * @param attitude attitude * @param additional additional states * @exception IllegalArgumentException if orbit and attitude dates * or frames are not equal */ public FieldSpacecraftState(final FieldAbsolutePVCoordinates absPva, final FieldAttitude attitude, final Map additional) throws IllegalArgumentException { this(absPva, attitude, absPva.getDate().getField().getZero().add(DEFAULT_MASS), additional); } /** Create a new instance from orbit and mass. *

Attitude law is set to an unspecified default attitude.

* @param absPva position-velocity-acceleration * @param mass the mass (kg) * @param additional additional states */ public FieldSpacecraftState(final FieldAbsolutePVCoordinates absPva, final T mass, final Map additional) { this(absPva, new LofOffset(absPva.getFrame(), LOFType.VVLH).getAttitude(absPva, absPva.getDate(), absPva.getFrame()), mass, additional); } /** Build a spacecraft state from orbit, attitude provider and mass. * @param absPva position-velocity-acceleration * @param attitude attitude * @param mass the mass (kg) * @param additional additional states (may be null if no additional states are available) * @exception IllegalArgumentException if orbit and attitude dates * or frames are not equal */ public FieldSpacecraftState(final FieldAbsolutePVCoordinates absPva, final FieldAttitude attitude, final T mass, final Map additional) throws IllegalArgumentException { checkConsistency(absPva, attitude); this.orbit = null; this.absPva = absPva; this.attitude = attitude; this.mass = mass; if (additional == null) { this.additional = Collections.emptyMap(); } else { this.additional = new HashMap(additional.size()); for (final Map.Entry entry : additional.entrySet()) { this.additional.put(entry.getKey(), entry.getValue().clone()); } } } /** Add an additional state. *

* {@link FieldSpacecraftState SpacecraftState} instances are immutable, * so this method does not change the instance, but rather * creates a new instance, which has the same orbit, attitude, mass * and additional states as the original instance, except it also * has the specified state. If the original instance already had an * additional state with the same name, it will be overridden. If it * did not have any additional state with that name, the new instance * will have one more additional state than the original instance. *

* @param name name of the additional state * @param value value of the additional state * @return a new instance, with the additional state added * @see #hasAdditionalState(String) * @see #getAdditionalState(String) * @see #getAdditionalStates() */ @SafeVarargs public final FieldSpacecraftState addAdditionalState(final String name, final T... value) { final Map newMap = new HashMap(additional.size() + 1); newMap.putAll(additional); newMap.put(name, value.clone()); if (absPva == null) { return new FieldSpacecraftState<>(orbit, attitude, mass, newMap); } else { return new FieldSpacecraftState<>(absPva, attitude, mass, newMap); } } /** Check orbit and attitude dates are equal. * @param orbitN the orbit * @param attitudeN attitude * @exception IllegalArgumentException if orbit and attitude dates * are not equal */ private void checkConsistency(final FieldOrbit orbitN, final FieldAttitude attitudeN) throws IllegalArgumentException { if (orbitN.getDate().durationFrom(attitudeN.getDate()).abs().getReal() > DATE_INCONSISTENCY_THRESHOLD) { throw new OrekitIllegalArgumentException(OrekitMessages.ORBIT_AND_ATTITUDE_DATES_MISMATCH, orbitN.getDate(), attitudeN.getDate()); } if (orbitN.getFrame() != attitudeN.getReferenceFrame()) { throw new OrekitIllegalArgumentException(OrekitMessages.FRAMES_MISMATCH, orbitN.getFrame().getName(), attitudeN.getReferenceFrame().getName()); } } /** Check if the state contains an orbit part. *

* A state contains either an {@link FieldAbsolutePVCoordinates absolute * position-velocity-acceleration} or an {@link FieldOrbit orbit}. *

* @return true if state contains an orbit (in which case {@link #getOrbit()} * will not throw an exception), or false if the state contains an * absolut position-velocity-acceleration (in which case {@link #getAbsPVA()} * will not throw an exception) */ public boolean isOrbitDefined() { return orbit != null; } /** * Check FieldAbsolutePVCoordinates and attitude dates are equal. * @param absPva position-velocity-acceleration * @param attitude attitude * @param the type of the field elements * @exception IllegalArgumentException if orbit and attitude dates are not equal */ private static > void checkConsistency(final FieldAbsolutePVCoordinates absPva, final FieldAttitude attitude) throws IllegalArgumentException { if (FastMath.abs(absPva.getDate().durationFrom(attitude.getDate())).getReal() > DATE_INCONSISTENCY_THRESHOLD) { throw new OrekitIllegalArgumentException(OrekitMessages.ORBIT_AND_ATTITUDE_DATES_MISMATCH, absPva.getDate(), attitude.getDate()); } if (absPva.getFrame() != attitude.getReferenceFrame()) { throw new OrekitIllegalArgumentException(OrekitMessages.FRAMES_MISMATCH, absPva.getFrame().getName(), attitude.getReferenceFrame().getName()); } } /** Get a time-shifted state. *

* The state can be slightly shifted to close dates. This shift is based on * a simple Keplerian model for orbit, a linear extrapolation for attitude * taking the spin rate into account and neither mass nor additional states * changes. It is not intended as a replacement for proper orbit * and attitude propagation but should be sufficient for small time shifts * or coarse accuracy. *

*

* As a rough order of magnitude, the following table shows the extrapolation * errors obtained between this simple shift method and an {@link * org.orekit.propagation.numerical.FieldNumericalPropagator numerical * propagator} for a low Earth Sun Synchronous Orbit, with a 20x20 gravity field, * Sun and Moon third bodies attractions, drag and solar radiation pressure. * Beware that these results will be different for other orbits. *

* * * * * * * * * *
Extrapolation Error
interpolation time (s)position error without derivatives (m)position error with derivatives (m)
60 18 1.1
120 72 9.1
300 447 140
60016011067
90031413307
* @param dt time shift in seconds * @return a new state, shifted with respect to the instance (which is immutable) * except for the mass which stay unchanged */ public FieldSpacecraftState shiftedBy(final double dt) { if (absPva == null) { return new FieldSpacecraftState<>(orbit.shiftedBy(dt), attitude.shiftedBy(dt), mass, additional); } else { return new FieldSpacecraftState<>(absPva.shiftedBy(dt), attitude.shiftedBy(dt), mass, additional); } } /** Get a time-shifted state. *

* The state can be slightly shifted to close dates. This shift is based on * a simple Keplerian model for orbit, a linear extrapolation for attitude * taking the spin rate into account and neither mass nor additional states * changes. It is not intended as a replacement for proper orbit * and attitude propagation but should be sufficient for small time shifts * or coarse accuracy. *

*

* As a rough order of magnitude, the following table shows the extrapolation * errors obtained between this simple shift method and an {@link * org.orekit.propagation.numerical.FieldNumericalPropagator numerical * propagator} for a low Earth Sun Synchronous Orbit, with a 20x20 gravity field, * Sun and Moon third bodies attractions, drag and solar radiation pressure. * Beware that these results will be different for other orbits. *

* * * * * * * * * *
Extrapolation Error
interpolation time (s)position error without derivatives (m)position error with derivatives (m)
60 18 1.1
120 72 9.1
300 447 140
60016011067
90031413307
* @param dt time shift in seconds * @return a new state, shifted with respect to the instance (which is immutable) * except for the mass which stay unchanged */ public FieldSpacecraftState shiftedBy(final T dt) { if (absPva == null) { return new FieldSpacecraftState<>(orbit.shiftedBy(dt), attitude.shiftedBy(dt), mass, additional); } else { return new FieldSpacecraftState<>(absPva.shiftedBy(dt), attitude.shiftedBy(dt), mass, additional); } } /** {@inheritDoc} *

* The additional states that are interpolated are the ones already present * in the instance. The sample instances must therefore have at least the same * additional states has the instance. They may have more additional states, * but the extra ones will be ignored. *

*

* The instance and all the sample instances must be based on similar * trajectory data, i.e. they must either all be based on orbits or all be based * on absolute position-velocity-acceleration. Any inconsistency will trigger * an {@link OrekitIllegalStateException}. *

*

* As this implementation of interpolation is polynomial, it should be used only * with small samples (about 10-20 points) in order to avoid Runge's phenomenon * and numerical problems (including NaN appearing). *

* @exception OrekitIllegalStateException if some instances are not based on * similar trajectory data */ public FieldSpacecraftState interpolate(final FieldAbsoluteDate date, final Stream> sample) { // prepare interpolators final List> orbits; final List> absPvas; if (isOrbitDefined()) { orbits = new ArrayList>(); absPvas = null; } else { orbits = null; absPvas = new ArrayList>(); } final List> attitudes = new ArrayList<>(); final FieldHermiteInterpolator massInterpolator = new FieldHermiteInterpolator<>(); final Map> additionalInterpolators = new HashMap>(additional.size()); for (final String name : additional.keySet()) { additionalInterpolators.put(name, new FieldHermiteInterpolator<>()); } // extract sample data sample.forEach(state -> { final T deltaT = state.getDate().durationFrom(date); if (isOrbitDefined()) { orbits.add(state.getOrbit()); } else { absPvas.add(state.getAbsPVA()); } attitudes.add(state.getAttitude()); final T[] mm = MathArrays.buildArray(orbit.getA().getField(), 1); mm[0] = state.getMass(); massInterpolator.addSamplePoint(deltaT, mm); for (final Map.Entry> entry : additionalInterpolators.entrySet()) { entry.getValue().addSamplePoint(deltaT, state.getAdditionalState(entry.getKey())); } }); // perform interpolations final FieldOrbit interpolatedOrbit; final FieldAbsolutePVCoordinates interpolatedAbsPva; if (isOrbitDefined()) { interpolatedOrbit = orbit.interpolate(date, orbits); interpolatedAbsPva = null; } else { interpolatedOrbit = null; interpolatedAbsPva = absPva.interpolate(date, absPvas); } final FieldAttitude interpolatedAttitude = attitude.interpolate(date, attitudes); final T interpolatedMass = massInterpolator.value(orbit.getA().getField().getZero())[0]; final Map interpolatedAdditional; if (additional.isEmpty()) { interpolatedAdditional = null; } else { interpolatedAdditional = new HashMap(additional.size()); for (final Map.Entry> entry : additionalInterpolators.entrySet()) { interpolatedAdditional.put(entry.getKey(), entry.getValue().value(orbit.getA().getField().getZero())); } } // create the complete interpolated state if (isOrbitDefined()) { return new FieldSpacecraftState<>(interpolatedOrbit, interpolatedAttitude, interpolatedMass, interpolatedAdditional); } else { return new FieldSpacecraftState<>(interpolatedAbsPva, interpolatedAttitude, interpolatedMass, interpolatedAdditional); } } /** Get the absolute position-velocity-acceleration. *

* A state contains either an {@link FieldAbsolutePVCoordinates absolute * position-velocity-acceleration} or an {@link FieldOrbit orbit}. Which * one is present can be checked using {@link #isOrbitDefined()}. *

* @return absolute position-velocity-acceleration * @exception OrekitIllegalStateException if position-velocity-acceleration is null, * which mean the state rather contains an {@link FieldOrbit} * @see #isOrbitDefined() * @see #getOrbit() */ public FieldAbsolutePVCoordinates getAbsPVA() throws OrekitIllegalStateException { if (absPva == null) { throw new OrekitIllegalStateException(OrekitMessages.UNDEFINED_ABSOLUTE_PVCOORDINATES); } return absPva; } /** Get the current orbit. *

* A state contains either an {@link FieldAbsolutePVCoordinates absolute * position-velocity-acceleration} or an {@link FieldOrbit orbit}. Which * one is present can be checked using {@link #isOrbitDefined()}. *

* @return the orbit * @exception OrekitIllegalStateException if orbit is null, * which means the state rather contains an {@link FieldAbsolutePVCoordinates absolute * position-velocity-acceleration} * @see #isOrbitDefined() * @see #getAbsPVA() */ public FieldOrbit getOrbit() throws OrekitIllegalStateException { if (orbit == null) { throw new OrekitIllegalStateException(OrekitMessages.UNDEFINED_ORBIT); } return orbit; } /** Get the date. * @return date */ public FieldAbsoluteDate getDate() { return (absPva == null) ? orbit.getDate() : absPva.getDate(); } /** Get the defining frame. * @return the frame in which state is defined */ public Frame getFrame() { return (absPva == null) ? orbit.getFrame() : absPva.getFrame(); } /** Check if an additional state is available. * @param name name of the additional state * @return true if the additional state is available * @see #addAdditionalState(String, RealFieldElement...) * @see #getAdditionalState(String) * @see #getAdditionalStates() */ public boolean hasAdditionalState(final String name) { return additional.containsKey(name); } /** Check if two instances have the same set of additional states available. *

* Only the names and dimensions of the additional states are compared, * not their values. *

* @param state state to compare to instance * @exception MathIllegalArgumentException if an additional state does not have * the same dimension in both states */ public void ensureCompatibleAdditionalStates(final FieldSpacecraftState state) throws MathIllegalArgumentException { // check instance additional states is a subset of the other one for (final Map.Entry entry : additional.entrySet()) { final T[] other = state.additional.get(entry.getKey()); if (other == null) { throw new OrekitException(OrekitMessages.UNKNOWN_ADDITIONAL_STATE, entry.getKey()); } if (other.length != entry.getValue().length) { throw new MathIllegalStateException(LocalizedCoreFormats.DIMENSIONS_MISMATCH, other.length, entry.getValue().length); } } if (state.additional.size() > additional.size()) { // the other state has more additional states for (final String name : state.additional.keySet()) { if (!additional.containsKey(name)) { throw new OrekitException(OrekitMessages.UNKNOWN_ADDITIONAL_STATE, name); } } } } /** Get an additional state. * @param name name of the additional state * @return value of the additional state * @see #addAdditionalState(String, RealFieldElement...) * @see #hasAdditionalState(String) * @see #getAdditionalStates() */ public T[] getAdditionalState(final String name) { if (!additional.containsKey(name)) { throw new OrekitException(OrekitMessages.UNKNOWN_ADDITIONAL_STATE, name); } return additional.get(name).clone(); } /** Get an unmodifiable map of additional states. * @return unmodifiable map of additional states * @see #addAdditionalState(String, RealFieldElement...) * @see #hasAdditionalState(String) * @see #getAdditionalState(String) */ public Map getAdditionalStates() { return Collections.unmodifiableMap(additional); } /** Compute the transform from state defining frame to spacecraft frame. *

The spacecraft frame origin is at the point defined by the orbit, * and its orientation is defined by the attitude.

* @return transform from specified frame to current spacecraft frame */ public FieldTransform toTransform() { final TimeStampedFieldPVCoordinates pv = getPVCoordinates(); return new FieldTransform<>(pv.getDate(), new FieldTransform<>(pv.getDate(), pv.negate()), new FieldTransform<>(pv.getDate(), attitude.getOrientation())); } /** Get the central attraction coefficient. * @return mu central attraction coefficient (m^3/s^2), or {code Double.NaN} if the * state is contains an absolute position-velocity-acceleration rather than an orbit */ public T getMu() { return (absPva == null) ? orbit.getMu() : absPva.getDate().getField().getZero().add(Double.NaN); } /** Get the Keplerian period. *

The Keplerian period is computed directly from semi major axis * and central acceleration constant.

* @return keplerian period in seconds, or {code Double.NaN} if the * state is contains an absolute position-velocity-acceleration rather * than an orbit */ public T getKeplerianPeriod() { return (absPva == null) ? orbit.getKeplerianPeriod() : absPva.getDate().getField().getZero().add(Double.NaN); } /** Get the Keplerian mean motion. *

The Keplerian mean motion is computed directly from semi major axis * and central acceleration constant.

* @return keplerian mean motion in radians per second, or {code Double.NaN} if the * state is contains an absolute position-velocity-acceleration rather * than an orbit */ public T getKeplerianMeanMotion() { return (absPva == null) ? orbit.getKeplerianMeanMotion() : absPva.getDate().getField().getZero().add(Double.NaN); } /** Get the semi-major axis. * @return semi-major axis (m), or {code Double.NaN} if the * state is contains an absolute position-velocity-acceleration rather * than an orbit */ public T getA() { return (absPva == null) ? orbit.getA() : absPva.getDate().getField().getZero().add(Double.NaN); } /** Get the first component of the eccentricity vector (as per equinoctial parameters). * @return e cos(ω + Ω), first component of eccentricity vector, or {code Double.NaN} if the * state is contains an absolute position-velocity-acceleration rather * than an orbit * @see #getE() */ public T getEquinoctialEx() { return (absPva == null) ? orbit.getEquinoctialEx() : absPva.getDate().getField().getZero().add(Double.NaN); } /** Get the second component of the eccentricity vector (as per equinoctial parameters). * @return e sin(ω + Ω), second component of the eccentricity vector, or {code Double.NaN} if the * state is contains an absolute position-velocity-acceleration rather * than an orbit * @see #getE() */ public T getEquinoctialEy() { return (absPva == null) ? orbit.getEquinoctialEy() : absPva.getDate().getField().getZero().add(Double.NaN); } /** Get the first component of the inclination vector (as per equinoctial parameters). * @return tan(i/2) cos(Ω), first component of the inclination vector, or {code Double.NaN} if the * state is contains an absolute position-velocity-acceleration rather * than an orbit * @see #getI() */ public T getHx() { return (absPva == null) ? orbit.getHx() : absPva.getDate().getField().getZero().add(Double.NaN); } /** Get the second component of the inclination vector (as per equinoctial parameters). * @return tan(i/2) sin(Ω), second component of the inclination vector, or {code Double.NaN} if the * state is contains an absolute position-velocity-acceleration rather * than an orbit * @see #getI() */ public T getHy() { return (absPva == null) ? orbit.getHy() : absPva.getDate().getField().getZero().add(Double.NaN); } /** Get the true latitude argument (as per equinoctial parameters). * @return v + ω + Ω true longitude argument (rad), or {code Double.NaN} if the * state is contains an absolute position-velocity-acceleration rather * than an orbit * @see #getLE() * @see #getLM() */ public T getLv() { return (absPva == null) ? orbit.getLv() : absPva.getDate().getField().getZero().add(Double.NaN); } /** Get the eccentric latitude argument (as per equinoctial parameters). * @return E + ω + Ω eccentric longitude argument (rad), or {code Double.NaN} if the * state is contains an absolute position-velocity-acceleration rather * than an orbit * @see #getLv() * @see #getLM() */ public T getLE() { return (absPva == null) ? orbit.getLE() : absPva.getDate().getField().getZero().add(Double.NaN); } /** Get the mean longitude argument (as per equinoctial parameters). * @return M + ω + Ω mean latitude argument (rad), or {code Double.NaN} if the * state is contains an absolute position-velocity-acceleration rather * than an orbit * @see #getLv() * @see #getLE() */ public T getLM() { return (absPva == null) ? orbit.getLM() : absPva.getDate().getField().getZero().add(Double.NaN); } // Additional orbital elements /** Get the eccentricity. * @return eccentricity, or {code Double.NaN} if the * state is contains an absolute position-velocity-acceleration rather * than an orbit * @see #getEquinoctialEx() * @see #getEquinoctialEy() */ public T getE() { return (absPva == null) ? orbit.getE() : absPva.getDate().getField().getZero().add(Double.NaN); } /** Get the inclination. * @return inclination (rad) * @see #getHx() * @see #getHy() */ public T getI() { return (absPva == null) ? orbit.getI() : absPva.getDate().getField().getZero().add(Double.NaN); } /** Get the {@link TimeStampedFieldPVCoordinates} in orbit definition frame. *

* Compute the position and velocity of the satellite. This method caches its * results, and recompute them only when the method is called with a new value * for mu. The result is provided as a reference to the internally cached * {@link TimeStampedFieldPVCoordinates}, so the caller is responsible to copy it in a separate * {@link TimeStampedFieldPVCoordinates} if it needs to keep the value for a while. *

* @return pvCoordinates in orbit definition frame */ public TimeStampedFieldPVCoordinates getPVCoordinates() { return (absPva == null) ? orbit.getPVCoordinates() : absPva.getPVCoordinates(); } /** Get the {@link TimeStampedFieldPVCoordinates} in given output frame. *

* Compute the position and velocity of the satellite. This method caches its * results, and recompute them only when the method is called with a new value * for mu. The result is provided as a reference to the internally cached * {@link TimeStampedFieldPVCoordinates}, so the caller is responsible to copy it in a separate * {@link TimeStampedFieldPVCoordinates} if it needs to keep the value for a while. *

* @param outputFrame frame in which coordinates should be defined * @return pvCoordinates in orbit definition frame */ public TimeStampedFieldPVCoordinatesgetPVCoordinates(final Frame outputFrame) { return (absPva == null) ? orbit.getPVCoordinates(outputFrame) : absPva.getPVCoordinates(outputFrame); } /** Get the attitude. * @return the attitude. */ public FieldAttitude getAttitude() { return attitude; } /** Gets the current mass. * @return the mass (kg) */ public T getMass() { return mass; } /**To convert a FieldSpacecraftState instance into a SpacecraftState instance. * * @return SpacecraftState instance with the same properties */ public SpacecraftState toSpacecraftState() { final Map map; if (additional.isEmpty()) { map = Collections.emptyMap(); } else { map = new HashMap<>(additional.size()); for (final Map.Entry entry : additional.entrySet()) { final double[] array = new double[entry.getValue().length]; for (int k = 0; k < array.length; ++k) { array[k] = entry.getValue()[k].getReal(); } map.put(entry.getKey(), array); } } if (isOrbitDefined()) { return new SpacecraftState(orbit.toOrbit(), attitude.toAttitude(), mass.getReal(), map); } else { return new SpacecraftState(absPva.toAbsolutePVCoordinates(), attitude.toAttitude(), mass.getReal(), map); } } @Override public String toString() { return "FieldSpacecraftState{" + "orbit=" + orbit + ", attitude=" + attitude + ", mass=" + mass + ", additional=" + additional + '}'; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy