The 11KW KONTAKTOR + OVERLOAD (Manufacturer: Schneider, Part ID: MCE 2-25) is an electromechanical device designed to control and protect electrical circuits, particularly for motor applications. This contactor is rated for 11 kW and includes an integrated overload relay to safeguard motors from overheating or damage caused by excessive current. It is widely used in industrial automation, HVAC systems, and motor control centers.
Parameter | Value |
---|---|
Manufacturer | Schneider |
Part ID | MCE 2-25 |
Rated Power | 11 kW |
Rated Voltage (AC) | Up to 690V |
Rated Current | 25 A |
Control Voltage (Coil) | 24V AC/DC, 110V AC, or 230V AC |
Overload Relay Range | Adjustable (e.g., 6-25 A) |
Number of Poles | 3P (Three-phase) |
Operating Temperature | -20°C to +60°C |
Mechanical Durability | 10 million operations |
Electrical Durability | 1 million operations |
Mounting Type | DIN rail or panel mount |
The MCE 2-25 contactor has the following terminal layout:
Terminal Label | Description |
---|---|
L1, L2, L3 | Input terminals for three-phase power |
T1, T2, T3 | Output terminals to the load (motor) |
Terminal Label | Description |
---|---|
A1, A2 | Coil terminals for control voltage |
95, 96 | Overload relay normally closed (NC) |
97, 98 | Overload relay normally open (NO) |
Terminal Label | Description |
---|---|
13, 14 | Auxiliary contact (NO) |
21, 22 | Auxiliary contact (NC) |
Power Connections:
Control Circuit:
Overload Relay:
Mounting:
The contactor can be controlled using an Arduino UNO by driving a relay module or transistor circuit to energize the contactor's coil. Below is an example code snippet:
// Example: Controlling the 11KW KONTAKTOR with Arduino UNO
// This code uses pin 7 to control the contactor via a relay module.
const int contactorPin = 7; // Pin connected to the relay module
void setup() {
pinMode(contactorPin, OUTPUT); // Set pin as output
digitalWrite(contactorPin, LOW); // Ensure contactor is off initially
}
void loop() {
// Turn the contactor ON
digitalWrite(contactorPin, HIGH);
delay(5000); // Keep it ON for 5 seconds
// Turn the contactor OFF
digitalWrite(contactorPin, LOW);
delay(5000); // Keep it OFF for 5 seconds
}
Note: Use a relay module or transistor circuit to interface the Arduino with the contactor's coil, as the Arduino cannot directly supply the required current.
Contactor Does Not Energize:
Overload Relay Trips Frequently:
Excessive Noise During Operation:
Burnt Contacts:
Q: Can this contactor be used for single-phase loads?
A: Yes, but only two poles will be used for single-phase applications.
Q: How do I reset the overload relay after a trip?
A: Press the reset button on the overload relay after addressing the cause of the trip.
Q: Can I use this contactor for DC loads?
A: This contactor is primarily designed for AC loads. Consult the datasheet for DC load compatibility.
Q: What is the lifespan of this contactor?
A: The mechanical durability is rated for 10 million operations, while the electrical durability is rated for 1 million operations under normal conditions.