7D-R2
AI

The **7D-R2** usually refers to a specific type of **Metal Oxide Varistor (MOV)**. These are electronic components used primarily for surge protection and voltage regulation.
---
### 1. Technical Specifications of 7D-R2
The alphanumeric code "7D-R2" provides specific information about the physical size and electrical characteristics of the component.
| Parameter | Specification | Description |
| :--- | :--- | :--- |
| **Diameter (7D)** | 7mm | The disk diameter of the varistor. |
| **Component Type** | MOV | Metal Oxide Varistor (Non-linear resistor). |
| **Material** | Zinc Oxide | The primary semiconductor material used. |
| **Mounting** | Through-hole | Two-lead radial design for PCB insertion. |
### 2. How it Works
A MOV acts as a "voltage-sensitive resistor."
- **Low Voltage:** It has very high resistance and acts like an open circuit.
- **High Voltage (Surge):** Once the voltage exceeds its threshold, the resistance drops instantly, allowing the excess current to flow through the varistor instead of sensitive downstream components.
### 3. Key Electronic Characteristics
When selecting or replacing a 7D-R2 part, you must consider these three electrical factors:
1. **Varistor Voltage ($V_{1mA}$):** The voltage at which the device begins to conduct.
2. **Maximum Allowable Voltage:** The maximum continuous RMS or DC voltage the part can handle without tripping.
3. **Surge Current Rating ($I_{max}$):** The maximum peak current (usually in Amps) the device can withstand for a short duration.
### 4. Typical Applications
The 7D-R2 series is commonly found in:
* **Power Supplies:** Protecting AC inputs from lightning or grid spikes.
* **Consumer Electronics:** Chargers, TVs, and household appliances.
* **Industrial Controls:** Protecting PLCs and relay circuits from inductive kickback.
---
### Code Example: Simulating Surge Protection Logic
While a MOV is a hardware component, its logic can be represented in simple conditional pseudocode for system monitoring:
```python
def check_voltage_safety(input_voltage, threshold=470):
# Simulated 7D-R2 Varistor Logic
if input_voltage > threshold:
activate_clamping()
print("Surge Detected: Clamping voltage to ground.")
else:
maintain_high_impedance()
print("Voltage Stable: Device in passive mode.")
```
- ⤷What is the typical breakdown voltage for a 7D-R2 varistor?
- ⤷ How do I identify a blown 7D-R2 on a circuit board?
- ⤷ What is the difference between a 7D and a 10D varistor?