0% found this document useful (0 votes)
57 views

Signals - LAB Report - 01

This document is a lab report on signals and systems. It discusses completing four tasks related to computing Laplace transforms and partial fraction expansions of various functions, analyzing two circuits in the S-domain to determine stability, and providing a critical analysis of what was learned in the lab. Key skills covered include taking the Laplace transform, finding the inverse Laplace transform, expressing signals in partial fraction form, analyzing circuits using Laplace transforms, and determining stability using the bounded input bounded output criterion.

Uploaded by

Nini Cuku
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)
57 views

Signals - LAB Report - 01

This document is a lab report on signals and systems. It discusses completing four tasks related to computing Laplace transforms and partial fraction expansions of various functions, analyzing two circuits in the S-domain to determine stability, and providing a critical analysis of what was learned in the lab. Key skills covered include taking the Laplace transform, finding the inverse Laplace transform, expressing signals in partial fraction form, analyzing circuits using Laplace transforms, and determining stability using the bounded input bounded output criterion.

Uploaded by

Nini Cuku
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
You are on page 1/ 13

Signals & Systems

CHOUDHARY SAIF UL ISLAM


FA19 – BEE – 061
June 18, 2021
Lab – Report – 12
To : Ma`am MEHWISH MEHMOOD
Lab 12- Open ended lab
In - LAB :

Task 01: Compute the unilateral Laplace transform of the function


. Also evaluate the inverse Laplace transform of your result.

clc
clear all
close all

syms t s
t
s
f= -1.25+3.5.*exp(-2.*t)+1.25.* exp(-2.*t);
F = laplace(f,s)
f2= ilaplace(F,s)
Task 02: Compute the unilateral Laplace transform of the function .

clc
clear all
close all

syms t s
t
s
f= 1;
laplace(f,s)
Task 03: Express in the partial fraction form the signal

clc
clear all
close all

num = [1 0 -3 2];
den = [0 1 4 5];
[R,P,K] = residue(num,den)
Task 04: Express in the partial fraction form the signal

Verify your result by computing the inverse Laplace transform from both forms (partial

fraction and rational) and plot both of the results.

clc
clear all
close all

num = [0 0 1 5 4];
den = [1 0 0 0 1];
[R,P,K] = residue(num,den)
In-Lab Open ended Tasks
Task 01: Examine the network shown in figure 12.1 below. Assume the network is in steady
state prior tot=0 .
I. Plot the output current i (t ) , for t >0
II. Determine whether the system is stable or not?

i (t ) t=0

vC ( t)

Figure 12.1
clc
clear all
close all
syms t s
Vi=12;
V=laplace(Vi,s);
I=V/(2+s+10./s);
Io=ilaplace(I,t);
ezplot(Io,[0 10]);
ylim([-2 3])
xlabel('Time')
ylabel('Amplitude')
E=int(abs(Vi).^2,t,0,inf);

The system is unstable, because of the poles on the negative axis.


Task 02: For the circuit shown in figure 12.2, the input voltage is V i ( t ) =10 cos ( 2t ) u (t)
I. Plot the steady state output voltage v oss (t ) fort >0 assuming zero initial conditions.
II. Determine whether the system is stable or not?

V i (t) v o (t)

Figure 12.2

clc
clear all
close all

syms t s
input=10.*cos(2.*t).*heaviside(t);
lapin=laplace(input,s);
output=lapin.*((s.^2)./(s+2).^2);
vout=ilaplace(output,t);
ezplot(vout,[0 10])
xlabel('Time')
ylabel('Amplitude')
e = sum(int(abs(vout).^2,t,-inf,inf));

The system is BIBO unstable, as its output is in infinity state.


Critical Analysis :
In this LAB, I have learned how to find the laplace transform of given
function and I also have gone through inverse laplace. I have studied how to
analyze and solve the given circuits in S-domain. On the basis of bounded input
bounded output we can figure it out whether given circuit has BIBO stability or
not.

You might also like