blob: b6b55df36914ec312ed7e87a6b26a0f81a48905d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//speed of pinion
P=480 //N
Pw=1800 //W
v=Pw/P //m/sec
//module
m=8
d=25*m //mm
r=d/2000 //m
omega=v/r //rad/sec
N=(60*omega)/(2*%pi) //rpm
//rest is theory
printf("Speed of the pinion N=%.1f rpm",N)
|