vtb5_2.m
来自「在MATLAB中开发震动相关仿真时需要用到的」· M 代码 · 共 15 行
M
15 行
function vtb5_2(k,Y,r,TR)%VTB5_2 Base excitation force transmissibility for a SDOF system. % VTB5_2(k,Y,r,TR) returns the force transmitted through the base% to a SDOF system. The input variables are:% % k: stiffness (N/m)% Y: amplitude of base vibration (m)% r: ratio of driving frequency to system frequency% TR: Transmissibility ratioFt=k*Y*r^2*TR;disp(['The transmitted force is ',num2str(Ft),' newtons.'])
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?