Package org.orekit.propagation
Interface FieldAdditionalStateProvider<T extends org.hipparchus.RealFieldElement<T>>
-
public interface FieldAdditionalStateProvider<T extends org.hipparchus.RealFieldElement<T>>
This interface represents providers for additional state data beyondSpacecraftState
.This interface is the analytical (read already integrated) counterpart of the
AdditionalEquations
interface. It allows to append various additional state parameters to anyabstract propagator
.- Author:
- Luc Maisonobe
- See Also:
AbstractPropagator
,AdditionalEquations
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T[]
getAdditionalState(FieldSpacecraftState<T> state)
Get the additional state.String
getName()
Get the name of the additional state.
-
-
-
Method Detail
-
getName
String getName()
Get the name of the additional state.- Returns:
- name of the additional state
-
getAdditionalState
T[] getAdditionalState(FieldSpacecraftState<T> state)
Get the additional state.- Parameters:
state
- spacecraft state to which additional state should correspond- Returns:
- additional state corresponding to spacecraft state
-
-