Cirkit Designer Logo
Cirkit Designer
Your all-in-one circuit design IDE
Home / 
Component Documentation

How to Use MCB: Examples, Pinouts, and Specs

Image of MCB
Cirkit Designer LogoDesign with MCB in Cirkit Designer

Introduction

A Miniature Circuit Breaker (MCB) is an electromechanical device designed to protect electrical circuits from damage caused by overloads and short circuits. Manufactured by 2P, this compact and reliable component automatically disconnects the circuit when it detects abnormal current flow, ensuring the safety of electrical systems and connected devices.

Explore Projects Built with MCB

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Flush Switch Controlled Lamp Circuit with AC Power Supply and MCB Protection
Image of LAMP CONTROLE WITH MCB: A project utilizing MCB in a practical application
This circuit is designed to control a lamp using a flush switch and is protected by two MCBs (Miniature Circuit Breakers). The AC supply is connected to the input of the first MCB, whose output is connected to the flush switch. The flush switch then controls the power to the lamp, with the second MCB placed in the neutral line for additional safety.
Cirkit Designer LogoOpen Project in Cirkit Designer
LED Indicator System with Power Stabilizer and Measurement Meters
Image of MEMEK: A project utilizing MCB in a practical application
This circuit is a power distribution and monitoring system that includes multiple LEDs for status indication, a stabilizer module, and measurement instruments such as voltmeters and ammeters. It is designed to supply power to a computer and monitor the power quality and current flow, with protection provided by MCBs (Miniature Circuit Breakers).
Cirkit Designer LogoOpen Project in Cirkit Designer
Solar-Powered Battery Charging System with DC-DC Converter
Image of TA1: A project utilizing MCB in a practical application
This circuit is a solar power system that uses two solar panels connected through MCBs to a solar charge controller. The charge controller manages the charging of a 12V battery and powers a DC-DC converter, which provides a regulated output voltage.
Cirkit Designer LogoOpen Project in Cirkit Designer
AC Bulb Control Circuit with Flush Switch and MCB Protection
Image of LAMP CONTROLE WITH MCB 1: A project utilizing MCB in a practical application
This circuit is designed to control an AC bulb using a flush switch. The AC power supply is connected through an MCB (Miniature Circuit Breaker) for protection, and the flush switch acts as an on/off control for the bulb. There is no microcontroller or embedded code involved in this simple power control circuit.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with MCB

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Image of LAMP CONTROLE WITH MCB: A project utilizing MCB in a practical application
Flush Switch Controlled Lamp Circuit with AC Power Supply and MCB Protection
This circuit is designed to control a lamp using a flush switch and is protected by two MCBs (Miniature Circuit Breakers). The AC supply is connected to the input of the first MCB, whose output is connected to the flush switch. The flush switch then controls the power to the lamp, with the second MCB placed in the neutral line for additional safety.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of MEMEK: A project utilizing MCB in a practical application
LED Indicator System with Power Stabilizer and Measurement Meters
This circuit is a power distribution and monitoring system that includes multiple LEDs for status indication, a stabilizer module, and measurement instruments such as voltmeters and ammeters. It is designed to supply power to a computer and monitor the power quality and current flow, with protection provided by MCBs (Miniature Circuit Breakers).
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of TA1: A project utilizing MCB in a practical application
Solar-Powered Battery Charging System with DC-DC Converter
This circuit is a solar power system that uses two solar panels connected through MCBs to a solar charge controller. The charge controller manages the charging of a 12V battery and powers a DC-DC converter, which provides a regulated output voltage.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of LAMP CONTROLE WITH MCB 1: A project utilizing MCB in a practical application
AC Bulb Control Circuit with Flush Switch and MCB Protection
This circuit is designed to control an AC bulb using a flush switch. The AC power supply is connected through an MCB (Miniature Circuit Breaker) for protection, and the flush switch acts as an on/off control for the bulb. There is no microcontroller or embedded code involved in this simple power control circuit.
Cirkit Designer LogoOpen Project in Cirkit Designer

Common Applications and Use Cases

  • Residential and commercial electrical distribution systems
  • Industrial machinery and equipment protection
  • Power distribution boards
  • Renewable energy systems (e.g., solar panels)
  • Motor protection in HVAC systems

Technical Specifications

Below are the key technical details for the 2P MCB:

Parameter Value
Rated Voltage 230/400V AC
Rated Current 6A, 10A, 16A, 20A, 32A, 40A
Breaking Capacity 6kA or 10kA
Number of Poles 1P, 2P, 3P, 4P
Tripping Curve B, C, or D
Frequency 50/60 Hz
Operating Temperature -5°C to +55°C
Mounting Type DIN Rail (35mm)
Standards Compliance IEC/EN 60898-1

Pin Configuration and Descriptions

The MCB does not have traditional pins but instead features terminals for electrical connections. Below is a description of the terminal configuration:

Terminal Description
Line Input Connects to the incoming power supply (phase wire).
Load Output Connects to the outgoing circuit or load.
Neutral (For 2P, 3P, or 4P models) Connects to the neutral wire for balanced operation.

Usage Instructions

How to Use the MCB in a Circuit

  1. Determine the Load Requirements: Identify the rated current and voltage of the circuit to select the appropriate MCB model (e.g., 16A, 32A).
  2. Install on a DIN Rail: Mount the MCB securely onto a 35mm DIN rail in the distribution board.
  3. Connect the Wires:
    • Connect the incoming phase wire to the Line Input terminal.
    • Connect the outgoing phase wire to the Load Output terminal.
    • For multi-pole MCBs, connect the neutral wire to the Neutral terminal.
  4. Tighten the Terminals: Ensure all connections are secure to prevent loose contacts.
  5. Switch On the MCB: Flip the lever to the "ON" position to energize the circuit.

Important Considerations and Best Practices

  • Select the Correct Tripping Curve: Use a B-curve MCB for residential applications, a C-curve for commercial/industrial loads, and a D-curve for high inrush currents (e.g., motors).
  • Avoid Overloading: Ensure the total load current does not exceed the MCB's rated current.
  • Regular Maintenance: Periodically inspect the MCB for signs of wear, overheating, or loose connections.
  • Do Not Bypass the MCB: Never bypass the MCB as it compromises the safety of the circuit.

Example: Connecting an MCB to an Arduino UNO

While MCBs are not directly connected to microcontrollers like the Arduino UNO, they can be used to protect circuits powered by the Arduino. For example, if you are powering a motor via an external power supply, an MCB can be installed between the power supply and the motor to prevent damage from overcurrent.

// Example Arduino code to control a motor protected by an MCB
const int motorPin = 9; // Pin connected to motor driver input

void setup() {
  pinMode(motorPin, OUTPUT); // Set motor pin as output
}

void loop() {
  digitalWrite(motorPin, HIGH); // Turn on the motor
  delay(5000); // Run motor for 5 seconds
  digitalWrite(motorPin, LOW); // Turn off the motor
  delay(2000); // Wait for 2 seconds before restarting
}

// Note: Ensure the MCB is installed between the power supply and motor driver
// to protect the circuit from overcurrent or short circuits.

Troubleshooting and FAQs

Common Issues and Solutions

Issue Possible Cause Solution
MCB trips frequently Overloaded circuit or short circuit Reduce the load or check for wiring faults.
MCB does not trip during a fault Incorrect MCB rating or faulty MCB Replace with the correct MCB rating or test the MCB for proper operation.
Loose connections at terminals Improper tightening of screws Re-tighten the terminal screws securely.
MCB lever stuck in the "OFF" position Internal mechanism damaged Replace the MCB with a new one.

FAQs

  1. Can I use an MCB for DC circuits?

    • Some MCBs are rated for DC applications. Check the manufacturer's specifications for DC compatibility.
  2. What is the difference between an MCB and a fuse?

    • An MCB is reusable and automatically trips during a fault, while a fuse must be replaced after it blows.
  3. How do I select the right MCB for my application?

    • Consider the circuit's voltage, current, and load type. Use the appropriate tripping curve (B, C, or D) based on the application.
  4. Can I install an MCB without a DIN rail?

    • No, MCBs are designed for DIN rail mounting to ensure secure and standardized installation.

By following this documentation, you can safely and effectively use the 2P MCB to protect your electrical systems.