blob: 80752aaad799965d0a06770b5aa09725af8a1780 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//Given that
Iwh = 1.2 //in kg.m/s^2
Wwh = 3.9*2*%pi //in rad/s
Ib = 6.8 //in kg.m/s^2
//Sample Problem 12-7
printf("**Sample Problem 12-7**\n")
//angular momentum conservation along the axis of rotation of the system
//Ib*Wb - Iwh*Wwh = Iwh*Wwh
Wb = 2*Iwh*Wwh/Ib
printf("The angular speed of the composite system is %frev/s", Wb/(2*%pi))
|