Phone

    00852-6915 1330

AD522 Instrumentation Amp: Specs, EOL Status & Best Replacements

  • Contents

Quick-Reference Card: AD522 at a Glance

Attribute Detail
Component Type Precision Instrumentation Amplifier
Manufacturer Analog Devices Inc.
Key Spec >110dB CMRR (at G = 1000)
Supply Voltage ±5V to ±18V
Package Options 14-pin Ceramic DIP (CDIP)
Lifecycle Status Obsolete (EOL) — Do not use for new designs
Best For Bridge amplifiers for resistance transducers (strain gages)


1. What Is the AD522? (Definition + Architecture)

The AD522 is a precision instrumentation amplifier from Analog Devices Inc. that extracts microvolt-level differential signals in high-noise environments using its exceptional >110dB common-mode rejection ratio and ultra-low 2.0μV/°C voltage drift. Long considered a workhorse in legacy industrial and medical data acquisition systems, it guarantees high accuracy under worst-case operating conditions.

1.1 Core Architecture & Design Philosophy

Internally, the AD522 relies on the classic three-op-amp instrumentation amplifier topology. What sets it apart for its era is the active laser trimming of its thin-film resistors during manufacturing. This trimming directly targets offset voltage, gain accuracy, and common-mode rejection (CMRR), eliminating the need for external calibration potentiometers in most 12-bit systems. The gain is programmed from 1 to 1000 using a single external resistor, keeping the design footprint relatively straightforward despite the bulky package.

1.2 Where It Fits in the Signal Chain / Power Path

This component sits at the absolute front end of the signal chain. It directly interfaces with raw, unamplified sensors—such as Wheatstone bridges, thermistors, or bio-potential electrodes. It takes the tiny differential voltage, strips away the common-mode noise (like 50/60Hz power line interference), and scales the signal up to a level suitable for an Analog-to-Digital Converter (ADC).

AD522 functional block diagram showing 3-op-amp topology


2. Electrical Characteristics: The Numbers That Matter

2.1 Power Supply & Consumption Profile

The AD522 requires a dual-supply rail, operating from ±5V to ±18V. It draws an operating supply current of 8 mA. By modern standards, 8 mA quiescent current is exceptionally high for a single amplifier, making this part entirely unsuitable for battery-powered or low-power IoT applications. It was designed for mains-powered industrial racks where thermal dissipation and power budgets were secondary to raw DC precision.

2.2 Performance Specs (Speed, Accuracy, or Efficiency)

This is a high-precision, low-speed device. * DC Precision: It features a maximum input offset voltage of just 200 μV (for the AD522BD grade) and an input bias current of 25 nA. The nonlinearity is a stellar 0.005% at G=100, ensuring the amplified signal perfectly represents the sensor data. * AC Limitations: The slew rate is a sluggish 0.1 V/μs, and the gain-bandwidth product (GBW) is only 1.5 kHz. This means the AD522 is strictly for DC or very low-frequency measurements (e.g., temperature, weight, slow pressure changes). It will severely distort fast transients or audio-frequency signals.

2.3 Absolute Maximum Ratings — What Will Kill It

  • Supply Voltage: Exceeding ±18V will cause catastrophic thermal runaway.
  • Differential Input Voltage: Forcing a massive differential voltage across the inputs can damage the internal input protection resistors.
  • (Refer to the official datasheet for exact absolute maximum voltage and temperature limits, as prolonged exposure near these limits degrades the laser-trimmed precision).

3. Pinout & Package Guide

3.1 Pin-by-Pin Functional Groups

Pin Group Pins Function
Power +Vs, -Vs Positive and negative supply rails (requires decoupling capacitors)
Signal Input +IN, -IN Non-inverting and inverting differential inputs
Gain Setting RG1, RG2 Terminals for the single external gain-setting resistor
Output VOUT, REF Amplified output voltage; REF pin sets the output ground reference
Null/Trim Offset Null Optional pins for ultra-fine external offset adjustments

(Refer to the official datasheet for exact pin numbers corresponding to the 14-pin CDIP package).

3.2 Package Variants & Soldering Notes

Package Pitch Thermal Pad? Soldering Method
14-pin CDIP 2.54 mm (0.1") No Wave soldering or manual hand-soldering

The Ceramic DIP package provides excellent hermetic sealing and thermal stability, which helps maintain the 2.0μV/°C drift spec. However, it is fundamentally incompatible with modern, high-density Surface Mount Technology (SMT) pick-and-place lines.

3.3 Part Number Decoder

  • AD522: Base part number.
  • B: Performance grade (e.g., 'B' typically denotes tighter offset and 2.0μV/°C max drift compared to 'A' or 'J' grades).
  • D: Package code (D = Ceramic DIP).

4. Known Issues, Errata & Real-World Pain Points

Why this section exists: Community forums, application notes, and field reports reveal problems the datasheet glosses over. This section saves you hours of debugging.

  • Problem: Component Obsolescence (EOL)
    • Root Cause: Analog Devices has obsoleted the AD522 series. The through-hole ceramic packaging and legacy silicon process are no longer economically viable to manufacture.
    • Recommended Fix: Do not use in new designs. Migrate legacy designs to modern, functionally equivalent instrumentation amplifiers like the AD620, AD8221, or INA114.
  • Problem: Limited Bandwidth and Slew Rate
    • Root Cause: With a slew rate of 0.1 V/μs and a GBW of 1.5 kHz, the internal compensation heavily restricts high-frequency operation to maintain DC stability.
    • Recommended Fix: If your application requires tracking faster transients (e.g., motor current sensing or vibration analysis), specify a higher-speed in-amp like the AD8421.
  • Problem: Outdated Form Factor
    • Root Cause: The 14-pin CDIP consumes massive PCB real estate and requires costly wave soldering or manual assembly.
    • Recommended Fix: Redesign the PCB to utilize modern surface-mount (SMD) packages such as SOIC or MSOP, utilizing modern silicon equivalents.

5. Application Circuits & Integration Examples

5.1 Typical Application: Bridge Amplifiers for Resistance Transducers

In a classic strain gage application, the AD522 sits across the middle of a Wheatstone bridge. The bridge is excited by a stable reference voltage (e.g., 5V). As weight is applied to the load cell, the bridge unbalances slightly, producing a differential voltage in the millivolt range.

The AD522 is configured with a high gain (e.g., G=1000) by placing a precise, low-drift resistor across the RG pins. The >110dB CMRR effortlessly rejects the 5V common-mode voltage of the bridge, amplifying only the tiny differential change.

5.2 Interface Example: Connecting to a Microcontroller

Because the AD522 operates on bipolar supplies (e.g., ±15V), its output can swing well below ground and above the typical 3.3V/5V limits of an Arduino or STM32 ADC. You must level-shift and clamp the output before feeding it to a modern MCU.

// Pseudocode for reading the level-shifted AD522 output via ADC
#define ADC_PIN A0
#define VREF 3.3
#define ADC_RES 4095.0 // 12-bit ADC

void setup() {
    Serial.begin(115200);
    analogReadResolution(12); // For STM32/SAMD
}

void loop() {
    int raw_val = analogRead(ADC_PIN);
    // Convert to voltage (assuming hardware level shifter scales to 0-3.3V)
    float sensor_voltage = (raw_val / ADC_RES) * VREF;

    Serial.print("Amplified Sensor Value: ");
    Serial.println(sensor_voltage, 4);
    delay(100);
}

6. Alternatives, Replacements & Cross-Reference

6.1 Pin-Compatible Drop-In Replacements

Given the age of the AD522, exact pin-for-pin 14-pin DIP replacements are also largely obsolete. However, historically, the following were considered direct competitors:

Part Number Manufacturer Key Difference Compatible?
INA101 Burr-Brown (TI) Highly similar legacy precision in-amp ?? (Verify pinout)
AD524 Analog Devices Pin-programmable gain, slightly faster ?? (Different gain setup)

6.2 Upgrade Path (Better Performance)

If redesigning the PCB, upgrade to modern silicon. * AD8221: Offers vastly superior AC performance, higher CMRR over frequency, and comes in space-saving MSOP/SOIC packages. * AD8421: The choice for high-speed multiplexed DAQ systems requiring fast settling times.

6.3 Cost-Down Alternatives

  • AD620: The industry-standard modern replacement for legacy in-amps. It requires only one gain resistor, operates on lower power, and is highly cost-effective.
  • INA114 / INA826: Excellent, low-cost precision instrumentation amplifiers from Texas Instruments.

7. Procurement & Supply Chain Intelligence

  • Lifecycle Status: Obsolete (EOL). Analog Devices no longer manufactures this component.
  • Typical MOQ & Lead Time: N/A for factory-direct. Only available through secondary markets or authorized legacy distributors.
  • BOM Risk Factors: Extreme. Relying on the AD522 for a production run guarantees supply chain failure. Counterfeits are common in the grey market for expensive, obsolete CDIP parts.
  • Recommended Safety Stock: If maintaining legacy medical or industrial equipment, procure remaining stock immediately from authorized EOL partners (like Rochester Electronics).
  • Authorized Distributors: Rochester Electronics (for authorized legacy ADI die/recreations). Avoid unauthorized brokers on Alibaba or eBay.

8. Frequently Asked Questions

Q: What is the AD522 used for? The AD522 is used primarily in 12-bit data acquisition systems, process control instrumentation, and bridge amplifiers for resistance transducers like strain gages and thermistors.

Q: What are the best alternatives to the AD522? For new designs, the AD620, AD8221, and TI INA114 are the best functional equivalents. Legacy competitors included the INA101 and AD524.

Q: Is the AD522 still in production? No, the AD522 series is entirely obsolete. It should not be designed into new hardware.

Q: Can the AD522 work with 3.3V logic? No, the AD522 is a purely analog component requiring dual bipolar supplies (±5V to ±18V). Its output must be externally scaled and clamped before entering a 3.3V MCU.

Q: Where can I find the AD522 datasheet and evaluation board? The datasheet can be found in Analog Devices' obsolete parts archive. No official evaluation boards are currently manufactured.


9. Resources & Tools

  • Evaluation / Development Kit: None active (Obsolete).
  • Reference Designs: Refer to Analog Devices' legacy Application Notes on Wheatstone Bridge signal conditioning (e.g., AN-282).
  • Community Libraries: N/A (Purely analog component).
  • SPICE / LTspice Model: Check the Analog Devices LTspice library archive for legacy macro-models to simulate DC drift and CMRR behavior.

AD522BD Documents & Media

Download datasheets and manufacturer documentation for Analog Devices Inc. AD522BD.
PCN Obsolescence/ EOL
Datasheets
datasheet
ConflictMineralStatement

AD522BD PCB Symbol, Footprint & 3D Model

Analog Devices Inc. AD522BD

Analog Devices Inc.

IC INST AMP 1 CIRCUIT 14CDIP

Get a quote

Quantity:

Click To Quote

Kynix

Kynix was founded in 2008, specializing in the electronic components distribution business. We adhere to honesty and ethics as our business philosophy and have gradually established an excellent reputation and credibility in our international business. With the accurate quotation, excellent credit, reasonable price, reliable quality, fast delivery, and authentic service, we have won the praise of the majority of customers.

Join our mailing list!

Be the first to know about new products, special offers, and more.

Leave a Reply

We'd love to hear from you! Feel free to share your thoughts and comments below. Rest assured, your email address will remain private.

Name *
Email *
Captcha *
Rating:

Kynix

  • How to purchase

  • Order
  • Search & Inquiry
  • Shipping & Tracking
  • Payment Methods
  • Contact Us

  • Tel: 00852-6915 1330
  • Email: info@kynix.com
  • Follow Us

authentication

Kynix

© 2008-2026 kynix.com all rights reserved.