AI

In electronics, the sequence **O-N-R** most commonly refers to the standard color-coding system used to identify the values of resistors, capacitors, and other components. It can also refer to specific pin configurations in high-power relays or connectors.
Here is the breakdown of these parts in the context of the **Resistor Color Code System**:
---
## 1. The O-N-R Color Sequence
In the standard electronic color code (IEC 60062), each letter corresponds to a digit or a multiplier:
| Letter | Color | Digit Value | Multiplier |
| :--- | :--- | :--- | :--- |
| **O** | **Orange** | 3 | $10^3$ ($1,000$) |
| **N** | **Brown** | 1 | $10^1$ ($10$) |
| **R** | **Red** | 2 | $10^2$ ($100$) |
### Example Application: Resistor Values
If you see these colors on a 3-band resistor, the calculation would be:
1. **First Band (O - Orange):** 3
2. **Second Band (N - Brown):** 1
3. **Third Band (R - Red):** $\times 100$
4. **Result:** $31 \times 100 = 3,100 \, \Omega$ (or **3.1k$\Omega$**)
---
## 2. Relay and Connector Pinout (O-N-R)
In industrial electronics and specific relay modules, these letters can represent functional pin labels:
### **O (Output / Open)**
* **Normally Open (NO):** A terminal that is not connected to the common circuit when the relay is de-energized.
* **Output:** The pin where the processed signal or load power exits the component.
### **N (Neutral / Negative)**
* **Neutral:** In AC circuits, the return path for the current.
* **Negative:** In DC circuits, the ground or $0V$ reference point.
### **R (Reset / Return / Resistance)**
* **Reset:** A pin used to clear a flip-flop, counter, or microcontroller to its initial state.
* **Return:** The common path for a signal to return to the source.
* **Resistance:** A label for a terminal dedicated to measuring or adding a resistive load.
---
## 3. Component Identification Table
How these parts appear physically in a circuit:
| Part Type | Function of "O-N-R" |
| :--- | :--- |
| **Resistor** | Visual bands indicating the resistance value in Ohms. |
| **Power Relay** | Labels for the Common, Normally Open, and Coil pins. |
| **Connector** | Wiring labels for Orange (Signal), Brown (Ground), and Red (Power). |
---
### Basic Python Script to Calculate Resistor Values
```python
def calculate_resistance(digit1, digit2, multiplier):
# Using O=3, N=1, R=2 (multiplier 10^2)
value = (digit1 * 10 + digit2) * (10 ** multiplier)
return f"{value} Ohms"
# Example: Orange (3), Brown (1), Red (2)
print(calculate_resistance(3, 1, 2))
# Output: 3100 Ohms
```
- ⤷
How do I identify the tolerance band on a resistor with these colors?
- ⤷ Are O-N-R colors used differently in capacitor coding?
- ⤷ What is the difference between N (Neutral) and G (Ground) in these electronic parts?