

The TOMZN TOB1Z 63 C40 MCB 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 tripping characteristic, making it ideal for protecting solar power systems from overcurrent conditions. This MCB ensures safe and reliable operation by interrupting the circuit during overloads or short circuits, preventing damage to connected equipment and wiring.








| Parameter | Value |
|---|---|
| Rated Current (In) | 63A |
| Tripping Characteristic | C40 |
| Rated Voltage (Un) | 1000V DC |
| Number of Poles | 2P (Double Pole) |
| Breaking Capacity | 6kA |
| Application | Photovoltaic (PV) systems |
| Operating Temperature | -25°C to +70°C |
| Mounting Type | DIN Rail (Standard 35mm) |
| Standards Compliance | IEC/EN 60947-2, IEC/EN 60898-1 |
The TOMZN TOB1Z 63 C40 MCB has a simple terminal configuration for connecting to DC circuits. Below is a description of the terminals:
| Terminal Label | Description |
|---|---|
| Line (+) | Positive input terminal from the DC source (e.g., solar panels) |
| Line (-) | Negative input terminal from the DC source |
| Load (+) | Positive output terminal to the load (e.g., inverter) |
| Load (-) | Negative output terminal to the load |
Line (+) and Line (-) terminals of the MCB.Load (+) and Load (-) terminals to the input of the load (e.g., inverter or battery system).While the TOMZN TOB1Z 63 C40 MCB is not directly interfaced with microcontrollers like Arduino, it can be used in circuits that include Arduino-based solar monitoring systems. For example, you can use an Arduino to monitor the voltage and current of the solar system protected by this MCB.
Here is an example Arduino code snippet for monitoring voltage and current in a solar system:
// Example code for monitoring voltage and current in a solar system
// using an Arduino and sensors like a voltage divider and current sensor.
const int voltagePin = A0; // Analog pin for voltage sensor
const int currentPin = A1; // Analog pin for current sensor
float voltage = 0.0; // Variable to store measured voltage
float current = 0.0; // Variable to store measured current
void setup() {
Serial.begin(9600); // Initialize serial communication
// Print a message to indicate the system is starting
Serial.println("Solar System Monitoring Started");
}
void loop() {
// Read voltage and current sensor values
int voltageRaw = analogRead(voltagePin);
int currentRaw = analogRead(currentPin);
// Convert raw values to actual voltage and current
// Adjust the conversion factors based on your sensor specifications
voltage = (voltageRaw / 1023.0) * 100.0; // Example: 0-100V range
current = (currentRaw / 1023.0) * 50.0; // Example: 0-50A range
// Print the measured values to the Serial Monitor
Serial.print("Voltage: ");
Serial.print(voltage);
Serial.println(" V");
Serial.print("Current: ");
Serial.print(current);
Serial.println(" A");
delay(1000); // Wait for 1 second before the next reading
}
MCB Does Not Trip During Overcurrent:
Frequent Tripping:
Loose Connections:
MCB Overheating:
Can this MCB be used for AC circuits?
What is the significance of the C40 tripping characteristic?
Is this MCB compatible with all solar panel setups?
How often should the MCB be inspected?