Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                

Assignment 3 Question 1

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 3

ASSIGNMENT 3 QUESTION 1

1100 s
G ( s )= 2
s +1100 s+10⁵
1100 s
G(s)=
(s+ 1000)(s+ 100)
11s
¿
(
1000 1+
s
1000
1+
s
)(
100 )
taking s= jw
11 jѡ
G(s)=
1000 1+ (

1000
1+

100 )( )
The magnitude will be:

20 log |11|+20 log | jѡ|−20 log|1000|−20 log 1+ | jѡ


1000| |
−20 log 1+

100 |
The phase will be: ∠ 90−tan
−1
( 1000

)−¿ tan ( 100

−1
)¿
The bode plot is as follows
Using MATLAB to plot the function, the code is shown below:
% Create transfer function
s = tf('s');
H = (1100*s) / (s^2 + 1100*s + 10^5);%transfer function

% Plot Bode plot


figure;
bode(H);
grid on;
title('Bode Plot of the transfer function in question 1')

bode plot :

You might also like