The DIA Contactor (Manufacturer: Rover, Part ID: 1234) is an electromechanical switch designed to control the flow of electricity in a circuit. It is primarily used in high-power applications where reliable switching is required. The contactor operates by utilizing an electromagnetic coil to open or close its contacts, enabling or interrupting the current flow as needed.
Parameter | Value |
---|---|
Manufacturer | Rover |
Part ID | 1234 |
Rated Voltage (Coil) | 24V DC / 230V AC (varies by model) |
Rated Current (Contacts) | 25A, 40A, 63A (depending on variant) |
Contact Configuration | 3P (Three Pole) or 4P (Four Pole) |
Operating Temperature | -25°C to +55°C |
Insulation Voltage | 690V AC |
Mechanical Life | 10 million operations |
Electrical Life | 1 million operations |
Mounting Type | DIN Rail or Panel Mount |
The DIA Contactor typically has the following pin configuration:
Pin Label | Description |
---|---|
L1, L2, L3 | Input terminals for three-phase power |
T1, T2, T3 | Output terminals for three-phase load |
Pin Label | Description |
---|---|
A1 | Positive terminal for the coil |
A2 | Negative terminal for the coil |
Pin Label | Description |
---|---|
13, 14 | Normally Open (NO) auxiliary contact |
21, 22 | Normally Closed (NC) auxiliary contact |
Power Supply Connection:
Load Connection:
Control Circuit:
Auxiliary Contacts:
The DIA Contactor can be controlled using an Arduino UNO by driving a relay module that supplies the required coil voltage.
// This code demonstrates how to control a DIA Contactor using an Arduino UNO
// and a relay module. The relay module is used to switch the contactor's coil.
const int relayPin = 7; // Pin connected to the relay module
void setup() {
pinMode(relayPin, OUTPUT); // Set the relay pin as an output
digitalWrite(relayPin, LOW); // Ensure the relay is off initially
}
void loop() {
// Turn the contactor ON
digitalWrite(relayPin, HIGH); // Activate the relay
delay(5000); // Keep the contactor ON for 5 seconds
// Turn the contactor OFF
digitalWrite(relayPin, LOW); // Deactivate the relay
delay(5000); // Keep the contactor OFF for 5 seconds
}
Note: Ensure the relay module is rated to handle the contactor's coil voltage and current. Use an external power supply for the relay module if required.
Contactor Does Not Activate:
Excessive Heating:
Chattering Noise:
Auxiliary Contacts Not Working:
Q: Can the DIA Contactor be used for single-phase applications?
A: Yes, connect the single-phase power to one of the poles (e.g., L1 and T1) and leave the other poles unused.
Q: How do I select the correct contactor for my application?
A: Choose a contactor with a current rating higher than the load current and ensure the coil voltage matches your control circuit.
Q: Can I mount the contactor in any orientation?
A: It is recommended to mount the contactor vertically for optimal performance and longevity.
Q: What is the purpose of auxiliary contacts?
A: Auxiliary contacts are used for signaling, interlocking, or controlling other devices in the circuit.
By following this documentation, you can effectively integrate the Rover DIA Contactor (Part ID: 1234) into your electrical systems for reliable and efficient operation.