Thevenin voltage (Vth) is the exact open-circuit voltage that appears across two specific terminals of a linear electrical network when the load is completely removed. By calculating this single value, you fundamentally change how you analyze a circuit: it allows you to replace a messy, multi-branch web of voltage sources and resistors with one ideal voltage source and one series resistor. This means you can calculate load current, voltage drop, and maximum power transfer for any component you attach to those terminals without having to re-solve the entire board's Kirchhoff equations every time you swap a part.
The Core Concept: Open-Circuit Voltage in Disguise
When you are designing a sensor interface or debugging a voltage sag on a PCB, you rarely care about the entire schematic. You only care about how the "source" behaves from the perspective of the "load." According to Georgia State University's HyperPhysics, any linear network of DC sources and resistances can be reduced to a simple equivalent circuit. The Thevenin voltage is simply the potential difference between your two load nodes when absolutely zero current is flowing out of those nodes.
Think of it like checking the static water pressure at a hose bib with the nozzle completely closed. The moment you open the nozzle (attach a load), the pressure drops due to friction in the pipes (the Thevenin resistance). Vth is that maximum static pressure before the flow starts.
Step-by-Step: How to Find Thevenin Voltage (Worked Example)
Let's look at a realistic bench scenario: you are mixing two logic-level signals or sensor outputs through a resistive summing network, and you need to know the equivalent voltage driving your microcontroller's ADC pin.
The Circuit:
- V1: 12V DC source connected to Node A through R1 (100Ω).
- V2: 5V DC source connected to Node A through R2 (200Ω).
- R3: 300Ω resistor connected from Node A to Ground.
- Load Terminals: We want to find Vth across Node A and Ground.
Step 1: Remove the Load
Since we are finding the Thevenin equivalent, we assume the ADC pin (the load) is disconnected. No current flows out of Node A into a load.
Step 2: Apply Nodal Analysis (KCL)
We sum the currents leaving Node A and set them to zero. The equation is:
[(V_A - 12) / 100] + [(V_A - 5) / 200] + [V_A / 300] = 0
Step 3: Solve for VA (which is our Vth)
To clear the denominators, multiply the entire equation by the least common multiple of 100, 200, and 300, which is 600:
6(V_A - 12) + 3(V_A - 5) + 2(V_A) = 06V_A - 72 + 3V_A - 15 + 2V_A = 011V_A - 87 = 011V_A = 87V_A = 7.909V
Your Thevenin voltage (Vth) is 7.91V. If you were to also calculate the Thevenin resistance (Rth) by zeroing out the voltage sources (shorting V1 and V2 to ground), you would find R1 || R2 || R3 = 54.54Ω. Your entire complex network is now just a 7.91V source in series with a 54.54Ω resistor.
Where You Meet This in Practice
Theory is useless if it doesn't map to the workbench. As detailed in Electronics Tutorials, Thevenin equivalents are heavily used in practical electrical and electronic design.
| Application | How Vth is Used | Real-World Example |
|---|---|---|
| Battery Modeling | Vth represents the Open-Circuit Voltage (OCV) of a cell, while Rth models the internal chemical resistance. | Predicting voltage sag on a 12V LiFePO4 pack when a 50A inverter kicks on. |
| Sensor Interfacing | Wheatstone bridges and thermistor dividers are reduced to Vth to calculate the exact input voltage seen by an op-amp or ADC. | Scaling a 0-10V industrial pressure transducer down to an ESP32's 0-3.3V ADC range. |
| Audio Impedance | The output stage of a preamp is modeled as Vth and Rth to ensure proper voltage transfer to the next stage. | Matching a high-impedance guitar pickup to a low-impedance amplifier input without losing high frequencies. |
| Power Transfer | Maximum power transfer occurs when the load resistance exactly equals Rth. | Sizing the load resistor for a matched RF antenna or a solar cell characterization test. |
Common Confusions and Pitfalls
When working through these calculations, makers and students frequently trip over a few specific edge cases.
Thevenin vs. Norton: People often confuse the two equivalent models. Thevenin uses a voltage source in series with a resistor. Norton uses a current source in parallel with a resistor. They describe the exact same network behavior, but Thevenin is vastly easier to work with when your load is in series, while Norton is better for parallel load analysis.
Forgetting to Zero Sources for Rth: While finding Vth requires the sources to remain active, finding Rth requires you to turn them off. A common mistake is leaving the voltage sources in the circuit when calculating equivalent resistance. Remember: voltage sources become short circuits (0Ω wires), and current sources become open circuits (broken wires).
If you calculate Vth as 7.91V but your multimeter reads 7.85V on the bench, your meter might be the culprit. Standard digital multimeters have an input impedance of about 10MΩ. If your circuit's Rth is very high (e.g., in the megaohm range from a high-impedance voltage divider), the 10MΩ meter acts as a load, dragging the voltage down. Always check your meter's datasheet impedance when measuring high-Z nodes.
Frequently Asked Questions About Thevenin Equivalents
How do I find Thevenin voltage if the circuit has dependent sources?
Finding Vth remains exactly the same: you calculate or measure the open-circuit voltage across the terminals. However, dependent sources change how you find Rth. Because you cannot simply "turn off" a dependent source (they rely on other circuit variables), you must use the "test source method." You zero out all independent sources, apply a 1V test voltage (or 1A test current) to the open terminals, and calculate the resulting current (or voltage) to find Rth using Ohm's law.
Can I use Thevenin's theorem for AC circuits?
Yes, but you must move into the phasor domain. Instead of simple resistances, you use complex impedance (Z). Your Vth will be a complex voltage (magnitude and phase angle), and your Rth becomes Zth, which includes capacitive and inductive reactance. The math involves complex numbers, but the fundamental topology of the equivalent circuit remains identical.
What is the difference between Thevenin voltage and terminal voltage?
Thevenin voltage is the theoretical maximum voltage at the terminals when absolutely no current is flowing (open circuit). Terminal voltage is the actual voltage you measure at the terminals when a specific load is attached and current is flowing. The difference between the two is the voltage dropped across the Thevenin resistance (Vdrop = Iload × Rth).
Why does my simulation software show a slightly different Vth than my hand calculations?
SPICE-based simulators (like LTspice or Falstad) use iterative matrix solvers with finite floating-point precision. While the difference is usually negligible (e.g., 7.90909V vs 7.9091V), discrepancies can also arise if your simulation includes non-ideal component models—such as a voltage source with a built-in 0.01Ω internal series resistance that you forgot to account for in your hand-drawn schematic.






