blob: b7c7723bec55c14b40ed85a0e2086da5ebaf6a33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
//Determine velocity ratio,mechanical advantage,efficiency,ideal effort,effort lost in friction,ideal load and frictional resistance.
W=10000 //N
P=500 //N
//distance moved by effort
D=20 //m
d=0.8 //m
//mechanical advantage
MA=W/P
printf("\nMechanical advantage=%0.1d",MA)
//Velocity ratio
VR=D/d
printf("\nVelocity ratio=%0.1d",VR)
//efficiency
e=MA*100/VR //percent
printf("\nEfficiency=%0.1d percent",e)
//ideal effort
Pi=W/VR //N
printf("\nIdeal effort=%0.1d N",Pi)
//Effort lost in friction
E=P-Pi //N
printf("\nEffort lost in friction=%0.1d N",E)
//Ideal load
Wi=P*VR //N
printf("\nIdeal load=%0.1d N",Wi)
//Frictional resistance
F=Wi-W //N
printf("\nFrictional resistance=%0.1d N",F)
|