A power source is any device, component, or system that converts non-electrical energy into electrical energy, establishing the electromotive force (EMF) required to drive current through a connected circuit. Whether you are wiring a 120V AC branch circuit, sizing a battery bank for an off-grid solar array, or debugging an ESP32 dev board on your bench, understanding the exact behavior of your power source is the difference between a stable system and a brownout-reset loop.
The Core Power Source Definition and Circuit Impact
In circuit theory, a power source dictates the baseline potential difference (voltage) or the baseline electron flow (current) available to the load. But what it actually changes in a real installation is the system's response to dynamic demand. Every physical power source possesses internal impedance. When a load demands maximum current, this internal impedance causes voltage sag. If the sag is severe enough, it can trip undervoltage lockouts (UVLO) on sensitive microcontrollers, dim LED strips, or cause thermal runaway in lithium cells.
To ground this theory, let us look at the real-world specifications of common power sources you will encounter in the shop or on the jobsite. Notice how internal impedance scales inversely with the physical size and chemistry of the source.
| Source Type | Nominal Output | Internal Impedance (Approx) | Max Continuous Current | Primary Limiting Factor |
|---|---|---|---|---|
| Energizer MAX AA (Alkaline) | 1.5V DC | 150 - 300 mΩ | ~0.5A | High IR causes massive voltage sag under load |
| Samsung 30Q 18650 (Li-ion) | 3.6V DC | 15 - 20 mΩ | 15A | Thermal limits and cell degradation over time |
| Mean Well LRS-150-12 (SMPS) | 12V DC | < 5 mΩ (Effective) | 12.5A | Overcurrent protection (OCP) trips at ~13.75A |
| 200A Residential Service Panel | 120/240V AC | < 50 mΩ (Grid side) | 200A | Main breaker thermal-magnetic trip curve |
Ideal vs. Real Power Sources: A Worked Numeric Example
In textbook circuit theory, an ideal voltage source maintains exactly its rated voltage regardless of how much current the load draws. It has zero internal resistance. A real voltage source, however, has internal resistance (often denoted as r or ESR for batteries) in series with the ideal source.
Let us run a worked numeric example using a real component: a Samsung 30Q 18650 lithium-ion cell. This cell has a nominal voltage of 3.6V and a typical internal resistance (IR) of 20 mΩ (0.020 Ω) when new.
Suppose you are building a high-drain drone or a custom vape mod and you pull a continuous 15A from this single cell. According to Ohm's Law, the voltage dropped across the cell's own internal resistance is:
V_drop = I × r
V_drop = 15A × 0.020 Ω = 0.30V
The actual terminal voltage available to your load under this heavy draw is:
V_terminal = V_nominal - V_drop
V_terminal = 3.6V - 0.30V = 3.3V
If your electronic speed controller (ESC) or battery management system (BMS) has a low-voltage cutoff set at 3.2V, you are dangerously close to tripping the safety shutoff, even if the cell's state of charge (SoC) is still at 50%. This exact math is why high-drain builds require cells with ultra-low internal resistance, like the Molicel P28A (~13 mΩ), or why you must parallel multiple cells to divide the current and reduce the effective IR of the pack.
Where You Meet This in Practice
Understanding the distinction between ideal theory and real-world source behavior dictates how you size and protect your projects.
- Addressable LED Strips (WS2812B / WS2815): When a long run of 5V LEDs turns on and goes full-white, the sudden current spike (inrush) can cause the voltage at the power source terminals to sag momentarily. If the source cannot recover fast enough, the data line voltage drops below the logic threshold, resulting in flickering or random color glitches. The fix is not just a bigger power supply, but adding bulk capacitance (e.g., 1000µF electrolytic) directly at the strip's power injection point to act as a local, instantaneous power source.
- Solar MPPT Charge Controllers: A solar panel is fundamentally a current source, not a voltage source. Its output current is dictated by irradiance, while its voltage sags as you pull more current. An MPPT (Maximum Power Point Tracking) controller dynamically adjusts the load impedance to find the exact 'knee' of the panel's I-V curve where Voltage × Current is maximized, then converts that to a stable voltage/current output for the battery bank.
- Bench Power Supplies (CV vs CC): A high-quality bench supply like a Rigol DP832 allows you to set both a Constant Voltage (CV) and a Constant Current (CC) limit. When testing a bare PCB, you set the CC limit to 500mA. If the board has a short circuit, the power source instantly transitions from acting as a voltage source to a current source, clamping the output at 500mA and dropping the voltage to near zero to prevent the traces from melting.
Common Confusions and FAQ
What is the difference between a power source and a power supply?
In strict electrical engineering terms, a power source generates electrical energy from another form of energy (e.g., a battery converting chemical energy, a solar panel converting photons, or an alternator converting mechanical rotation). A power supply does not generate new electrical energy; it converts existing electrical energy from one form to another (e.g., an AC-to-DC wall brick converting 120V AC to 5V DC). Colloquially, hobbyists call AC-DC adapters 'power sources,' but technically, the wall outlet is the source, and the adapter is the supply.
Can a power source be a current source instead of a voltage source?
Yes. While batteries and the grid act as voltage sources (trying to maintain a fixed voltage), devices like solar panels, LED drivers, and the secondary side of a current transformer act as current sources (trying to maintain a fixed electron flow regardless of the voltage required to push it). For a deep dive into how these behave in circuit simulations, refer to the foundational texts on voltage and current sources.
Why does my multimeter read 12.6V on a battery, but the motor won't spin?
Your multimeter draws virtually zero current (typically < 10 megaohms input impedance). Under this micro-load, the voltage drop across the battery's internal resistance is negligible, so you read the open-circuit voltage. When you connect the motor, it demands amps of current. If the battery is old or damaged, its internal resistance has spiked. Under load, the voltage sags to 4V or 5V—enough to keep a logic circuit alive, but far below the threshold required to overcome the motor's back-EMF and start spinning. Always test power sources under a realistic dummy load, not just with a high-impedance multimeter.






