vtb3_2

来自「vtoolbox3.5是振动数值模拟工具箱」· 代码 · 共 32 行

TXT
32
字号
function vtb3_2(m,c,k,Fo,tf,flag)%VTB3_2 Step response of a SDOF system.% VTB3_2(m,c,k,Fo,tf,1) plots the response of the system to an% step of magnitude Fo.  The input variables are the mass m,% the stiffness k, and the damping c.  The total time of the % response is tf.% VTB3_2(m,zeta,w,Fo,tf,2) plots the response of the system % described by the mass m, the damping ratio zeta, and the % undamped natural frequency w.    clcif flag == 1  num=Fo;  den=[m c k];else  zeta=c;  w=k;  num=Fo/m;  den=[1 2*zeta*w w^2];endt=0:tf/200:tf;x=step(num,den,t);plot(t,x)title('Step Response of the SDOF damped oscillator')ylabel('Displacement x(t) m')xlabel('time (sec)')

⌨️ 快捷键说明

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