AI

The term **"100E"** in the context of electronic components most commonly refers to the **resistance value of 100 Ohms**. In electronic labeling, the letter "E" is often used to represent the decimal point or the Ohm unit ($\Omega$) to prevent confusion caused by small printing or fading dots on components.
---
## 1. Understanding the "E" Notation
The use of "E" follows the BS 1852 standard for marking resistors and capacitors. It replaces the decimal point or the unit symbol.
| Marking | Meaning | Value |
| :--- | :--- | :--- |
| **100E** | 100 Ohms | $100\Omega$ |
| **1E0** | 1.0 Ohm | $1.0\Omega$ |
| **E10** | 0.10 Ohm | $0.10\Omega$ |
| **1k0** | 1.0 kiloOhm | $1,000\Omega$ |
---
## 2. Common Components Labeled "100E"
While many parts could have this value, these are the most frequent implementations:
### A. Axial Lead Resistors
Through-hole resistors (like Carbon Composition or Metal Film) often have their value printed directly on the body if they are large enough, or they use a color code.
* **Color Code for 100 Ohms:** Brown, Black, Brown, Gold (for 5% tolerance).
### B. Surface Mount (SMD) Resistors
On tiny SMD chips, the notation is slightly different. While "100E" might appear in a bill of materials (BOM), the physical chip usually uses a three-digit code:
* **Code "101":** This means $10 \times 10^1 = 100$ Ohms.
* **Code "1000":** Used on high-precision (1%) resistors ($100 \times 10^0$).
### C. Potentiometers
Variable resistors or "trimpots" may be labeled 100E to indicate their maximum resistance range is 100 Ohms.
---
## 3. Technical Specifications
When purchasing or specifying a 100E resistor, you must consider more than just the resistance:
| Parameter | Common Options | Purpose |
| :--- | :--- | :--- |
| **Tolerance** | $\pm 1\%$, $\pm 5\%$, $\pm 10\%$ | How close the actual value is to 100 Ohms. |
| **Power Rating** | 1/8W, 1/4W, 1/2W, 1W+ | How much heat the part can dissipate safely. |
| **Temperature Coeff** | 50ppm, 100ppm | How much the resistance changes with heat. |
---
## 4. Usage Example
A 100E resistor is frequently used as a **Current Limiting Resistor** for LEDs.
```python
# Simple Ohm's Law Calculation (V = I * R)
voltage_source = 5.0 # Volts
led_forward_voltage = 2.0 # Volts
resistance = 100 # Ohms (100E)
current = (voltage_source - led_forward_voltage) / resistance
print(f"Current through LED: {current * 1000} mA")
# Result: 30mA
```
- ⤷What is the difference between 100E and 100R notation?
- ⤷ How do I identify a 100E resistor using color bands?
- ⤷ What happens if I use a 100E resistor with a power rating that is too low?