kalman filters
play

Kalman Filters Maqsood BIG PICTURE: CPS Unknown execution times - PowerPoint PPT Presentation

Kalman Filters Maqsood BIG PICTURE: CPS Unknown execution times Packet losses Unknown delays Uncontrollable scheduling SENSORS ACTUATORS Sensor Noise MODEL Physical noise Imperfect actuation Parts failures Model Uncertainties


  1. Kalman Filters Maqsood

  2. BIG PICTURE: CPS Unknown execution times Packet losses Unknown delays Uncontrollable scheduling SENSORS ACTUATORS Sensor Noise MODEL Physical noise Imperfect actuation Parts failures Model Uncertainties “Essentially, all models are wrong, but some are useful.” “A CPS system is only as good as the Sensors” “Everything is an approximation”

  3. Background Knowledge • Measurement is a random variable , described by the Probability Density Function (PDF) . • Measurements mean is the Expected Value of the random variable. • Offset between the measurements mean and the true value is the measurements accuracy (or bias or measurement error) . • The dispersion of the distribution is known as precision or ( measurement noise or measurement uncertainty) . Measurements- Gaussian Mean Variance Gaussian PDF

  4. Accuracy & Precision

  5. Kalman Filters What is a Kalman Filter: • A Kalman filter is an optimal estimator – i.e. infers parameters of interest from indirect, inaccurate and uncertain observations . It is recursive so that new measurements can be processed as they arrive . Optimal in what sense: • If Noise is Gaussian: the Kalman filter minimizes the mean square error of the estimated parameters. • If Noise is NOT Gaussian: Kalman filter is still the best linear estimator. Non- linear estimators may be better. • Gauss-Markov Theorem – Optimal among all Linear, Unbiased Estimators • Rao – Blackwell theorem – Optimal among Non-linear Estimators with Gaussian Noise

  6. Kalman Filters… An Estimator: Optimal under Linear or Gaussian and is On-Line. Why is Kalman Filtering so popular: • Good results in practice due to optimality and structure. • Convenient form for online real time processing. • Easy to formulate and implement given a basic understanding. • Measurement equations need not be inverted. Why use the word “Filter” • The process of finding the “best estimate” from noisy data amounts to “filtering out” the noise. • Kalman filter doesn’t just clean up the data measurements, but also projects them onto the state estimate.

  7. Kalman Filter: Smoothing, Filtering, Prediction • Additional Reading and Acknowledgements: • https://www.kalmanfilter.net/ • https://www.mathworks.com/videos/series/understanding-kalman-filters.html • http://web.mit.edu/kirtley/kirtley/binlustuff/literature/control/Kalman%20filter.pdf • Real-time optimal estimation is desired when new data Arrives • Smoothing (Take advantage of noise reduction) • Filtering • Prediction (extrapolate based on model) • Applications: controllers, tracking, etc.

  8. Kalman Filter: Mechanism • Required: 1. System Model and 2. Observations. • Model may be uncertain, Measurements may be Noisy • Prediction-correction framework: Optimal combination of system model and observations

  9. Intuition: State Observer: Estimating state of a Rocket https://www.mathworks.com/videos/series/understanding-kalman-filters.html

  10. Ƹ Kalman Filter Stochastic Processes 𝑨 𝑙 = 𝐼𝑦 𝑙 + 𝑤 𝑨 𝑙 = 𝐼 ො 𝑦 𝑙

  11. 𝑨 𝑙 = 𝐼𝑦 𝑙 + 𝑤

  12. Simple Example: Data Acquisition Intuition Minimum Variance Estimator • Second measurement z 2 , variance s 2 • Second measurement z 2 , variance s 2 • Measurement of a single point z 1 2 2 • Variance s 1 2 (uncertainty s 1 ) • Best estimate of true position? • Best estimate of true position: weighted average • Best estimate of true position 𝑦 1 = 𝑨 1 ො 1 2 𝑨 1 + 1 2 𝑨 2 𝜏 1 𝜏 2 2 = 𝜏 1 • Uncertainty in best estimate 2 𝜏 1 ො 𝑦 2 = ො 1 2 + 1 2 𝜏 1 𝜏 2 2 𝜏 1 = ො 𝑦 1 + 2 𝑨 2 − ො 𝑦 1 2 + 𝜏 2 𝜏 1 • Uncertainty in best estimate 1 2 = 𝜏 2 ො 1 2 + 1 2 𝜏 1 ො 𝜏 2 z 1 z 2

  13. State Space Representation • For “standard” Kalman filtering, everything must be linear 𝑦 𝑙 = 𝐵𝑦 𝑙−1 + 𝐶𝑣 + 𝑥 System model: • The matrix A is state transition matrix • The matrix B is input matrix • The vector w represents additive noise , assumed to have covariance Q 𝑨 𝑙 = 𝐼𝑦 𝑙 + 𝑤 Measurement model: • Matrix C is measurement matrix • The vector v is measurement noise , assumed to have covariance R • Best estimate of state ො 𝑦 with covariance P Further Reading: http://web.mit.edu/kirtley/kirtley/binlustuff/literature/control/Kalman%20filter.pdf

  14. ′ prediction of new state based on passed state 𝑦 𝑙 ′ predicted observation 𝑨 𝑙 Prediction/Correction new observation 𝑨 𝑙 𝑦 𝑙 ො new estimate of state • Prediction: of new state (Ignoring input u ) ′ = 𝐵ො 𝑦 𝑙 𝑦 𝑙−1 ′ = 𝐵𝑄 𝑙−1 𝐵 T + 𝑅 𝑄 𝑙 Pk is the error covariance matrix at time k ′ = 𝐵𝑦 𝑙 ′ 𝑨 𝑙 • Correction: To Account for new measurements Kalman Gain: Weighting of process model vs. measurements −1 ′ 𝐼 T 𝐼𝑄 𝑙 ′ 𝐼 T + 𝑆 𝐿 𝑙 = 𝑄 𝑙 ′ + 𝐿 𝑙 𝑨 𝑙 − 𝐼 𝑦 𝑙 ′ 𝑦 𝑙 = 𝑦 𝑙 ො ′ 𝑄 𝑙 = 𝐽 − 𝐿 𝑙 𝐼 𝑄 𝑙

  15. Kalman Filter Definition: For 1-D Case Further Reading: https://www.kalmanfilter.net/kalman1d.html

  16. Kalman Filter: Systematic View

  17. The Kalman Gain Intuition: For 1D Case HIGH KALMAN GAIN LOW KALMAN GAIN

  18. Example 1: Estimating Temperature of Liquid in Tank Numerical Example For Further Details: https://www.kalmanfilter.net/kalman1d.html

  19. FIRST ITERATION SECOND ITERATION ITERATION ZERO • STEP 1 - MEASURE • STEP 1 - MEASURE • INITIALIZATION • STEP 2 - UPDATE • STEP 2 - UPDATE • PREDICTION • STEP 3 - PREDICT • STEP 3 - PREDICT

  20. Es Esti timatin ing Tem emperature of of Liq iquid in in Tank

  21. EXAMPLE 2: AIRPLANE CONSTANT ACCELERATION MODEL Determining The State Space Mode Estimated State Vector Control vector State transition matrix Control Matrix

  22. The state extrapolation equation is: The matrix multiplication results:

  23. Sen Sensor Fus Fusio ion Vector of multiple measurements

  24. Co Comparison: Pos ositi tion-Only y vs s Pos ositi tion-Velocity ty Mod odel Position-Only Model Position-Velocity Model E.g., GPS position measurements E.g., GPS position + Odometer speed [Welch & Bishop]

  25. Ex Example le 3: 3: Pen endulum Equ quation of of Moti tion De Determin ining a a Lin Linear St State Spa Space Rep epresentati tion Dynamic Model For Small Angles Linear Non-Linear

  26. Pen endulu lum Equati tion of of Moti tion Defining States Dynamic Model System Matrices

  27. Who ho sa said id Li Life is s Lin Linear?

  28. Non-linear Estimation Gaussian Gaussian Kalman Filters are optimal for Linear, Gaussian Systems Gaussian Non-Gaussian Extended Kalman Filter Unscented Kalman Filter

  29. Gaussian Gaussian Non-Gaussian Estimation

  30. Comparison

  31. App pplic icati tions GPS Tracking Wind-Mill Tracking Weather forecasting Large Kalman filter system: Forecast model. Uses an For prolonging life of wind Including trajectories of 24+ Ensemble Kalman filter which turbines by detecting wind satellites, drift rates and phases throws out bad data that would anomalies (wind shear, extreme result in a poor forecast.” of all system clocks, and gusts) utilizing an EKF for parameters related to regression analysis. atmospheric propagation delays with time and location

  32. App pplic icati tions Advanced Driver Assistance GPS Tracking Weather forecasting Systems (ADAS) In VR, predictive tracking is used Improves efficiency of ADAS and Forecast model. Uses an to forecast the position of an makes vehicle control operations like Ensemble Kalman filter which object and its trajectory. blind spot detection, stability and throws out bad data that would result in a poor forecast.” traction control, lane departure detection and automatic braking in emergency situations a lot safer and more effective

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend