THÉVENIN’S THEOREM

Click or Tap the Example circuits below to invoke TINACloud and select the Interactive DC mode to Analyze them Online.
Get a low cost access to TINACloud to edit the examples or create your own circuits

Thévenin’s Theorem allows one to replace a complicated circuit with a simple equivalent circuit containing only a voltage source and a series connected resistor. The theorem is very important from both theoretical and practical viewpoints.

Concisely stated, Thévenin’s Theorem says:

Any two-terminal linear circuit can be replaced by an equivalent circuit consisting of a voltage source (VTh) and a series resistor (RTh).

It is important to note that the Thévenin equivalent circuit provides equivalence at the terminals only. Obviously, the internal structure and therefore the characteristics of the original circuit and the Thévenin equivalent are quite different.

Using Thevenin’s theorem is especially advantageous when:

  • We want to concentrate on a specific portion of a circuit. The rest of the circuit can be replaced by a simple Thevenin equivalent.
  • We have to study the circuit with different load values at the terminals. Using the Thevenin equivalent we can avoid having to analyze the complex original circuit each time.

We can calculate the Thevenin equivalent in two steps:

  1. Calculate RTh. Set all sources to zero (replace voltage sources by short circuits and current sources by open circuits) and then find the total resistance between the two terminals.
  2. Calculate VTh. Find the open circuit voltage between the terminals.

To illustrate, let’s use Thévenin’s Theorem to find the equivalent circuit of the circuit below.


Click/tap the circuit above to analyze on-line or click this link to Save under Windows

The TINA solution shows the steps needed for the calculation of the Thevenin parameters:

 

Of course, the parameters can be calculated easily using the rules of series-parallel circuits described in previous chapters:

{Solution by TINA’s Interpreter}
RT:=R3+Replus(R1,R2);
VT:= Vs*R2/(R2+R1);
RT=[10]
VT=[6.25]
#Solution by Python!
#First define replus using lambda:
Replus= lambda R1, R2 : R1*R2/(R1+R2)
RT=R3+Replus(R1,R2)
VT=Vs*R2/(R2+R1)
print(“RT= %.3f”%RT)
print(“VT= %.3f”%VT)

Further examples:

Example 1

Here you can see how the Thévenin equivalent simplifies calculations.

Find the current of the load resistor R if its resistance is:

1.) 0 ohm; 2.) 1.8 ohm; 3.) 3.8 ohm 4.) 2.8.ohm

First find the Thévenin equivalent of the circuit with respect to the terminals of R, but without R:

Now we have a simple circuit with which it is easy to calculate the current for the different loads:


Click/tap the circuit above to analyze on-line or click this link to Save under Windows

An example with more than one source:

Example 2

Find the Thévenin equivalent of circuit.


Click/tap the circuit above to analyze on-line or click this link to Save under Windows

Solution by TINA’s DC analysis:

The complicated circuit above, then, can be replaced by the simple series circuit below.

{Solution by TINA’s Interpreter}
{Using Kirchhoff’s laws}
Sys Vt
Vt/R+(Vt-Vs2)/R3+(Vt-Vs1)/R1-Is=0
end;
Vt=[187.5]
Rt:=Replus(R,replus(R1,R3));
Rt=[5]
#Solution by Python!
import numpy as np
#First define replus using lambda:
Replus= lambda R1, R2 : R1*R2/(R1+R2)
#We have an equation that
#we want to solve:
#Vt/R+(Vt-Vs2)/R3+(Vt-Vs1)/R1-Is=0
#Write up the matrix
#of the coefficients:
A= np.array([[(1/R)+(1/R3)+(1/R1)]])

#Write up the matrix
#of the constants:
b= np.array([[(Vs2/R3)+(Vs1/R1)+Is]])

Vt= np.linalg.solve(A,b)[0]
print(“Vt lin= %.3f”%Vt)
#Alternatively we can easily solve
#the equation with one unknown variable for Vt:
Vt=(Vs2/(R3/R+R3/R1+1))+(Vs1/(R1/R+R1/R3+1))+(Is/(1/R+1/R3+1/R1))
print(“Vt alt= %.3f”%Vt)
Rt=Replus(R,Replus(R1,R3))
print(“Rt= %.3f”%Rt)


    X
    Glad to have you at DesignSoft
    Lets chat if need any help finding the right product or need support.
    wpChatIcon