Anatomy and Pinout: Reading the Op Amp Symbol and DIP-8 Package
Before wiring anything, you must understand the schematic symbol and the physical package. The standard op amp symbol is a triangle pointing to the right. The input pins are on the flat left side: the non-inverting input (marked with a +) and the inverting input (marked with a -). The output is at the tip of the triangle. Two additional power pins, V+ (positive supply) and V- (negative supply or ground), are usually drawn off the top and bottom of the triangle, though they are frequently omitted in simplified schematics—a dangerous habit that leads to wiring errors on the bench. Most through-hole op amp chips come in an 8-pin DIP (Dual Inline Package) containing two independent amplifiers (a 'dual' op amp). The industry-standard pinout for a dual DIP-8 op amp (shared by the LM358, TL072, NE5532, and MCP6002) is as follows:- Pin 1: Output A
- Pin 2: Inverting Input A (-)
- Pin 3: Non-Inverting Input A (+)
- Pin 4: V- (Negative Supply / Ground)
- Pin 5: Non-Inverting Input B (+)
- Pin 6: Inverting Input B (-)
- Pin 7: Output B
- Pin 8: V+ (Positive Supply)
The Safe Defaults: Spec-Sheet Comparison of Standard Op Amp Chips
Selecting an op amp chip comes down to matching the power supply rails, the required bandwidth, and the input/output voltage ranges. Pushing a 5V signal into an op amp powered by a 3.3V rail will result in clipping, while using a legacy bipolar chip on a single 5V supply will result in a dead zone near ground. The table below details the five most common through-hole op amp chips you will encounter, complete with their real-world ratings and 2026 approximate pricing for DIP-8 variants.| Part Number | Architecture | Supply Voltage Range | Input Bias Current | Slew Rate | Typical Cost (1pc) | Best Application |
|---|---|---|---|---|---|---|
| LM358 | Bipolar | 3V to 32V (Single) or ±1.5V to ±16V (Dual) | 45 nA | 0.6 V/µs | $0.15 | Single-supply DC sensors, LED drivers, slow control loops |
| TL072 | JFET Input | ±5V to ±15V (Dual supply required for best performance) | 50 pA | 13 V/µs | $0.45 | Audio preamps, active filters, high-impedance sensor buffering |
| NE5532 | Bipolar (Low Noise) | ±3V to ±20V | 500 nA | 9 V/µs | $0.35 | High-fidelity audio mixing, low-noise microphone preamps |
| MCP6002 | CMOS (Rail-to-Rail) | 1.8V to 6.0V (Single) | 1 pA | 0.6 V/µs | $0.60 | 3.3V/5V microcontroller ADC buffering, battery-powered IoT |
| OPA2134 | FET Input (Precision) | ±2.5V to ±18V | 5 pA | 20 V/µs | $3.50 | Precision measurement, high-end DAC I/V conversion |
Sources: Texas Instruments Op Amp Overview, All About Circuits - Introduction to Operational Amplifiers.
Biasing, Operation Regions, and a Complete Application Circuit
How you bias an op amp chip dictates its linear operating range. Op amps only amplify the voltage difference between their inputs when the output is within the 'linear region'—meaning it hasn't slammed into the positive or negative supply rail (saturation).Understanding Operation Regions
When designing your bias network, you must ensure your expected output swing stays within the linear region. Here is how the chip behaves across its three operational states, using a standard LM358 powered by a single 12V supply (V+ = 12V, V- = 0V/GND) as the baseline:| Operation Region | Condition | Typical Output Voltage | Output Current Limit |
|---|---|---|---|
| Linear (Active) | V- < Vout < V+ (with headroom) | 0.05V to 10.5V (Cannot reach true 12V rail) | Sourcing: ~40mA / Sinking: ~20mA |
| Positive Saturation | V+ input >> V- input | Clamped at ~10.5V (V+ minus 1.5V dropout) | Internal short-circuit protection limits to ~40mA |
| Negative Saturation | V- input >> V+ input | Clamped at ~0.02V (Near ground, but not true 0V) | Sinking limited to ~20mA |
Application Circuit: 3.3V Non-Inverting Microphone Amplifier
Let's build a practical non-inverting amplifier to boost an electret microphone signal for a 3.3V ESP32 ADC input. We will use the MCP6002 because it operates on a single 3.3V supply and features rail-to-rail input/output.Target Gain: 11x
Formula: Gain (Av) = 1 + (R_feedback / R_ground)
Bill of Materials & Wiring:
- U1: MCP6002 (Pins 4 to GND, Pin 8 to 3.3V)
- C1: 100nF ceramic decoupling capacitor (placed physically between Pin 8 and Pin 4, as close to the chip as possible)
- C2: 1µF input coupling capacitor (blocks DC offset from the mic)
- R1 (Feedback): 10kΩ resistor (from Pin 1 Output to Pin 2 Inverting Input)
- R2 (Ground): 1kΩ resistor (from Pin 2 Inverting Input to GND)
- R3 (Bias): 100kΩ resistor (from Pin 3 Non-Inverting Input to 1.65V virtual ground)
- R4 (Bias): 100kΩ resistor (from Pin 3 Non-Inverting Input to GND)
How it works: The voltage divider (R3 and R4) biases the non-inverting input (Pin 3) to exactly half the supply voltage (1.65V). This creates an artificial 'virtual ground', allowing the AC audio signal from the microphone (passed through C2) to swing both positive and negative relative to 1.65V without clipping against the 0V or 3.3V rails. The 10kΩ and 1kΩ feedback network sets the gain to exactly 11. A 10mV peak-to-peak microphone signal will emerge from Pin 1 as a 110mV peak-to-peak signal centered around 1.65V, perfectly safe for the ESP32's ADC.
Failure Modes and Multimeter Testing on the Bench
Op amp chips are surprisingly fragile when mishandled. I have fried my share of TL072s by forgetting to decouple the rails, leading to high-frequency oscillation that thermally destroyed the output stage. Understanding how they fail is the first step to testing them.Common Failure Modes
- Input Overvoltage / ESD: Applying a voltage to the input pins that exceeds the supply rails (even when the chip is unpowered) forward-biases the internal ESD protection diodes. If current isn't limited by a series resistor, the diodes melt, resulting in a dead short between the input pin and the V+ or V- rail.
- Phase Reversal (Latch-up): Older JFET and bipolar chips (like the TL072 or LM358) suffer from phase reversal if the input common-mode voltage range is exceeded. The output violently slams to the opposite rail. While not always instantly fatal, it can cause massive current spikes in downstream components.
- Output Short Circuit: Shorting the output pin directly to V+ or GND while the chip is trying to drive the opposite voltage will exceed the internal thermal limits. Some modern chips have thermal shutdown; older ones will literally crack or vent magic smoke.
Step-by-Step Multimeter Testing Procedure
If you suspect a dead op amp on a breadboard or PCB, do not just swap it blindly. Use your digital multimeter (DMM) to verify the failure using this sequence:Step 1: The Quiescent Short Test (Power OFF)
Set your DMM to continuity or resistance mode. Measure between Pin 8 (V+) and Pin 4 (V-). You should read a high resistance (typically >10kΩ). If you read less than 50 ohms, the internal power bus is shorted. The chip is dead and must be desoldered or pulled.
Step 2: The ESD Diode Test (Power OFF)
Set your DMM to Diode Test mode. Place the red probe on Pin 4 (V-) and the black probe on Pin 2 (Inverting Input). You should read a standard silicon diode drop (0.600V to 0.750V). Reverse the probes; it should read 'OL' (Open Loop). Repeat this for all input pins against both V+ and V-. If any pin reads 0.00V (short) or 'OL' in both directions (blown open), the input stage is destroyed.
Step 3: The Output Stage Sanity Check (Power ON)
Power the circuit. Set the DMM to DC Voltage. Measure the voltage at Pin 4 and Pin 8 to verify your power rails are actually present and clean. Next, measure the output pin (Pin 1 or 7). With no input signal and a properly biased circuit, the output should sit at your virtual ground voltage (e.g., 1.65V in the circuit above, or 0V in a dual-supply setup). If the output is pinned exactly to V+ or V- despite correct biasing, the output transistor stage has failed short.






