Class FieldCombinedDerivatives<T extends CalculusFieldElement<T>>
- java.lang.Object
-
- org.orekit.propagation.integration.FieldCombinedDerivatives<T>
-
- Type Parameters:
T
- type of the field elements
public class FieldCombinedDerivatives<T extends CalculusFieldElement<T>> extends Object
Container for additional derivatives.- Since:
- 11.2
- Author:
- Luc Maisonobe
- See Also:
FieldAdditionalDerivativesProvider
-
-
Constructor Summary
Constructors Constructor Description FieldCombinedDerivatives(T[] additionalDerivatives, T[] mainStateDerivativesIncrements)
Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description T[]
getAdditionalDerivatives()
Get the derivatives related to the additional state.T[]
getMainStateDerivativesIncrements()
Get the derivatives increments related to the main state.
-
-
-
Constructor Detail
-
FieldCombinedDerivatives
public FieldCombinedDerivatives(T[] additionalDerivatives, T[] mainStateDerivativesIncrements)
Simple constructor.- Parameters:
additionalDerivatives
- additional state derivativesmainStateDerivativesIncrements
- increments related to the main state parameters (may be null if main state should not be incremented)
-
-
Method Detail
-
getMainStateDerivativesIncrements
public T[] getMainStateDerivativesIncrements()
Get the derivatives increments related to the main state.- Returns:
- primary state derivatives increments, or null if main state should not be incremented
-
getAdditionalDerivatives
public T[] getAdditionalDerivatives()
Get the derivatives related to the additional state.- Returns:
- additional state derivatives
-
-