blob: 135af1d5a7be3cd60dd098d9a34903789e690fa1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//The step pulley
//refer fig. 20.3
theta=20 //radian
alpha=2 //rad/sec^2
omega0=0
//Using kinematic relation
t=sqrt(20) //sec
//Velocity of A
vA=8.944 //m/sec
vB=0.6*8.944 //m/sec
printf("\nt=%.3f sec\nvA=%.3f m/sec\nvB=%.3f m/sec",t,vA,vB)
|