Q.
finding distance traveled from accelerometer readings
finding distance traveled from accelerometer readings
Hi There,
I would appreciate any suggestions you have..
I've got a sparkfun serial tri-axis accelerometer
SparkFun Electronics - Serial Accelerometer Tri-Axis v5 - Dongle
I would like to look at only the x axis data and over a given timeframe find the distance traveled from the accelerometery data.
It outputs..
X=-0.983 Y=1.227 Z=-0.007
X=-0.987 Y=1.223 Z=-0.013
...
at an adjustable 250x per second
These units are in g's, 1g = 9.8m/s^2
What method can I use to take these readings as they come in and at the end of the time period have single number for the distance traveled (m)?
Any ideas most welcome. Thanks
I would appreciate any suggestions you have..
I've got a sparkfun serial tri-axis accelerometer
SparkFun Electronics - Serial Accelerometer Tri-Axis v5 - Dongle
I would like to look at only the x axis data and over a given timeframe find the distance traveled from the accelerometery data.
It outputs..
X=-0.983 Y=1.227 Z=-0.007
X=-0.987 Y=1.223 Z=-0.013
...
at an adjustable 250x per second
These units are in g's, 1g = 9.8m/s^2
What method can I use to take these readings as they come in and at the end of the time period have single number for the distance traveled (m)?
Any ideas most welcome. Thanks
A.
Well what you have are a periodic string of acceleration readings from the device between (0-590 Hz), so by recording the values over a period of time, you are essentially plotting an acceleration-time graph, for the x direction.
So what you need your software to do iis start recording data at a specified time
, and finish recording at another specified time
. Then to get back to the distance travelled, you need to integrate twice between
and
.
Numerical integration is what pops to mind, (which would be very staightforward, knowing your fequency, and each of your acceleration values) but you'd need to integrate twice, so I'm not too sure there is a method for this.
All I can think is to somehow interpolate the points as a function
(which I can see being difficult), and then calculate
.
Maybe someone else knows of some better methods. (You might do well to ask about it on a programming forum)
Well what you have are a periodic string of acceleration readings from the device between (0-590 Hz), so by recording the values over a period of time, you are essentially plotting an acceleration-time graph, for the x direction.
So what you need your software to do iis start recording data at a specified time




Numerical integration is what pops to mind, (which would be very staightforward, knowing your fequency, and each of your acceleration values) but you'd need to integrate twice, so I'm not too sure there is a method for this.
All I can think is to somehow interpolate the points as a function


Maybe someone else knows of some better methods. (You might do well to ask about it on a programming forum)