Class KalmanEstimatorBuilder


  • public class KalmanEstimatorBuilder
    extends Object
    Builder for a Kalman filter estimator.
    Since:
    9.2
    Author:
    Romain Gerbaud, Maxime Journot
    • Constructor Detail

      • KalmanEstimatorBuilder

        public KalmanEstimatorBuilder()
        Default constructor. Set an extended Kalman filter, with linearized covariance prediction.
    • Method Detail

      • decomposer

        public KalmanEstimatorBuilder decomposer​(org.hipparchus.linear.MatrixDecomposer matrixDecomposer)
        Configure the matrix decomposer.
        Parameters:
        matrixDecomposer - decomposer to use for the correction phase
        Returns:
        this object.
      • addPropagationConfiguration

        public KalmanEstimatorBuilder addPropagationConfiguration​(NumericalPropagatorBuilder builder,
                                                                  CovarianceMatrixProvider provider)
        Add a propagation configuration.

        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).

        Parameters:
        builder - The propagator builder to use in the Kalman filter.
        provider - The process noise matrices provider to use, consistent with the builder.
        Returns:
        this object.
        See Also:
        getProcessNoiseMatrix(previous, current)
      • estimatedMeasurementsParameters

        public KalmanEstimatorBuilder estimatedMeasurementsParameters​(ParameterDriversList estimatedMeasurementsParams)
        Configure the estimated measurement parameters.

        If this method is not called, no measurement parameters will be estimated.

        Parameters:
        estimatedMeasurementsParams - The estimated measurements' parameters list.
        Returns:
        this object.