

A 3-pole miniature circuit breaker (MCB) is an essential protective device used in electrical systems. It is designed to safeguard circuits from overloads and short circuits by automatically disconnecting the circuit when a fault is detected. The 3-pole configuration allows it to protect three-phase electrical systems, making it ideal for industrial and commercial applications.








The following table outlines the key technical specifications of the MCB 3P:
| Parameter | Specification |
|---|---|
| Rated Voltage | 400V AC |
| Rated Current | 6A, 10A, 16A, 20A, 32A, 40A, 63A |
| Breaking Capacity | 6kA or 10kA (depending on model) |
| Number of Poles | 3 |
| Tripping Curve | B, C, or D (based on application) |
| Frequency | 50/60 Hz |
| Operating Temperature | -5°C to +40°C |
| Mounting Type | DIN rail (35mm) |
| Standards Compliance | IEC 60898-1, IEC 60947-2 |
The MCB 3P does not have traditional "pins" like electronic components but instead features terminals for connecting wires. The table below describes the terminal configuration:
| Terminal | 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 |
While MCBs are not directly interfaced with microcontrollers like Arduino, they can be used in circuits controlled by Arduino to protect connected devices. For example, an Arduino-controlled relay can switch a load that is protected by an MCB.
/*
Example: Controlling a relay to switch a load protected by an MCB 3P.
Note: The MCB is not directly connected to the Arduino but protects the 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() {
// Example: Turn the relay on for 5 seconds, then off for 5 seconds
digitalWrite(relayPin, HIGH); // Turn relay on
delay(5000); // Wait for 5 seconds
digitalWrite(relayPin, LOW); // Turn relay off
delay(5000); // Wait for 5 seconds
}
| Issue | Possible Cause | Solution |
|---|---|---|
| MCB trips frequently | Overload or short circuit in the circuit | Check the load and wiring for faults. |
| MCB does not trip during a fault | Faulty MCB or incorrect rating | Replace the MCB or use the correct rating. |
| Terminals overheating | Loose connections or undersized wires | Tighten connections and use proper wires. |
| Difficulty in resetting the MCB | Persistent fault in the circuit | Identify and fix the fault before resetting. |
Can I use an MCB 3P for single-phase circuits?
What is the difference between B, C, and D tripping curves?
How do I know if my MCB is faulty?
Can I reset the MCB immediately after it trips?
By following this documentation, users can effectively install, use, and troubleshoot the MCB 3P in their electrical systems.