The Metaltex Ct32-b0-322 is a 24V contactor designed for switching electrical circuits in industrial and commercial applications. This component enables the control of high-power devices, such as motors, heaters, and lighting systems, using a low-power control signal. Its robust design ensures reliable operation in demanding environments, making it a popular choice for automation and control systems.
Parameter | Value |
---|---|
Manufacturer | Metaltex |
Part Number | Ct32-b0-322 |
Coil Voltage | 24V DC |
Rated Current | 32A |
Number of Poles | 3 (Three-phase) |
Contact Configuration | Normally Open (NO) |
Operating Temperature | -25°C to +55°C |
Insulation Voltage | 690V AC |
Mechanical Durability | 10 million operations |
Electrical Durability | 1 million operations |
Mounting Type | DIN Rail or Panel Mount |
Dimensions | 45mm x 75mm x 85mm |
Weight | 250g |
The Metaltex Ct32-b0-322 contactor 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 24V DC coil |
A2 | Negative terminal for 24V DC coil |
Power Connections:
Control Circuit:
Mounting:
Testing:
The Metaltex Ct32-b0-322 can be controlled using an Arduino UNO. Below is an example circuit and code:
// Define the pin connected to the contactor
const int contactorPin = 7;
void setup() {
// Set the contactor pin as an output
pinMode(contactorPin, OUTPUT);
}
void loop() {
// Turn the contactor ON
digitalWrite(contactorPin, HIGH);
delay(5000); // Keep it ON for 5 seconds
// Turn the contactor OFF
digitalWrite(contactorPin, LOW);
delay(5000); // Keep it OFF for 5 seconds
}
Note: Use a transistor (e.g., NPN) to drive the contactor coil, as the Arduino cannot directly supply the required current. A flyback diode (e.g., 1N4007) across the coil terminals is essential to protect the circuit from voltage spikes.
Contactor Does Not Operate:
Excessive Heating:
Chattering Noise:
Contacts Stuck in Closed Position:
Q1: Can the contactor be used with single-phase loads?
A1: Yes, the contactor can be used with single-phase loads by connecting only one pair of input and output terminals (e.g., L1 and T1).
Q2: What is the purpose of the flyback diode in the control circuit?
A2: The flyback diode protects the control circuit from voltage spikes generated when the coil is de-energized.
Q3: Can the contactor be mounted horizontally?
A3: Yes, the contactor can be mounted in any orientation, but ensure proper ventilation.
Q4: Is the contactor suitable for outdoor use?
A4: The contactor is not weatherproof. Use it in a protected enclosure for outdoor applications.