Loop (Mesh) Analysis (3.2) : Dr. Holbert February 27, 2006
Loop (Mesh) Analysis (3.2) : Dr. Holbert February 27, 2006
=
(
O + O O
O O + O
2
1
2
1
k 1 k 1 k 1
k 1 k 1 k 1
V
V
I
I
ECE201 Lect-10 15
Solving the Equations
Let: V
1
= 7V and V
2
= 4V
Results:
I
1
= 3.33 mA
I
2
= -0.33 mA
Finally
V
out
= (I
1
- I
2
) 1kO = 3.66V
ECE201 Lect-10 16
Another Example
1kO
2kO
2kO
12V 4mA
2mA
I
0
+
ECE201 Lect-10 17
Mesh 2
Mesh 3
Mesh 1
1. Identify Meshes
1kO
2kO
2kO
12V 4mA
2mA
I
0
+
ECE201 Lect-10 18
2. Assign Mesh Currents
I
1
I
2
I
3
1kO
2kO
2kO
12V 4mA
2mA
I
0
+
ECE201 Lect-10 19
Current Sources
The current sources in this circuit will have
whatever voltage is necessary to make the
current correct.
We cant use KVL around the loop because
we dont know the voltage.
What to do?
ECE201 Lect-10 20
Current Sources
The 4mA current source sets I
2
:
I
2
= -4 mA
The 2mA current source sets a constraint on
I
1
and I
3
:
I
1
- I
3
= 2 mA
We have two equations and three
unknowns. Where is the third equation?
ECE201 Lect-10 21
1kO
2kO
2kO
12V 4mA
2mA
I
0
I
1
I
2
I
3
The
Supermesh
surrounds
this source!
The
Supermesh
does not
include this
source!
+
ECE201 Lect-10 22
KVL Around the Supermesh
-12V + I
3
2kO + (I
3
- I
2
)1kO + (I
1
- I
2
)2kO = 0
I
3
2kO + (I
3
- I
2
)1kO + (I
1
- I
2
)2kO = 12V
ECE201 Lect-10 23
Matrix Notation
The three equations can be combined into a
single matrix/vector equation.
(
(
(
=
(
(
(
(
(
(
O + O O O O
V 12
mA 2
mA 4
1k 2k 2k 1k 2k
1 0 1
0 1 0
3
2
1
I
I
I
ECE201 Lect-10 24
Solve Using MATLAB
>> A = [0 1 0; 1 0 -1;
2e3 -1e3-2e3 2e3+1e3];
>> v = [-4e-3; 2e-3; 12];
>> i = inv(A)*v
i = 0.0012
-0.0040
-0.0008
ECE201 Lect-10 25
Solution
I
1
= 1.2 mA
I
2
= -4 mA
I
3
= -0.8 mA
I
0
= I
1
- I
2
= 5.2 mA
ECE201 Lect-10 26
Class Example
Learning Extension E3.8
Learning Extension E3.9
Learning Extension E3.11