Phone

    00852-6915 1330

AD8426 Dual In-Amp: Specs, Issues & INA826 Alternatives

  • Contents

Quick-Reference Card: AD8426 at a Glance

Attribute Detail
Component Type Dual Instrumentation Amplifier
Manufacturer Analog Devices Inc.
Key Spec 350 μA typical supply current (per amplifier)
Supply Voltage Single: 2.2 V to 36 V, Dual: ±1.35 V to ±18 V
Package Options 4 mm × 4 mm LFCSP (no metal pad)
Lifecycle Status Active
Best For Industrial process controls and bridge amplifiers

AD8426 product photo or IC package


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

The AD8426 is a dual-channel instrumentation amplifier from Analog Devices Inc. that requires only one external resistor to set any gain from 1 to 1000, featuring a rail-to-rail output. Designed for precision analog front-end applications, it packs two independent amplifiers into a tiny footprint, making it highly efficient for multi-channel sensor data acquisition.

1.1 Core Architecture & Design Philosophy

At its core, the AD8426 utilizes a classic three-op-amp instrumentation amplifier architecture, but it is optimized for low power and space constraints. Analog Devices made a highly specific design choice here: the 4 mm × 4 mm LFCSP package has no exposed metal thermal pad. For PCB designers, this omission is a massive advantage—it eliminates the risk of current leakage to the pad and frees up critical board real estate, allowing traces to be routed directly underneath the IC.

1.2 Where It Fits in the Signal Chain / Power Path

The AD8426 sits at the very front of the analog signal chain. It is an upstream component designed to interface directly with low-level, differential sensor signals (like load cells, strain gauges, or EEG electrodes). It amplifies these microvolt-level signals and drives them into downstream analog-to-digital converters (ADCs) or multiplexers.


2. Electrical Characteristics: The Numbers That Matter

2.1 Power Supply & Consumption Profile

The AD8426 operates on a remarkably wide supply range: 2.2 V to 36 V for single supplies, and ±1.35 V to ±18 V for dual supplies. At just 350 μA typical supply current per amplifier, this is highly efficient. Why it matters: You can use the exact same part in a battery-powered 3.3V portable medical device and a 24V industrial PLC panel, reducing your unique BOM count.

2.2 Performance Specs (Speed, Accuracy, or Efficiency)

It features a 1 MHz bandwidth at a gain of 1, and an input noise floor of 24 nV/√Hz. The Common-Mode Rejection Ratio (CMRR) is 80 dB minimum (at G=1). Why it matters: The 80 dB CMRR ensures that 50/60 Hz power-line interference—common in both medical and industrial environments—is aggressively rejected before it reaches your ADC, preventing false readings.

2.3 Absolute Maximum Ratings — What Will Kill It

The AD8426 is ruggedized, but it has limits. The inputs are protected beyond the supply rails—specifically, up to ±35V even when running on just a ±5V supply. However, exceeding absolute maximum voltage ratings on the output or reference pins will destroy the silicon. Always ensure the common-mode input voltage remains within the limits defined by the Analog Devices Diamond Plot tool.


3. Pinout & Package Guide

3.1 Pin-by-Pin Functional Groups

Pin Group Pins Function
Power +Vs, -Vs Positive and negative supply rails
Signal Input +IN A, -IN A, +IN B, -IN B Non-inverting and inverting inputs for channels A and B
Signal Output OUT A, OUT B Amplified rail-to-rail voltage outputs
Gain Control RG1, RG2 (per channel) Connect a single external resistor here to set gain (1 to 1000)
Reference REF A, REF B Sets the zero-differential output voltage level

3.2 Package Variants & Soldering Notes

Package Pitch Thermal Pad? Soldering Method
4 mm × 4 mm LFCSP Refer to datasheet No Standard Reflow

Note: The absence of the thermal pad simplifies the solder paste stencil design and prevents tombstoning issues during reflow.

3.3 Part Number Decoder

Refer to the official datasheet for exact values regarding temperature grades and tape-and-reel quantities, but generally, the suffix denotes the packaging (e.g., CPZ indicates a lead-free LFCSP package).


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

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

Problem: Output Offset and Oscillation * Root Cause: Users report the output not oscillating exactly at the desired virtual ground (e.g., 1.8V) when interfacing with subsequent op-amps, resulting in flattened or clipped outputs. * Recommended Fix: Tie an integrator to the reference input (REF pin) of the AD8426 to reject DC voltages and offsets, or place a coupling capacitor directly at the in-amp output to block DC.

Problem: Input Biasing and Saturation * Root Cause: Engineers experience flat outputs or no change in voltage when connecting floating sensors like load cells. This happens because the inputs are biased at 0V, leading to saturation or potential device damage. * Recommended Fix: Ensure inputs are properly biased above 0V. You must provide a DC return path for the input bias currents. Always check the common-mode input voltage against the Analog Devices Diamond Plot limits to prevent saturation.


5. Application Circuits & Integration Examples

5.1 Typical Application: Bridge Amplifiers

In a standard load cell or bridge amplifier schematic, the differential outputs of the bridge connect to +IN and -IN. A single precision resistor across the RG pins sets the gain. For a 3.3V system, the REF pin is typically driven by a low-impedance voltage reference (like 1.65V) to center the rail-to-rail output for a downstream ADC.

5.2 Interface Example: Connecting to a Microcontroller

Because the AD8426 outputs an analog voltage, interfacing it with an MCU requires an ADC. Here is how you might read the amplified signal using an STM32 HAL or standard Arduino library.

// Pseudocode for reading AD8426 output via MCU ADC
#define ADC_RESOLUTION 4096.0
#define V_REF 3.3

void init_sensor_read() {
    // Initialize ADC on the pin connected to AD8426 OUT A
    HAL_ADC_Start(&hadc1); 
}

float read_AD8426_voltage() {
    HAL_ADC_PollForConversion(&hadc1, 10);
    uint32_t adc_val = HAL_ADC_GetValue(&hadc1);

    // Convert ADC reading back to voltage
    float out_voltage = (adc_val / ADC_RESOLUTION) * V_REF;
    return out_voltage;
}

6. Alternatives, Replacements & Cross-Reference

If you are facing allocation issues or need a different spec profile, consider these alternatives.

6.1 Pin-Compatible Drop-In Replacements

Part Number Manufacturer Key Difference Compatible?
INA826 Texas Instruments Similar supply range, slightly different power profile ?? Verify pinout
INA350 Texas Instruments Lower cost, optimized for battery-powered systems ? Different package

6.2 Upgrade Path (Better Performance)

If your design requires a JFET input for ultra-low input bias current (critical for high-impedance biopotential measurements), the Analog Devices AD8220 is the superior upgrade, though it is single-channel.

6.3 Cost-Down Alternatives

If you only need a single channel, the Analog Devices AD8226 is the single-channel equivalent of the AD8426. For older, budget-conscious legacy designs, the AD620 is an industry standard, though it comes in larger packages and consumes more power.


7. Procurement & Supply Chain Intelligence

  • Lifecycle Status: Active. The AD8426 is in full production.
  • Typical MOQ & Lead Time: Standard reels typically dictate MOQs of 250 to 1,500 units depending on the distributor. Lead times fluctuate but generally hover around 12–16 weeks.
  • BOM Risk Factors: The dual-channel LFCSP package is somewhat specialized. If supply chain disruptions occur, transitioning to two single-channel in-amps (like the AD8226) will require a complete PCB spin.
  • Recommended Safety Stock: Maintain a 6-month buffer if utilized in critical medical instrumentation.
  • Authorized Distributors: Always source from authorized partners (e.g., Digi-Key, Mouser, Arrow) to avoid counterfeit silicon.

8. Frequently Asked Questions

Q: What is the AD8426 used for? The AD8426 is primarily used for industrial process controls, bridge amplifiers, multichannel data acquisition, and medical instrumentation like EEG biopotential measurements.

Q: What are the best alternatives to the AD8426? The Texas Instruments INA826 is a strong equivalent, while the Analog Devices AD8226 serves as the single-channel version. The AD8220 is a great upgrade if you need JFET inputs.

Q: Is the AD8426 still in production? Yes, the AD8426 is currently active and not marked as Not Recommended for New Designs (NRND).

Q: Can the AD8426 work with 3.3V logic? Yes, the AD8426 can operate on a single supply as low as 2.2V, making it perfectly compatible with 3.3V systems.

Q: Where can I find the AD8426 datasheet and evaluation board? The official AD8426 datasheet and compatible evaluation boards can be found directly on the Analog Devices website or through major authorized component distributors.


9. Resources & Tools

  • Evaluation / Development Kit: Search for Analog Devices dual-channel instrumentation amplifier evaluation boards compatible with LFCSP packages.
  • Reference Designs: Refer to Analog Devices' application notes on bridge amplifiers and biopotential front-ends.
  • Community Libraries: Because it is an analog IC, standard ADC libraries (Arduino library, STM32 HAL) are used to read its output.
  • SPICE / LTspice Model: Available for download directly from the Analog Devices product page for accurate circuit simulation.

AD8426BCPZ-WP Documents & Media

Download datasheets and manufacturer documentation for Analog Devices Inc. AD8426BCPZ-WP.
Datasheets
datasheet
ConflictMineralStatement

AD8426BCPZ-WP PCB Symbol, Footprint & 3D Model

Analog Devices Inc. AD8426BCPZ-WP

Analog Devices Inc.

SP Amp INSTR Amp Dual R-R O/P /-18V/36V 16-Pin LFCSP EP Tray

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.