Class AbstractAnalyticalGradientConverter
- java.lang.Object
-
- org.orekit.propagation.integration.AbstractGradientConverter
-
- org.orekit.propagation.analytical.AbstractAnalyticalGradientConverter
-
- All Implemented Interfaces:
ParameterDriversProvider
public abstract class AbstractAnalyticalGradientConverter extends AbstractGradientConverter implements ParameterDriversProvider
Converter for analytical orbit propagator.- Since:
- 11.1
- Author:
- Bryan Cazabonne
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
AbstractAnalyticalGradientConverter(AbstractAnalyticalPropagator propagator, double mu, int freeStateParameters)
Constructor.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract FieldAbstractAnalyticalPropagator<Gradient>
getPropagator(FieldSpacecraftState<Gradient> state, Gradient[] parameters)
Get the converted analytical orbit propagator.FieldSpacecraftState<Gradient>
getState()
Get the state with the number of parameters consistent with the propagation model.-
Methods inherited from class org.orekit.propagation.integration.AbstractGradientConverter
buildBasicGradientSpacecraftState, extend, extend, extend, extend, getFreeStateParameters, getParameters, getParametersAtStateDate, getState, initStates
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.orekit.utils.ParameterDriversProvider
getNbParametersDriversValue, getParameterDriver, getParameters, getParameters, getParameters, getParameters, getParametersAllValues, getParametersAllValues, getParametersDrivers, isSupported
-
-
-
-
Constructor Detail
-
AbstractAnalyticalGradientConverter
protected AbstractAnalyticalGradientConverter(AbstractAnalyticalPropagator propagator, double mu, int freeStateParameters)
Constructor.- Parameters:
propagator
- analytical orbit propagatormu
- central attraction coefficientfreeStateParameters
- number of free parameters
-
-
Method Detail
-
getState
public FieldSpacecraftState<Gradient> getState()
Get the state with the number of parameters consistent with the propagation model.- Returns:
- state with the number of parameters consistent with the propagation model
-
getPropagator
public abstract FieldAbstractAnalyticalPropagator<Gradient> getPropagator(FieldSpacecraftState<Gradient> state, Gradient[] parameters)
Get the converted analytical orbit propagator.- Parameters:
state
- state as returned bygetState()
parameters
- model parameters- Returns:
- the converted analytical orbit propagator
-
-