Acceleration at the center of the triangle

1 次查看(过去 30 天)
I am trying to calculate the acceleration at the node between the three points, photo attached. The points (1,2,3) measured accelerance via tri-axial acceleromter and now with the help of that info I want to calculate the acceleration at the center point. How can I proceed with this problem? Is there any function available to calculate the acceleration in matlab?
  5 个评论
Abhikaran Amitkumar Bhatia
Yes, the goal here is to calculate the acceleration at the screw with the help of the accelerance data collected by those three sensors. There is no rotating motion. Not the position and the sensors are not collecting data considering the gravity so they are only capturing the motion.
James Tursa
James Tursa 2022-5-16
编辑:James Tursa 2022-5-17
"... the sensors are not collecting data considering the gravity ..."
Not sure what this means. If your device is in contact with the ground then the sensors are certainly sensing the reaction force to gravity, even if the device is perfectly still on the ground. What do you mean "they are only capturing the motion"? Are you only considering the horizontal component of the acceleration? Or ...?

请先登录,再进行评论。

回答(1 个)

John D'Errico
John D'Errico 2022-5-16
编辑:John D'Errico 2022-5-16
If you have some known parameter at the three corners of a triangle, then the best estimator of that parameter at the center of the triangle is the average of the three values. This assumes the relation varies linearly over the triangle, and since you provide no reason to assume anything else, that is the best possible estimator.
In fact, you you have some uncertainties in the three parameter estimates at the corners, the mean should also be the minimum variance estimator.
And that means your answer is simple, just take the mean. And that is trivial.
acc_center = (a1 + a2 + a3)/3;
There is no explicit "function" necessary. Just one line of code.
  4 个评论
Torsten
Torsten 2022-5-16
I think the center of gravity of the triangle is the center of the circumcircle - thus the distance to the three points is the same and we again are at John's formula.
Abhikaran Amitkumar Bhatia
I attached one more photo of the actual case.Maybe that might make my explaination more clear.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Statistics and Machine Learning Toolbox 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by