AI

The **GMC-160-R** is a specific model of an AC magnetic contactor produced by manufacturers like LS Electric (formerly LG Industrial Systems). These components are essential in industrial automation for switching electrical power circuits.
---
## 1. Technical Specifications
The "160" in the model name typically refers to its rated operational current ($I_e$) at a specific voltage range (usually AC-3, 380/440V).
| Parameter | Specification (Typical) |
| :--- | :--- |
| **Rated Current (AC-3)** | 160 Amperes |
| **Rated Insulation Voltage ($U_i$)** | 1000V |
| **Coil Voltage** | Available in 24V, 110V, 220V, or 440V AC/DC |
| **Auxiliary Contacts** | Standard 2NO + 2NC (Normally Open/Closed) |
| **Frequency** | 50/60 Hz |
| **Mounting Type** | Screw/Bolt mounting |
---
## 2. Key Electronic & Mechanical Parts
### A. The Coil Assembly (Actuator)
The "brain" of the contactor. When current passes through the coil, it creates a magnetic field.
* **Encapsulated Coil:** Protected against dust and moisture.
* **Terminals:** Usually labeled A1 and A2 for power input.
### B. Contact System
* **Main Contacts:** Heavy-duty copper or silver-alloy points designed to handle the 160A load.
* **Arc Chute:** A series of plates that "quench" or extinguish the electrical arc generated when the contacts open under load, preventing damage.
### C. Magnetic Core
* **Fixed Core:** Attached to the base.
* **Movable Core (Armature):** Attached to the contact carrier; it moves to close the circuit when the coil is energized.
* **Shading Coils:** Small copper rings on the core that prevent "chatter" (vibration) by smoothing the AC magnetic field.
---
## 3. Wiring Configuration
The following table outlines the standard terminal layout for this class of contactor:
| Terminal Label | Function | Description |
| :--- | :--- | :--- |
| **L1, L2, L3** | Line Input | Main power source (3-Phase) |
| **T1, T2, T3** | Load Output | Connected to the motor or heater |
| **A1, A2** | Control Coil | Power for the electromagnet |
| **13/14 (NO)** | Auxiliary | Used for signaling or interlocking |
| **21/22 (NC)** | Auxiliary | Used for safety or status lights |
---
## 4. Typical Application Example
A common use for the GMC-160-R is a **Direct-On-Line (DOL) Motor Starter**.
```python
# Conceptual Logic for Motor Control Circuit
if Start_Button == PUSHED:
Coil_A1_A2 = ENERGIZED
Main_Contacts = CLOSED
Motor = RUNNING
elif Stop_Button == PUSHED or Overload_Trip == TRUE:
Coil_A1_A2 = DE_ENERGIZED
Main_Contacts = OPEN
Motor = STOPPED
```
---
- ⤷What is the difference between AC-1 and AC-3 ratings for this contactor?
- ⤷ Can a GMC-160-R be used for DC motor control?
- ⤷ Which thermal overload relay is compatible with the GMC-160-R?