Technical Article

Mesh Analysis and Dependent Sources

July 08, 2015 by Tristan Cornell

This article describes the technical aspects of Performing Mesh analysis with Dependent Sources.

This article describes the technical aspects of Performing Mesh analysis with Dependent Sources.

Recommended Level

Beginner

Mesh analysis is a very handy tool to compute current within electronic circuits. From knowing the current within each mesh (section), we can solve for voltage and power (watts) at each component. Engineers and designers use this information to select correct parts that won’t emit the magic white smoke when power is applied.

Mesh Analysis

 

We can divide the example above into two meshes, I1 and I2. I1 designates a virtual current in mesh 1. I2 shows virtual current in mesh 2. Mesh current flow is usually depicted in a clockwise direction. From here, we write each mesh as a linear equation and use a solving tool to find I1 and I2.

Using Kirchhoff’s Voltage Law (KVL), mesh I1 would be written as:

$$-3 \text{ v} + 100 \Omega(I_{1}) + 200 \Omega(I_{1}-I_{2})=0$$

The I1-I2 is because the current flowing thru the center 200Ω resistor is the difference between the two meshes. Due to the clockwise flow of I1, the (-) side of the battery is recorded as the voltage.

This formula can be rewritten as:

$$I_{1}(300 \Omega) - I_{2}(200 \Omega)=3 \text{ v}$$

Mesh I2 can be described in electrical terms as:

$$6 \text{ v} + 100 \Omega(I_{2}) + 200 \Omega(I_{2}-I_{1}) + 200 \Omega(I_{2}) = 0$$

Simplified and rewritten, this comes out to:

$$-I_{1}(200 \Omega) + I_{2}(500 \Omega)= -6 \text{ v}$$

Here is an online linear equation solver (which will make the solving much simpler). To minimize the chance of symbols being misunderstood, it is best to rename I1 to “a” and I2 to “b”.

The finished query is:

$$300a-200b=3$$,   [Equation 1]

and,

$$-200a+500b= -6$$   [Equation 2]

The answers are:

$$I_{1} (“a”) = \underline{\frac{3}{1100} \text{ A}}$$ or $$2.727\text{ mA}$$,

and,

$$I_{2} (“b”) = \underline{-\frac{3}{275} \text{ A}}$$ or $$-10.909 \text{ mA}$$

Remember that the current in the center 200-Ω resistor is (I1 – I2). So,

$$2.727 \text{ mA} – (-10.909 \text{ mA}) = \underline{13.636 \text{ mA}}$$

The batteries would be considered as an independent voltage source. What would happen if we replaced one of them with a voltage controlled voltage source (VCVS), such as a vacuum tube or FET circuit?

Mesh Analysis

 

The formula for the I1 mesh would be identical to the previous example.

It is:

$$I_{1}(300\Omega) - I_{2}(200\Omega)=3 \text{ v}$$

or for the solver:

$$300a-200b=3$$   [Equation 3]

Mesh I2 contains the VCVS dependent voltage source. The gain is noted by the 5VX and the source of the control voltage is seen as the nodes on each side of the center resistor. The formula for I2 is no more complicated than it is for I1.

Starting at the 200-Ω resistor and using KVL we have:

$$200\Omega(I_{2}-I_{1}) – 5V_{X} + 300 \Omega(I_{2})=0$$.

In a more usable and condensed form, the equation is:

$$-I_{1}(200\Omega) + I_{2}(500 \Omega)=5V_{X}$$   [Equation4]

The dependent voltage source is a ratio and not a fixed number at this point. To be able to solve this system, we need to write the formula for VX. This is found multiplying the resistance 200 Ω by the current.

Since this resistor is used by both meshes, the current is:

$$I_{1}-I_{2}$$

VX is:

$$200 \Omega(I_{1}-I_{2})$$   [Equation 5]

VX will be annotated as “c” for the solver.

Putting the three linear equations (Equations 3, 4 and 5) into a Wolfram Alpha friendly syntax, we have:

$$300a-200b=3$$, $$-200a+500b=5c$$, $$c=200(a-b)$$

The results of the equation are: I1 has a current of 21.429 mA, I2 has a current of 17.143 mA, and VX has a voltage of 0.857 Volts. Our dependent source has a gain of 5 and therefore is producing 4.286 Volts. At this point someone is thinking “Hey, wait a minute. Why does I1 have more current in the second example if the dependent source’s voltage is lower than the battery it replaced?” Nice catch! We swapped the polarity for the dependent source and both I1 and I2 currents jumped. Hopefully this was planned and our circuit isn’t smoking like a sock in the toaster.

Other dependent sources include Current Controlled Voltage Sources (CCVS), Voltage Controlled Current Sources (VCCS), and Current Controlled Current Sources (CCCS). A bipolar junction transistor is a good example of a CCCS.

The comprehension of mesh analysis with dependent sources is important when planning circuits that utilize amplifiers or amplifying components. The methods are nearly the same as without dependent sources except that more information needs to be presented to achieve a solution.