File:Second order system bode.svg

Summary

Description
English: Second order system bode
Date
Source Own work
Author Nadavangel
SVG development
InfoField
 
The SVG code is valid.
 
This chart was created with MATLAB.
Category:Valid SVG created with MATLAB code#Second%20order%20system%20bode.svg
 
The file size of this SVG chart may be irrationally large because its text has been converted to paths inhibiting translations.
Category:Path text SVG
Source code
InfoField

MATLAB code

figure;
hold on;
zName={};
wn = 2*pi;
for z = [0 0.1:0.2:0.7 1]
  A = [0 1;-wn*wn, -2*z*wn];
  B = [0;1];
  C = [1 0];
  D = 0;
  G = ss(A,B,C,D);
  bodeplot(G);
  zName{end+1} = ['\zeta=' num2str(z)];
end
legend(zName);

Licensing

I, the copyright holder of this work, hereby publish it under the following license:
Creative Commons CC-Zero This file is made available under the Creative Commons CC0 1.0 Universal Public Domain Dedication.
The person who associated a work with this deed has dedicated the work to the public domain by waiving all of their rights to the work worldwide under copyright law, including all related and neighboring rights, to the extent allowed by law. You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission.

Category:CC-Zero#Second%20order%20system%20bode.svg
Category:Self-published work Category:MATLAB Plots
Category:CC-Zero Category:MATLAB Plots Category:Path text SVG Category:Self-published work Category:Valid SVG created with MATLAB code