blob: 8d6241dc033a39d08bf484cb141d397b247ef8b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
clc
//initialisation of variables
n=400//rpm
U=6*n//deg/sec
t=150//deg/sec
d=360//degree
a=1.2//mm
//CALCULATIONS
Epl=U/t//deg/sec^2
Fhi=Epl*(t)^2/2//degree
V=Fhi/d//rev
T=(%pi*a*Epl)/d//m/sec^2
//RESULTS
printf('the number of revolution its executed after power=% f rev',T)
|