ADR520ART-R2
AI

## Overview of the ADR520ART-R2
The **ADR520ART-R2** is a high-precision, shunt-mode voltage reference manufactured by Analog Devices. It is designed specifically for space-constrained applications requiring high stability and low power consumption.
---
### 1. Key Technical Specifications
The following table summarizes the primary electrical characteristics of the component:
| Parameter | Specification |
| :--- | :--- |
| **Output Voltage ($V_{out}$)** | 2.048 V |
| **Initial Accuracy** | ±0.2% to ±0.4% (Grade dependent) |
| **Temperature Coefficient** | 70 ppm/°C |
| **Operating Current Range** | 50 µA to 15 mA |
| **Operating Temperature** | -40°C to +85°C |
| **Package Type** | SOT-23-3 (Surface Mount) |
---
### 2. Core Functional Components
The internal architecture of the ADR520 series typically consists of three main stages:
1. **Bandgap Core:** Uses the predictable thermal properties of silicon transistors to create a stable 1.2V base reference.
2. **Error Amplifier:** Compares the output voltage against the internal reference to maintain a steady state despite fluctuations in input current.
3. **Shunt Transistor:** Acts like a Zener diode, "shunting" excess current to ground to maintain the precise 2.048V output across its terminals.
---
### 3. Application Circuit Example
To use the ADR520, you must use an external resistor ($R_{S}$) to limit the current entering the device.
```python
# Formula to calculate the required series resistor (Rs)
# Rs = (Vin_min - Vout) / (I_load_max + I_shunt_min)
Vin_min = 5.0 # Input voltage
Vout = 2.048 # Device output
I_load = 0.001 # 1mA load
I_shunt = 0.0001 # 100uA minimum operating current
Rs = (Vin_min - Vout) / (I_load + I_shunt)
print(f"Required Resistor: {Rs} Ohms")
```
---
### 4. Typical Use Cases
* **Precision Data Converters:** Providing a reference for 12-bit or 14-bit ADCs/DACs.
* **Battery Powered Equipment:** Due to its low minimum operating current (50 µA).
* **Instrumentation:** Portable handheld measurement devices.
* **Process Control:** 4mA to 20mA current loops.
---
- ⤷What is the difference between a shunt reference like the ADR520 and a series reference?
- ⤷ How do I choose the optimal value for the external series resistor?
- ⤷ Are there automotive-grade versions of this specific voltage reference?