

The MCB 3 Phase Chint is a Miniature Circuit Breaker designed specifically for three-phase electrical systems. Manufactured by Chint, this component provides essential overcurrent protection by automatically disconnecting the circuit in the event of an overload or short circuit. Its compact design and reliable performance make it a critical component in industrial, commercial, and residential electrical installations.








The following table outlines the key technical details of the MCB 3 Phase Chint:
| Parameter | Specification |
|---|---|
| Rated Voltage | 400V AC |
| Rated Current | 6A, 10A, 16A, 20A, 32A, 40A, 63A |
| Number of Poles | 3 (Three-phase) |
| Breaking Capacity | 6kA or 10kA (depending on model) |
| Tripping Curve | B, C, or D (based on application) |
| Frequency | 50/60 Hz |
| Operating Temperature | -5°C to +40°C |
| Mounting Type | DIN Rail |
| Standards Compliance | IEC/EN 60898-1 |
The MCB 3 Phase Chint does not have traditional pins but instead features terminal connections for three-phase input and output. The table below describes the terminal configuration:
| Terminal | Description |
|---|---|
| L1 | Phase 1 input connection |
| L2 | Phase 2 input connection |
| L3 | Phase 3 input connection |
| OUT1 | Phase 1 output connection |
| OUT2 | Phase 2 output connection |
| OUT3 | Phase 3 output connection |
While the MCB 3 Phase Chint is not directly compatible with Arduino UNO, it can be used in conjunction with relays or contactors controlled by the Arduino to manage high-power loads. Below is an example of Arduino code to control a relay that switches a three-phase load protected by the MCB:
// Example: Arduino code to control a relay for a three-phase load
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 (activates the three-phase load)
digitalWrite(relayPin, HIGH);
delay(5000); // Keep the load on for 5 seconds
// Turn off the relay (deactivates the three-phase load)
digitalWrite(relayPin, LOW);
delay(5000); // Keep the load off for 5 seconds
}
Note: Ensure the relay module and associated components are rated for the voltage and current of the three-phase load.
MCB Trips Frequently:
MCB Does Not Trip During Overload:
Loose Connections:
MCB Lever Stuck:
By following this documentation, users can effectively install, operate, and maintain the MCB 3 Phase Chint, ensuring reliable protection for their three-phase electrical systems.