

An AC Surge Protective Device (SPD) is designed to protect electrical equipment from voltage spikes and surges in alternating current (AC) systems. These surges are typically caused by lightning strikes, power fluctuations, or switching operations in the power grid. By diverting excess voltage to the ground, the AC SPD ensures the safety and longevity of connected devices.








| Parameter | Value/Range |
|---|---|
| Nominal Voltage (Un) | 120V, 230V, 400V AC (varies by model) |
| Maximum Continuous Voltage (Uc) | 150V, 275V, 440V AC |
| Surge Current Capacity (Imax) | 10kA to 100kA (8/20 µs waveform) |
| Voltage Protection Level (Up) | ≤ 1.5kV to ≤ 4kV |
| Response Time | < 25 nanoseconds |
| Operating Temperature Range | -40°C to +85°C |
| Enclosure Rating | IP20 to IP65 (depending on model) |
| Standards Compliance | IEC 61643-11, UL 1449 |
| Pin/Terminal | Description |
|---|---|
| L (Line) | Connects to the live wire of the AC system. |
| N (Neutral) | Connects to the neutral wire of the AC system. |
| PE (Earth) | Connects to the protective earth/ground wire. |
L terminal to the live wire of the AC system.N terminal to the neutral wire.PE terminal to the ground wire for proper surge diversion.While an AC SPD is not directly connected to an Arduino UNO, it can protect the power supply feeding the Arduino. For example, if the Arduino is powered via an AC adapter, the SPD can be installed at the AC input to safeguard the adapter and, indirectly, the Arduino.
// Example Arduino code to monitor a power supply's status
// This assumes a voltage sensor is used to detect power supply issues.
const int sensorPin = A0; // Analog pin connected to the voltage sensor
const int threshold = 500; // Threshold value for detecting power issues
void setup() {
Serial.begin(9600); // Initialize serial communication
pinMode(sensorPin, INPUT); // Set the sensor pin as input
}
void loop() {
int sensorValue = analogRead(sensorPin); // Read the sensor value
if (sensorValue < threshold) {
Serial.println("Warning: Power supply issue detected!");
// Take appropriate action, such as shutting down sensitive equipment
} else {
Serial.println("Power supply is stable.");
}
delay(1000); // Wait for 1 second before the next reading
}
SPD Not Functioning After a Surge Event:
Frequent Tripping of Circuit Breaker:
No Status Indicator Light:
Poor Surge Protection Performance:
By following these guidelines, you can ensure the effective operation of your AC SPD and protect your electrical systems from damaging surges.