public class KalmanEstimatorBuilder extends Object
Constructor and Description |
---|
KalmanEstimatorBuilder()
Default constructor.
|
Modifier and Type | Method and Description |
---|---|
KalmanEstimatorBuilder |
addPropagationConfiguration(OrbitDeterminationPropagatorBuilder builder,
CovarianceMatrixProvider provider)
Add a propagation configuration.
|
KalmanEstimator |
build()
Construct a
KalmanEstimator from the data in this builder. |
KalmanEstimatorBuilder |
decomposer(MatrixDecomposer matrixDecomposer)
Configure the matrix decomposer.
|
KalmanEstimatorBuilder |
estimatedMeasurementsParameters(ParameterDriversList estimatedMeasurementsParams,
CovarianceMatrixProvider provider)
Configure the estimated measurement parameters.
|
public KalmanEstimatorBuilder()
public KalmanEstimator build()
KalmanEstimator
from the data in this builder.
Before this method is called, addPropagationConfiguration()
must have been called
at least once, otherwise configuration is incomplete and an exception will be raised.
KalmanEstimator
.public KalmanEstimatorBuilder decomposer(MatrixDecomposer matrixDecomposer)
matrixDecomposer
- decomposer to use for the correction phasepublic KalmanEstimatorBuilder addPropagationConfiguration(OrbitDeterminationPropagatorBuilder builder, CovarianceMatrixProvider provider)
This method must be called once for each propagator to managed with the
Kalman estimator
. The propagators order in the
Kalman filter will be the call order.
The provider
should return a matrix with dimensions and ordering
consistent with the builder
configuration. The first 6 rows/columns
correspond to the 6 orbital parameters which must all be present, regardless
of the fact they are estimated or not. The remaining elements correspond
to the subset of propagation parameters that are estimated, in the
same order as propagatorBuilder.getPropagationParametersDrivers()
.getDrivers()
(but filtering out the non selected drivers).
builder
- The propagator builder to use in the Kalman filter.provider
- The process noise matrices provider to use, consistent with the builder.getProcessNoiseMatrix(previous, current)
public KalmanEstimatorBuilder estimatedMeasurementsParameters(ParameterDriversList estimatedMeasurementsParams, CovarianceMatrixProvider provider)
If this method is not called, no measurement parameters will be estimated.
estimatedMeasurementsParams
- The estimated measurements' parameters list.provider
- covariance matrix provider for the estimated measurement parametersCopyright © 2002-2022 CS GROUP. All rights reserved.