0% found this document useful (0 votes)
28 views2 pages

Soft Adi 7

This document describes a Matlab experiment to plot the Nyquist plot of a transfer function. The transfer function given is G(s) = 2s^2 + s / s^3 + 4s + 8. The Matlab program defines the transfer function, calls the nyquist function to generate the Nyquist plot, and labels the axes and adds a grid. The output shows the resultant Nyquist diagram with the imaginary axis on the y-axis and real axis on the x-axis, providing a visual representation of the transfer function's stability.

Uploaded by

p1bbbb2
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)
28 views2 pages

Soft Adi 7

This document describes a Matlab experiment to plot the Nyquist plot of a transfer function. The transfer function given is G(s) = 2s^2 + s / s^3 + 4s + 8. The Matlab program defines the transfer function, calls the nyquist function to generate the Nyquist plot, and labels the axes and adds a grid. The output shows the resultant Nyquist diagram with the imaginary axis on the y-axis and real axis on the x-axis, providing a visual representation of the transfer function's stability.

Uploaded by

p1bbbb2
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/ 2

Software lab -03

enroll no.0112it111004

Experiment no. 7
Aim : wap to plot the nyquist of a given transfer function . Software required: matlab 7.0 Program: clc clf clear all close all %given transfer function g(s) = 2s^2+s/s^3+4s+8 n=[0 2 1 0] d=[1 0 4 8 ] sys= tf (n,d) nyquist(sys) x label('real axis') y label('imaginary axis') title('nyquist plot of given t.f') grid on. Output : n= 0 d= 1 0 4 8 2 1 0

Software lab -03


Transfer function: 2 s^2 + s / s^3 + 4 s + 8

enroll no.0112it111004

Resultant :

Nyquist Diagram 1 0.8 0.6 0.4


Imaginary Axis

0.2 0 -0.2 -0.4 -0.6 -0.8 -1 -1.4

-1.2

-1

-0.8

-0.6

-0.4

-0.2

Real Axis

Result: we have plot the nyquist- plot of given transfer function .

You might also like