blob: 1fc3845201d7c1d4685d40994b92a905d3c923be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//Example 10.12
F=2.5;//Force (N)
r=0.26;//Radius of the lazy Susan tray (m)
net_tau=r*F;//Net torque (N.m)
delta_t=0.15;//Time (s)
delta_L=net_tau*delta_t;//Change in angular momentum (kg.m^2/s)
L=delta_L;//Final angular momentum since initial angular momentum is zero (kg.m^2/s)
printf('a.Final angular momentum = %0.2e kg.m^2/s',L)
M=4;//Mass of the lazy Susan (kg)
I=1/2*M*r^2;//Moment of inertia (kg.m^2)
omega=L/I;//Angular velocity (rad/s)
printf('\nb.Final angular velocity = %0.3f rad/s',omega)
//Openstax - College Physics
//Download for free at http://cnx.org/content/col11406/latest
|