The Schneider LC1D50AM7 Magnetic Contactor is an electrically controlled switch designed for high-current applications. It operates using an electromagnet to control the switching mechanism, making it ideal for managing power circuits. Unlike standard relays, magnetic contactors are specifically engineered to handle higher loads, ensuring reliable performance in demanding environments.
Parameter | Value |
---|---|
Manufacturer | Schneider |
Part Number | LC1D50AM7 |
Rated Operational Voltage | 690V AC |
Rated Current (AC-3) | 50A |
Coil Voltage | 220V AC (50/60 Hz) |
Number of Poles | 3P (Three Poles) |
Auxiliary Contacts | 1 NO + 1 NC |
Mechanical Durability | 10 million operations |
Electrical Durability | 1 million operations (AC-3) |
Operating Temperature Range | -5°C to +60°C |
Mounting Type | DIN Rail or Panel Mount |
Dimensions (H x W x D) | 120 x 85 x 120 mm |
Weight | 1.2 kg |
The LC1D50AM7 has terminals for both power and control connections. Below is the pin configuration:
Terminal Label | Description |
---|---|
L1, L2, L3 | Input terminals for three-phase AC |
T1, T2, T3 | Output terminals to the load |
Terminal Label | Description |
---|---|
A1, A2 | Coil terminals for control voltage |
Terminal Label | Description |
---|---|
13-14 | Normally Open (NO) auxiliary contact |
21-22 | Normally Closed (NC) auxiliary contact |
Power Connections:
Control Circuit:
Auxiliary Contacts:
Mounting:
While magnetic contactors are not directly controlled by microcontrollers like the Arduino UNO due to their high voltage and current requirements, you can use a relay module to interface the Arduino with the contactor. Below is an example:
// Magnetic Contactor Control using Arduino and Relay Module
// Pin 7 is used to control the relay module
const int relayPin = 7; // Define the relay control pin
void setup() {
pinMode(relayPin, OUTPUT); // Set relay pin as output
digitalWrite(relayPin, LOW); // Ensure relay is off at startup
}
void loop() {
// Turn on the contactor
digitalWrite(relayPin, HIGH); // Activate relay
delay(5000); // Keep contactor on for 5 seconds
// Turn off the contactor
digitalWrite(relayPin, LOW); // Deactivate relay
delay(5000); // Wait for 5 seconds before repeating
}
Contactor Does Not Energize:
Excessive Heating:
Chattering Noise:
Auxiliary Contacts Not Working:
Q1: Can the LC1D50AM7 be used for single-phase loads?
A1: Yes, but only two poles (e.g., L1 and L2) should be used for single-phase applications.
Q2: How do I know if the contactor is energized?
A2: You will hear a clicking sound, and the auxiliary NO contact (13-14) will close.
Q3: Can I use a DC control voltage for the coil?
A3: No, the LC1D50AM7 is designed for 220V AC control voltage only.
Q4: What is the purpose of the auxiliary contacts?
A4: Auxiliary contacts are used for signaling, interlocking, or controlling other devices in the circuit.
Q5: How often should the contactor be maintained?
A5: Inspect the contactor every 6-12 months, depending on the operating conditions and duty cycle.