Nodal Analysis (3.1) : Dr. Holbert February 22, 2006
Nodal Analysis (3.1) : Dr. Holbert February 22, 2006
500
2 1
V V
O 500
1
V
ECE201 Lect-9 14
KCL at Node 1
500O
500O
I
1
V
1
V
2
O
+
O
=
500 500
1 2 1
1
V V V
I
ECE201 Lect-9 15
KCL at Node 2
500O
1kO
500O
V
2
V
3
V
1
0
500 k 1 500
3 2 2 1 2
=
O
+
O
+
O
V V V V V
ECE201 Lect-9 16
KCL at Node 3
2
3 2 3
500 500
I
V V V
=
O
+
O
500O
500O
I
2
V
2
V
3
ECE201 Lect-9 17
Steps of Nodal Analysis
1. Choose a reference node.
2. Assign node voltages to the other nodes.
3. Apply KCL to each node other than the
reference node; express currents in terms of
node voltages.
4. Solve the resulting system of linear
equations.
ECE201 Lect-9 18
System of Equations
Node 1:
Node 2:
1
2
1
500 500
1
500
1
I
V
V =
O
|
.
|
\
|
O
+
O
0
500 500
1
k 1
1
500
1
500
3
2
1
=
O
|
.
|
\
|
O
+
O
+
O
+
O
V
V
V
ECE201 Lect-9 19
System of Equations
Node 3:
2 3
2
500
1
500
1
500
I V
V
=
|
.
|
\
|
O
+
O
+
O
ECE201 Lect-9 20
Equations
These equations can be written by inspection.
The left side of the equation:
The node voltage is multiplied by the sum of
conductances of all resistors connected to the
node.
Other node voltages are multiplied by the
conductance of the resistor(s) connecting to the
node and subtracted.
ECE201 Lect-9 21
Equations
The right side of the equation:
The right side of the equation is the sum
of currents from sources entering the
node.
ECE201 Lect-9 22
Matrix Notation
The three equations can be combined into a
single matrix/vector equation.
(
(
(
=
(
(
(
(
(
(
(
(
(
O
+
O O
O
+
O
+
O O
O
+
O
2
1
3
2
1
0
500
1
500
1
500
1
0
500
1
500
1
k 1
1
500
1
500
1
0
500
1
500
1
500
1
I
I
V
V
V
ECE201 Lect-9 23
Matrix Notation
The equation can be written in matrix-
vector form as
Av = i
The solution to the equation can be written
as
v = A
-1
i
ECE201 Lect-9 24
Solving the Equation with
MATLAB
I
1
= 3mA, I
2
= 4mA
>> A = [1/500+1/500 -1/500 0;
-1/500 1/500+1/1000+1/500 -1/500;
0 -1/500 1/500+1/500];
>> i = [3e-3; 0; 4e-3];
ECE201 Lect-9 25
Solving the Equation
>> v = inv(A)*i
v =
1.3333
1.1667
1.5833
V
1
= 1.33V, V
2
=1.17V, V
3
=1.58V
ECE201 Lect-9 26
Matrix Refresher
Given the 2x2 matrix A
The inverse of A is
(
=
d c
b a
A
(
a c
b d
c b d a
1
1
A
ECE201 Lect-9 27
Class Examples
Learning Extension E3.1
Learning Extension E3.3
Learning Extension E3.5