CDS 110b: Sensor Fusion

From Murray Wiki
Jump to navigationJump to search
WARNING: This page is for a previous year.
See current course homepage to find most recent page available.
Course Home L7-2: Sensitivity L8-1: Robust Stability L9-1: Robust Perf Schedule

In this lecture we show how the Kalman filter can be used for sensor fusion and explore some variations on the basic Kalman filter, including the extended Kalman filter.

Lecture Outline

  1. Sensor fusion using Kalman filters
  2. The extended Kalman filter
  3. Parameter estimation using EKF

Lecture Materials

References and Further Reading

Frequently Asked Questions

Q: How do you deal with time correlated noise (eg, GPS jumps on Alice)?

Correlated noise can be put into the Kalman filtering framework by using a (linear) filter to give a correlated noise source with a given correlation function (or spectral density). Suppose that is a transfer function that filters Gaussian white noise and provides the desired correlation. Let be a state space representation for the filter. Then the entire system can be written as

This system takes a Guassian white noise input , filters it to give the desired spectrum, and uses it to drive the system.

For Alice, the most correct approach would be to model the noise as something other than a Gaussian process (in which case the theory we have studied doesn't directly apply). However, we can also take data from the sensor and develop the correlation function numerically, then determine the linear system that best models the correlation.

Q: In problem 1(a), can we assume and as given in homework #2 when doing our plots? Can we also assume them when doing the calculations?

Getting an expression first in terms of and would be good, and then plugging in the values from homework #2. (And as always, if you used different values, please be sure to clearly state that.)

Q: In problem 1(b), what transfer function should we use to calculate the gain margin? I know we want open loop, but do we want to break the loop such that it's SISO?

Yes, break the loop so it's SISO. In the coming weeks we'll make clear exactly where we'd want to break the loop and why based on precisely where the disturbances and noise are, but for now...just pick a SISO break spot.

Q: In kf_dfan.m, shouldn’t P22 be y1(:,20) and P33 be y1(:,27)?

Good catch! There is a mistake in the file. You need to add 7 to each entry to go from one diagonal entry to the next. The code as written will plot the first column of the P matrix.