Mesh Analysis in Electric Circuits

| 1-2 min read |
-- reads
Mesh Analysis in Electric Circuits

Mesh Analysis in Electric Circuits

Before starting the concept of mesh analysis, we want to reiterate that a closed path or a loop is drawn starting at a node and tracing a path such that we return to the original node without passing an intermediate node more than once.

A mesh is a special case of a loop. A mesh is a loop that does not contain any other loops within it.

The network shown in Figure has four meshes and they are identified as (M_i), where (i = 1, 2, 3, 4).

Circuit with four meshes


Mesh Current

The current flowing in a mesh is defined as mesh current.

As a matter of convention, the mesh currents are assumed to flow in a mesh in the clockwise direction.

Let us consider the two-mesh circuit as shown in Figure.

Two mesh circuit

We cannot choose the outer loop as one mesh since it would contain another loop within it.

Let us choose two mesh currents (i_1) and (i_2) as shown in the figure.


Applying Kirchhoff’s Voltage Law

We may employ KVL around each mesh. We will travel around each mesh in the clockwise direction and sum the voltage rises and drops encountered in that mesh.

We will adopt a convention of taking:

  • Voltage drops → positive
  • Voltage rises → negative

For Mesh 1,

VR1i1R3(i1i2)=0V - R_1 i_1 - R_3(i_1 - i_2) = 0

Rearranging,

(R1+R3)i1R3i2=V(R_1 + R_3)i_1 - R_3 i_2 = V

For Mesh 2,

R2i2R3(i2i1)=0- R_2 i_2 - R_3(i_2 - i_1) = 0

Rearranging,

R3i1+(R2+R3)i2=0- R_3 i_1 + (R_2 + R_3)i_2 = 0

Note that when writing voltage across (R_3) in Mesh 1, the current in (R_3) is taken as:

i1i2i_1 - i_2

Similarly, in Mesh 2, the current through (R_3) is written as:

i2i1i_2 - i_1

Once the mesh currents are known, the branch currents are evaluated in terms of mesh currents and then all branch voltages are found using Ohm’s law.

If we have (N) meshes with (N) mesh currents, we can obtain (N) independent mesh equations.


Solving Mesh Equations Using Cramer’s Rule

The mesh equations can be written in matrix form as:

[R1+R3R3R3R2+R3][i1i2]=[V0]\begin{bmatrix} R_1 + R_3 & -R_3 \\ -R_3 & R_2 + R_3 \end{bmatrix} \begin{bmatrix} i_1 \\ i_2 \end{bmatrix} = \begin{bmatrix} V \\ 0 \end{bmatrix}

Step 1: Find the Determinant

The determinant of the coefficient matrix is:

Δ=R1+R3R3R3R2+R3\Delta = \begin{vmatrix} R_1 + R_3 & -R_3 \\ -R_3 & R_2 + R_3 \end{vmatrix} Δ=(R1+R3)(R2+R3)(R3)(R3)\Delta = (R_1 + R_3)(R_2 + R_3) - (-R_3)(-R_3)

Step 2: Find Determinant for (i_1)

Replace the first column with constants:

Δ1=VR30R2+R3\Delta_1 = \begin{vmatrix} V & -R_3 \\ 0 & R_2 + R_3 \end{vmatrix} Δ1=V(R2+R3)\Delta_1 = V(R_2 + R_3)

Therefore,

i1=Δ1Δi_1 = \frac{\Delta_1}{\Delta}

Step 3: Find Determinant for (i_2)

Replace the second column with constants:

Δ2=R1+R3VR30\Delta_2 = \begin{vmatrix} R_1 + R_3 & V \\ -R_3 & 0 \end{vmatrix} Δ2=VR3\Delta_2 = VR_3

Therefore,

i2=Δ2Δi_2 = \frac{\Delta_2}{\Delta}

Summary

  • Mesh analysis is based on Kirchhoff’s Voltage Law.
  • Mesh currents are generally assumed in clockwise direction.
  • A mesh is a loop that does not contain another loop within it.
  • Shared branch currents are expressed as the difference of mesh currents.
  • Cramer’s rule can be used to solve simultaneous mesh equations systematically.

More from "Basic Electrical Engineering"