

The Contactor Sirius (Manufacturer Part ID: 2) by Siemens is an electromechanical switch designed to control the flow of electricity in a circuit. It is widely used in industrial automation systems to enable or disable power to motors, lighting systems, and other electrical devices. Known for its high reliability and robust performance, the Contactor Sirius is ideal for applications requiring frequent switching and high current handling.








The following table outlines the key technical specifications of the Contactor Sirius:
| Parameter | Value |
|---|---|
| Manufacturer | Siemens |
| Part ID | 2 |
| Rated Operational Voltage | Up to 690 V AC |
| Rated Operational Current | Up to 38 A (depending on model) |
| Control Voltage | 24 V DC / 230 V AC (varies by model) |
| Number of Poles | 3 (standard) |
| Mechanical Durability | Up to 10 million operations |
| Electrical Durability | Up to 1 million operations |
| Operating Temperature Range | -25°C to +60°C |
| Mounting Type | DIN rail or screw mounting |
| Standards Compliance | IEC 60947, UL 508, CSA C22.2 |
The Contactor Sirius typically features the following terminal configuration:
| Terminal | Description |
|---|---|
| L1, L2, L3 | Input terminals for the three-phase power supply |
| T1, T2, T3 | Output terminals for the load (e.g., motor) |
| A1, A2 | Coil terminals for control voltage |
| NO (Normally Open) | Auxiliary contact for additional control circuits |
| NC (Normally Closed) | Auxiliary contact for additional control circuits |
The Contactor Sirius can be controlled using an Arduino UNO by interfacing the control coil with a relay module. Below is an example code snippet:
// Example: Controlling the Contactor Sirius with Arduino UNO
// This code toggles the contactor ON and OFF every 5 seconds.
const int relayPin = 7; // Pin connected to the relay module
void setup() {
pinMode(relayPin, OUTPUT); // Set relayPin as an output
digitalWrite(relayPin, LOW); // Ensure the relay is initially OFF
}
void loop() {
digitalWrite(relayPin, HIGH); // Turn ON the relay (energize contactor)
delay(5000); // Wait for 5 seconds
digitalWrite(relayPin, LOW); // Turn OFF the relay (de-energize contactor)
delay(5000); // Wait for 5 seconds
}
Note: Use a relay module to interface the Arduino with the Contactor Sirius, as the Arduino cannot directly supply the required control voltage or current.
Contactor Does Not Energize:
Excessive Heating:
Chattering Noise:
Auxiliary Contacts Not Functioning:
Q1: Can the Contactor Sirius be used for single-phase applications?
A1: Yes, the Contactor Sirius can be used for single-phase applications by connecting only one input and one output terminal.
Q2: How do I select the right Contactor Sirius model for my application?
A2: Consider the operational voltage, current, and control voltage requirements of your application. Refer to Siemens' product catalog for detailed selection guidance.
Q3: Can I use the Contactor Sirius in outdoor environments?
A3: The Contactor Sirius is designed for indoor use. For outdoor applications, ensure it is installed in a weatherproof enclosure.
Q4: What is the lifespan of the Contactor Sirius?
A4: The mechanical durability is up to 10 million operations, while the electrical durability is up to 1 million operations, depending on the load and usage conditions.