Analog and Digital Electronics Design

From Analysis to Synthesis

Nodal Analysis

In this post, we will explore my approach to the nodal analysis method. Although the topic is not necessarily design-oriented, I felt it might be useful to include a post on it since I’ve noticed a significant amount of confusion about it over the years. I hope my presentation may be of use to help clarify the details of nodal analysis.

We’ll begin with a few assumptions. First, we’ll be using Franklin/passive convention:

  1. Current flows from higher potential (+) to lower potential (-).
  2. Voltage drops (+ to -) are positive and rises (- to +) are negative.
  3. Currents leave the positive terminal of a source supplying power and enter the positive terminal of an element dissipating power.

I am going assume knowledge of Kirchhoff’s Current Law (KCL), the definition of a node, and the definition of a reference node.

We’ll now go through the steps. Figure 1 shows a “monster circuit” that contains both voltage and current sources in multiple configurations.

Figure 1. Monster Circuit.

Our first step is to identify, count, and label all nodes. For this circuit, there are five nodes. (Nodes connected by shorts are counted as one node.) We’ll label them N1, N2, N3, and N4, and designate the fifth node at the bottom as the reference, identified by the "ground" symbol. This is shown in Figure 2.

Figure 2. Nodes Identified and Labelled.

We can now start writing equations. For N1, the node voltage is already solved, since there is a voltage source between N1 and ground:

VN1=VS1.

For N2, we’ll use KCL. My first recommendation is to assume VN2 is the highest voltage in the circuit. It may not be, but it’s okay to do so. By making this assumption, all non-source currents can be assumed to be leaving the node and designated positive leaving. This is shown by the green arrows in Figure 3. Consistent adherence to the convention will reveal the true directions when the solution is found. By the way, keep units present when writing the equations; all terms should represent currents.

Figure 3. Currents and Supernode.

The current between N2 and N1 is the difference in the node voltages across the resistance, divided by the resistance. Note, this assumes VN2 is higher than VN1 and thus the current is flowing from N2 to N1:

VN2VN1R1.

Plus the current between N2 and the reference (ground):

VN2VN1R1+VN2R2.

Plus the current between N2 and N3 equals 0:

VN2VN1R1+VN2R2+VN2VN3R3=0.

Since there is a voltage source between N3 and N4, we’ll have to get one equation in the form of voltages and one treating the two nodes as one supernode. The supernode is indicated by the blue dotted line and the currents leaving the supernode are displayed in red in Figure 3.

For the supernode, the difference of the node voltages between N3 and N4 must equal the source between them:

VN4VN3=VS2.

KCL applies to regions or subcircuits as well as nodes. The sum of all currents entering the region must equal the sum of all currents leaving the region, or, in other words, the algebraic sum is zero. Assuming all currents are leaving and are positive:

VN3VN2R3+VN4R4IS+VN4R5=0.

We now have four equations with four unknowns (actually VN1 is now known as VS1). Two of the equations in this example were generated using KCL and are thus the sum of currents. But we are solving for node voltages! Those two equations are converted to voltage equations by multiplying both sides by the least common multiple of the resistances connected to the respective nodes. We are, in effect, using Ohm's Law and this is the reason I suggest keeping the units when writing the equations. It helps as a check we're constructing the equations correctly.

With the availability of advanced computing tools for solving systems of equations, such as MatLab or Julia, it makes sense to arrange the equations in matrix form: W×v=vc. W is a unitless weight matrix derived after multiplying the current equations by the LCM of resistance, v is the node voltage vector, and vc is a vector of constant voltages due to sources.

Let's add some numbers to our circuit as an example. Let VS1 = 12 V, VS2 = 4 V, IS = 1 mA, and all resistors equal to 1 kΩ.

N1:VN1 = 12 V

N2:(VN2VN1) /1 kΩ + VN2 / 1 kΩ + (VN2VN3) / 1 kΩ = 0.

Multiply both sides by 1 kΩ and gather terms:

N2: -VN1 + 3 VN2 - VN3 = 0.

Supernode A: V4V3 = 4 V.

Supernode A: -V3+V4 = 4 V.

Supernode B: (VN3VN2) / 1 kΩ + V4 / 1 kΩ - 1 mA + V4 / 1 kΩ = 0.

Multiply both sides by 1 kΩ and gather terms:

Supernode B: -VN2 + VN3 + 2VN4 = 1 V.

Let's put the equations in matrix form and solve:

[1000131000110112][VN1VN2VN3VN4]=[12V04V1V]

Solving the system, we get

[VN1VN2VN3VN4]=[12V3.625V1.125V2.875V]

As a quick check we can sum voltages around the right loop:

-VN2(VN3VN2) - 4 V + VN4 =

-3.625 V - (-1.125 V - 3.625 V) - 4 V + 2.875 = 0 ✓

Looks like a good solution. Hopefully this presentation helped your understanding of nodal analysis. Feel free to ask questions via the questions email: questions(-at-)drdavelivingston(-dot-)com.

Until the next post,

Dr. Dave

21 Oct 2023