You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

After all-hands we had a Kalman Filter meeting where we learned about state-space modelling and discussed preliminary goals for Kalman Filtering.

STATE-SPACE MODELLING

State-space modelling is a way of representing a physical system (often with high order diff eqs) by way of max first-order differential equations like so:

\dot{x} = A\vec{x} + Bu(t)

y = C \vec{x} + Du(t)

Where  ABC, and  D are matrices.

Example:

Say we have a system that can be described with

\ddot{\theta} = k\dot{\theta} + n\theta + u(t)

and

y(t) = \theta

To model this, let 

x = \left[_{\dot{\theta}}^{\theta}\right].

We need to find matrices  A and  B such that

\left[_\ddot{\theta}^\dot{\theta}\right] = A\left[_\dot{\theta}^\theta\right] + Bu(t).

We find that 

A = \begin{bmatrix} 0 & 1 \\ 0 & 0 \end{bmatrix} .

  • No labels