blob: 858265a7b2b0f880678e7b5e06b73c3be1eb112a (
plain)
1
2
3
4
5
6
7
|
//Bullet
//refer fig. 17.15
//Initial momentum of the system=Final momentum
v=21.31 //m/sec
//Kinetic Energy lost= Initial K.E- Final K.E
loss=((0.5*400^2)/(9.81*2)+(30*15^2)/(2*9.81))-((30.5*21.31^2)/(2*9.81)) //J
printf("\nLoss of energy=%.3f J",loss)
|