blob: 69aed857808b523fd4a4402bbd01e7849c084809 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//Given that
M = 272 //in kg
R = 38*10^-2 //in meter
w = 14000* 2*%pi/60 //in rad/s
///Sample Problem 11-6
printf("**Sample Problem 11-6**\n")
I = 0.5* M* R^2
E = 0.5* I* w^2
printf("The energy released during the explosion is %eJ", E)
|