public abstract class AbstractKalmanModel extends Object implements KalmanEstimation, NonLinearProcess<MeasurementDecorator>
KalmanEstimator
.Modifier | Constructor and Description |
---|---|
protected |
AbstractKalmanModel(List<OrbitDeterminationPropagatorBuilder> propagatorBuilders,
List<CovarianceMatrixProvider> covarianceMatricesProviders,
ParameterDriversList estimatedMeasurementParameters,
CovarianceMatrixProvider measurementProcessNoiseMatrix,
MatricesHarvester[] harvesters)
Kalman process model constructor (package private).
|
protected |
AbstractKalmanModel(List<OrbitDeterminationPropagatorBuilder> propagatorBuilders,
List<CovarianceMatrixProvider> covarianceMatricesProviders,
ParameterDriversList estimatedMeasurementParameters,
CovarianceMatrixProvider measurementProcessNoiseMatrix,
MatricesHarvester[] harvesters,
PropagationType propagationType,
PropagationType stateType)
Kalman process model constructor (package private).
|
Modifier and Type | Method and Description |
---|---|
protected void |
analyticalDerivativeComputations(AbstractJacobiansMapper mapper,
SpacecraftState state)
Deprecated.
as of 11.1, not used anymore
|
void |
finalizeEstimation(ObservedMeasurement<?> observedMeasurement,
ProcessEstimate estimate)
Finalize estimation.
|
List<OrbitDeterminationPropagatorBuilder> |
getBuilders()
Getter for the propagators.
|
EstimatedMeasurement<?> |
getCorrectedMeasurement()
Get the estimated measurement.
|
SpacecraftState[] |
getCorrectedSpacecraftStates()
Get the corrected spacecraft states.
|
AbsoluteDate |
getCurrentDate()
Get the current date.
|
int |
getCurrentMeasurementNumber()
Get the current measurement number.
|
ProcessEstimate |
getEstimate()
Get the current corrected estimate.
|
ParameterDriversList |
getEstimatedMeasurementsParameters()
Get the list of estimated measurements parameters.
|
ParameterDriversList |
getEstimatedOrbitalParameters()
Get the list of estimated orbital parameters.
|
ParameterDriversList |
getEstimatedPropagationParameters()
Get the list of estimated propagation parameters.
|
Propagator[] |
getEstimatedPropagators()
Get the propagators estimated with the values set in the propagators builders.
|
NonLinearEvolution |
getEvolution(double previousTime,
RealVector previousState,
MeasurementDecorator measurement) |
RealVector |
getInnovation(MeasurementDecorator measurement,
NonLinearEvolution evolution,
RealMatrix innovationCovarianceMatrix) |
AbstractJacobiansMapper[] |
getMappers()
Deprecated.
as of 11.1, not used anymore
|
RealMatrix |
getPhysicalEstimatedCovarianceMatrix()
Get the "physical" estimated covariance matrix (i.e.
|
RealVector |
getPhysicalEstimatedState()
Get the "physical" estimated state (i.e.
|
RealMatrix |
getPhysicalInnovationCovarianceMatrix()
Get the physical innovation covariance matrix.
|
RealMatrix |
getPhysicalKalmanGain()
Get the physical Kalman gain matrix.
|
RealMatrix |
getPhysicalMeasurementJacobian()
Get the physical Jacobian of the measurement with respect to the state (H matrix).
|
RealMatrix |
getPhysicalStateTransitionMatrix()
Get physical state transition matrix between previous state and estimated (but not yet corrected) state.
|
EstimatedMeasurement<?> |
getPredictedMeasurement()
Get the predicted measurement.
|
SpacecraftState[] |
getPredictedSpacecraftStates()
Get the predicted spacecraft states.
|
Propagator[] |
getReferenceTrajectories()
Getter for the reference trajectories.
|
void |
setHarvesters(MatricesHarvester[] harvesters)
Setter for the jacobian harvesters.
|
void |
setMappers(AbstractJacobiansMapper[] mappers)
Deprecated.
as of 11.1, replaced by
setHarvesters(MatricesHarvester[]) |
void |
setReferenceTrajectories(Propagator[] referenceTrajectories)
Setter for the reference trajectories.
|
protected abstract void |
updateReferenceTrajectories(Propagator[] propagators,
PropagationType pType,
PropagationType sType)
Update the reference trajectories using the propagators as input.
|
protected AbstractKalmanModel(List<OrbitDeterminationPropagatorBuilder> propagatorBuilders, List<CovarianceMatrixProvider> covarianceMatricesProviders, ParameterDriversList estimatedMeasurementParameters, CovarianceMatrixProvider measurementProcessNoiseMatrix, MatricesHarvester[] harvesters)
KalmanModel
and TLEKalmanModel
.propagatorBuilders
- propagators builders used to evaluate the orbits.covarianceMatricesProviders
- providers for covariance matricesestimatedMeasurementParameters
- measurement parameters to estimatemeasurementProcessNoiseMatrix
- provider for measurement process noise matrixharvesters
- harvesters for extracting Jacobians from integrated statesprotected AbstractKalmanModel(List<OrbitDeterminationPropagatorBuilder> propagatorBuilders, List<CovarianceMatrixProvider> covarianceMatricesProviders, ParameterDriversList estimatedMeasurementParameters, CovarianceMatrixProvider measurementProcessNoiseMatrix, MatricesHarvester[] harvesters, PropagationType propagationType, PropagationType stateType)
DSSTKalmanModel
.propagatorBuilders
- propagators builders used to evaluate the orbits.covarianceMatricesProviders
- providers for covariance matricesestimatedMeasurementParameters
- measurement parameters to estimatemeasurementProcessNoiseMatrix
- provider for measurement process noise matrixharvesters
- harvesters for extracting Jacobians from integrated statespropagationType
- type of the orbit used for the propagation (mean or osculating), applicable only for DSSTstateType
- type of the elements used to define the orbital state (mean or osculating), applicable only for DSSTprotected abstract void updateReferenceTrajectories(Propagator[] propagators, PropagationType pType, PropagationType sType)
propagators
- The new propagators to usepType
- propagationType type of the orbit used for the propagation (mean or osculating)sType
- type of the elements used to define the orbital state (mean or osculating)protected void analyticalDerivativeComputations(AbstractJacobiansMapper mapper, SpacecraftState state)
mapper
- Jacobian mapper to calculate short period perturbationsstate
- state used to calculate short period perturbationspublic RealMatrix getPhysicalStateTransitionMatrix()
getPhysicalStateTransitionMatrix
in interface KalmanEstimation
public RealMatrix getPhysicalMeasurementJacobian()
getPhysicalMeasurementJacobian
in interface KalmanEstimation
public RealMatrix getPhysicalInnovationCovarianceMatrix()
getPhysicalInnovationCovarianceMatrix
in interface KalmanEstimation
public RealMatrix getPhysicalKalmanGain()
getPhysicalKalmanGain
in interface KalmanEstimation
public SpacecraftState[] getPredictedSpacecraftStates()
getPredictedSpacecraftStates
in interface KalmanEstimation
public SpacecraftState[] getCorrectedSpacecraftStates()
getCorrectedSpacecraftStates
in interface KalmanEstimation
public int getCurrentMeasurementNumber()
getCurrentMeasurementNumber
in interface KalmanEstimation
public AbsoluteDate getCurrentDate()
getCurrentDate
in interface KalmanEstimation
public EstimatedMeasurement<?> getPredictedMeasurement()
This estimation has been evaluated on the last predicted orbits
getPredictedMeasurement
in interface KalmanEstimation
public EstimatedMeasurement<?> getCorrectedMeasurement()
This estimation has been evaluated on the last corrected orbits
getCorrectedMeasurement
in interface KalmanEstimation
public RealVector getPhysicalEstimatedState()
getPhysicalEstimatedState
in interface KalmanEstimation
public RealMatrix getPhysicalEstimatedCovarianceMatrix()
getPhysicalEstimatedCovarianceMatrix
in interface KalmanEstimation
public ParameterDriversList getEstimatedOrbitalParameters()
getEstimatedOrbitalParameters
in interface KalmanEstimation
public ParameterDriversList getEstimatedPropagationParameters()
getEstimatedPropagationParameters
in interface KalmanEstimation
public ParameterDriversList getEstimatedMeasurementsParameters()
getEstimatedMeasurementsParameters
in interface KalmanEstimation
public ProcessEstimate getEstimate()
public NonLinearEvolution getEvolution(double previousTime, RealVector previousState, MeasurementDecorator measurement)
getEvolution
in interface NonLinearProcess<MeasurementDecorator>
public RealVector getInnovation(MeasurementDecorator measurement, NonLinearEvolution evolution, RealMatrix innovationCovarianceMatrix)
getInnovation
in interface NonLinearProcess<MeasurementDecorator>
public void finalizeEstimation(ObservedMeasurement<?> observedMeasurement, ProcessEstimate estimate)
observedMeasurement
- measurement that has just been processedestimate
- corrected estimatepublic List<OrbitDeterminationPropagatorBuilder> getBuilders()
public Propagator[] getReferenceTrajectories()
public void setReferenceTrajectories(Propagator[] referenceTrajectories)
referenceTrajectories
- the reference trajectories to be setted@Deprecated public AbstractJacobiansMapper[] getMappers()
@Deprecated public void setMappers(AbstractJacobiansMapper[] mappers)
setHarvesters(MatricesHarvester[])
mappers
- the jacobian mappers to setpublic void setHarvesters(MatricesHarvester[] harvesters)
harvesters
- the jacobian harvesters to setpublic Propagator[] getEstimatedPropagators()
Copyright © 2002-2022 CS GROUP. All rights reserved.