what is the MATLAB code for Sketch the polar plot of the frequency response for the following loop transfer functions: i. Gc(s)G(s

조회 수: 96 (최근 30일)
  1. Sketch the polar plot of the frequency response for the following loop transfer functions: using MATLAB
i. Gc(s)G(s) = 1 / ((1 + 0.25s)(1 + 3s))
ii. Gc(s)G(s) = 5(s2 + 1.4s + 1) / (s – 1)2
iii. Gc(s)G(s) = (s – 8) / (s2 + 6s + 8)
iv. Gc(s)G(s) = 20(s + 8) / (s(s +2)(s + 2))
  1. Sketch the Bode diagram representation of the frequency response for the transfer functions give in problem (i).
  댓글 수: 2
Dyuman Joshi
Dyuman Joshi 2024년 1월 16일
@Jerome, Why have you posted your question as an answer, twice?
And as this is clearly a homework assignment, show what you have tried yet.
Jerome
Jerome 2024년 1월 16일
I'm trying to figure out the code for the polar and bode plot for this homework assignment, Can you help me out?

댓글을 달려면 로그인하십시오.

답변 (1개)

Sam Chak
Sam Chak 2024년 1월 16일
I believe that it is fair to ask for guidance on where you can find more information to solve problems by yourself. You asked for the command in MATLAB to sketch the polar plot of the frequency response. If I interpreted correctly, it should be the standard nyquist() command.
If you like more plot customization options, then use nyquistplot() command:
%% The System
G = tf(3, [1 2 3])
G = 3 ------------- s^2 + 2 s + 3 Continuous-time transfer function.
%% Nyquist Plot
nyquist(G), grid on

카테고리

Help CenterFile Exchange에서 Frequency-Domain Analysis에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by