A Thermal Overload Relay (TOR) is a protective device designed to safeguard electric motors from overheating caused by excessive current. It operates by interrupting the power supply to the motor when an overload condition is detected, preventing potential damage to the motor and associated equipment. TORs are widely used in industrial and commercial applications where electric motors are critical to operations.
Thermal Overload Relays typically have terminals for power connections, auxiliary signaling, and reset functionality. Below is a general pin configuration:
Pin/Terminal | Description |
---|---|
L1, L2, L3 | Line terminals for connecting the three-phase power supply |
T1, T2, T3 | Load terminals for connecting to the motor |
95-96 | Normally Closed (NC) contact for overload trip (used to interrupt the circuit) |
97-98 | Normally Open (NO) auxiliary contact for signaling or alarms |
Reset Button | Manual reset button to restore operation after a trip |
Note: The exact terminal labeling may vary depending on the manufacturer. Always refer to the datasheet for your specific model.
Determine the Motor's Full Load Current (FLC):
Connect the TOR:
Adjust the Current Setting:
Test the Setup:
Reset After Trip:
While TORs are not typically controlled by microcontrollers like Arduino, you can use the auxiliary NO contact (97-98) to monitor the trip status. Below is an example of how to read the trip status using an Arduino UNO:
// Define the pin connected to the TOR's NO auxiliary contact
const int torAuxPin = 2; // Digital pin 2
void setup() {
pinMode(torAuxPin, INPUT_PULLUP); // Set the pin as input with pull-up resistor
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int torStatus = digitalRead(torAuxPin); // Read the TOR status
if (torStatus == HIGH) {
// NO contact is open, indicating no trip
Serial.println("Motor is operating normally.");
} else {
// NO contact is closed, indicating a trip
Serial.println("Thermal Overload Relay has tripped!");
}
delay(1000); // Wait for 1 second before checking again
}
Note: Ensure the auxiliary contact is connected to the Arduino with proper isolation (e.g., optocoupler) if the TOR operates at high voltage.
TOR Trips Frequently:
Motor Does Not Start After Trip:
Nuisance Tripping in Cold Environments:
No Signal from Auxiliary Contact:
Q: Can a TOR protect against short circuits?
A: No, a TOR is designed to protect against overloads, not short circuits. Use a circuit breaker or fuse for short-circuit protection.
Q: How do I know if my TOR is compatible with my motor?
A: Check the TOR's current range, voltage rating, and trip class to ensure they match the motor's specifications.
Q: Can I use a TOR with a single-phase motor?
A: Yes, but ensure the TOR is designed for single-phase operation or connect only two phases of a three-phase TOR.
Q: What is the difference between manual and automatic reset?
A: Manual reset requires pressing a button to restore operation after a trip, while automatic reset restores operation automatically once the motor cools down.
By following this documentation, you can effectively use a Thermal Overload Relay to protect your electric motors and ensure reliable operation.