The Arrester (Manufacturer: Tomzn, Part ID: Tomzn) is a protective device designed to safeguard electrical equipment from voltage spikes and surges. By diverting excess voltage to the ground, the arrester prevents damage to sensitive components and ensures the longevity of electrical systems. It is commonly used in power distribution systems, industrial equipment, and residential electrical installations.
The following table outlines the key technical details of the Tomzn arrester:
Parameter | Specification |
---|---|
Rated Voltage (Un) | 230V AC |
Maximum Continuous | 275V AC |
Operating Voltage (Uc) | |
Nominal Discharge | 10kA |
Current (In) | |
Maximum Discharge | 20kA |
Current (Imax) | |
Response Time | < 25 nanoseconds |
Protection Mode | Line-to-Ground (L-G) |
Operating Temperature | -40°C to +80°C |
Housing Material | Flame-retardant thermoplastic |
Mounting Type | DIN Rail |
Dimensions | 90mm x 18mm x 65mm |
Weight | 150g |
The arrester typically has a simple terminal configuration for easy installation. Below is the pin description:
Pin | Label | Description |
---|---|---|
1 | L | Line input terminal (connect to the live wire). |
2 | N | Neutral input terminal (connect to the neutral wire). |
3 | PE | Protective Earth terminal (connect to the ground). |
While arresters are not typically used directly with microcontrollers like the Arduino UNO, they can be part of a larger system to protect the power supply feeding the Arduino. For example, an arrester can be installed on the AC mains line supplying power to the Arduino's adapter.
Here is an example of how to use an arrester in a system with an Arduino UNO:
// Example: Arduino UNO with surge protection using an arrester
// Note: The arrester is installed on the AC mains line, not directly in the Arduino circuit.
// Ensure proper installation of the arrester as per the manufacturer's guidelines.
// Arduino code to blink an LED (for demonstration purposes)
const int ledPin = 13; // Pin connected to the onboard LED
void setup() {
pinMode(ledPin, OUTPUT); // Set the LED pin as an output
}
void loop() {
digitalWrite(ledPin, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(ledPin, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
Arrester Not Functioning:
Frequent Tripping of Circuit Breaker:
No Protection During a Surge Event:
By following this documentation, users can effectively install, use, and maintain the Tomzn arrester to protect their electrical systems from voltage surges.