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

How to Use Breaker 4p: Examples, Pinouts, and Specs

Image of Breaker 4p
Cirkit Designer LogoDesign with Breaker 4p in Cirkit Designer

Introduction

The Breaker 4P by Chint is a 4-pole circuit breaker designed to protect electrical circuits from overloads and short circuits. It ensures the safe disconnection of power in multi-phase systems, making it an essential component in industrial, commercial, and residential electrical installations. This breaker is particularly suited for applications requiring the management of three-phase systems with a neutral line.

Explore Projects Built with Breaker 4p

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Industrial Power Distribution and Safety Control System
Image of Control Diagram: A project utilizing Breaker 4p in a practical application
This circuit is designed for power distribution and safety control in an industrial setting. It features a main isolator and circuit breaker for power management, multiple PSUs for 5V, 12V, and 24V outputs, and a safety relay system that interfaces with E-stop buttons and a start switch to control a main contactor, ensuring safe operation and emergency power cut-off capabilities.
Cirkit Designer LogoOpen Project in Cirkit Designer
Battery-Powered UPS with Step-Down Buck Converter and BMS
Image of Mini ups: A project utilizing Breaker 4p in a practical application
This circuit is a power management system that steps down a 240V AC input to a lower DC voltage using a buck converter, which then powers a 40W UPS. The UPS is controlled by a rocker switch and is backed up by a battery management system (BMS) connected to three 3.7V batteries in series, ensuring continuous power supply.
Cirkit Designer LogoOpen Project in Cirkit Designer
AC Bulb Control Circuit with Rocker Switches and Circuit Breaker
Image of schematic: A project utilizing Breaker 4p in a practical application
This circuit is designed to control multiple AC bulbs using two rocker switches and a circuit breaker for safety. The circuit is powered by a 220V AC source, with the circuit breaker providing protection and the rocker switches allowing selective control of the connected bulbs.
Cirkit Designer LogoOpen Project in Cirkit Designer
Electromechanical Pump Control Circuit with Emergency Stop
Image of Pelton.: A project utilizing Breaker 4p in a practical application
This circuit is designed to control a pump using a contactor that is manually operated by a switch and can be overridden by an emergency stop. The contactor enables power from an AC power outlet to the pump, and the emergency stop can interrupt the power circuit for safety purposes.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with Breaker 4p

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 Control Diagram: A project utilizing Breaker 4p in a practical application
Industrial Power Distribution and Safety Control System
This circuit is designed for power distribution and safety control in an industrial setting. It features a main isolator and circuit breaker for power management, multiple PSUs for 5V, 12V, and 24V outputs, and a safety relay system that interfaces with E-stop buttons and a start switch to control a main contactor, ensuring safe operation and emergency power cut-off capabilities.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Mini ups: A project utilizing Breaker 4p in a practical application
Battery-Powered UPS with Step-Down Buck Converter and BMS
This circuit is a power management system that steps down a 240V AC input to a lower DC voltage using a buck converter, which then powers a 40W UPS. The UPS is controlled by a rocker switch and is backed up by a battery management system (BMS) connected to three 3.7V batteries in series, ensuring continuous power supply.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of schematic: A project utilizing Breaker 4p in a practical application
AC Bulb Control Circuit with Rocker Switches and Circuit Breaker
This circuit is designed to control multiple AC bulbs using two rocker switches and a circuit breaker for safety. The circuit is powered by a 220V AC source, with the circuit breaker providing protection and the rocker switches allowing selective control of the connected bulbs.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Pelton.: A project utilizing Breaker 4p in a practical application
Electromechanical Pump Control Circuit with Emergency Stop
This circuit is designed to control a pump using a contactor that is manually operated by a switch and can be overridden by an emergency stop. The contactor enables power from an AC power outlet to the pump, and the emergency stop can interrupt the power circuit for safety purposes.
Cirkit Designer LogoOpen Project in Cirkit Designer

Common Applications and Use Cases

  • Protection of three-phase electrical systems in industrial environments
  • Overload and short circuit protection in commercial buildings
  • Residential use for managing multi-phase power distribution
  • Integration into control panels and distribution boards
  • Ensuring safe disconnection during maintenance or emergencies

Technical Specifications

The following table outlines the key technical details of the Breaker 4P:

Parameter Specification
Manufacturer Chint
Number of Poles 4
Rated Voltage (Ue) 400V AC
Rated Current (In) 10A, 16A, 25A, 32A, 40A, 63A (varies by model)
Breaking Capacity (Icu) 10kA
Frequency 50/60 Hz
Operating Temperature -5°C to +40°C
Mounting Type DIN Rail
Standards Compliance IEC 60898-1, IEC 60947-2

Pin Configuration and Descriptions

The Breaker 4P has four terminals, each corresponding to a specific phase or neutral connection. The table below describes the pin configuration:

Terminal Description
L1 Phase 1 input/output
L2 Phase 2 input/output
L3 Phase 3 input/output
N Neutral input/output

Usage Instructions

How to Use the Breaker 4P in a Circuit

  1. Mounting: Securely install the breaker onto a DIN rail in the distribution board or control panel.
  2. Wiring:
    • Connect the incoming power supply lines (L1, L2, L3, and N) to the corresponding input terminals of the breaker.
    • Connect the outgoing load lines to the corresponding output terminals.
    • Ensure all connections are tight and secure to prevent arcing or overheating.
  3. Operation:
    • Switch the breaker to the "ON" position to allow current flow.
    • In case of an overload or short circuit, the breaker will automatically trip to the "OFF" position, disconnecting the circuit.
  4. Resetting:
    • After addressing the fault, manually reset the breaker by switching it back to the "ON" position.

Important Considerations and Best Practices

  • Current Rating: Ensure the breaker’s rated current matches the load requirements to avoid nuisance tripping or insufficient protection.
  • Breaking Capacity: Verify that the breaking capacity (Icu) is sufficient for the maximum fault current in the system.
  • Neutral Connection: Always connect the neutral line to the designated terminal (N) to ensure proper operation.
  • Periodic Inspection: Regularly inspect the breaker for signs of wear, overheating, or loose connections.
  • Safety: Always disconnect power before performing any wiring or maintenance tasks.

Example: Connecting the Breaker 4P to an Arduino UNO

While the Breaker 4P is not directly interfaced with microcontrollers like the Arduino UNO, it can be used in conjunction with relays or contactors to control high-power loads. Below is an example of how to use an Arduino UNO to control a relay that operates the breaker:

// Example code to control a relay using Arduino UNO
// This relay can be used to control the Breaker 4P indirectly

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 (simulate closing the breaker)
  digitalWrite(relayPin, HIGH);
  delay(5000); // Keep the relay on for 5 seconds

  // Turn off the relay (simulate opening the breaker)
  digitalWrite(relayPin, LOW);
  delay(5000); // Keep the relay off for 5 seconds
}

Note: Ensure the relay module is rated for the voltage and current of the Breaker 4P's control circuit.

Troubleshooting and FAQs

Common Issues and Solutions

Issue Possible Cause Solution
Breaker trips frequently Overload or short circuit in the circuit Check the load and wiring for faults.
Breaker does not trip during a fault Incorrect current rating or faulty breaker Verify the breaker rating and replace if necessary.
Overheating of terminals Loose connections Tighten all terminal screws securely.
Difficulty resetting the breaker Persistent fault in the circuit Inspect and resolve the fault before resetting.

FAQs

  1. Can the Breaker 4P be used for single-phase systems?

    • Yes, but it is primarily designed for three-phase systems. For single-phase use, connect only one phase and the neutral.
  2. What is the difference between a 3-pole and a 4-pole breaker?

    • A 3-pole breaker protects three phases (L1, L2, L3), while a 4-pole breaker also includes protection for the neutral line (N).
  3. How do I determine the correct breaker rating for my application?

    • Calculate the total load current and select a breaker with a rated current slightly higher than the load but within safe limits.
  4. Can the breaker be used outdoors?

    • The breaker itself is not weatherproof. Use it in an enclosure rated for outdoor use if required.

By following this documentation, users can effectively integrate and maintain the Breaker 4P in their electrical systems.