2021-12-03 11:13 AM
There is too much uncertainty ? Would be possible to use this measurements to evaluate mechanical vibration according to ISO10816-3 ?
Solved! Go to Solution.
2021-12-09 03:50 AM
Hi @LBord.1 .
you can refer to this thread for a precise description of the calculation performed by the MotionSP library.
In particular, the Speed can be “estimated�? starting from the acceleration values through a numerical integration method.
One of the most used method is known as TRAPEZOIDAL Rule, and it has been implemented inside the MotionSP.
The “lambda�? factor is just a parameter fixed to 0.5, giving the opportunity to the user to change. In this way is possible to estimate the speed using a recursive formula as described below.
Note that every speed value is evaluated using two consecutive acceleration samples, the time sampling (DT = 1/ODR), and the previous speed value.
If my reply answered your question, please click on Select as Best at the bottom of this post. This will help other users with the same issue to find the answer faster.
-Eleon
2021-12-09 03:50 AM
Hi @LBord.1 .
you can refer to this thread for a precise description of the calculation performed by the MotionSP library.
In particular, the Speed can be “estimated�? starting from the acceleration values through a numerical integration method.
One of the most used method is known as TRAPEZOIDAL Rule, and it has been implemented inside the MotionSP.
The “lambda�? factor is just a parameter fixed to 0.5, giving the opportunity to the user to change. In this way is possible to estimate the speed using a recursive formula as described below.
Note that every speed value is evaluated using two consecutive acceleration samples, the time sampling (DT = 1/ODR), and the previous speed value.
If my reply answered your question, please click on Select as Best at the bottom of this post. This will help other users with the same issue to find the answer faster.
-Eleon
2021-12-09 04:33 AM
Thank you @Eleon BORLINI !!!