public interface MatricesHarvester
spacecraft state
.
The State Transition Matrix and Jacobians matrices with respect to propagation parameters are stored in the state
as additional states
. Each propagator and support classes has
its own way to handle it. The interface leverages these differences which are implementation details and provides
a higher level access to these matrices, regardless of haw they were computed and stored.
Modifier and Type | Method and Description |
---|---|
List<String> |
getJacobiansColumnsNames()
Get the names of the parameters in the matrix returned by
getParametersJacobian(org.orekit.propagation.SpacecraftState) . |
RealMatrix |
getParametersJacobian(SpacecraftState state)
Get the Jacobian with respect to propagation parameters.
|
RealMatrix |
getStateTransitionMatrix(SpacecraftState state)
Extract state transition matrix from state.
|
void |
setReferenceState(SpacecraftState reference)
Set up reference state.
|
void setReferenceState(SpacecraftState reference)
This method is called whenever the global propagation reference state changes. This corresponds to the start of propagation in batch least squares orbit determination or at prediction step for each measurement in Kalman filtering. Its goal is to allow the harvester to compute some internal data. Analytical models like TLE use it to compute analytical derivatives, semi-analytical models like DSST use it to compute short periodic terms, numerical models do not use it at all.
reference
- reference state to setRealMatrix getStateTransitionMatrix(SpacecraftState state)
state
- spacecraft stateorbit type
.RealMatrix getParametersJacobian(SpacecraftState state)
state
- spacecraft stateList<String> getJacobiansColumnsNames()
getParametersJacobian(org.orekit.propagation.SpacecraftState)
.
Beware that the names of the parameters are fully known only once all force models have been set up and their parameters properly selected. Applications that retrieve the matrices harvester first and select the force model parameters to retrieve afterwards (but obviously before starting propagation) must take care to wait until the parameters have been set up before they call this method. Calling the method too early would return wrong results.
The names are returned in the Jacobians matrix columns order
Copyright © 2002-2022 CS GROUP. All rights reserved.