EE3901/EE5901 Sensor Technologies Week 3 Tutorial
Question 1
In lectures we considered a Kalman filter for one dimensional movement. There were two state space variables: position and velocity. In this question we will extend this model to two dimensional movement.
Let position be represented by variables
Assume that the underlying physics is a “constant velocity” model of the form:
The differential equations (1)-(4) can be converted to discrete time steps using the rule
where
Write down the state vector for this problem, and then derive the state update matrix
For a state space vector of the form
the prediction matrix is
Hint: you can check this by calculating
Question 2
This is a discussion question for the tutorial class.
In Question 1, you used position and velocity in the state vector. Why only these two? Why not include acceleration as well? In general, how do you decide which variables belong in the state vector?
Some hints for your consideration:
- Consider that a system of point masses is governed by an equation of the form
or more explicitly .- Is
an independent variable?
- Is
- What does it really mean when someone says that a system is governed by a “first order differential equation” or a “second order differential equation”? In particular, how many initial conditions are required? How many unique variables are there?
Question 3
Consider the resistor-capacitor circuit of Figure Q3.
Suppose that the capacitor is charged to some initial voltage before it is connected to this circuit. The current flowing in this loop is given by the differential equation
You are designing a Kalman filter to estimate the current
(a) Write the equation for the predicted state
Hint: Start with the differential equation above, then write the prediction step (as per question 1).
(b) Suppose that the circuit resistance is not known exactly but is instead
subject to some measurement variance
(c) Using your results from part (a) and (b), write the equation for the
prediction step of the state variance, i.e. the equation for
(d) Suppose that you are not able to measure the current directly, but instead, you can measure the voltage across the resistor. Write the measurement “matrix” (in this case a scalar) in the form
where
(e) Let
(f) Write the equations for the Kalman gain, updated state, and updated covariance.
The Kalman filter for this system is as follows:
(a) State prediction:
(b) Process variance:
(c) State variance prediction:
(d) Measurement model:
(e) Measurement residual and variance:
(f) Kalman gain and update step:
Question 4 — software exercise
Validate the performance of the filter from Question 3 by implementing it on a computer.
Here is Matlab starter code that generates noisy measurement data and plots the results. (You are also welcome to use a different programming language if you prefer.)
A properly designed Kalman filter has an impressive ability to handle measurement noise and produce an accurate estimate. In Figure Q4 , the noisy measurements (red) are used to obtain the filtered state (yellow). Your task is to reproduce this figure using your equations from Question 3.
The software simulation is a great way to build intuition about the behaviour of the filter in the presence of different kinds of issues. Using your software, evaluate how the filter performs when:
(a) The initial state is wrong, i.e.
(b) The process variance is very large, i.e. add a constant term to
(c) The initial state is wrong and measurement variance is very large, i.e. add a constant term to
(d) The measurement process is extremely inaccurate, e.g. try
(e) The measurement process is extremely inaccurate and the initial condition is wrong.
Briefly:
(a) If the initial condition is wrong but everything else is set up correctly, then the filter will quickly converge to the true value of the state.
(b) When the process variance is large, the filter basically ignores the predictive model, and just tracks the noisy measurement.
(c) If the initial condition is wrong and the measurement variance is large, the filter is slower to converge to the true value. If the measurement variance is very large then it never converges to the proper value.
(d) The filter can still cope with very low quality measurement data, so long as it “knows” that the data are high variance. In that case it basically falls back on the process model. If the process model and initial condition are accurate then the system can still work reasonably.
(e) The system will fail if the initial condition is inaccurate and the measurements are very poor. In that case there’s simply not enough information available.