Ee-312 Circuit Theory II - 2012-1
Ee-312 Circuit Theory II - 2012-1
Name:
Roll Number:
Class:
Batch:
Department :
Semester/Term :
Circuit Theory II
Contents
CONTENTS
Lab.
Dated
No.
List of Experiments
Page
No.
Introduction To MATLAB
1-2
Using MATLAB
Plot and analyze instantaneous power for R,
L and C networks. Calculate power, and
power factor for single phase circuits using
phasors in MATLAB. Single and three phase
analysis.
3-7
8-10
11-13
14-16
17-20
21-24
25-26
27-28
10
29-30
11
Analysis of LC Circuit
31-32
12
13
14
Remarks
33-35
36-37
38-39
Revised 2012 MG
Circuit Theory II
Introduction to MATLAB
LAB SESSION 01
INTRODUCTION TO MATLAB
IN-LAB EXERCISE 1
1.1.
HOW TO START:
Step 1: Make a new M file. (From Menu bar
select New and then select M-File)
Step 2: When Editor open, write your
program.
Step 3: After writing the program, select
Debug from menu bar and then select run and
save.
Further information can be obtain from the
website www.mathworks.com
Some basic commands are;
clear all: Clear removes all variables from the
workspace. This frees up system memory.
close all: Close deletes the current figure.
clc
: Clear Command Window.
%
: To write comments
Graphical commands:
plot : Linear 2-D plot.
grid : Grid lines for two- and threedimensional plots.
xlabel : Label the x axis, similarly ylabel for
y axis labeling.
legend : Display a legend on graphs.
title : Add title to current graph.
-1-
1.2.
Circuit Theory II
Introduction to MATLAB
1.3.
MATLAB SCRIPT:
clear all; close all; clc;
t=0:0.1:10;
% t is the time varying from 0 to 10 in steps
of 0.1s
v1=5*cos(2*t+0.7854);
%degrees are concerted in radians
taxis=0.000000001*t;
plot(t,taxis,'k',t,v1,'r')
grid ; hold;
v2=2*exp(-t/2);
plot (t,v2,'g')
v3=10*exp(-t/2).*cos(2*t+0.7854);
plot (t,v3,'b')
title('Plot of v1(t), v2(t) and v3(t)')
xlabel ('Time in seconds')
ylabel ('Voltage in volts')
legend('taxis','v1(t)','v2(t)','v3(t)');
NOTE:
Circuit Theory II
LAB SESSION 02
2.2. PLOT INSTANTANEOUS
POWER:
v(t)=20cos(377t)
i(t)=5cos(377t)
for t=0 to 20e-4 seconds
IN-LAB EXERCISE 2
OBJECTIVE OF LAB-2:
1. Plot and analyze instantaneous
power for R, L and C networks
supplied by AC source.
2. Calculate power, and power
factor for single phase circuits
using phasors in MATLAB and
their related commands.
3. Single and three phase circuit
analysis.
NEW COMMANDS IN LAB 2: abs,
angle, inv, fprintf.
MATLAB SCRIPT:
clear all; close all; clc;
%Resistive Circuit, current i(t), voltage
v(t), t is time
t=0:1e-4:200e-4
v=20*cos(377*t);
i=5*cos(377*t);
p=v.*i;
plot(t,v,'r',t,i,'b',t,p,'k');
title('Voltage and Current of RL
circuit');
xlabel('sec');
ylabel('Voltage(v) and Current(mA)')'
legend('v','i','p');grid;hold;
MATLAB SCRIPT:
clear all; close all; clc;
% RL circuit, current i(t), voltage v(t), t
is time
t=0:1e-3:20e-3
v=20*cos(377*t);
%Converting angle in radians
a_rad=(60*pi/180);
i=5*cos(377*t - a_rad);
plot(t,v,'r',t,i,'b');
title('Voltage and Current of RL
circuit');
xlabel('sec');
ylabel('Voltage(v) and Current(mA)')'
legend('v','i');
grid;
hold;
-3-
Circuit Theory II
p1=va.*ia;p2=vb.*ib;p3=vc.*ic;
pt=p1+p2+p3; % you can add hold
command here
plot(x,p1,'r',x,p2,'g',x,p3,'b',x,pt,'*');
grid on;
PHASORS IN MATLAB
Euler's formula indicates that sine waves
can be represented mathematically as
the sum of two complex-valued
functions:
MATLAB SCRIPT:
clear all; close all; clc;
v=10+10*j;
x=abs(v);
fprintf('Vabsolute: %f \n',x); or
display (x)
In this program two new commands are
introduced; abs (for absolute value of a
complex quantity) and fprintf (for
printing a value where %f is defining
that fixed value & \n new line). Answer:
absolute=10
2.5. DETERMINE,
Average power, power factor and rms
value of voltage when
v(t)=10cos(120 t+30) and
i(t)=6cos(120 t+60)
MATLAB SCRIPT:
clear all; close all; clc;
t=1/60;
Vm=10;%Maximum value of voltage
Im=6;
Vtheta=30*pi/180; %angle in radians
Itheta=60*pi/180;
p.f=cos(Vtheta-Itheta); %power factor &
avg. power
P_avg=(Vm*Im/2)*cos(Vtheta-Itheta);
V_rms=Vm/sqrt(2);
=
This can be written in matrix form: A.I
= B. To solve this in MATLAB we will
use command: I = inv(A)*B.
-4-
Circuit Theory II
(1)
MATLAB SCRIPT:
clear all; close all; clc;
A=[600+1250j 100j;100j 60-150j];
B = [25;0];
I = inv(A)*B
MAGN=abs(I);
%Converting angle from degrees into
radians
ANG=angle(I)*180/pi;
fprintf('MAGNITUDE: %f \n',MAGN);
fprintf('ANGLE: %f \n',ANG);
(2)
(3)
Substituting the element values in the above
three equations and simplifying, we get the
matrix equation,
=
The above matrix can be written as,
[I]=[Y][V]
We can compute the vector [v] using the
MATLAB command;
V=inv(Y)*I
Where inv(Y) is the inverse of the
matrix [Y]
0.0007 - 0.0107i
MAGNITUDE: 0.017262, MAGNITUDE:
0.010685
ANGLE: -64.522970, ANGLE: -86.324380
MATLAB SCRIPT
clear all; close all; clc;
Y = [0.05-0.0225*j 0.025*j -0.0025*j;
0.025*j 0.01-0.0375*j 0.0125*j;
-0.0025*j 0.0125*j 0.02-0.01*j];
c1 = 0.4*exp(pi*15*j/180);
I = [c1;0;0]; % current vector entered as
column vector
V = inv(Y)*I; % solve for nodal
voltages
v3_abs = abs(V(3));
v3_ang = angle(V(3))*180/pi;
fprintf('Voltage V3, magnitude: %f \n',
v3_abs);
fprintf(' Voltage V3, angle in degree:
%f', v3_ang);
fprintf('Magnitude of i1\n',i1_abs);
fprintf('Angle of i1: %f \n',i_ang);
2.7. CALCULATE
V3 (t) In Figure, if R1 = 20 , R2 = 100
, R3 = 50 , and L1 = 4 H, L2 = 8 H and
C1 = 250F, when w = 10 rad/s.
Solution: Using nodal analysis, we
obtain the following equations. At node
1, node 2 and node 3 the equations are;
-5-
Circuit Theory II
%f \n',MAGNb,ANGb);
Icn=abs(Ian)*exp((ANGa+120)*pi*j/18
0);
MAGNc=abs(Icn);
ANGc=angle(Icn)*180/pi;
fprintf(' MAGNITUDE: %f \n ANGLE:
%f \n',MAGNc,ANGc);
2.9. CALCULATE
In Figure, showing an unbalanced wyewye system, find the phase voltages
Van, Vbn, and Vcn.
Solution: Using KVL, we can solve for I1, I2
and I3. From the figure;
Solution:
A
balanced Y-Y
system is a
three-phase
system with a
balanced
Yconnected source and a balanced Yconnected load. It can be converted in a
single phase equivalent circuit as shown
in figure.
Zy is a combination of transmission,
source and load impedance. Therefore,
Zy = (15+j6) ,
Currents are,
Ia =Van/Zy, Ib=Ia
120 and
Ic=Ia
240
MATLAB SCRIPT
clear all; close all; clc;
Van=110;
Zy=15+6*j;
Ian=Van/Zy
MAGNa=abs(Ian);
ANGa=angle(Ian)*180/pi;
fprintf(' MAGNITUDE: %f \n ANGLE:
%f \n',MAGNa,ANGa);
Ibn=abs(Ian)*exp((ANGa120)*pi*j/180);
MAGNb=abs(Ibn);
ANGb=angle(Ibn)*180/pi;
fprintf(' MAGNITUDE: %f \n ANGLE:
I inv(Z)*V.
MATLAB SCRIPT
% Z is impedance matrix, V is voltage
vector and
% I is current vector
Z = [6-13*j 0 0;0 4+2*j 0;0 0 6-12.5*j];
c2 = 110*exp(j*pi*(-120/180));
c3 = 110*exp(j*pi*(120/180));
-6-
Circuit Theory II
three-phase
generator
with
an
impedance of 0.4+j0.3 per phase is
connected Y-connected balanced load
with an impedance of 24 + j19 per
phase. The line joining the generator and
the load has an impedance of 0.6 +
j0.7 per phase. Assuming a positive
sequence for the source voltages and
that Van = 120 30o V, find: (a) the line
voltages & the line currents using
MATLAB.
Circuit Theory II
LAB SESSION 03
Object:
-8-
Circuit Theory II
Apparatus:
Digital Multimeter, Power Supply (10V, 50Hz sinusoidal), Resistors of various values ,
connecting wires and Breadboard.
Theory:
The maximum power transfer theorem states that when the load resistance is
equal to the source's internal resistance, maximum power will be developed in the
load or An independent voltage source in series with an impedance Zth or an
independent current source in parallel with an impedance Zth delivers a maximum
average power to that load impendence ZL which is the conjugate of Zth or ZL =
Zth. Since most low voltage DC power supplies have a very low internal
resistance (10 ohms or less) great difficulty would result in trying to affect this
condition under actual laboratory experimentation. If one were to connect a low
value resistor across the terminals of a 10 volt supply, high power ratings would
be required, and the resulting current would probably cause the supply's current
rating to be exceeded. In this experiment, therefore, the student will simulate a
higher internal resistance by purposely connecting a high value of resistance in
series with the AC voltage supply's terminal. Refer to Figure 13.1 below. The
terminals (a & b) will be considered as the power supply's output voltage
terminals. Use a potentiometer as a variable size of load resistance. For various
settings of the potentiometer representing RL, the load current and load voltage
will be measured. The power dissipated by the load resistor can then be
calculated. For the condition of
RL = Ri, the student will verify by measurement that maximum power is developed in the
load resistor.
Procedure
1. Refer to Figure 1, set Rin equal to 1 K representing the internal resistance of the
ac power supply used and select a 10 K potentiometer as load resistance RL.
Vin=10V,50Hz.
a. Using the DMM set the potentiometer to 500 ohms.
b. Connect the circuit of Figure 1. Measure the current through and the voltage across
RL. Record this data in Table 1.
c. Reset the potentiometer to 1K and again measure the current through and the
voltage across RL. Record.
-9-
Circuit Theory II
d.
Continue increasing the potentiometer resistance in 500 ohm steps until the value 10
K is reached, each time measuring the current and voltage and record same in
Table 1. Be sure the applied voltage remains at the fixed value of 10 volts after each
adjustment in potentiometer resistance.
1. For each value of RL in Table 1, calculate the power input to the circuit using the
formula:
Pinput = Vinput x IL
2.
For each value of RL in Table 1, calculate the power output (the power developed
in RL) using the formula:
Pout = VRL x IL.
3.
For each value of RL in Table.1, calculate the circuit efficiency using the formula:
% efficiency = Pout/Pin x 100.
4.
On linear graph paper, plot the curve of power output vs. RL. Plot RL on the
horizontal axis (independent variable). Plot power developed in RL on the vertical axis
(dependent variable). Label the point on the curve representing the maximum power.
Observation:
RL ( )
IL (mA)
VRL (V)
Pin (mW)
500
1000
1500
2000
2500
3000
3500
4000
4500
5,000
6,000
7,000
8,000
- 10 -
Pout (mW)
% eff.
Circuit Theory II
Polyphase System
LAB SESSION 04
Object: Verification and Proofs of Single Phase and Polyphase systems using
MATLAB
IN LAB EXERCISE
TASK 1: Plot the line voltages and phase voltages as sinusoids when van = 2sin(wt).
MATLAB SCRIPT:
clear all; close all; clc;
t=-.01:0.00005:0.02;
f=50;
v1=2*sin(2*pi*f*t);
v2=2*sin(2*pi*f*t-120*pi/180);
v3=2*sin(2*pi*f*t-2*120*pi/180);
V1=(v1-v2);
V2=(v2-v3);
V3=(v3-v1);
plot(t,v1,'*b',t,v2,'g',t,v3,'r',t,V
1,'x',t,V2,'o',t,V3,'*r');
grid;
TASK 2: Plot the neutral voltages for Van=1L0, Vbn=1L-90 and Vcn=1L-240
MATLAB SCRIPT:
clear all; close all; clc;
t=-.01:0.00005:0.02; f=50;
v1=2*sin(2*pi*f*t);
v2=2*sin(2*pi*f*t-90*pi/180);
v3=2*sin(2*pi*f*t-2*120*pi/180);
Vn=v1+v2+v3
plot(t,v1,'r',t,v2,'y',t,v3,'b',t,Vn,
'k*');grid;
TASK 3: When load connected is same and power consumed is same in two systems (3
phase and 2 phase circuits) compare the resultant plot and comment on two phase
system.
MATLAB SCRIPT:
clear all; close all; clc;
t=-.01:0.00005:0.02;
f=50;
v1=2*sin(2*pi*f*t);
v2=2*sin(2*pi*f*t-120*pi/180);
- 11 -
Circuit Theory II
Polyphase System
v3=2*sin(2*pi*f*t-2*120*pi/180);
i1=v1/18;i2=v2/18;i3=v3/18;
%R=1 ohm
p1=v1.*i1;p2=v2.*i2;p3=v3.*i3;
pt=p1+p2+p3;
plot(t,p1,'r',t,p2,'g',t,p3,'b'
,t,pt,'*')
grid;figure;
va=2*sin(2*pi*f*t);
vb=2*sin(2*pi*f*t-90*pi/180);
ia=va/12;ib=vb/12;
pa=va.*ia; pb=vb.*ib;
pt1=pa+pb
plot(t,pa,'r',t,pb,'g',t,pt1,'k
*');
TASK 4: Prove that the power measured by two wattmeter at each and every instant is
same as the power compute p(t) = vaia+vbib+vcic.
MATLAB SCRIPT:
clear all; close all; clc;
t=-.01:0.00005:0.02;
f=50;
v1=2*sin(2*pi*f*t);
v2=2*sin(2*pi*f*t-120*pi/180);
v3=2*sin(2*pi*f*t-2*120*pi/180);
%At unity power factor and
% For Task R=1 ohm
i1=2*sin(2*pi*f*t);
i2=2*sin(2*pi*f*t-120*pi/180);
i3=2*sin(2*pi*f*t-2*120*pi/180);
V1=(v1-v2);
V2=(v2-v3);
V3=(v3-v1);
p1=v1.*i1;p2=v2.*i2;p3=v3.*i3;
pt=p1+p2+p3;
plot(t,p1,'r',t,p2,'g',t,p3,'b',t
,pt,'*')
grid; figure;
%Two Wattmeter method
w1=(v1-v3).*i1;
w2=(v2-v3).*i2;
w=w1+w2;
plot(t,w1,'r',t,w2,'g',t,w,'b')
grid; figure; plot(t,pt,'y*',t,w,'b');
- 12 -
Circuit Theory II
Polyphase System
MATLAB SCRIPT:
clear all; close all; clc;
t=-.01:0.00005:0.02;
f=50;
v1=2*sin(2*pi*f*t);
v2=2*sin(2*pi*f*t-120*pi/180);
v3=2*sin(2*pi*f*t-2*120*pi/180);
%At unity power factor and R=1 ohm
i1=2*sin(2*pi*f*t-90*pi/180);
i2=2*sin(2*pi*f*t-120*pi/180-90*pi/180);
i3=2*sin(2*pi*f*t-2*120*pi/180-90*pi/180);
V1=(v1-v2);V2=(v2-v3);V3=(v3-v1);
p1=v1.*i1;p2=v2.*i2;p3=v3.*i3;
pt=p1+p2+p3;
plot(t,p1,'r',t,p2,'g',t,p3,'b',t,p
t,'*')
grid; figure;
%Two Wattmeter metod
w1=(v1-v3).*i1;
w2=(v2-v3).*i2;
w=w1+w2;
plot(t,w1,'r',t,w2,'g',t,w,'b')
grid; figure;
plot(t,pt,'y*',t,w,'b');
ylim([-6 6]);
- 13 -
Circuit Theory II
LAB SESSION 05
IN-LAB EXERCISE
1. Plot unit step, unit ramp, unit impulse, and t2 using MATLAB commands
ones and zeros.
MATLAB SCRIPT:
close all; clear all; clc;
t =0:0.001:1;
f=0:1:100;
y1 = [1, zeros(1,99)];
% impulse, zeros(1,99)returns
%an m-by-n matrix of zeros
y2 = ones(1,100);
% step
y3 = f;
% ramp
y4 = f.^2;
% Now start plottings
subplot(2,2,1)
plot(y1,'r');grid;
subplot(2,2,2)
plot(y2,'b');grid;
subplot(2,2,3)
plot(f,y3,'m');grid;
subplot(2,2,4)
plot(f,y4,'b');grid;
2. Plot f(t)=t+(-t)
MATLAB SCRIPT:
close all;clear all; clc;
tx=0:0.5:10;
y1=tx;
y2=-tx;
y=y1+y2;
plot(tx,y1,'r',tx,y2,'g',tx,y,'b');grid;
3. Plot f(t)=tu(t)-tu(t-5)
MATLAB SCRIPT:
close all;clear all;clc;
t1=0:0.05:10;
t1_axis=0*t1;
%plot(Y) plots, for a vector Y, each %element against its index. If Y
is a
- 14 -
Circuit Theory II
MATLAB SCRIPT:
close all;clear all;clc;
t=0:0.00005:0.1;
y=sin(t*2*pi*10)
subplot(2,1,1);
plot(t,y,'g');grid;hold;
z=sin(t*2*pi*10);
a=find(z==1)
z(1:a)=0;
plot(t,z,'r');
u=y-z;
subplot(2,1,2);
plot(t,u,'yo');
MATLAB SCRIPT:
t=[0:1:150];
f = 1/20;
r=0.98;
signal=(r.^t).*exp(j*2*pi*f*t);
figure;
plot3(t,real(signal),imag(signal));
grid on;
xlabel('Time');
ylabel('real part of exponential');
zlabel('imaginary part of exponential');
title('Exponential Signal in 3D');
%Select one command of view at a time
% view([0 0 0])
% view([1 0 0]) %(positive x-direction is up) for 2-D views
% view([0 0 1]) %(positive z-direction is up) for 2-D views
- 15 -
Circuit Theory II
a. Plot f(t)=e-st in 3-D and show its different views through animation.
MATLAB SCRIPT:
clear all; close all; clc;
t=[0:1:150];
f = 1/20;
r=0.98;
signal=(r.^t).*exp(j*2*pi*f*t);
m=[0 0 1;0 1 0;1 0 0;0 0 0];
for k = 1:4
plot3(t,real(signal),imag(signal));grid on;
view(m(k,:))
pause(1)
end
Task 1.2
TASK: Plot the curves a = 0.9, b = 1.04, c = -0.9, and d = -1.0.
Plot at, bt , ct and dt when t=0:1:60. Comment on the plot.
- 16 -
Circuit Theory II
LAB SESSION 06
pretty(a)
% Second example
F1=10*(s+2)/(s*(s^2+4*s+5))
a1=ilaplace(F1)
pretty(a1)
IN-LAB EXERCISE
Objective:
1. Apply Laplace transform using
MATLAB
2. Solving complex Partial fraction
problems easily.
3. Understanding
Pole
zero
constellation.
4. Understanding s-plane.
symbols
g=sin(3*t);
G=laplace(g)
a=simplify(G)
pretty(a)
Roots of Polynomials
- 17 -
Circuit Theory II
expansion
1 6 12 10 3
In other words,
(s2 +2s+l)(s2 +4s+3)=s4 +6s3
+12s2 +l0s+3
H (s)
s 1
Second Example:
clear all; close all;clc
num=[1 2 3 4];
den=[1 6 11 6];
[r p k]=residue(num,den)
a=[1 2 1];
poIyvaI(a,[1:3])
1.5.
ans =
4 9 16
To produce the vector of values A(1) =
4, A(2) = 9, and A(3) = 16.
First Example:
s3
s2
6s 2
H (s)
s 3
5
s 2
Evaluating Polynomials
s2 1
s 1 s 2 s 3
H=tf([num],[den])
1
11s 6
[r p k]=residue(num,den)
Result on command window will be:
r=
5.0000
-5.0000
1.0000
p=
-3.0000
-2.0000
-1.0000
k=[]
Circuit Theory II
pzmap(H)
Second Example:
MATLAB SCRIPT:
First Example:
Let F(s) = 3+4s, and s= +j , suppose
that only real component is present and
w=0.
Now we will plot magnitude of F(s)
with respect to s.
MATLAB SCRIPT:
clear all; close all; clc;
sigma=-6:0.0005:6;
omg=0;
s=sigma+j*omg;
z1=3+4*s;
z=abs(z1);
plot(s,z);
grid;
ylim([-10 30])
xlabel('Sigma')
ylabel('Magnitude of F(s)')
%Phase plot
z_phase=atan(4*omg./3)
z_phase1=rad2deg(z_phase)
plot(omg,z_phase1);grid;
xlabel('Omega');
ylabel('Phase Plot of
F(s)');
Find
x
intercept
and
y
intercept, that is the value of
omega at which function is equal
to zero and value of function
when omega equal to zero.
In
Second Example:
F(s) = 1 / (s2+5s+6)
- 19 -
Circuit Theory II
F(s) = s
Task 1.2:
Find Inverse Laplace of:
1. G(s)=10(s+2)/s(s2+4s+5)
2. F(s)=0.1/(0.1s+1)
5
5
1
3. H ( s )
s 3
s 2
s 1
MATLAB SCRIPT:
clear all;close all; clc;
%Magnitude Plot
omg=-6:0.0005:6;
sigma=0;
s=sigma+1i*omg;
z1=1./(s.^2+5*s+6);;
z=abs(z1);
plot(omg,z);
grid;
xlabel('Omega');
ylabel('Magnitude of
F(s)');figure;
%Phase plot
z_phase=atan((5*omg)./(6omg.^2))
z_phase1=rad2deg(z_phase)
plot(omg,z_phase1);grid;
xlabel('Omega');
ylabel('Phase Plot of
F(s)');
1.7.
Task 1.3
Task 1.4
1. Draw the pole zero constellation
for H(s)=25/s2+s+25
- 20 -
Circuit Theory II
S-Domain
LAB SESSION 7
(or X and Y are zero) or
not.
IN-LAB EXERCISE
Objective:
Understanding F(s) = s
% Transfer Function is
F(s)=s
close all; clear all; clc;
num=[1 0]
den=[1]
H=tf([num],[den])
% Pole Zero constellation
pzmap(H)
figure;
ANALYSIS :
ADD COMMANDS:
View([0 0 1])
Put data cursor on the most
midpoint and see if
function is zero when s=0
- 21 -
|F(s)|
Circuit Theory II
S-Domain
%Creating a Matrix
[X,Y]=meshgrid(sigma,omega)
;
ADD COMMANDS:
% Plot when sigma is zero
plot(omega,Z(omega==0,:));
xlabel('Omega');
ylabel('Magnitude');
figure;
% Plot when Omega is zero
plot(sigma,Z(:,omega==0))
xlabel('Sigma');ylabel('Mag
nitude')
Z=abs((X+j*Y)+2);
surf(X,Y,Z);
xlabel('Sigma');
ylabel('Omega');
zlabel('Magnitude');
%Untill here check the
output
ANALYSIS:
ADD command
View([0 0 1])
Put data cursor on the most
midpoint and see if
function is zero when s=-2
(or X and Y are zero) or
not.
|F(s)|
Omega
|F(s)|
Sigma
2.
- 22 -
Circuit Theory II
S-Domain
ylim([0 10])
3.
[X,Y]=meshgrid(sigma,omega)
;
Z=abs(1./((X+j*Y)))
a=surf(X,Y,Z); hold;
figure;
% Plot when sigma is zero
plot(sigma,Z(omega==0,:));
xlabel('Sigma');
ylabel('Magnitude');
figure;
% Plot when w is only
positive
plot(omega,Z(:,sigma==0))
xlabel('Omega')
ylabel('Magnitude')
xlabel('X-Axis: Sigma')
ylabel('Y-Axis: Omega')
zlabel('Magnitude')
figure;
% Plot when sigma is zero
plot(sigma,Z(omega==0,:));
xlabel('Sigma');
ylabel('Magnitude');
figure;
% Plot when w is only
positive
plot(omega,Z(:,sigma==0))
xlabel('Omega')
ylabel('Magnitude')
- 23 -
Circuit Theory II
S-Domain
- 24 -
Circuit Theory II
Convolution
LAB SESSION 8
Convolution
Object:
MATLAB Script:
tint=0;
tfinal=10;
tstep=.01;
t=tint:tstep:tfinal;
x=1*((t>=0)&(t<=2));
subplot(3,1,1),
plot(t,x);grid
axis([0 10 0 3])
h=1*exp(-1*t)
subplot(3,1,2),plot(t,h);gr
id
axis([0 10 0 3])
t2=2*tint:tstep:2*tfinal;
y=conv(x,h)*tstep;
subplot(3,1,3),plot(t2,y);g
rid
axis([0 10 0 3])
Circuit Theory II
Convolution
TASK:
Perform the time domain convolution on
MATLAB as well as on paper.
ANS:
- 26 -
Circuit Theory II
Resonance
LAB SESSION 9
B=wo./Q
IN-LAB EXERCISE
Objective:
Impedance
1. Series Resonance
Frequency
2. Series Resonance
V=10
R=1000;
L=8e-3;
C=0.1e-6;
%Calculation of resonance
frequency %for series RLC
resonant circuit
clear all;
close all;
clc;
R=input('Please inuput the
Resistance(Ohm): ');
wo=1./(L.*C).^(0.5)
fr=wo./(2.*pi)
f=(fr-2500):0.5:(fr+2500);
Xl=2.*pi.*f.*L;
Xc=1./(2.*pi.*f.*C)
%Impedance
Z=(R.^2+(Xl-Xc).^2).^(0.5);
%Plot reactances
plot(f,Xl,'r',f,Xc,'g');gri
d;
xlabel('Frequency')
ylabel('Reactances')
wo=1./(L.*C).^(0.5)
fr=wo./(2.*pi)
Q=wo.*L./R
- 27 -
Circuit Theory II
Resonance
%Plot Impedance
figure;
plot(f,Z,'m',f,R,'r');grid;
hold
ylim([990 1060]);
plot([5627 5627], [990
1070])
xlabel('Frequency')
ylabel('Impedance')
- 28 -
Circuit Theory II
Diode Logic
LAB SESSION 10
Diode Logic
Object:
Analysis of Diode and DTL Logic circuits.
Apparatus:
Power supply, Resistors, Diodes, Transistor, DMM and SPDT Switch on each input.
Theory:
Analog signals have a continuous range of values within some specified limits and can
be associated with continuous physical phenomena.
Digital signals typically assume only two discrete values (states) and are appropriate for
any phenomena involving counting or integer numbers. The active elements in digital
circuits are either bipolar transistors or FETs. These transistors are permitted to operate
in only two states, which normally correspond to two output voltages. Hence the
transistors act as switches. There are different logic through which we can achieve our
desired results such as Diode Logic, Transistor-Transistor logic, Diode Transistor logic,
NMOS Logic, PMOS logic and a number of others. In this experiment and OR logics are
achieved through Diode logic and NAND Logic is achieved by using NAND Logic
Circuit diagram:
Procedure :
1. Connect the circuit according to the circuit diagram..
2. Place the Oscilloscope channel A at the input and output at channel B.
3. Also, place the voltmeter at output
4. Now, observe the waveform, measure and record the readings in the observation
table for three different type of input
- 29 -
Circuit Theory II
Diode Logic
Observation:
(When diodes are forward biased.)
Sr. No. Input A(V)
Input B(V)
Input C(V)
Output y(V)
Input C(V)
Output y(V)
1
2
3
4
5
6
7
8
Input B(V)
Analysis:
- 30 -
Circuit Theory II
LC Circuit
LAB SESSION 11
LC Circuit
Object:
Analysis of LC Circuit
Apparatus:
Power Supply, Capacitor, Inductor, SPDT switch, breadboard, connecting wires and
Oscilloscope
Theory:
The value of the resistance in a parallel RLC circuit becomes infinite or that in a series
RLC circuit becomes zero, we have a simple LC loop in which an oscillatory response
can be maintained forever at least theoretically. Besides we may get a constant output
voltage loop for a fairly long period of time. Thus it becomes a design of a lossless
circuit. Total Response = Forced Response + Natural Response
Forced Response = Forcing Function (Sinusoidal in this Case)
Natural Response = Content voltage waveform.
Circuit Diagram LC Circuit.
Procedure:
1.
2.
3.
4.
5.
6.
7.
- 31 -
Circuit Theory II
LC Circuit
Observation:
Position of switch
Switch at pos B
Output Waveform
Switch at pos A
Switch at pos B
Result:
The output waveform suggests that the natural response of a LC circuit is a constant
voltage waveform showing the property of a lossless circuit.
- 32 -
Circuit Theory II
3 Wattmeter method
LAB SESSION 12
OBJECTIVE
To measure the Three Phase Power of Star connected load using Three Wattmeter
methods.
APPARATUS
Three Watt-meters
Ammeter
Voltmeter
Star Connected Load
THEORY
Power can be measured with the help of
1. Ammeter and voltmeter (In DC circuits)
2. Wattmeter
3. Energy meter
By Ammeter and Voltmeter:
Power in DC circuits or pure resistive circuit can be measured by measuring the voltage
& current, then applying the formula P=VI.
By Energy Meter:
Power can be measured wuth the help of energy meter by
measuring the speed of the merter disc with a watch, with the
help of following formula:
P = N x 60
kW
K
Where
N= actual r.p.m of meter disc
K= meter constant which is equal to disc revolutions per kW hr
By Wattmeter: A wattmeter indicates the power in a circuit directly. Most commercial
wattmeters are of the dynamometer type with the two coils, the current and the voltage
coil called C.C & P.C.
Power in three phase circuit can be measured with the help of poly phase watt-meters
which consist of one two or three single phase meters mounted on a common shaft.
Single Phase Power Measurement:
One wattmeter is used for single phase load or balanced three phase load, three and four
wire system. In three-phase, four wire system, p.c. coil is connected between phase to
ground, while in three wire system, artificial ground is created.
- 33 -
Circuit Theory II
3 Wattmeter method
PROCEDURE
Arrange the watt-meters as shown above.
OBSERVATION
Phase Voltage: _______
S.
No.
1
2
Measured Load
(Using Wattmeter)
Current
(A)
Voltage
(V)
Two watt-meters & three watt-meters are commonly used for three phase power
measurement. In three watt-meter method, the potential coils are connected between
phase and neutral.
For three wire system, three watt-meter method can be used, for this artificial neutral is
created.
PROCEDURE
Arrange the watt-meters as shown above.
- 34 -
Circuit Theory II
3 Wattmeter method
OBSERVATION
Power of Star Connected Load:
Line to Line Voltage:
Line to Phase Voltage:
_______________________W
V
V
Wattmeter
Reading
(W3)
W1+W2+W3
Current
(A)
EXERCISE:
Here we are connecting phase with neutral without any load, doing this using a small
wire in house could be very dangerous, then how it is possible here?
_______________________________________________________________________
_______________________________________________________________________
_______________________________________________________________________
_______________________________________________________________________
________________________________
What do you understand by balance and unbalance load? In our case, is load balance or
unbalance?
_______________________________________________________________________
_______________________________________________________________________
_______________________________________________________________________
_______________________________________________________________________
________________________________
Suppose L1 is 70 W, ceiling fan, L2 is 100 W bulb, L3 is 350 W PC (Personal
Computer), what amount of current will flow in the neutral?
_______________________________________________________________________
_______________________________________________________________________
_______________________________________________________________________
_______________________________________________________________________
________________________________
- 35 -
Circuit Theory II
2 Wattmeter method
LAB SESSION 13
OBJECTIVE
To measure the Three Phase Power of Delta connected load using Two Wattmeter
methods.
APPARATUS
Three Watt-meters
Ammeter
Voltmeter
Star Connected Load
THEORY
Two Wattmeter Method:
In two watt-meter method, two wattmeters are used & their potential coils are connected
between phase to phase and current coil in seies with the line. Two wattmeters can be
used to measure power of star and delta connected load, but here we are performing
experiment on delta connected load only, same method can be applied for star connected
load. Following formulas are used for calculating P, Q and p.f.
- 36 -
Circuit Theory II
2 Wattmeter method
PROCEDURE
Arrange the watt-meters according to the load (single phase or three-phase) and whether
neutral available or not (as shown in the above figures).
OBSERVATION
Power of Delta Connected Load:
Line to line Voltage:
2 bulbs in series of
V
Wattmeter
Reading
(W2)
W1+W2
p.f.
Current
(IL)
RESULT:
The two wattmeter method of three phase power measurements have fully understood &
performed.
EXERCISE:
Here for each delta connected load we are connecting two bulbs in series, why?
_______________________________________________________________________
_______________________________________________________________________
_______________________________________________________________________
_______________________________________________________________________
________________________________
- 37 -
Circuit Theory II
Bode Plot
LAB SESSION 14
Bode Plot
Object:
Design a circuit showing the Bode Plot i.e.: Magnitude and Phase-plot.
Apparatus:
AC power supply, Resistors, Operational Amplifier and Bode Plotter.
Theory:
Bode Diagram is a quick method of obtaining an approximate picture of the amplitude
and phase variation of a given transfer function as function of
. The approximate
response curve is also called an Asymptotic plot . Both the magnitude and phase curves
are plotted using a logarithmic frequency scale. The magnitude is also plotted in
logarithmic units called decibels (db).
HdB = 20 log |H(j )|
where the common logarithm(base 10) is used
Circuit Diagram:
- 38 -
Circuit Theory II
Bode Plot
Conclusion:
- 39 -