blob: 43c40ae5deebdd967e44bfcb75d9b3fa775fe0ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//Pulley
//refer fig. 20.6
//Let a be the resulting acceleration and T be the tension in the rope
//Angular acceleration of pulley
//alpha=1.667*a rad/sec^2
//Dynamic equilibrium condition for the block gives
//T=(600-(600*a)/(9.81))
//From kinetic equation for pulley
T=(200*7.358)/(9.81) //N
a=(600*9.81)/(800) //m/sec^2
printf("\nT=%.3f N\na=%.3f m/sec^2",T,a)
|