Simulation Lab Manual
Simulation Lab Manual
AIM: To verify Superposition theorem, Thevenin’s theorem, Norton’s theorem and Maximum power Transfer theorem.
SOFTWARE USED : MULTISIM / MATLAB Simulink
SUPERPOSITION THEOREM:
“In a linear network with several independent sources which include equivalent sources due to initial conditions, and linear dependent sources, the
overall response in any part of the network is equal to the sum of individual responses due to each independent source, considered separately, with
all other independent sources reduced to zero”.
Procedure:
Step 1:
1. Make the connections as shown in the circuit diagram by using MULTISIM/MATLAB Simulink.
2. Measure the response ‘I’ in the load resistor by considering all the sources 10V, 15V and 8V in the network.
Step 2:
1. Replace the sources 15V and 8V with their internal impedances (short circuited).
2. Measure the response ‘I1’ in the load resistor by considering 10V source in the network.
Step 3:
1. Replace the sources 10V and 8V with their internal impedances (short circuited).
2. Measure the response ‘I2’ in the load resistor by considering 15V source in the network.
Step 4:
1. Replace the sources 10V and 15V with their internal impedances (short circuited).
2. Measure the response ‘I3’ in the load resistor by considering 8V source in the network.
The responses obtained in step 1 should be equal to the sum of the responses obtained in step 2, 3 and 4. I=I1+I2+I3
Step 1 : By Considering All Sources In The Network
Continuous
powergui
V1=10V
V1=0V
R2=12 Ohms
R1=10 Ohms V2=15V R3=1 Ohm
Considerning 10V Source I1: 0.2667A With all the sources in the network I = 0.1111A
Considering 15V Source I2 : - 0.3333A I=I1+I2+I3
Considering 8V Source I3 : 0.1778A
Hence SuperPosition Theorem is Verified. Total Current : I1+I2+I3=0.2667-0.3333+0.1778
=0.1112A
THEVENIN’S THEOREM:
“Any two terminal network consisting of linear impedances and generators may be replaced at the two
terminals by a single voltage source acting in series with an impedance. The voltage of the equivalent
source is the open circuit voltage measured at the terminals of the network and the impedance, known
as Thevenin’s equivalent impedance, ZTH, is the impedance measured at the terminals with all the
independent sources in the network reduced to zero ”.
Procedure:
Step 1:
2. Measure the response ‘I’ in the load resistor by considering all the sources in the network.
1. Open the load terminals and replace all the sources with their internal impedances.
2. Measure the impedance across the open circuited terminal which is known as Thevenin’s
Resistance.
1. Open the load terminals and measure the voltage across the open circuited terminals.
Current measured from Thevenin’s Equivalent Circuit should be same as current obtained from the
actual circuit.
I = IL.
R2=12 Ohms
R1=10 Ohms V2=15V R3=1 Ohm
Z V3=0V
V1=0V
Rth=5.4545 Ohms
RL=15 Ohms
V1=2.273V
0.1111
I Theorem
= is
I Verified.
c
NORTON’S THEOREM:
“Any two terminal network consisting of linear impedances and generators may be replaced at its two
terminals, by an equivalent network consisting of a single current source in parallel with an impedance.
The equivalent current source is the short circuit current measured at the terminals and the equivalent
impedance is same as the Thevenin’s equivalent impedance”.
Procedure:
Step 1:
2. Measure the response ‘I’ in the load resistor by considering all the sources in the network.
1. Open the load terminals and replace all the sources with their internal impedances.
2. Measure the impedance across the open circuited terminal which is known as Norton’s
Resistance.
1. Short the load terminals and measure the current through the short circuited terminals.
Current measured from Norton’s Equivalent Circuit should be same as current obtained from the actual
circuit.
I = IL.
R2=12 Ohms
R1=10 Ohms V2=15V R3=1 Ohm
Z V3=0V
V1=0V
Norton'
s
Resista
nce
“In any circuit the maximum power is transferred to the load when the load resistance is equal to the
source resistance. The source resistance is equal to the Thevenin’s equal resistance ”.
Procedure:
Step 1:
1. Make the connections as shown in the circuit diagram by using Multisim/MATLAB Simulink.
2. Measure the Power across the load resistor by considering all the sources in the network.
1. Open the load terminals and replace all the sources with their internal impedances.
2. Measure the impedance across the open circuited terminal which is known as Thevenin’s
Resistance.
1. Open the load terminals and measure the voltage across the open circuited terminals.
4. Verify the power for different values of load resistors(i.e. RL>RTH and RL<RTH)
Power measured from the above steps results in maximum power dissipation when RL=RTH.
powergui
Step 1 : By Considering All Sources In The Network
Step 2: Finding Thevenin's Resistance
R1=10 Ohms V2=15V R2=12 Ohms R3=1 Ohm R1=10 Ohms V2=0V R2=12 Ohms R3=1 Ohm
Z V3=0V
V1=0V
cl
c;
cl
os
e
al
l;
cl
ea
r
al
l;
Maximum Power
0.24
0.22
0.2
0.18
0.16
0.14
0.12
0 5 10 15 20 25
Load Resistance in Ohms------->
AIM: To study the transient analysis of RLC, RL and RC circuits for sinusoidal and step inputs.
The transient response is the fluctuation in current and voltage in a circuit (after the
application of a step voltage or current) before it settles down to its steady state. This lab will
A. Resistors: As has been studied before, the application of a voltage V to a resistor (with
resistance
I = V/R
not result in an instantaneous change in the current through it. The i-v relationship is
This relationship implies that the voltage across an inductor approaches zero as the
current in the circuit reaches a steady value. This means that in a DC circuit, an
change in the voltage across it. Its i-v relationship is described by: i=C dv /dt
EXPERIMENT NO: 03
I) SERIES RESONANCE:
Aim: - To obtain the plot of of frequency vs. XL, frequency vs. XC , frequency vs. impedance and
frequency vs. current for the given series RLC circuit and determine the resonant frequency and check
by theoretical calculations.
R = 15Ω, C = 10 µF, L = 0.1 H, V = 50V vary frequency in steps of 1 Hz using Matlab.
%Program to find the Parallel Resonance clc;
clear all; close all; r=input('enter the
resistance value----->'); l=input('enter the
inductance value------>'); c=input('enter
the capacitance value----->');
v=input('enter the input voltage------->');
f=5:2:300; xl=2*pi*f*l; xc=(1./(2*pi*f*c));
x=xl-xc; z=sqrt((r^2)+(x.^2)); i=v./z;
%plotting the graph subplot(2,2,1);
plot(f,xl); grid; xlabel('frequency');
ylabel('X1'); subplot(2,2,2); plot(f,xc);
grid; xlabel('frequency'); ylabel('Xc');
subplot(2,2,3); plot(f,z); grid;
xlabel('frequency'); ylabel('Z');
subplot(2,2,4); plot(f,i); grid;
xlabel('frequency'); ylabel(
EXPERIMENT – 4
ROOT LOCUS:
AIM: To obtain the root locus of the system whose transfer function is defined by
(S+5)
G(S)= ---------------
S^2+7S+25
PROCEDURE:
PROGRAM:
%Program to find the root locus of transfer function%
s+5)
% -----------
% s^2+7s+25
THEORY:
The primary objective of this experiment is to design the compensation of single –input-single-output
linear time invariant control system.
Compensation is the modification of the system dynamics to satisfy the given specification. The
compensation is done by adding some suitable device in which is called as compensator. Compensator is realized
by such a way as to meet the performance specifications.
If sinusoidal input is applied to a network and if the steady state output has a phase lead, then the network
is called a lead network, and if the output has a phase lag then the network is called as a phase lag network.
Compensators are realized in our experiments using op-amps , electrical RC network as shown in figure.
where
PROCEDURE
The closed loop transfer function equation for the compensated system becomes
Hence
numc= [0 0 18.7 54.23]
denc= [1 7.4 29.5 54.23]
Hence
numc= [0 0 4]
denc= [1 2 4]
PROGRAM:
% Unit Step Response of Compensated and Uncompensated systems