Cirkit Designer Logo
Cirkit Designer
Your all-in-one circuit design IDE
Home / 
Component Documentation

How to Use Kontaktor 1: Examples, Pinouts, and Specs

Image of Kontaktor 1
Cirkit Designer LogoDesign with Kontaktor 1 in Cirkit Designer

Introduction

The Kontaktor 1, manufactured by Schneider (Part ID: High Volt), is an electrically controlled switch designed for high-current applications. It functions similarly to a relay but is specifically engineered to handle heavy loads, making it ideal for industrial and commercial use. This contactor is commonly used to control motors, lighting systems, heating elements, and other power circuits.

Explore Projects Built with Kontaktor 1

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Electromechanical Pump Control Circuit with Emergency Stop
Image of Pelton.: A project utilizing Kontaktor 1 in a practical application
This circuit is designed to control a pump using a contactor that is manually operated by a switch and can be overridden by an emergency stop. The contactor enables power from an AC power outlet to the pump, and the emergency stop can interrupt the power circuit for safety purposes.
Cirkit Designer LogoOpen Project in Cirkit Designer
Industrial Power Distribution and Safety Control System
Image of Control Diagram: A project utilizing Kontaktor 1 in a practical application
This circuit is designed for power distribution and safety control in an industrial setting. It features a main isolator and circuit breaker for power management, multiple PSUs for 5V, 12V, and 24V outputs, and a safety relay system that interfaces with E-stop buttons and a start switch to control a main contactor, ensuring safe operation and emergency power cut-off capabilities.
Cirkit Designer LogoOpen Project in Cirkit Designer
Battery-Powered Touch-Activated Relay with Buzzer
Image of EXP-17 E : A project utilizing Kontaktor 1 in a practical application
This circuit uses a metal touch sensor to control a 1-channel relay, which in turn activates a piezo buzzer. The relay and sensor are powered by a 3.7V power source, and the touch sensor's output is connected to the relay's input to trigger the buzzer when touched.
Cirkit Designer LogoOpen Project in Cirkit Designer
240V to 12V Power Conversion Circuit with Stopkontak
Image of daya PLN: A project utilizing Kontaktor 1 in a practical application
This circuit converts a 240V AC power source to a 12V DC output using a 12V adapter. The 240V AC power source is connected to a stopkontak, which then supplies the 12V adapter with the necessary AC voltage to produce a 12V DC output.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with Kontaktor 1

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Image of Pelton.: A project utilizing Kontaktor 1 in a practical application
Electromechanical Pump Control Circuit with Emergency Stop
This circuit is designed to control a pump using a contactor that is manually operated by a switch and can be overridden by an emergency stop. The contactor enables power from an AC power outlet to the pump, and the emergency stop can interrupt the power circuit for safety purposes.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Control Diagram: A project utilizing Kontaktor 1 in a practical application
Industrial Power Distribution and Safety Control System
This circuit is designed for power distribution and safety control in an industrial setting. It features a main isolator and circuit breaker for power management, multiple PSUs for 5V, 12V, and 24V outputs, and a safety relay system that interfaces with E-stop buttons and a start switch to control a main contactor, ensuring safe operation and emergency power cut-off capabilities.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of EXP-17 E : A project utilizing Kontaktor 1 in a practical application
Battery-Powered Touch-Activated Relay with Buzzer
This circuit uses a metal touch sensor to control a 1-channel relay, which in turn activates a piezo buzzer. The relay and sensor are powered by a 3.7V power source, and the touch sensor's output is connected to the relay's input to trigger the buzzer when touched.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of daya PLN: A project utilizing Kontaktor 1 in a practical application
240V to 12V Power Conversion Circuit with Stopkontak
This circuit converts a 240V AC power source to a 12V DC output using a 12V adapter. The 240V AC power source is connected to a stopkontak, which then supplies the 12V adapter with the necessary AC voltage to produce a 12V DC output.
Cirkit Designer LogoOpen Project in Cirkit Designer

Common Applications:

  • Motor control in industrial machinery
  • Switching high-power lighting systems
  • HVAC systems
  • Power distribution and automation systems
  • Heavy-duty electrical loads in commercial setups

Technical Specifications

Key Technical Details:

Parameter Value
Manufacturer Schneider
Part ID High Volt
Rated Operating Voltage 24V DC (coil voltage)
Maximum Load Voltage 690V AC
Rated Current 32A
Number of Poles 3P (Three Poles)
Contact Configuration Normally Open (NO)
Mechanical Durability 10 million operations
Electrical Durability 1 million operations
Operating Temperature -25°C to +60°C
Mounting Type DIN Rail or Panel Mount

Pin Configuration and Descriptions:

The Kontaktor 1 has the following terminal layout:

Power Terminals:

Terminal Label Description
L1, L2, L3 Input terminals for three-phase AC
T1, T2, T3 Output terminals for three-phase AC

Control Terminals:

Terminal Label Description
A1 Coil positive terminal (24V DC)
A2 Coil negative terminal (ground)

Auxiliary Contacts (Optional):

Terminal Label Description
13, 14 Auxiliary contact (Normally Open)
21, 22 Auxiliary contact (Normally Closed)

Usage Instructions

How to Use the Kontaktor 1 in a Circuit:

  1. Power Connections:

    • Connect the three-phase AC input to terminals L1, L2, L3.
    • Connect the load (e.g., motor) to the output terminals T1, T2, T3.
  2. Control Circuit:

    • Supply 24V DC to the coil terminals A1 (positive) and A2 (negative).
    • When the coil is energized, the contactor will close the main power circuit.
  3. Auxiliary Contacts (if applicable):

    • Use the auxiliary contacts (e.g., 13-14 or 21-22) for signaling or interlocking purposes.

Important Considerations:

  • Ensure the coil voltage matches the rated 24V DC to avoid damage.
  • Verify that the load current does not exceed the rated 32A.
  • Use proper circuit protection (e.g., fuses or circuit breakers) to safeguard the contactor and connected equipment.
  • Mount the contactor securely on a DIN rail or panel to prevent vibration-related issues.
  • Maintain adequate ventilation around the contactor to prevent overheating.

Example: Connecting Kontaktor 1 to an Arduino UNO

The Kontaktor 1 can be controlled using an Arduino UNO by interfacing the control coil with a relay module or transistor circuit. Below is an example Arduino sketch:

// Example: Controlling Kontaktor 1 with Arduino UNO
// This code energizes the contactor coil using a digital output pin.

const int coilPin = 7; // Pin connected to the relay or transistor circuit

void setup() {
  pinMode(coilPin, OUTPUT); // Set the pin as an output
  digitalWrite(coilPin, LOW); // Ensure the coil is initially off
}

void loop() {
  digitalWrite(coilPin, HIGH); // Energize the contactor coil
  delay(5000); // Keep the contactor on for 5 seconds
  digitalWrite(coilPin, LOW); // De-energize the contactor coil
  delay(5000); // Wait for 5 seconds before repeating
}

Note: Use a relay module or transistor circuit to interface the Arduino with the contactor coil, as the Arduino cannot directly supply the required current.

Troubleshooting and FAQs

Common Issues and Solutions:

  1. Contactor Does Not Energize:

    • Cause: Incorrect coil voltage or loose connections.
    • Solution: Verify that the coil is supplied with 24V DC and check all connections.
  2. Excessive Heating:

    • Cause: Overloaded contactor or poor ventilation.
    • Solution: Ensure the load current does not exceed 32A and provide adequate airflow.
  3. Chattering Noise:

    • Cause: Insufficient coil voltage or unstable power supply.
    • Solution: Check the power supply and ensure a stable 24V DC is provided to the coil.
  4. Auxiliary Contacts Not Working:

    • Cause: Miswiring or damaged auxiliary contacts.
    • Solution: Verify the wiring and test the auxiliary contacts for continuity.

FAQs:

  • Q: Can the Kontaktor 1 be used with single-phase loads?
    A: Yes, connect the single-phase load to one of the poles (e.g., L1-T1) and leave the other poles unused.

  • Q: What is the purpose of auxiliary contacts?
    A: Auxiliary contacts are used for signaling, interlocking, or controlling secondary circuits.

  • Q: How often should the contactor be maintained?
    A: Inspect the contactor every 6 months for wear, dirt, or loose connections, especially in high-use environments.

  • Q: Can the contactor handle DC loads?
    A: The Kontaktor 1 is primarily designed for AC loads. For DC loads, consult the manufacturer for compatibility and derating guidelines.