

A contactor is an electrically controlled switch designed for switching power circuits. It is widely used in industrial and commercial applications to control high-power devices such as motors, lighting systems, and heating equipment. Contactors are preferred for their ability to handle high currents and provide reliable switching.
The term Tor typically refers to a gate or barrier in electrical contexts. When used alongside contactors, it often represents a mechanism for controlling access or power to specific areas or devices. Together, contactors and Tor systems are integral to automation, safety, and power management in electrical systems.








| Parameter | Value/Description |
|---|---|
| Operating Voltage | 24V DC, 110V AC, 230V AC (varies by model) |
| Rated Current | 9A to 800A (depending on application) |
| Coil Voltage | 12V, 24V, 48V, 110V, 230V (varies by model) |
| Contact Configuration | SPST, SPDT, DPST, DPDT, etc. |
| Mechanical Life | Up to 10 million operations |
| Electrical Life | Up to 1 million operations |
| Operating Temperature | -25°C to +55°C |
| Mounting Type | DIN rail or panel mount |
| Parameter | Value/Description |
|---|---|
| Gate Type | Electromechanical or electronic barrier |
| Control Voltage | 12V DC, 24V DC, or 230V AC |
| Actuation Mechanism | Motorized or solenoid-driven |
| Operating Temperature | -20°C to +50°C |
| Safety Features | Overload protection, emergency stop |
| Integration | Compatible with contactors and relays |
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | L1 | Input power phase 1 |
| 2 | L2 | Input power phase 2 |
| 3 | L3 | Input power phase 3 |
| 4 | T1 | Output power phase 1 |
| 5 | T2 | Output power phase 2 |
| 6 | T3 | Output power phase 3 |
| A1 | Coil Positive | Positive terminal for the control coil |
| A2 | Coil Negative | Negative terminal for the control coil |
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | Power Input | Power supply for the gate mechanism |
| 2 | Control Signal | Signal input for opening/closing gate |
| 3 | Ground | Ground connection |
| 4 | Safety Input | Emergency stop or safety interlock |
Below is an example of using an Arduino UNO to control a contactor via a relay module:
// Define the pin connected to the relay module
const int relayPin = 7;
void setup() {
pinMode(relayPin, OUTPUT); // Set the relay pin as an output
digitalWrite(relayPin, LOW); // Ensure the relay is off initially
}
void loop() {
// Turn the contactor ON
digitalWrite(relayPin, HIGH);
delay(5000); // Keep the contactor ON for 5 seconds
// Turn the contactor OFF
digitalWrite(relayPin, LOW);
delay(5000); // Keep the contactor OFF for 5 seconds
}
Contactor Not Switching
Excessive Heating
Tor Mechanism Not Operating
Frequent Tripping
Q1: Can I use a contactor for DC loads?
A1: Yes, but ensure the contactor is rated for DC operation, as DC arcs are harder to extinguish than AC arcs.
Q2: What is the difference between a relay and a contactor?
A2: A relay is typically used for low-power applications, while a contactor is designed for high-power circuits.
Q3: How do I choose the right contactor for my application?
A3: Consider the voltage, current, and type of load (inductive or resistive) when selecting a contactor.
Q4: Can I control multiple contactors with one Tor system?
A4: Yes, provided the Tor system's control signal can handle the combined load of the contactors.
By following this documentation, you can effectively use and troubleshoot contactors and Tor systems in your electrical projects.