Kalman filtering Flashcards

1
Q

Mathematical formulation

A

Assumption: system S is LTI, autonomous

S: x(t+1) = Fx(t) + v1(t)
y(t) = Hx(t) + v2(t)

v1(t) is WN(0, V1)
v2(t) is WN(0, V2)
v1 and v2 are uncorrelated

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Problem statement

A
  • y(t) can be measured
  • The model (F, H, V1, V2, V12) is known
  • x(t) is unknown, including the initial state

Goal: to estimate x^(t+k|t)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Possible problems solved by Kalman filter

A
  • Filtering problem:
    k=0 - > x^(t|t)
  • Prediction problem:
    k > 0 - > x^(t+1|t)
  • smoothing problem:
    k < 0 - > x^(t-1|t)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Kalman predictor (k=1)

A
x^(t+1|t) = Fx^(t|t-1) + k(t)*e(t)
y^(t|t-1) = Hx^(t|t-1) 

e(t) = y(t) - y^(t|t-1) is the innovation term

k(t) is the Kalman gain, that minimizes the variance of the prediction error

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Expression of the dinamic Riccati equation

A

P(t+1) = FP(t)F’ + V1 - (FP(t)H’ + V12) (HP(t)H’ + V2)^-1 (FP(t)H’ + V12)’

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Variance of the prediction error

A

trace{ P(t) = E[(x(t)-x^(t|t-1))(x(t)-x^(t|t-1))’] }

P(t) is the covariance of the prediction error

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Expression of the Kalman gain

A

k(t) = (FP(t)H’+V12)(HP(t)H’+V2)^-1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Generalization: multi-step predictor

A
x^(t+k|t) = F^k-1 x^(t+1|t)
y^(t+k|t) = H x^(t+k|t)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Generalization: filtering problem

A

If F is non singular:

x^(t|t) = F^-1 x^(t+1|t)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Generalization: exogenous inputs

A

x(t+1) = Fx(t) + Gu(t) + v1(t)

  • > x^(t+1|t) = Fx^(t|t-1) + Gu(t) + k(t)*e(t)
  • G is known and u is a measurable input
  • k(t) does not change
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Theorem 1 for the convergence of the DRE

A

If the system S is stable and V12=0
then, for any P1 > = 0:
- lim(t - > +inf) P(t) = P_ > = 0
- F - k_H is stable

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Theorem 2 for the convergence of the DRE

A

If (F,H) is observable and (F,G) is reachable, where G is such that V1 = GG’, and V12=0
then, for any P1 > = 0
- lim(t - > +inf) P(t) = P_ > = 0
- F - k_H is stable

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Extended Kalman filter: use

A

Used for non-linear systems, to estimate the variations of the state from its nominal trajectory

System in the form
x(t+1) = f(x(t),t) + v1(t)
y(t) = h(x(t),t) + v2(t)

Nominal trajectory, a priori defined:
x_(t+1)=f(x_(t),t)
y_(t) = y(x_(t))

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Extended Kalman filter: algorithm

A
  • compute F_(t) and H_(t) using x^(t|t-1)
  • compute k_(t): Kalman gain for the linearized system
  • compute x^(t+1|t)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Formula for x^(t+1|t) for EKF

A
x^(t+1|t) = f(x^(t|t-1),t) + k_(t)*e(t)
e(t) = y(t) - h(x^(t|t-1),t)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly