Problem with convert acceleration to velocity and displacement
Mostra commenti meno recenti
Hi everyone,
I used DAQ to get acceleration, however, when I convert accleration to velocity and displacement (using 'cumtrapz' function) is not OK like the picture below:

Problem is that the velocity and displacement is increase with time. What i need to do make the velocity and displacement stable around 0.
Risposte (2)
Jos (10584)
il 9 Giu 2016
0 voti
Apparently there is an offset in your acceleration data. You can subtract a running mean
A(k) = ValueFromDaq - mean(A(1:k-1))
6 Commenti
vu ngothanh
il 10 Giu 2016
Modificato: vu ngothanh
il 10 Giu 2016
Star Strider
il 10 Giu 2016
Try subtracting the median instead of the mean.
vu ngothanh
il 10 Giu 2016
Star Strider
il 10 Giu 2016
As always, my pleasure.
The median is the value at which 50% of the values are above and 50% are below. The mean is significantly affected by extremes of the values, since it is the least-squared-error estimate of the centroid of a particular distribution. The median is not affected by the extremes.
Jos (10584)
il 10 Giu 2016
Good suggestion, Star Strider, to use the median.
vu ngothanh
il 13 Giu 2016
Bora Eryilmaz
il 21 Mar 2024
0 voti
The new convertVibration function in MATLAB R2024a release of the Predictive Maintenance Toolbox lets you compute baseline-corrected and filtered acceleration, velocity, and displacement signals from vibration measurements using a single sensor output from either an accelerometer, velocity sensor, or displacement sensor.
Categorie
Scopri di più su MATLAB in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!