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 | 32A |
Number of Poles | 3 (Three-phase) |
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 pin configuration:
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 pin connected to the relay module
const int relayPin = 7;
void setup() {
// Set the relay pin as an output
pinMode(relayPin, OUTPUT);
// Ensure the relay is off at startup
digitalWrite(relayPin, LOW);
}
void loop() {
// Turn on the relay (activates the kontaktor)
digitalWrite(relayPin, HIGH);
delay(5000); // Keep the kontaktor on for 5 seconds
// Turn off the relay (deactivates the kontaktor)
digitalWrite(relayPin, LOW);
delay(5000); // Wait for 5 seconds before repeating
}
Issue | Possible Cause | Solution |
---|---|---|
Kontaktor does not activate | Coil voltage is incorrect or missing | Verify the control voltage at A1/A2. |
Contacts are overheating | Load exceeds rated current | Reduce the load or use a higher-rated kontaktor. |
Excessive noise during operation | Electrical noise or coil surge | Install a surge suppressor across the coil. |
Auxiliary contacts not working | Miswiring or damaged contacts | Check wiring and replace damaged contacts. |
Can the High Volt kontaktor be used for single-phase loads?
What is the purpose of auxiliary contacts?
How do I know if the coil is damaged?
By following this documentation, you can effectively use the Schneider High Volt kontaktor in your projects and ensure reliable operation.