0% found this document useful (0 votes)
12 views7 pages

B) Overdamped System Syms T S G (9) / ( (S 2) + (9 S) +9) N (9) D (1 9 9) G TF (N, D) Transfer Function: 9 - S 2 + 9 S + 9 Step (G)

This document contains MATLAB code that defines and analyzes four different types of systems: overdamped, underdamped, undamped, and critically damped. For each system, it defines the transfer function using symbolic variables, plots the step response, and uses pzmap to view the pole-zero map.
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
12 views7 pages

B) Overdamped System Syms T S G (9) / ( (S 2) + (9 S) +9) N (9) D (1 9 9) G TF (N, D) Transfer Function: 9 - S 2 + 9 S + 9 Step (G)

This document contains MATLAB code that defines and analyzes four different types of systems: overdamped, underdamped, undamped, and critically damped. For each system, it defines the transfer function using symbolic variables, plots the step response, and uses pzmap to view the pole-zero map.
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 7

B) OVERDAMPED SYSTEM

>> syms t s
>> G=(9)/((s^2)+(9*s)+9);
>> n=[9];
>> d=[1 9 9];
>> G=tf(n,d)
Transfer function:
9
------------s^2 + 9 s + 9
>> step(G)

>> pZmap(G)

B) UNDERDAMPED SYSTEM:
>> syms t s
>> G=9/((s^2)+(2*s)+9);
>> n=[0 0 9];
>> d=[1 2 9];
>> G=tf(n,d)
Transfer function:
9
------------s^2 + 2 s + 9

>> step(G)

>> pzmap(G)

B iii) UNDAMPED SYSTEM:


>> syms t s
>> G=[0 0 9];
>> G=9/((s^2)+9);
>> n=[0 0 9];
>> d=[1 0 9];
>> G=tf(n,d)
Transfer function:
9
------s^2 + 9

>> step(G)

>> pzmap(G)

B iv) CRITICALLY DAMPED:


>> syms t s
>> G=9/(s^2+6*s+9)
G=
9/(s^2 + 6*s + 9)
>> n=[0 0 9];
>> d=[1 6 9];

>> G=tf(n,d)
Transfer function:
9
------------s^2 + 6 s + 9
>> step(G)

>> pzmap(G)

You might also like