Acceleration at the center of the triangle

조회 수: 1 (최근 30일)
Abhikaran Amitkumar Bhatia
Abhikaran Amitkumar Bhatia 2022년 5월 16일
편집: James Tursa 2022년 5월 17일
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
Abhikaran Amitkumar Bhatia 2022년 5월 16일
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
Abhikaran Amitkumar Bhatia 2022년 5월 16일
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