

The CHINT NXC-09A Contactor is an electrically controlled switch designed for industrial and commercial applications. It is primarily used to control and switch power circuits, enabling the automation of high-power devices such as motors, heaters, and lighting systems. With a current rating of 20A, this contactor is ideal for medium-load applications, ensuring reliable performance and durability.








| Parameter | Value |
|---|---|
| Manufacturer | CHINT |
| Model Number | NXC-09A |
| Rated Current (AC-3) | 20A |
| Rated Voltage | 690V AC |
| Coil Voltage Options | 24V AC/DC, 110V AC, 220V AC |
| Number of Poles | 3 |
| Mechanical Durability | 10 million operations |
| Electrical Durability | 1 million operations |
| Operating Temperature | -5°C to +40°C |
| Mounting Type | DIN Rail or Screw Mount |
| Standards Compliance | IEC 60947-4-1, CE, CCC |
The NXC-09A contactor has a straightforward terminal layout for power and control connections. Below is the pin configuration:
| Terminal Label | Description |
|---|---|
| L1, L2, L3 | Input terminals for three-phase power |
| T1, T2, T3 | Output terminals for load connection |
| Terminal Label | Description |
|---|---|
| A1, A2 | Coil terminals for control voltage |
| NO (Normally Open) | Auxiliary contact for control circuits |
| NC (Normally Closed) | Auxiliary contact for control circuits |
Power Connections:
Control Circuit:
Mounting:
Testing:
The CHINT NXC-09A can be controlled using an Arduino UNO by energizing its coil with 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 to energize the contactor
digitalWrite(relayPin, HIGH);
delay(5000); // Keep the contactor on for 5 seconds
// Turn off the relay to de-energize the contactor
digitalWrite(relayPin, LOW);
delay(5000); // Wait for 5 seconds before repeating
}
| Issue | Possible Cause | Solution |
|---|---|---|
| Contactor does not energize | Incorrect control voltage | Verify the coil voltage and wiring. |
| Excessive noise during operation | Worn or dirty contacts | Inspect and clean the contacts. |
| Overheating | Overcurrent or poor ventilation | Check the load current and ensure proper ventilation. |
| Frequent tripping | Incorrect overload relay settings | Adjust the overload relay to match the load. |
Can the NXC-09A be used for single-phase loads?
What is the maximum wire size for the terminals?
Can the contactor be mounted horizontally?
How do I know if the contactor is faulty?
By following this documentation, users can effectively integrate the CHINT NXC-09A contactor into their systems for reliable and efficient operation.