1 / 19

How could we use an accelerometer to find tilt angle?

The artist exists because the world is not perfect. Art would be useless if the world were perfect, as man wouldn’t look for harmony but would simply live in it. Art is born out of an ill-designed world. Andrei Tarkovsky State Estimation: The search for harmony in an unideal world Mike Robinson.

Download Presentation

How could we use an accelerometer to find tilt angle?

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. The artist exists because the world is not perfect. Art would be useless if the world were perfect, as man wouldn’t look for harmony but would simply live in it. Art is born out of an ill-designed world. Andrei TarkovskyState Estimation: The search for harmony in an unideal worldMike Robinson

  2. How could we use an accelerometer to find tilt angle? Product images from Sparkfun electronics

  3. How could we use an accelerometer to find tilt angle? Product images from Sparkfun electronics

  4. What’s the problem with using a low-pass filter to smooth out the data?

  5. What’s the problem with using a low-pass filter to smooth out the data?

  6. How could we use a gyroscope to find tilt angle? Product images from Sparkfun electronics

  7. How could we use a gyroscope to find tilt angle? theta = theta + thetaDot*dt Product images from Sparkfun electronics

  8. What’s the problem with integrating a gyroscope?

  9. What’s the problem with integrating a gyroscope?

  10. The accelerometer is good long term and the gyroscope is good short term. How can we put them together?

  11. A state estimator lets us combine these two measurements by using feedback Angle from accelerometer Signal from gyroscope Integrate Multiply by gain

  12. Let’s see if we can intuitively understand this feedback What would happen if the gyroscope signal was zero and our estimate was larger than the angle we measured with the accelerometer? Angle from accelerometer Integrate Multiply by gain

  13. Let’s see if we can intuitively understand this feedback Angle from accelerometer If is greater than , then we have a positive number here Integrate Multiply by gain

  14. Let’s see if we can intuitively understand this feedback Angle from accelerometer If is greater than , then we have a positive number here Integrate Multiply by gain Multiplied by a positive number

  15. Let’s see if we can intuitively understand this feedback Angle from accelerometer And integrated, which reduces our estimate of If is greater than , then we have a positive number here Integrate Then subtracted from zero Multiply by gain Multiplied by a positive number

  16. The block diagram may look confusing, but the code is easy accelerometer angle = atan2(accel_y,accel_x) angle error = estimated angle - accelerometer angle estimated angle = estimated angle + (gyroscope reading – angle error*gain)*dt

  17. In general, high gains mean we trust the sensor (accelerometer), low gains mean we trust the model (integrated gyroscope) Increasing gain

  18. It’s easy to see the improvement in performance over a low-pass filter Estimated Low-pass filtered

  19. A Kalman filter is an optimal way to find the estimator gain (or gains) • In this example, if you know the statistics of the accelerometer and the gyroscope, you could use a Kalman filter to find the gain, which will be a function of time. • You can also estimate the bias in the gyroscope, which will improve the quality of your estimation.

More Related