public class FieldIntegratedEphemeris<T extends RealFieldElement<T>> extends FieldAbstractAnalyticalPropagator<T> implements FieldBoundedPropagator<T>
Instances of this class are built and then must be fed with the results
provided by Propagator
objects
configured in ephemeris generation mode
. Once propagation is o, random access to any
intermediate state of the orbit throughout the propagation range is possible.
A typical use case is for numerically integrated orbits, which can be used by algorithms that need to wander around according to their own algorithm without cumbersome tight links with the integrator.
Another use case is persistence, as this class is one of the few propagators to be serializable.
As this class implements the Propagator
interface, it can itself be used in batch mode to build another instance of the
same type. This is however not recommended since it would be a waste of resources.
Note that this class stores all intermediate states along with interpolation models, so it may be memory intensive.
NumericalPropagator
DEFAULT_LAW, DEFAULT_MASS, EPHEMERIS_GENERATION_MODE, MASTER_MODE, SLAVE_MODE
Constructor and Description |
---|
FieldIntegratedEphemeris(FieldAbsoluteDate<T> startDate,
FieldAbsoluteDate<T> minDate,
FieldAbsoluteDate<T> maxDate,
FieldStateMapper<T> mapper,
boolean meanFieldOrbit,
FieldDenseOutputModel<T> model,
Map<String,T[]> unmanaged,
List<FieldAdditionalStateProvider<T>> providers,
String[] equations)
Creates a new instance of IntegratedEphemeris.
|
Modifier and Type | Method and Description |
---|---|
protected FieldSpacecraftState<T> |
basicPropagate(FieldAbsoluteDate<T> date)
Propagate an orbit without any fancy features.
|
Frame |
getFrame()
Get the frame in which the orbit is propagated.
|
FieldSpacecraftState<T> |
getInitialState()
Get the propagator initial state.
|
protected T |
getMass(FieldAbsoluteDate<T> date)
Get the mass.
|
FieldAbsoluteDate<T> |
getMaxDate()
Get the last date of the range.
|
FieldAbsoluteDate<T> |
getMinDate()
Get the first date of the range.
|
TimeStampedFieldPVCoordinates<T> |
getPVCoordinates(FieldAbsoluteDate<T> date,
Frame frame)
Get the
FieldPVCoordinates of the body in the selected frame. |
protected FieldOrbit<T> |
propagateOrbit(FieldAbsoluteDate<T> date)
Extrapolate an orbit up to a specific target date.
|
void |
resetInitialState(FieldSpacecraftState<T> state)
Reset the propagator initial state.
|
protected void |
resetIntermediateState(FieldSpacecraftState<T> state,
boolean forward)
Reset an intermediate state.
|
acceptStep, addEventDetector, clearEventsDetectors, getEventsDetectors, getGeneratedEphemeris, getPvProvider, propagate
addAdditionalStateProvider, getAdditionalStateProviders, getAttitudeProvider, getField, getFixedStepSize, getManagedAdditionalStates, getMode, getStartDate, getStepHandler, isAdditionalStateManaged, propagate, setAttitudeProvider, setEphemerisMode, setMasterMode, setMasterMode, setSlaveMode, setStartDate, updateAdditionalStates
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
addAdditionalStateProvider, addEventDetector, clearEventsDetectors, getAdditionalStateProviders, getAttitudeProvider, getEventsDetectors, getGeneratedEphemeris, getManagedAdditionalStates, getMode, isAdditionalStateManaged, propagate, propagate, setAttitudeProvider, setEphemerisMode, setMasterMode, setMasterMode, setSlaveMode
public FieldIntegratedEphemeris(FieldAbsoluteDate<T> startDate, FieldAbsoluteDate<T> minDate, FieldAbsoluteDate<T> maxDate, FieldStateMapper<T> mapper, boolean meanFieldOrbit, FieldDenseOutputModel<T> model, Map<String,T[]> unmanaged, List<FieldAdditionalStateProvider<T>> providers, String[] equations) throws OrekitException
startDate
- Start date of the integration (can be minDate or maxDate)minDate
- first date of the rangemaxDate
- last date of the rangemapper
- mapper between raw double components and spacecraft statemeanFieldOrbit
- output only the mean orbitmodel
- underlying raw mathematical modelunmanaged
- unmanaged additional states that must be simply copiedproviders
- providers for pre-integrated statesequations
- names of additional equationsOrekitException
- if several providers have the same nameprotected FieldSpacecraftState<T> basicPropagate(FieldAbsoluteDate<T> date) throws OrekitException
This method is similar in spirit to the FieldAbstractAnalyticalPropagator.propagate(org.orekit.time.FieldAbsoluteDate<T>, org.orekit.time.FieldAbsoluteDate<T>)
method,
except that it does not call any handler during
propagation, nor any discrete events, not additional states. It always
stop exactly at the specified date.
basicPropagate
in class FieldAbstractAnalyticalPropagator<T extends RealFieldElement<T>>
date
- target date for propagationOrekitException
- if propagation cannot reach specified dateprotected FieldOrbit<T> propagateOrbit(FieldAbsoluteDate<T> date) throws OrekitException
propagateOrbit
in class FieldAbstractAnalyticalPropagator<T extends RealFieldElement<T>>
date
- target date for the orbitOrekitException
- if some parameters are out of boundsprotected T getMass(FieldAbsoluteDate<T> date) throws OrekitException
getMass
in class FieldAbstractAnalyticalPropagator<T extends RealFieldElement<T>>
date
- target date for the orbitOrekitException
- if some parameters are out of boundspublic TimeStampedFieldPVCoordinates<T> getPVCoordinates(FieldAbsoluteDate<T> date, Frame frame) throws OrekitException
FieldPVCoordinates
of the body in the selected frame.getPVCoordinates
in interface FieldPVCoordinatesProvider<T extends RealFieldElement<T>>
getPVCoordinates
in class FieldAbstractPropagator<T extends RealFieldElement<T>>
date
- current dateframe
- the frame where to define the positionOrekitException
- if position cannot be computed in given framepublic FieldAbsoluteDate<T> getMinDate()
getMinDate
in interface FieldBoundedPropagator<T extends RealFieldElement<T>>
public FieldAbsoluteDate<T> getMaxDate()
getMaxDate
in interface FieldBoundedPropagator<T extends RealFieldElement<T>>
public Frame getFrame()
FieldAbstractPropagator
The propagation frame is the definition frame of the initial state, so this method should be called after this state has been set, otherwise it may return null.
getFrame
in interface FieldPropagator<T extends RealFieldElement<T>>
getFrame
in class FieldAbstractPropagator<T extends RealFieldElement<T>>
FieldPropagator.resetInitialState(FieldSpacecraftState)
public void resetInitialState(FieldSpacecraftState<T> state) throws OrekitException
resetInitialState
in interface FieldPropagator<T extends RealFieldElement<T>>
resetInitialState
in class FieldAbstractPropagator<T extends RealFieldElement<T>>
state
- new initial state to considerOrekitException
- if initial state cannot be resetprotected void resetIntermediateState(FieldSpacecraftState<T> state, boolean forward) throws OrekitException
resetIntermediateState
in class FieldAbstractAnalyticalPropagator<T extends RealFieldElement<T>>
state
- new intermediate state to considerforward
- if true, the intermediate state is valid for
propagations after itselfOrekitException
- if initial state cannot be resetpublic FieldSpacecraftState<T> getInitialState() throws OrekitException
getInitialState
in interface FieldPropagator<T extends RealFieldElement<T>>
getInitialState
in class FieldAbstractPropagator<T extends RealFieldElement<T>>
OrekitException
- if state cannot be retrievedCopyright © 2002-2017 CS Systèmes d'information. All rights reserved.