

The MCB TOMZN TOB1Z 63 C40 is a miniature circuit breaker (MCB) specifically designed for photovoltaic (PV) applications. It is rated for a maximum current of 63A and features a C40 trip curve, making it ideal for protecting solar power systems from overcurrent conditions. This MCB ensures reliable operation and safety in both residential and commercial PV installations.








| Parameter | Specification |
|---|---|
| Rated Current (In) | 63A |
| Trip Curve | C40 |
| Rated Voltage (Un) | 1000V DC |
| Number of Poles | 2P (Double Pole) |
| Breaking Capacity | 6kA |
| Operating Temperature | -25°C to +70°C |
| Mounting Type | DIN Rail (Standard 35mm) |
| Standards Compliance | IEC/EN 60947-2, IEC/EN 60898-1 |
The MCB TOMZN TOB1Z 63 C40 has two input terminals and two output terminals, as described below:
| Terminal | Description |
|---|---|
| L+ | Positive input from the PV system |
| L- | Negative input from the PV system |
| OUT+ | Positive output to the load |
| OUT- | Negative output to the load |
L+ and L- terminals, respectively.OUT+ and OUT- terminals.While the MCB itself is not directly connected to an Arduino UNO, it can be used in a PV system that powers an Arduino-based project. Below is an example of how to monitor the MCB's status using an Arduino:
// Example code to monitor the status of the MCB using an Arduino UNO
// This assumes the MCB's output is connected to a digital input pin on the Arduino.
const int mcbStatusPin = 2; // Pin connected to the MCB output
const int ledPin = 13; // Built-in LED to indicate MCB status
void setup() {
pinMode(mcbStatusPin, INPUT); // Set the MCB status pin as input
pinMode(ledPin, OUTPUT); // Set the LED pin as output
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int mcbStatus = digitalRead(mcbStatusPin); // Read the MCB status
if (mcbStatus == HIGH) {
// If the MCB is ON, turn off the LED and print status
digitalWrite(ledPin, LOW);
Serial.println("MCB is ON: Circuit is active.");
} else {
// If the MCB is OFF, turn on the LED and print status
digitalWrite(ledPin, HIGH);
Serial.println("MCB is OFF: Circuit is interrupted.");
}
delay(1000); // Wait for 1 second before checking again
}
| Issue | Possible Cause | Solution |
|---|---|---|
| MCB trips frequently | Overcurrent or short circuit in the PV system | Check the circuit for faults or overloads. |
| MCB does not trip during a fault | Fault current is below the trip threshold | Verify the current rating and trip curve. |
| Loose connections | Improperly tightened terminals | Re-tighten all connections securely. |
| Overheating of the MCB | High ambient temperature or poor ventilation | Improve ventilation or relocate the MCB. |
Can this MCB be used for AC circuits?
What does the C40 trip curve mean?
How do I reset the MCB after it trips?
Can this MCB be used in outdoor installations?
By following this documentation, users can safely and effectively integrate the MCB TOMZN TOB1Z 63 C40 into their photovoltaic systems.