Package org.orekit.propagation
Interface AdditionalStateProvider
-
- All Known Implementing Classes:
ClockCorrectionsProvider
public interface AdditionalStateProvider
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 double[]
getAdditionalState(SpacecraftState 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
double[] getAdditionalState(SpacecraftState state)
Get the additional state.- Parameters:
state
- spacecraft state to which additional state should correspond- Returns:
- additional state corresponding to spacecraft state
-
-