vtb2_5.m
来自「振动工具箱」· M 代码 · 共 33 行
M
33 行
function VTB2_5(m,m0,e,z,rmin,rmax)%VTB2_5 Rotating unbalance.% VTB2_5(m,m0,e,zeta,rmin,rmax) plots the displacement and phase of % a system with rotating unbalance between the frequency % ratios rmin and rmax. The mass of the system is m and the damping% ratio is zeta. The paramaters of the unbalance are the mass m0 and% eccentricity e.r=rmin:(rmax-rmin)/1000:rmax;Xn=sqrt((r.^4)./((1-r.^2).^2+(2*z*r).^2));%(2.51)X=Xn.*m0*e/m;%(2.51)phi=atan2(2*z*r,1-r.^2);%(2.52)aa=version;ll=length(aa);plot(r,Xn)grid onxlabel('Frequency Ratio')ylabel('Normalized Displacement Magnitude')title('Normalized Displacement Magnitude versus Frequency Ratio')pauseplot(r,X)grid onxlabel('Frequency Ratio')ylabel('Displacement Magnitude')title('Displacement Magnitude versus Frequency Ratio')pauseplot(r,phi)grid onxlabel('Frequency Ratio')ylabel('Phase')title('Phase versus Frequency Ratio')
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?