用 C++ 计算旋转速度
基本上,在 C++ 中,如何计算车轮以 10 MPH 的速度旋转 360 度需要多长时间?我尝试过谷歌搜索,但没有任何结果。有什么想法吗?
像往常一样,我在这个网站上搜索了答案,但什么也没出现——除非我错过了一个。
谢谢。
Basically, In C++, how do I compute how long will it take for a car wheel to rotate 360 degrees while moving at a speed of 10 MPH? I've tried googling but nothing showed up. Any ideas?
As usual, I've searched this site for an answer but nothing showed up - unless I missed one.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你知道物体的速度和它移动的圆的半径,那么旋转一圈所需的时间为
每单位时间旋转的次数为
角速度
的值为
full_circle
取决于您的角度单位,例如 360 或 2*pi。If you know the speed of your object and the radius of the circle it moves on, then the time needed for one rotation is
The number of rotations per time unit is
The angular speed is
with the value of
full_circle
depending on your angular unit, e.g. 360 or 2*pi.