The variable resistance definition in electronics is the property or component capability that allows the opposition to current flow to be adjusted manually, electronically, or environmentally within a circuit. In a real installation or PCB, introducing variable resistance changes voltage division ratios, alters current limiting thresholds, or shifts the timing constants of RC networks. Most beginners confuse a three-terminal potentiometer (used as a voltage divider) with a two-terminal rheostat (used as a variable current limiter), leading to wired-open failures when the wiper loses contact.
The Core Mechanism: How Adjustable Resistance Works
At the bench level, a standard mechanical variable resistor consists of a resistive track (carbon, cermet, or wirewound) and a movable contact called a wiper. As the wiper slides along the track, it changes the physical length of the resistive material the current must travel through. Think of it like a water pipe with a sliding pinch-valve: sliding the pinch point closer to the source restricts flow to the output, while sliding it toward the output opens the flow.
However, unlike a fixed resistor, a variable resistor introduces a dynamic Thevenin equivalent resistance that changes depending on the wiper position. This is where hobbyists get burned when driving loads.
Imagine a 10kΩ linear potentiometer wired across a 12V DC supply and Ground. You set the wiper to exactly 40% of its mechanical travel from Ground.
• Unloaded: The bottom resistance is 4kΩ, the top is 6kΩ. The wiper voltage is
12V × (4kΩ / 10kΩ) = 4.8V.• Loaded: You connect a microcontroller ADC pin with an effective input impedance (or an external pull-down) of 10kΩ to the wiper. The bottom 4kΩ is now in parallel with the 10kΩ load, yielding an equivalent resistance of
(4 × 10) / (4 + 10) = 2.857kΩ.• The Result: The total circuit resistance is now
6kΩ + 2.857kΩ = 8.857kΩ. The new wiper voltage drops to 12V × (2.857 / 8.857) = 3.86V.You lost nearly 1 Volt simply by attaching a load. This is why we buffer variable voltage dividers with an op-amp voltage follower in precision analog circuits.
Potentiometer vs. Rheostat: Clearing Up the Confusion
When discussing the variable resistance definition, you must distinguish between the two primary wiring topologies. People frequently use the terms interchangeably, but electrically, they perform entirely different jobs.
| Feature | Potentiometer (Pot) | Rheostat |
|---|---|---|
| Terminals Used | 3 (Both ends + Wiper) | 2 (One end + Wiper) |
| Primary Function | Voltage division (Signal level control) | Current limiting (Power control) |
| Circuit Placement | Parallel to the source, wiper feeds load | Series with the load |
| Common Failure Mode | Wiper noise / crackling audio | Overheating / track burnout |
Where You Meet Variable Resistance in Practice
You will encounter adjustable resistance in almost every domain of electrical and electronic work. Recognizing the application dictates the component type you select.
- Audio and Signal Routing: Volume knobs on amplifiers and mixing consoles use logarithmic (audio taper) potentiometers. Human hearing perceives loudness logarithmically, so an audio taper pot changes resistance slowly at the low end and rapidly at the high end to create a perceived linear volume change.
- Power Electronics and Motor Control: Older DC motor speed controls and high-power lighting dimmers use heavy wirewound rheostats to dissipate excess energy as heat. (Note: modern AC dimmers and motor controllers use PWM and TRIACs for efficiency, using a low-power pot only as a reference signal input).
- Sensor Biasing and Environmental Triggers: Thermistors (temperature) and LDRs (light) act as environmentally variable resistors. A 10kΩ NTC thermistor drops its resistance as it heats up, which is fed into a voltage divider to trigger a thermal shutdown circuit.
- PCB Calibration: Factory-trimmed circuits use small cermet trimpots to calibrate voltage references or set the trip point of a comparator before the device is sealed in its enclosure.
Decision Tree: Picking the Right Component for Your Build
Stop guessing which adjustable resistor to buy. Use this decision path to terminate your search with a concrete, proven part number for your specific application.
| If your application requires... | Then choose this topology... | Concrete Part Recommendation |
|---|---|---|
| One-time factory calibration on a PCB (e.g., setting a 5.00V reference) | Multi-turn Cermet Trimpot | Bourns 3296W-1-103LF (10kΩ, 25-turn, 0.5W) |
| Smooth, user-facing audio volume control | Logarithmic (Audio) Taper Panel Pot | ALPS RK09K1110C0N (10kΩ Audio, conductive plastic) |
| MCU-controlled adjustment with no moving parts | SPI/I2C Digital Potentiometer | Microchip MCP41010 (10kΩ, 8-bit, SPI interface) |
| Dropping voltage/current for a 12V DC motor manually | High-Wattage Wirewound Rheostat | Ohmite 25-ohm, 25W Vitreous Enamel (Wirewound) |
| Position feedback for a robotic arm joint | Continuous Rotation Precision Pot | Bourns 6630S1D (10kΩ, conductive plastic, 356°) |
For modern embedded systems, if you need a microcontroller to adjust a resistance value (like setting the gain on an op-amp), default to a digital potentiometer. They eliminate mechanical wiper noise and can be locked via software, though you must ensure your signal voltage never exceeds the digital pot's VCC rail.
Common Failure Modes and Bench Testing
Variable resistors are mechanical devices (unless digital), making them the most common point of failure in aging electronics. Here is how to diagnose them on the bench.
Wiper Noise and "Crackling"
In carbon track potentiometers, dust and oxidation build up between the wiper and the track. When you turn the shaft, you hear a loud crackle in audio applications, or see erratic jumps in a multimeter reading. The Fix: Do not immediately throw it away. Open the casing and spray the track with a specialized contact cleaner like DeoxIT D5. Rotate the shaft 20 times to work the cleaner in. This resolves the issue in 80% of vintage audio gear.
Thermal Burnout
A standard 16mm panel potentiometer is typically rated for 0.125W (1/8th of a watt). If you wire it as a rheostat in series with a 12V LED strip drawing 200mA, the power dissipated at the midpoint (where resistance is highest) will easily exceed its thermal limit, melting the plastic housing and vaporizing the carbon track. Always calculate P = I² × R for the worst-case wiper position. If the dissipation exceeds 0.1W, you must use a wirewound power rheostat or switch to a PWM-based control scheme.
Testing with a Multimeter
To verify a potentiometer is functioning correctly: 1. Set your multimeter to resistance (Ω) mode. 2. Probe terminals 1 and 3. The reading should match the stamped value (e.g., 10kΩ) and remain perfectly stable as you turn the shaft. 3. Move one probe to terminal 2 (the wiper). As you rotate the shaft from one extreme to the other, the resistance should sweep smoothly from 0Ω to the maximum value without any sudden jumps or dropouts. If the meter flashes "OL" (open loop) during the sweep, the wiper is lifting off the track and the part is scrap.
FAQ: Variable Resistance Applications
Can I use a standard linear potentiometer for an Arduino analog input?
Yes. Wire the outer pins to 5V and GND, and the center wiper to an analog pin (e.g., A0). The Arduino's ADC has an input impedance of roughly 100MΩ, meaning it will not cause the "wiper sag" loading effect described in our numeric example. A standard 10kΩ linear pot is the default choice here.
Why do some variable resistors have 3 terminals and others have 4?
A 4-terminal device is typically a stereo potentiometer (dual-gang), featuring two completely isolated resistive tracks controlled by a single physical shaft, used for panning or stereo volume control. In some high-precision industrial sensors, a 4-terminal (Kelvin) connection is used to eliminate the resistance of the lead wires, but this is rare in hobbyist components.
What is the difference between a linear taper and an audio taper?
A linear taper (marked with a "B" in Asian coding, or no letter in US coding) changes resistance at a constant rate relative to shaft rotation. An audio taper (marked with an "A" in Asian coding, or "A" in US coding) changes resistance logarithmically. Always check the manufacturer's taper specification charts before buying, as regional letter codes are notoriously contradictory.






