

The Breaker 4P by Chint is a 4-pole circuit breaker designed to protect electrical circuits from overloads and short circuits. It ensures the safe disconnection of power in multi-phase systems, making it an essential component in industrial, commercial, and residential electrical installations. This breaker is particularly suited for applications requiring the management of three-phase systems with a neutral line.








The following table outlines the key technical details of the Breaker 4P:
| Parameter | Specification |
|---|---|
| Manufacturer | Chint |
| Number of Poles | 4 |
| Rated Voltage (Ue) | 400V AC |
| Rated Current (In) | 10A, 16A, 25A, 32A, 40A, 63A (varies by model) |
| Breaking Capacity (Icu) | 10kA |
| Frequency | 50/60 Hz |
| Operating Temperature | -5°C to +40°C |
| Mounting Type | DIN Rail |
| Standards Compliance | IEC 60898-1, IEC 60947-2 |
The Breaker 4P has four terminals, each corresponding to a specific phase or neutral connection. The table below describes the pin configuration:
| Terminal | Description |
|---|---|
| L1 | Phase 1 input/output |
| L2 | Phase 2 input/output |
| L3 | Phase 3 input/output |
| N | Neutral input/output |
While the Breaker 4P is not directly interfaced with microcontrollers like the Arduino UNO, it can be used in conjunction with relays or contactors to control high-power loads. Below is an example of how to use an Arduino UNO to control a relay that operates the breaker:
// Example code to control a relay using Arduino UNO
// This relay can be used to control the Breaker 4P indirectly
const int relayPin = 7; // Pin connected to the relay module
void setup() {
pinMode(relayPin, OUTPUT); // Set relay pin as output
digitalWrite(relayPin, LOW); // Ensure relay is off at startup
}
void loop() {
// Turn on the relay (simulate closing the breaker)
digitalWrite(relayPin, HIGH);
delay(5000); // Keep the relay on for 5 seconds
// Turn off the relay (simulate opening the breaker)
digitalWrite(relayPin, LOW);
delay(5000); // Keep the relay off for 5 seconds
}
Note: Ensure the relay module is rated for the voltage and current of the Breaker 4P's control circuit.
| Issue | Possible Cause | Solution |
|---|---|---|
| Breaker trips frequently | Overload or short circuit in the circuit | Check the load and wiring for faults. |
| Breaker does not trip during a fault | Incorrect current rating or faulty breaker | Verify the breaker rating and replace if necessary. |
| Overheating of terminals | Loose connections | Tighten all terminal screws securely. |
| Difficulty resetting the breaker | Persistent fault in the circuit | Inspect and resolve the fault before resetting. |
Can the Breaker 4P be used for single-phase systems?
What is the difference between a 3-pole and a 4-pole breaker?
How do I determine the correct breaker rating for my application?
Can the breaker be used outdoors?
By following this documentation, users can effectively integrate and maintain the Breaker 4P in their electrical systems.