C20-R04
AI

The term **C20-R04** typically refers to a standard classification for electronic components, most commonly associated with **Surface Mount Technology (SMT)** resistors or capacitors. It identifies the physical package size and certain electrical characteristics.
---
### 1. Understanding the Nomenclature
The designation is usually broken down into the package size (C20) and the resistance/tolerance code (R04).
| Component Part | Type | Meaning |
| :--- | :--- | :--- |
| **C20** | Case Size | Refers to the **2012 (Metric)** or **0805 (Imperial)** package size. |
| **R04** | Value/Rating | Often represents a resistance value (0.04 $\Omega$) or a specific revision code. |
### 2. Physical Specifications (Case Size 2012 / 0805)
If the component is an SMD (Surface Mount Device), the "20" indicates the dimensions in millimeters (2.0mm x 1.25mm).
| Dimension | Metric (mm) | Imperial (inches) |
| :--- | :--- | :--- |
| **Length** | 2.00 ± 0.10 | 0.08 |
| **Width** | 1.25 ± 0.10 | 0.05 |
| **Height** | 0.50 - 1.20 | 0.02 - 0.04 |
### 3. Electrical Characteristics
In the context of **R04**, this often signifies a "Current Sense Resistor" with a very low resistance value.
* **Resistance Value:** $0.04 \Omega$ (or 40 m$\Omega$).
* **Common Use:** Power management, battery monitoring, and over-current protection.
* **Power Rating:** Typically ranges from **1/8W (0.125W)** to **1/4W (0.25W)** depending on the specific manufacturer series.
### 4. Typical Applications
Components with these specifications are found in:
1. **Motherboards:** For monitoring CPU/GPU power consumption.
2. **Battery Management Systems (BMS):** Measuring charge and discharge currents.
3. **LED Drivers:** Controlling the constant current flow to LEDs.
---
### Example Code: Calculating Voltage Drop
If using a C20-R04 ($0.04 \Omega$) for current sensing, you can calculate the voltage drop across it using Ohm's Law:
```python
# Ohm's Law: V = I * R
resistance = 0.04 # 40 mOhms
current = 2.0 # 2 Amperes
voltage_drop = current * resistance
print(f"Voltage Drop: {voltage_drop}V")
# Output: 0.08V (80mV)
```
- ⤷
Are you looking for a specific manufacturer datasheet for this part?
- ⤷ Is this component being used as a current sense resistor or a standard capacitor?
- ⤷ Do you need the footprint dimensions for PCB layout software?