

The Disjoncteur 2P 63A is a 2-pole circuit breaker rated for a maximum current of 63 amps. It is designed to protect electrical circuits from overloads and short circuits by automatically disconnecting the power supply when unsafe conditions are detected. This component is widely used in residential, commercial, and industrial electrical systems to ensure safety and prevent damage to equipment.








The following table outlines the key technical details of the Disjoncteur 2P 63A:
| Parameter | Value |
|---|---|
| Rated Current (In) | 63 A |
| Number of Poles | 2 |
| Rated Voltage (Un) | 230/400 V AC |
| Breaking Capacity (Icu) | 6 kA |
| Frequency | 50/60 Hz |
| Trip Curve | Type C (standard) |
| Mounting Type | DIN rail |
| Operating Temperature | -5°C to +40°C |
| Standards Compliance | IEC 60898-1 |
The Disjoncteur 2P 63A has two input terminals and two output terminals. The table below describes the terminal connections:
| Terminal | Description |
|---|---|
| L1 (Input) | Live input for the first pole |
| L2 (Input) | Live input for the second pole |
| L1 (Output) | Live output for the first pole |
| L2 (Output) | Live output for the second pole |
Mounting the Circuit Breaker:
Wiring the Circuit Breaker:
Testing the Circuit Breaker:
While the Disjoncteur 2P 63A is not directly controlled by microcontrollers like Arduino, it can be used in conjunction with an Arduino-controlled relay to automate circuit control. Below is an example of Arduino code to control a relay that switches the circuit breaker:
// Arduino code to control a relay for automating circuit breaker operation
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
digitalWrite(relayPin, HIGH); // Activate relay (close circuit)
delay(5000); // Wait for 5 seconds
digitalWrite(relayPin, LOW); // Deactivate relay (open circuit)
delay(5000); // Wait for 5 seconds
}
Note: Ensure the relay module is rated for the voltage and current of the circuit being controlled. The relay should only control the circuit breaker indirectly (e.g., by switching power to the load).
Circuit Breaker Does Not Trip:
Frequent Tripping:
Loose Connections:
Breaker Does Not Reset:
By following this documentation, users can safely and effectively install, use, and maintain the Disjoncteur 2P 63A in their electrical systems.