blob: 151af432a3c5a08f7b98f8c97f765f0e13792255 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//Value of P
//refer fig. 17.9 (a),(b)and(c)
//Let t1 be the time required to bring the system to rest
N=1000 //N
F=0.2*1000 //N
//Applying impulse momentum equation upto stationary condition and leftward motion and solving those equations by trial and error method we get
P=645.74 //N
printf("Value of P is %.3f N",P)
|