Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
60 views8 pages

Exp 14 Nyquist Plot

The document outlines a series of experiments aimed at plotting Nyquist Plots of various transfer functions using MATLAB. Each experiment specifies the numerator and denominator for the transfer function, followed by the MATLAB commands to generate the Nyquist Plot. The document includes multiple examples, each with a unique title corresponding to the specific transfer function used.

Uploaded by

mitparmar1993
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 PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
60 views8 pages

Exp 14 Nyquist Plot

The document outlines a series of experiments aimed at plotting Nyquist Plots of various transfer functions using MATLAB. Each experiment specifies the numerator and denominator for the transfer function, followed by the MATLAB commands to generate the Nyquist Plot. The document includes multiple examples, each with a unique title corresponding to the specific transfer function used.

Uploaded by

mitparmar1993
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 PDF, TXT or read online on Scribd
You are on page 1/ 8

Experiment - 14

Nyqusit Plot
Aim: - Plotting the Nyqusit Plot of transfer function using MATLAB.

1) Draw Nyquist Plot for

Input: num=[1]; den=[1 1]; sys=tf(num,den); nyquist(sys); title('Nyquist 10.18.1'); Output:

2) Draw Nyquist Plot for Input: num=[1]; den=[1 1 0]; sys=tf(num,den); nyquist(sys); title('Nyquist 10.18.2'); Output:

3) Draw Nyquist Plot for Input: num=[1]; den=[1 -1 0]; sys=tf(num,den); nyquist(sys); title('Nyquist 10.18.3');

Output:

4) Draw Nyquist Plot for Input: num=[1]; den=[1 5 0 0]; sys=tf(num,den); nyquist(sys); title('Nyquist 10.18.6'); Output:

5) Draw Nyquist Plot for Input: num=[20]; den=[0.05 0.6 1 0]; sys=tf(num,den); nyquist(sys); title('Nyquist 10.18.7'); Output:

6) Draw Nyquist Plot for Input: num=[60]; den=[1 6 13 20]; sys=tf(num,den); nyquist(sys); title('Nyquist 10.18.8');

Output:

7) Draw Nyquist Plot for Input: num=[2.2]; den=[1 3 4 2 0]; sys=tf(num,den); nyquist(sys); title('Nyquist 10.18.9'); Output:

You might also like