

An Air Circuit Breaker (ACB) is a type of electrical device designed to protect electrical circuits from overloads and short circuits. It operates by automatically disconnecting the circuit when a fault is detected, ensuring the safety of electrical systems and preventing damage to connected equipment. ACBs are commonly used in industrial and commercial power distribution systems where high current ratings are required.








| Parameter | Value/Range |
|---|---|
| Rated Voltage | Up to 690V AC |
| Rated Current | 630A to 6300A |
| Breaking Capacity | 50kA to 100kA |
| Operating Mechanism | Manual or Motorized |
| Frequency | 50Hz or 60Hz |
| Insulation Medium | Air |
| Trip Unit Type | Electronic or Thermal-Magnetic |
| Operating Temperature | -5°C to +55°C |
| Mounting Type | Fixed or Withdrawable |
Air Circuit Breakers do not have traditional "pins" like smaller electronic components. Instead, they feature terminals for power connections and auxiliary contacts for control and monitoring. Below is a description of the key terminals and contacts:
| Terminal/Contact | Description |
|---|---|
| Line Terminals | Connect to the incoming power supply (L1, L2, L3 for three-phase systems). |
| Load Terminals | Connect to the outgoing load circuit. |
| Auxiliary Contacts | Provide status signals (e.g., ON/OFF, tripped) for remote monitoring. |
| Trip Coil Terminals | Used to connect the trip coil for remote tripping. |
| Control Terminals | Connect to control circuits for motorized operation or interlocking. |
You can use an Arduino UNO to monitor the status of an ACB via its auxiliary contacts. Below is an example code snippet:
// Define the pin connected to the ACB auxiliary contact
const int acbStatusPin = 2; // Digital pin 2 for status monitoring
void setup() {
pinMode(acbStatusPin, INPUT_PULLUP); // Configure pin as input with pull-up resistor
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int acbStatus = digitalRead(acbStatusPin); // Read the status of the ACB
if (acbStatus == HIGH) {
// ACB is in the OFF or tripped state
Serial.println("ACB is OFF or Tripped");
} else {
// ACB is in the ON state
Serial.println("ACB is ON");
}
delay(1000); // Wait for 1 second before checking again
}
Note: Ensure the auxiliary contact voltage is compatible with the Arduino's input voltage (5V). Use an optocoupler or voltage divider if necessary.
ACB Does Not Trip During Faults:
Overheating of Terminals:
Frequent Tripping:
Motorized Mechanism Fails to Operate:
By following this documentation, users can effectively select, install, and maintain an Air Circuit Breaker (ACB) for their electrical systems.