File:Second order system response to step input.png
Summary
Description | Matlab plot of second order system response to step function input. The plot was made for . |
Date | |
Source | Own work |
Author | Mintz l |
MATLAB code
zeta=[0 0.1 0.3 0.5 0.7 1];
s=tf('s');
w_n=1;
for i=1:length(zeta)
z=zeta(i);
G=w_n^2/(s^2+2*z*w_n*s+w_n^2);
bode(G);
hold on;
end
grid on;
legend '\zeta=0' '\zeta=0.1' '\zeta=0.3' '\zeta=0.5' '\zeta=0.7' '\zeta=1'
title 'Bode plot (\omega_n=1)'
Licensing
![]() |
This work has been released into the public domain by its author, Mintz l. This applies worldwide. In some countries this may not be legally possible; if so: Mintz l grants anyone the right to use this work for any purpose, without any conditions, unless such conditions are required by law. |