

A kontaktor is an electromechanical switch designed to control high-power circuits using low-power signals. Manufactured by Schneider, the High Volt kontaktor is a reliable and robust solution for industrial applications. It is commonly used to switch electrical loads such as motors, lighting systems, heating elements, and other high-power devices. Its ability to handle high currents and voltages makes it an essential component in automation and power distribution systems.








| Parameter | Value |
|---|---|
| Manufacturer | Schneider |
| Part ID | High Volt |
| Rated Operating Voltage | 24V DC (coil), 690V AC (load) |
| Rated Current | 40A |
| Number of Poles | 3P (Three Poles) |
| Coil Power Consumption | 8W |
| Mechanical Durability | 10 million operations |
| Electrical Durability | 1 million operations |
| Operating Temperature | -25°C to +60°C |
| Mounting Type | DIN Rail or Panel Mount |
The High Volt kontaktor has the following terminal layout:
| Terminal Label | Description |
|---|---|
| L1, L2, L3 | Input terminals for three-phase AC |
| T1, T2, T3 | Output terminals for three-phase AC |
| Terminal Label | Description |
|---|---|
| A1 | Positive terminal for the coil |
| A2 | Negative terminal for the coil |
| Terminal Label | Description |
|---|---|
| NO (Normally Open) | Auxiliary contact for control circuits |
| NC (Normally Closed) | Auxiliary contact for control circuits |
Power Connections:
Control Circuit:
Auxiliary Contacts (if applicable):
Mounting:
The High Volt kontaktor can be controlled using an Arduino UNO and a relay module. Below is an example circuit and code:
// Define the relay control pin
const int relayPin = 7;
void setup() {
pinMode(relayPin, OUTPUT); // Set the relay pin as an output
digitalWrite(relayPin, LOW); // Ensure the relay is off initially
}
void loop() {
// Turn on the relay (activates the kontaktor)
digitalWrite(relayPin, HIGH);
delay(5000); // Keep the relay on for 5 seconds
// Turn off the relay (deactivates the kontaktor)
digitalWrite(relayPin, LOW);
delay(5000); // Keep the relay off for 5 seconds
}
Note: Ensure the relay module is rated for 24V DC to match the coil voltage of the kontaktor.
Kontaktor Does Not Activate:
Excessive Heating:
Chattering Noise:
Auxiliary Contacts Not Working:
Q: Can the kontaktor handle single-phase loads?
Q: Is the kontaktor suitable for outdoor use?
Q: Can I use the kontaktor with a 12V DC control voltage?
Q: How do I test the kontaktor?
This concludes the documentation for the Schneider High Volt Kontaktor. For further assistance, refer to the manufacturer's datasheet or contact technical support.