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

How to Use MCB 4A: Examples, Pinouts, and Specs

Image of MCB 4A
Cirkit Designer LogoDesign with MCB 4A in Cirkit Designer

Introduction

A Miniature Circuit Breaker (MCB) rated at 4 Amperes is an essential safety device used in electrical systems. It is designed to protect circuits from overload and short circuit conditions by automatically interrupting the flow of current when it exceeds the rated capacity. The MCB 4A is compact, reliable, and widely used in residential, commercial, and industrial applications.

Explore Projects Built with MCB 4A

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 4A 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 4A 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
AC Bulb Control Circuit with Flush Switch and MCB Protection
Image of LAMP CONTROLE WITH MCB 1: A project utilizing MCB 4A 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
Solar-Powered Home Energy System with Automatic Transfer Switch and Battery Backup
Image of CDP: A project utilizing MCB 4A in a practical application
This circuit is a solar power system with an automatic transfer switch (ATS) that manages power from both a solar panel and an AC supply. The solar panel charges a battery through a solar charge controller, and the power inverter converts the stored DC power to AC, which is then distributed through an MCB to a socket. The ATS ensures seamless switching between solar and AC power sources.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with MCB 4A

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 4A 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 4A 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 LAMP CONTROLE WITH MCB 1: A project utilizing MCB 4A 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
Image of CDP: A project utilizing MCB 4A in a practical application
Solar-Powered Home Energy System with Automatic Transfer Switch and Battery Backup
This circuit is a solar power system with an automatic transfer switch (ATS) that manages power from both a solar panel and an AC supply. The solar panel charges a battery through a solar charge controller, and the power inverter converts the stored DC power to AC, which is then distributed through an MCB to a socket. The ATS ensures seamless switching between solar and AC power sources.
Cirkit Designer LogoOpen Project in Cirkit Designer

Common Applications and Use Cases

  • Protection of lighting circuits in homes and offices
  • Safeguarding small appliances and equipment
  • Use in control panels for low-power devices
  • Circuit protection in renewable energy systems (e.g., solar panels)

Technical Specifications

The following table outlines the key technical details of the MCB 4A:

Parameter Specification
Rated Current 4 Amperes
Rated Voltage 230/240V AC (single-phase)
Breaking Capacity 6 kA (kiloamperes)
Tripping Curve Type B (suitable for resistive loads)
Number of Poles 1P (Single Pole)
Operating Temperature -5°C to +40°C
Mounting Type DIN Rail (35mm standard)
Dimensions 18mm width per pole
Compliance Standards IEC 60898-1

Pin Configuration and Descriptions

The MCB 4A does not have traditional pins but instead features terminals for wire connections. The table below describes the terminal configuration:

Terminal Description
Line (Input) Connects to the incoming live wire (phase)
Load (Output) Connects to the outgoing live wire to the load

Usage Instructions

How to Use the MCB 4A in a Circuit

  1. Mounting the MCB:

    • Install the MCB on a standard 35mm DIN rail in the distribution box or control panel.
    • Ensure the MCB is securely locked into place.
  2. Wiring the MCB:

    • Connect the incoming live wire (phase) to the Line (Input) terminal.
    • Connect the outgoing live wire to the Load (Output) terminal.
    • Tighten the terminal screws to ensure a secure connection.
  3. Testing the MCB:

    • After installation, switch on the MCB and verify that the connected circuit operates correctly.
    • Use the test button (if available) to simulate a fault and ensure the MCB trips as expected.

Important Considerations and Best Practices

  • Ensure the MCB's rated current (4A) matches the circuit's load requirements.
  • Do not exceed the MCB's rated voltage or breaking capacity.
  • Use appropriate wire sizes for the connected load (e.g., 1.5mm² for lighting circuits).
  • Regularly inspect the MCB for signs of wear, damage, or loose connections.
  • Avoid using the MCB as a regular on/off switch, as this may reduce its lifespan.

Example: Connecting the MCB to an Arduino UNO

While the MCB itself is not directly connected to an Arduino UNO, it can be used to protect circuits powered by the Arduino. For example, if you are powering a motor or LED strip through a relay controlled by the Arduino, the MCB can safeguard the circuit.

// Example Arduino code to control a relay for a load protected by the MCB 4A
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 (and the connected load)
  digitalWrite(relayPin, HIGH);
  delay(5000); // Keep the load on for 5 seconds

  // Turn off the relay (and the connected load)
  digitalWrite(relayPin, LOW);
  delay(5000); // Keep the load off for 5 seconds
}

Note: Ensure the load connected to the relay does not exceed the MCB's 4A rating.

Troubleshooting and FAQs

Common Issues and Solutions

Issue Possible Cause Solution
MCB trips frequently Overload or short circuit in the circuit Check the connected load and wiring for faults. Reduce the load if necessary.
MCB does not trip during a fault Faulty MCB or incorrect installation Verify the wiring and test the MCB using the test button. Replace if defective.
MCB does not stay in the "ON" position Loose connections or internal damage Tighten all terminal screws and inspect for damage. Replace if needed.

FAQs

  1. Can I use the MCB 4A for inductive loads like motors?

    • The MCB 4A with a Type B tripping curve is best suited for resistive loads. For inductive loads, consider using an MCB with a Type C or D curve.
  2. What happens if I exceed the MCB's rated current?

    • The MCB will trip to protect the circuit from damage. Repeated overloading can reduce the MCB's lifespan.
  3. How do I reset the MCB after it trips?

    • Switch the MCB to the "OFF" position, resolve the fault in the circuit, and then switch it back to the "ON" position.
  4. Can I use the MCB 4A in a DC circuit?

    • No, this MCB is designed for AC circuits. Use a DC-rated circuit breaker for DC applications.

By following this documentation, you can safely and effectively use the MCB 4A to protect your electrical circuits.