Uses of Class
org.orekit.utils.ParameterDriversList
-
Packages that use ParameterDriversList Package Description org.orekit.estimation.leastsquares The leastsquares package provides an implementation of a batch least squares estimator engine to perform an orbit determination.org.orekit.estimation.sequential The sequential package provides an implementation of a Kalman Filter engine to perform an orbit determination.org.orekit.orbits This package provides classes to represent orbits.org.orekit.propagation.conversion This package provides tools to convert a given propagator or a set ofSpacecraftStateinto another propagator. -
-
Uses of ParameterDriversList in org.orekit.estimation.leastsquares
Methods in org.orekit.estimation.leastsquares that return ParameterDriversList Modifier and Type Method Description ParameterDriversListBatchLSEstimator. getMeasurementsParametersDrivers(boolean estimatedOnly)Get the measurements parameters supported by this estimator (including measurements and modifiers).ParameterDriversListBatchLSEstimator. getOrbitalParametersDrivers(boolean estimatedOnly)Get the orbital parameters supported by this estimator.ParameterDriversListBatchLSEstimator. getPropagatorParametersDrivers(boolean estimatedOnly)Get the propagator parameters supported by this estimator.ParameterDriversListAbstractBatchLSModel. getSelectedOrbitalParametersDriversForBuilder(int iBuilder)Get the selected orbital drivers for a propagatorBuilder.ParameterDriversListAbstractBatchLSModel. getSelectedPropagationDriversForBuilder(int iBuilder)Get the selected propagation drivers for a propagatorBuilder.Methods in org.orekit.estimation.leastsquares with parameters of type ParameterDriversList Modifier and Type Method Description voidBatchLSObserver. evaluationPerformed(int iterationsCount, int evaluationsCount, Orbit[] orbits, ParameterDriversList estimatedOrbitalParameters, ParameterDriversList estimatedPropagatorParameters, ParameterDriversList estimatedMeasurementsParameters, EstimationsProvider evaluationsProvider, LeastSquaresProblem.Evaluation lspEvaluation)Notification callback for the end of each evaluation.Constructors in org.orekit.estimation.leastsquares with parameters of type ParameterDriversList Constructor Description AbstractBatchLSModel(PropagatorBuilder[] propagatorBuilders, List<ObservedMeasurement<?>> measurements, ParameterDriversList estimatedMeasurementsParameters, ModelObserver observer)Constructor.BatchLSModel(PropagatorBuilder[] propagatorBuilders, List<ObservedMeasurement<?>> measurements, ParameterDriversList estimatedMeasurementsParameters, ModelObserver observer)Simple constructor.DSSTBatchLSModel(PropagatorBuilder[] propagatorBuilders, List<ObservedMeasurement<?>> measurements, ParameterDriversList estimatedMeasurementsParameters, ModelObserver observer, PropagationType propagationType)Simple constructor. -
Uses of ParameterDriversList in org.orekit.estimation.sequential
Methods in org.orekit.estimation.sequential that return ParameterDriversList Modifier and Type Method Description ParameterDriversListAbstractKalmanEstimator. getEstimatedMeasurementsParameters()Get the list of estimated measurements parameters.ParameterDriversListKalmanEstimation. getEstimatedMeasurementsParameters()Get the list of estimated measurements parameters.ParameterDriversListSemiAnalyticalKalmanModel. getEstimatedMeasurementsParameters()Get the list of estimated measurements parameters.ParameterDriversListSemiAnalyticalUnscentedKalmanModel. getEstimatedMeasurementsParameters()Get the list of estimated measurements parameters.ParameterDriversListKalmanEstimation. getEstimatedOrbitalParameters()Get the list of estimated orbital parameters.ParameterDriversListSemiAnalyticalKalmanModel. getEstimatedOrbitalParameters()Get the list of estimated orbital parameters.ParameterDriversListSemiAnalyticalUnscentedKalmanModel. getEstimatedOrbitalParameters()Get the list of estimated orbital parameters.ParameterDriversListKalmanEstimation. getEstimatedPropagationParameters()Get the list of estimated propagation parameters.ParameterDriversListSemiAnalyticalKalmanModel. getEstimatedPropagationParameters()Get the list of estimated propagation parameters.ParameterDriversListSemiAnalyticalUnscentedKalmanModel. getEstimatedPropagationParameters()Get the list of estimated propagation parameters.ParameterDriversListAbstractKalmanEstimator. getOrbitalParametersDrivers(boolean estimatedOnly)Get the orbital parameters supported by this estimator.ParameterDriversListAbstractKalmanEstimator. getPropagationParametersDrivers(boolean estimatedOnly)Get the propagator parameters supported by this estimator.Methods in org.orekit.estimation.sequential with parameters of type ParameterDriversList Modifier and Type Method Description static voidKalmanEstimatorUtil. checkDimension(int dimension, ParameterDriversList orbitalParameters, ParameterDriversList propagationParameters, ParameterDriversList measurementParameters)Check dimension.KalmanEstimatorBuilderKalmanEstimatorBuilder. estimatedMeasurementsParameters(ParameterDriversList estimatedMeasurementsParams, CovarianceMatrixProvider provider)Configure the estimated measurement parameters.SemiAnalyticalKalmanEstimatorBuilderSemiAnalyticalKalmanEstimatorBuilder. estimatedMeasurementsParameters(ParameterDriversList estimatedMeasurementsParams, CovarianceMatrixProvider provider)Configure the estimated measurement parameters.SemiAnalyticalUnscentedKalmanEstimatorBuilderSemiAnalyticalUnscentedKalmanEstimatorBuilder. estimatedMeasurementsParameters(ParameterDriversList estimatedMeasurementsParams, CovarianceMatrixProvider provider)Configure the estimated measurement parameters.UnscentedKalmanEstimatorBuilderUnscentedKalmanEstimatorBuilder. estimatedMeasurementsParameters(ParameterDriversList estimatedMeasurementsParams, CovarianceMatrixProvider provider)Configure the estimated measurement parameters.Constructors in org.orekit.estimation.sequential with parameters of type ParameterDriversList Constructor Description KalmanModel(List<PropagatorBuilder> propagatorBuilders, List<CovarianceMatrixProvider> covarianceMatricesProviders, ParameterDriversList estimatedMeasurementParameters, CovarianceMatrixProvider measurementProcessNoiseMatrix)Kalman process model constructor.SemiAnalyticalKalmanEstimator(MatrixDecomposer decomposer, DSSTPropagatorBuilder propagatorBuilder, CovarianceMatrixProvider covarianceMatrixProvider, ParameterDriversList estimatedMeasurementParameters, CovarianceMatrixProvider measurementProcessNoiseMatrix)Kalman filter estimator constructor (package private).SemiAnalyticalKalmanModel(DSSTPropagatorBuilder propagatorBuilder, CovarianceMatrixProvider covarianceMatrixProvider, ParameterDriversList estimatedMeasurementParameters, CovarianceMatrixProvider measurementProcessNoiseMatrix)Kalman process model constructor (package private).SemiAnalyticalUnscentedKalmanModel(DSSTPropagatorBuilder propagatorBuilder, CovarianceMatrixProvider covarianceMatrixProvider, ParameterDriversList estimatedMeasurementParameters, CovarianceMatrixProvider measurementProcessNoiseMatrix)Unscented Kalman process model constructor (package private).UnscentedKalmanModel(List<PropagatorBuilder> propagatorBuilders, List<CovarianceMatrixProvider> covarianceMatricesProviders, ParameterDriversList estimatedMeasurementParameters, CovarianceMatrixProvider measurementProcessNoiseMatrix)Unscented Kalman process model constructor (package private). -
Uses of ParameterDriversList in org.orekit.orbits
Methods in org.orekit.orbits that return ParameterDriversList Modifier and Type Method Description abstract ParameterDriversListOrbitType. getDrivers(double dP, Orbit orbit, PositionAngleType type)Get parameters drivers initialized from a reference orbit. -
Uses of ParameterDriversList in org.orekit.propagation.conversion
Methods in org.orekit.propagation.conversion that return ParameterDriversList Modifier and Type Method Description ParameterDriversListAbstractPropagatorBuilder. getOrbitalParametersDrivers()Get the drivers for the configurable orbital parameters.ParameterDriversListPropagatorBuilder. getOrbitalParametersDrivers()Get the drivers for the configurable orbital parameters.ParameterDriversListAbstractPropagatorBuilder. getPropagationParametersDrivers()Get the drivers for the configurable propagation parameters.ParameterDriversListPropagatorBuilder. getPropagationParametersDrivers()Get the drivers for the configurable propagation parameters.Methods in org.orekit.propagation.conversion with parameters of type ParameterDriversList Modifier and Type Method Description AbstractBatchLSModelBrouwerLyddanePropagatorBuilder. buildLeastSquaresModel(PropagatorBuilder[] builders, List<ObservedMeasurement<?>> measurements, ParameterDriversList estimatedMeasurementsParameters, ModelObserver observer)Build a new batch least squares model.DSSTBatchLSModelDSSTPropagatorBuilder. buildLeastSquaresModel(PropagatorBuilder[] builders, List<ObservedMeasurement<?>> measurements, ParameterDriversList estimatedMeasurementsParameters, ModelObserver observer)Build a new batch least squares model.AbstractBatchLSModelEcksteinHechlerPropagatorBuilder. buildLeastSquaresModel(PropagatorBuilder[] builders, List<ObservedMeasurement<?>> measurements, ParameterDriversList estimatedMeasurementsParameters, ModelObserver observer)Build a new batch least squares model.AbstractBatchLSModelEphemerisPropagatorBuilder. buildLeastSquaresModel(PropagatorBuilder[] builders, List<ObservedMeasurement<?>> measurements, ParameterDriversList estimatedMeasurementsParameters, ModelObserver observer)Build a new batch least squares model.AbstractBatchLSModelKeplerianPropagatorBuilder. buildLeastSquaresModel(PropagatorBuilder[] builders, List<ObservedMeasurement<?>> measurements, ParameterDriversList estimatedMeasurementsParameters, ModelObserver observer)Build a new batch least squares model.BatchLSModelNumericalPropagatorBuilder. buildLeastSquaresModel(PropagatorBuilder[] builders, List<ObservedMeasurement<?>> measurements, ParameterDriversList estimatedMeasurementsParameters, ModelObserver observer)Build a new batch least squares model.AbstractBatchLSModelPropagatorBuilder. buildLeastSquaresModel(PropagatorBuilder[] builders, List<ObservedMeasurement<?>> measurements, ParameterDriversList estimatedMeasurementsParameters, ModelObserver observer)Build a new batch least squares model.AbstractBatchLSModelTLEPropagatorBuilder. buildLeastSquaresModel(PropagatorBuilder[] builders, List<ObservedMeasurement<?>> measurements, ParameterDriversList estimatedMeasurementsParameters, ModelObserver observer)Build a new batch least squares model.
-