The Short Answer: What Are Diodes and How Do They Work?
A diode is a two-terminal semiconductor device that acts as a one-way valve for electrical current. It allows current to flow freely in one direction (forward bias) while blocking it in the opposite direction (reverse bias). If you are asking what are diodes in the context of practical electronics, think of them as the check valves of the electrical world: they prevent reverse current from damaging sensitive components and are the fundamental building blocks for converting AC mains power into usable DC voltage.
On a schematic, the diode symbol is a triangle pointing toward a vertical line. The flat base of the triangle is the Anode (A), which connects to the more positive side of the circuit during forward bias. The vertical line represents the Cathode (K), which connects to the more negative side. On a physical through-hole component, like the ubiquitous black cylindrical 1N4007, the cathode is marked by a painted silver or white band near one of the wire leads. Current flows from the anode to the cathode, but only when the anode voltage exceeds the cathode voltage by a specific threshold known as the forward voltage drop ($V_f$).
Operation Regions and Biasing for Real Circuits
To select and bias a diode correctly for the job, you must understand its three distinct operating regions. Unlike resistors, which behave linearly, diodes are highly non-linear. The behavior changes drastically depending on the polarity and magnitude of the voltage applied across the anode and cathode.
| Region | Bias Condition | Typical Voltage (Silicon) | Typical Current | Practical Effect in Circuit |
|---|---|---|---|---|
| Forward Bias | Anode > Cathode | +0.6V to +1.1V ($V_f$) | mA to tens of Amps | Diode conducts; acts like a closed switch with a small voltage drop. |
| Reverse Bias | Cathode > Anode | 0V to -PIV rating | nA to µA (Leakage) | Diode blocks current; acts like an open switch. |
| Breakdown | Cathode >> Anode | Beyond -PIV (e.g., -50V to -1000V) | Spikes to Amps | Junction avalanches. Destructive for standard diodes; controlled in Zeners. |
Safe Default Part Numbers and Ratings
Walking into an electronics lab or browsing Diodes Inc. datasheets, you will see thousands of part numbers. However, 90% of hobbyist and prototyping tasks can be solved with three safe default part numbers. Never use a part number without verifying its Peak Inverse Voltage (PIV) and maximum forward current ($I_f$) ratings.
- 1N4007 (General Purpose Rectifier): Rated for 1.0A continuous forward current and 1000V PIV. Forward voltage drop is roughly 1.1V at 1A. It has a slow reverse recovery time ($t_{rr}$ ~30µs), making it ideal for 50/60Hz mains rectification and reverse-polarity protection, but terrible for high-frequency switching or PWM snubbers.
- 1N4148 (Small Signal Switching): Rated for 300mA maximum forward current and 100V PIV. Forward drop is ~1.0V. Its reverse recovery time is incredibly fast (~4ns). This is your default for logic-level signal routing, high-frequency flyback snubbers, and low-current protection.
- 1N5819 (Schottky Rectifier): Rated for 1.0A and 40V PIV. The critical advantage is its low forward voltage drop (~0.6V max at 1A, often measuring 0.3V at lower currents) and near-zero reverse recovery time. Use this in battery-powered circuits, solar charge controllers, and buck converters where every fraction of a volt matters.
Practical Application: 12V to 5V Reverse Polarity Protection Circuit
Let us look at a complete application circuit. A common bench mistake is plugging a 12V wall adapter into a custom PCB backwards, instantly frying a linear regulator and the downstream microcontroller. We will use a 1N4007 to build a robust reverse polarity protection circuit feeding an LM7805 5V regulator.
Component List:
- D1: 1N4007 Diode (1A, 1000V)
- U1: LM7805 Linear Voltage Regulator (5V output)
- C1: 10µF / 25V Electrolytic Capacitor (Input filter)
- C2: 10µF / 10V Electrolytic Capacitor (Output filter)
- C3: 100nF (0.1µF) / 50V Ceramic Capacitor (High-frequency bypass)
Wiring Steps:
- Connect the positive terminal of your 12V DC input to the Anode of D1.
- Connect the Cathode of D1 (silver band side) to the INPUT pin of the LM7805. This is the protected positive rail.
- Connect the negative terminal of the 12V input to the GND pin of the LM7805. This is your common ground.
- Place C1 (10µF) across the raw 12V input and ground, observing correct polarity.
- Place C2 (10µF) across the LM7805 OUTPUT pin and ground, observing polarity.
- Place C3 (100nF ceramic) in parallel with C2 on the output side to suppress high-frequency regulator oscillation.
- Connect your 5V load between the LM7805 OUTPUT pin and ground.
Verify: Apply 12V. Measure the voltage at the LM7805 input pin; it should read approximately 11.3V (12V minus the ~0.7V drop of the 1N4007). The output should read a clean 5.0V. If you reverse the 12V input, the 1N4007 becomes reverse-biased, blocking current flow and protecting the LM7805 from a catastrophic -12V differential.
Failure Modes and How to Test a Diode with a Multimeter
Diodes generally fail in two ways: short circuit or open circuit. A short usually occurs from thermal runaway or exceeding the PIV rating, causing the internal silicon junction to avalanche and melt into a solid conductive mass. An open failure happens when a massive current spike literally vaporizes the tiny internal bond wire connecting the silicon die to the lead frame. According to Fluke's testing guidelines, verifying a diode's health requires a multimeter with a dedicated Diode Test mode (usually indicated by a diode symbol on the dial).
Testing Procedure:
- Set your multimeter to Diode Test mode. Ensure the circuit is completely de-energized and capacitors are discharged.
- Place the Red probe on the Anode and the Black probe on the Cathode (forward bias). A healthy silicon diode will display a voltage drop between 0.500V and 0.800V. A Schottky will read between 0.200V and 0.400V.
- Swap the probes: Black on Anode, Red on Cathode (reverse bias). The meter should display 'OL' (Over Limit) or a '1' on the far left, indicating infinite resistance.
Frequently Asked Questions About Diodes
What are diodes used for in AC-to-DC power supplies?
In power supplies, diodes are arranged in configurations like a full-bridge rectifier (using four diodes, or a single integrated package like the W10M) to convert alternating current (AC) from a transformer into pulsating direct current (DC). Because AC voltage swings positive and negative 50 or 60 times a second, the diodes steer the negative half-cycles upward, ensuring current only flows toward the load in one direction. This pulsating DC is then smoothed by large electrolytic capacitors and regulated into a flat DC voltage.
What are diodes doing when placed across an inductive relay coil?
When placed in reverse-bias across a relay coil or DC motor, the diode acts as a flyback (or freewheeling) diode. Inductors resist changes in current. When you suddenly cut power to a relay coil, the collapsing magnetic field induces a massive reverse voltage spike (often hundreds of volts) that can instantly destroy the driving transistor or microcontroller GPIO pin. The flyback diode provides a safe, low-resistance recirculation path for this inductive kickback current, clamping the voltage spike to a safe ~0.7V above the supply rail.
What are diodes made of, and how do Schottky variants differ?
Standard diodes are made of a PN-junction, where P-type and N-type silicon are joined together. This creates a depletion region that requires about 0.7V to overcome. Schottky diodes, however, are constructed using a metal-to-semiconductor junction (typically platinum or tungsten on N-type silicon). This physical difference eliminates the minority carrier charge storage found in PN-junctions, resulting in virtually instantaneous switching speeds and a significantly lower forward voltage drop (0.2V to 0.4V), making Schottkys ideal for high-frequency switching power supplies.
What are diodes rated for, and can I wire them in parallel for more current?
Diodes are primarily rated by their maximum continuous forward current ($I_f$) and Peak Inverse Voltage (PIV). A common bench misconception is wiring two 1A diodes in parallel to handle a 2A load. Do not do this. Because diodes have a negative temperature coefficient, as one diode gets slightly warmer, its forward voltage drop decreases, causing it to hog more current. This leads to thermal runaway, where one diode takes the entire load, overheats, fails short, and subsequently takes out the second diode. If you need 2A of current, buy a single diode rated for 3A or higher (like the 1N5408), or use active MOSFET-based ideal diode controllers.






