

The MCB 3 Phase Chint is a miniature circuit breaker designed specifically for three-phase electrical systems. It provides reliable overcurrent protection by automatically disconnecting the circuit in the event of an overload or short circuit. This ensures the safety of electrical systems and prevents damage to connected equipment. The Chint MCB is widely used in industrial, commercial, and residential applications where three-phase power distribution is required.








| Parameter | Specification |
|---|---|
| Rated Voltage | 400/415V AC |
| Rated Current | 6A, 10A, 16A, 20A, 32A, 40A, 63A |
| Number of Poles | 3 (Three-phase) |
| Breaking Capacity | 6kA, 10kA |
| Frequency | 50/60 Hz |
| Tripping Curve | B, C, or D (depending on model) |
| 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 screw terminals for connecting wires. Below is a description of the terminal layout:
| Terminal Label | Description |
|---|---|
| L1 | Input terminal for Phase 1 |
| L2 | Input terminal for Phase 2 |
| L3 | Input terminal for Phase 3 |
| T1 | Output terminal for Phase 1 |
| T2 | Output terminal for Phase 2 |
| T3 | Output terminal for Phase 3 |
The MCB 3 Phase Chint is not directly compatible with Arduino or other microcontrollers, as it is a high-power protection device. However, it can be used in conjunction with relays or contactors controlled by an Arduino to manage three-phase loads. Below is an example of how an Arduino can control a three-phase load via a relay:
/*
Example: Controlling a three-phase load with Arduino and a relay
Note: This code assumes the relay is connected to pin 7 of the Arduino.
Ensure the relay is rated for three-phase operation and properly wired.
*/
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 to power the three-phase load
digitalWrite(relayPin, HIGH);
delay(5000); // Keep the load on for 5 seconds
// Turn off the relay to disconnect the load
digitalWrite(relayPin, LOW);
delay(5000); // Keep the load off for 5 seconds
}
MCB Trips Frequently:
MCB Does Not Trip During a Fault:
Loose Connections:
MCB Overheats:
Q: Can the MCB 3 Phase Chint be used for single-phase systems?
A: Yes, but only one pole will be used, which is not an efficient use of the device.
Q: How do I select the correct tripping curve (B, C, or D)?
A:
Q: Can I use this MCB outdoors?
A: The MCB itself is not weatherproof. Use it inside a weatherproof enclosure for outdoor applications.
Q: How often should the MCB be tested?
A: Test the MCB at least once a year by manually tripping it to ensure proper operation.