AI

In electronic circuit diagrams and Bill of Materials (BOM), alphanumeric codes like **C1** and **R18** are known as **Reference Designators**. These codes identify the type of component and its specific location or sequence in the circuit.
---
### 1. Breakdown of Designators
| Designator | Component Type | Primary Function | Unit of Measurement |
| :--- | :--- | :--- | :--- |
| **C1** | **Capacitor** | Stores energy in an electric field; filters noise and stabilizes voltage. | Farads (uF, nF, pF) |
| **R18** | **Resistor** | Limits the flow of electric current; provides specific voltage levels. | Ohms (Ω) |
---
### 2. Detailed Explanation
#### C1 (Capacitor #1)
The "C" stands for Capacitor, and the "1" indicates it is the first capacitor assigned in the schematic.
* **Common Uses:** Decoupling (placed near ICs to prevent voltage drops) or Coupling (blocking DC while letting AC signals pass).
* **Types:** Could be Ceramic (small, non-polarized) or Electrolytic (larger, polarized with a '+' and '-' terminal).
#### R18 (Resistor #18)
The "R" stands for Resistor, and the "18" indicates it is the 18th resistor in the circuit design.
* **Common Uses:** Pull-up/Pull-down resistors for digital logic, current limiting for LEDs, or part of a voltage divider.
* **Characteristics:** Defined by its resistance value (Ohms) and its power rating (Watts).
---
### 3. How to Identify Physical Parts
To know the exact specifications of C1 or R18, you must cross-reference these labels with the **Bill of Materials (BOM)** or the **Schematic Diagram**.
```json
{
"Part": "R18",
"Value": "10k Ohms",
"Tolerance": "5%",
"Package": "0603 (SMD)"
}
```
---
- ⤷What does the number following the letter signify in a circuit diagram?
- ⤷ How do I find the specific value of R18 if I only have the PCB?
- ⤷ What are common reference designators for transistors and diodes?