⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 vtb5_1.m

📁 The Engineering Vibration Toolbox is a set of educational programs written in Octave by Joseph C.
💻 M
字号:
function vtb5_1(m,c,k)%VTB5_1 Transmissibility ratio of a SDOF system.%  VTB5_1(m,c,k) plots the tranmissibility ratio for the system%  described by the mass m, damping coefficient c, and stiffness k.%  VTB5_1(zeta,w) plots the transmissibility ratio for the system%  described by the damping ratio zeta and undamped natural%  frequency w.clgif nargin==2   z=m;   w=c;else   w=sqrt(k/m);   z=c/(2*m*w);endr=([0:.001:2])';%Calculate various parts of equation 5.7 for TRTR1=ones(size(r))+(2*z.*r).^2;TR2=(ones(size(r))-r.^2).^2+(2*z.*r).^2;TR=sqrt(TR1./TR2);aa=version;ll=length(aa);title(['Transmissibility plot for \zeta = ',num2str(z),', \omega = ',num2str(w),' rad/s'])grid('on')ylabel('Transmissibility Ratio')xlabel('Dimensionless Frequency') plot(r,TR)__gnuplot_set__ nokey

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -