A Thermal Overload Relay (TOR) is a protective device designed to safeguard electrical circuits and equipment, such as motors, from damage caused by excessive heat due to overload conditions. It operates by detecting abnormal temperature rises and interrupting the circuit to prevent overheating. TORs are widely used in industrial and commercial applications where motor protection is critical.
Thermal Overload Relays typically have terminals for power connections, auxiliary contacts, and reset functionality. Below is a general pin configuration:
Pin/Terminal | Description |
---|---|
L1, L2, L3 | Input terminals for the three-phase power supply |
T1, T2, T3 | Output terminals connected to the motor or load |
95-96 | Normally Closed (NC) auxiliary contact for signaling or interlocking |
97-98 | Normally Open (NO) auxiliary contact for signaling or control |
Reset Button | Manual reset button to restore operation after a trip |
Adjustment Dial | Current adjustment dial to set the overload trip current based on motor rating |
Determine the Motor's Full Load Current (FLC):
Connect the TOR to the Circuit:
Set the Overload Current:
Integrate Auxiliary Contacts:
Test the TOR:
While TORs are not typically controlled by microcontrollers like Arduino, you can use the auxiliary contacts for monitoring purposes. Below is an example of how to monitor the NC contact (95-96) with an Arduino UNO:
// Define the pin connected to the TOR's NC auxiliary contact
const int torPin = 2; // Digital pin 2 on Arduino
void setup() {
pinMode(torPin, INPUT_PULLUP); // Set pin as input with internal pull-up resistor
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int torState = digitalRead(torPin); // Read the state of the TOR's NC contact
if (torState == HIGH) {
// If the NC contact is open, the TOR has tripped
Serial.println("Thermal Overload Relay has tripped!");
} else {
// If the NC contact is closed, the TOR is in normal operation
Serial.println("Thermal Overload Relay is operating normally.");
}
delay(1000); // Wait for 1 second before checking again
}
Issue: TOR trips frequently without apparent overload.
Issue: TOR does not trip during an overload condition.
Issue: Motor does not start after a trip.
Issue: TOR generates excessive heat during operation.
Q: Can a TOR protect against short circuits?
A: No, a TOR is designed to protect against overload conditions, not short circuits. Use a circuit breaker or fuse for short-circuit protection.
Q: How do I select the correct TOR for my motor?
A: Choose a TOR with an adjustable current range that includes the motor's full load current (FLC). Consider the trip class based on the motor's application.
Q: Can I use a TOR with single-phase motors?
A: Yes, but ensure the TOR is compatible with single-phase operation and connect only two phases (L1 and L2).
Q: What is the difference between manual and automatic reset?
A: In manual reset mode, the TOR requires a physical press of the reset button after a trip. In automatic reset mode, the TOR resets itself after cooling down.
This concludes the documentation for the Thermal Overload Relay (TOR).