Package org.orekit.propagation
Interface FieldBoundedPropagator<T extends CalculusFieldElement<T>>
-
- Type Parameters:
T
- the type of the field elements
- All Superinterfaces:
FieldPropagator<T>
,FieldPVCoordinatesProvider<T>
- All Known Implementing Classes:
FieldIntegratedEphemeris
public interface FieldBoundedPropagator<T extends CalculusFieldElement<T>> extends FieldPropagator<T>
This interface is intended for ephemerides valid only during a time range.This interface provides a mean to retrieve orbital parameters at any time within a given range. It should be implemented by orbit readers based on external data files and by continuous models built after numerical integration has been completed and dense output data as been gathered.
- Author:
- Luc Maisonobe
-
-
Field Summary
-
Fields inherited from interface org.orekit.propagation.FieldPropagator
DEFAULT_MASS
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FieldAbsoluteDate<T>
getMaxDate()
Get the last date of the range.FieldAbsoluteDate<T>
getMinDate()
Get the first date of the range.-
Methods inherited from interface org.orekit.propagation.FieldPropagator
addAdditionalStateProvider, addEventDetector, clearEventsDetectors, clearStepHandlers, getAdditionalStateProviders, getAttitudeProvider, getEphemerisGenerator, getEventsDetectors, getFrame, getInitialState, getManagedAdditionalStates, getMultiplexer, getPosition, getPVCoordinates, isAdditionalStateManaged, propagate, propagate, resetInitialState, setAttitudeProvider, setStepHandler, setStepHandler
-
-
-
-
Method Detail
-
getMinDate
FieldAbsoluteDate<T> getMinDate()
Get the first date of the range.- Returns:
- the first date of the range
-
getMaxDate
FieldAbsoluteDate<T> getMaxDate()
Get the last date of the range.- Returns:
- the last date of the range
-
-