QUB-ASL / bzzz

Quadcopter with ESP32 and RaspberryPi
MIT License
7 stars 1 forks source link

Altitude hold: state and parameter estimation with KF #83

Closed patchedByBatman closed 1 year ago

patchedByBatman commented 1 year ago

Main Changes

New altitude dynamics model

$$\begin{aligned} z_{t+1} {}={}& z_t + T_s v_t + \tfrac{1}{2}T_s^2 a_t + w^zt, \\ v{t+1} {}={}& v_t + T_s a_t + w^v_t, \\ a_t {}={}& \alpha_t \tau_t + \betat, \\ \alpha{t+1} {}={}& \alpha_t + w^\alphat, \\ \beta{t+1} {}={}& \beta_t + w_t^\beta. \end{aligned}$$

The output is

$$y_t = z_t + \epsilon_t.$$

Link to Overleaf document: ...

Comments

Associated Issues

Tests

patchedByBatman commented 1 year ago

Finished the project in #107. Closing this PR since it has no need.