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 systems. Together, contactors and Tor systems are integral to automation, safety, and power management in electrical installations.
Parameter | Value/Range |
---|---|
Operating Voltage | 24V DC, 110V AC, 230V AC, or higher |
Rated Current | 10A to 630A (varies by model) |
Coil Voltage | 12V DC, 24V DC, 110V AC, 230V AC |
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-mounted |
Parameter | Value/Range |
---|---|
Gate Type | Electromechanical or electronic |
Control Voltage | 12V DC, 24V DC, or 230V AC |
Actuation Mechanism | Solenoid, motorized, or manual |
Operating Temperature | -20°C to +50°C |
Safety Features | Overload protection, interlocks |
Material | Steel, aluminum, or composite |
Pin Number | Label | 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 terminal for the control coil |
A2 | Coil (-) | Negative terminal for the control coil |
NC | Normally Closed | Auxiliary contact for control circuits |
NO | Normally Open | Auxiliary contact for control circuits |
Pin Number | Label | Description |
---|---|---|
1 | IN | Input signal for gate control |
2 | OUT | Output signal to the controlled device |
3 | GND | Ground connection |
4 | VCC | Power supply for the gate mechanism |
Below is an example of using an Arduino UNO to control a contactor:
// Define the pin connected to the contactor coil
const int contactorPin = 7;
void setup() {
// Set the contactor pin as an output
pinMode(contactorPin, OUTPUT);
}
void loop() {
// Activate the contactor
digitalWrite(contactorPin, HIGH);
delay(5000); // Keep the contactor ON for 5 seconds
// Deactivate the contactor
digitalWrite(contactorPin, LOW);
delay(5000); // Keep the contactor OFF for 5 seconds
}
Contactor Not Activating
Excessive Heating
Tor System Not Responding
Chattering Noise in Contactor
Q: Can I use a contactor for DC loads?
Q: What is the difference between NO and NC contacts?
Q: Can I control a Tor system with a microcontroller?
Q: How do I select the right contactor for my application?