1.28
1.38
Take moments about the pivot, the restoring torque is T = (mg)(Lsinθ) For small angles, sinθ is approximately equal to θ in radians and KT = T/θ = mgL
1.39
The buoyant force is equal to the weight of the water displaced = vol x density. F = (πD2/4)(x)(ρg) ; k=F/x=(πD2/4)ρg
Use MATLAB to check the spring constant obtained from the slope of the f vs. x plot. Problem 1.49
1.49
x=[0,.3,.46,.7,.75,1.05,1.14,1.36,1.55]; f=[0:200:1600] p=polyfit(x,f,1) xfit=[0:.1:1.5] ffit=polyval(p,xfit) plot(x,f,'o',xfit,ffit),xlabel('x-cm'),ylabel('f-N')
1600 1400 1200 1000 800 600 400 200 0 -200
f-N
0
0.2
0.4
0.6
0.8 x - cm
1
1.2
1.4
1.6
1.59
x=[0.03:0.03:0.18] f=[45,102,165,245,360,512] xs=[-x,0,x] fs=[-f,0,f] p=polyfit(xs,fs,3)
(if “0” is included, it will wind up being put in 2 times) (makes symmetric about origin)