The Schneider LRD350 Overload Relay is a protective device designed to safeguard motors and electrical equipment from damage caused by excessive current. It operates by interrupting the electrical circuit when the current exceeds a preset threshold, which in this case is adjustable between 37 to 50 amps. This relay is commonly used in industrial and commercial applications to ensure the longevity and safety of motors and associated systems.
The following table outlines the key technical details of the Schneider LRD350 Overload Relay:
Parameter | Value |
---|---|
Manufacturer | Schneider Electric |
Part Number | LRD350 |
Current Range | 37 to 50 A |
Voltage Rating | Up to 690 V AC |
Frequency | 50/60 Hz |
Trip Class | Class 10 |
Operating Temperature | -20°C to +60°C |
Mounting Type | Direct mounting on contactors |
Reset Mode | Manual and automatic reset |
Auxiliary Contacts | 1 NO + 1 NC |
Standards Compliance | IEC 60947-4-1, UL, CSA |
The LRD350 overload relay is designed to be mounted directly onto a compatible contactor. Below is the pin configuration:
Pin/Terminal | Description |
---|---|
L1, L2, L3 | Line input terminals for three-phase power |
T1, T2, T3 | Load output terminals to the motor |
95-96 | Normally closed (NC) auxiliary contact |
97-98 | Normally open (NO) auxiliary contact |
Reset Button | Manual reset for tripped relay |
Dial | Current adjustment dial (37-50 A range) |
While the LRD350 is not typically used with microcontrollers like the Arduino UNO, you can monitor its auxiliary contacts for trip status. Below is an example code snippet:
// Example code to monitor the LRD350 auxiliary contact with Arduino UNO
const int auxContactPin = 2; // Pin connected to the NC auxiliary contact (95-96)
const int ledPin = 13; // Built-in LED to indicate trip status
void setup() {
pinMode(auxContactPin, INPUT_PULLUP); // Configure pin as input with pull-up resistor
pinMode(ledPin, OUTPUT); // Configure LED pin as output
}
void loop() {
int contactState = digitalRead(auxContactPin); // Read the auxiliary contact state
if (contactState == HIGH) {
// Auxiliary contact is open, indicating a trip
digitalWrite(ledPin, HIGH); // Turn on LED
} else {
// Auxiliary contact is closed, normal operation
digitalWrite(ledPin, LOW); // Turn off LED
}
delay(100); // Small delay for stability
}
Relay Does Not Trip During Overload:
Frequent Tripping:
Relay Fails to Reset:
Auxiliary Contacts Not Functioning:
Q1: Can the LRD350 be used with single-phase motors?
A1: No, the LRD350 is designed for three-phase motors. For single-phase applications, use a suitable single-phase overload relay.
Q2: How do I know if the relay has tripped?
A2: The auxiliary contacts (95-96 and 97-98) change state when the relay trips. Additionally, the reset button may pop out.
Q3: Can I use the LRD350 with a motor starter?
A3: Yes, the LRD350 is designed to be mounted directly onto Schneider contactors, making it ideal for use with motor starters.
Q4: What is the difference between manual and automatic reset?
A4: In manual reset mode, the relay must be reset manually after a trip. In automatic reset mode, the relay resets itself once the overload condition is cleared.