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
 
This diagram was created with MATLAB.
Category:PNG created with MATLAB#Second%20order%20system%20response%20to%20step%20input.png

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

Public domain 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.
Category:Self-published work#Second%20order%20system%20response%20to%20step%20input.pngCategory:PD-self#Second%20order%20system%20response%20to%20step%20input.png Category:Step diagrams Category:MATLAB Plots Category:Images with Matlab source code
Category:Images with Matlab source code Category:MATLAB Plots Category:PD-self Category:PNG created with MATLAB Category:Pages using deprecated source tags Category:Self-published work Category:Step diagrams