blob: e231e7bed30d0e6c2eed50b856bdee2907d71886 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//machine efficiency and effort lost in friction
//For third order system of pulleys
W=1000
VR=(2^3)-1
eta=(1000*100)/(180*7) //percent
//ideal effort
Pi=(W)/(VR) //N
P=180 //N
//effort lost in friction
Pl=P-Pi //N
printf("Efficiency=%.2f percent\nEffort lost in friction=%.2f N",eta,Pl)
|