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

Abhimanyu EICS Exp 3

The document outlines Experiment No. 3 for Electronic Instrumentation and Control System, focusing on obtaining pole, zero, and gain values of a transfer function and plotting them on the S-plane. It includes MATLAB code for various tasks such as calculating transfer functions, step responses, and impulse responses of unity feedback systems. The experiment concludes with the successful plotting of the S-plane using the calculated values.
Copyright
© All Rights Reserved
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)
9 views8 pages

Abhimanyu EICS Exp 3

The document outlines Experiment No. 3 for Electronic Instrumentation and Control System, focusing on obtaining pole, zero, and gain values of a transfer function and plotting them on the S-plane. It includes MATLAB code for various tasks such as calculating transfer functions, step responses, and impulse responses of unity feedback systems. The experiment concludes with the successful plotting of the S-plane using the calculated values.
Copyright
© All Rights Reserved
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

Department of Electronics and Telecommunication Engineering

Experiment No. 3
Semester S.E. Semester III
Subject Electronic Instrumentation and Control System(EICS)
Faculty In-charge Prof. Amey Revandkar
Student Name Abhimanyu Surlia
Roll Number 21104A0001
Experiment No.: 03
Experiment Title: To obtain pole, zero and gain values of a Transfer function and draw its s-
plane.
Abstract/Theory: Poles and Zeroes :

Poles and Zeros Zeros are defined as the roots of the polynomial ofthe
numerator of a transfer function andpoles are defined as the roots of the
denominator of a transfer function .

S-plane :
Once the poles and zeros have been found for a given Laplace Transform,
they can be plotted onto the S-Plane. The S-plane is a complex plane with
an imaginary and real axis referring to the complex-valued variable zz.
The position on the complex plane is given by rejθrejθ and the angle from
the positive, real axis around the plane is denoted by θθ. When mapping
poles and zeros onto the plane, poles are denoted by an "x" and zeros by
an "o".

Aim: 1) Obtain pole, zero and gain values of a transfer


function
G(s)=(s^2+4s+3)/(s+5)(s^2+4s+7). Also obtain pole zero plot.

2) Write matlab code to obtain transfer function of a system from its


pole, zero, gain values. Also pole locations are -2,1, zero at -1 and gain is
7

3) Obtain step response of a unity feedback system having forward


path transfer function G(s)=1/(s+4)

4) Obtain impulse response of a unity feedback system having


forward path transfer function G(s)=1/(s+9)

5) Obtain step response of a unity feedback system having forward


path transfer function G(s)=1/(s^2+s+4)

6) Obtain step response of type ‘1’ system having forward path


transfer function G(s)=1/(s^2+s+4)
Department of Electronics and Telecommunication Engineering

Software
Required: Matlab online Simulink

Block 1) Code 1: num=[1 4 3] den=conv([1 5],[1


diagrams 4 7]) g=tf(num,den)
with their [z,p,k]=tf2zp(num,den) pzmap(g)
output:
Output:
Department of Electronics and Telecommunication Engineering

2) Code 2 :
num=[7 7]
den=conv([1 2],[1 -1]) g=tf(num,den)
[z,p,k]=tf2zp(num,den) pzmap(g)

Output -
Department of Electronics and Telecommunication Engineering

3) Code 3:

num=[1] den=[1 4] g=tf(num,den)


t=feedback(g,1) step(t,'g')
Output -
Department of Electronics and Telecommunication Engineering

4) Code 4:

num=[1] den=[1 9] g=tf(num,den)


t=feedback(g,1) impulse(t,'g')

Output -
Department of Electronics and Telecommunication Engineering

5) Code 5:

num=[1] den=[1 1 4]
g=tf(num,den) t=feedback(g,1) step(t,'g')
Output -
Department of Electronics and Telecommunication Engineering

6) Code :

num=[1]
den=[ 1 1 4 0]
g=tf(num,den) t=feedback(g,1)
step(t,'g')
Output -

Conclusio We have plotted the s-plane from values of poles and zeroes for the given transfer
n functions using matlab.

Referenc MATLAB ([Link])


es
Department of Electronics and Telecommunication Engineering

You might also like