Some alarms correspond to real voltage events in the measured signal.
ADRI Project

Miguel Moura
UNDERVOLTAGE ALARM VALIDATION
in Low Voltage Grids
Problem Statement
Undervoltage alarms should not be trusted automatically.
Smart meters report undervoltage alarms in low-voltage grids, but are all these recorded alarms valid?
But some may be 'dummy' and unsupported by the behavior of the voltage in the grid.
The goal is to validate the alarms through data analytics and grid analysis.
Project 1 Overview
Project 1 approaches alarm validation through temporal analysis.
The idea is to build a validation model based on the behaviour of the voltage on a time window around the event.
Data Generation and Synthetic Scenario
Synthetic, but coherent, operating conditions drive the full validation pipeline.
Clean Voltage Profiles
Anomalous Voltage Profiles
Alarm Log
| Alarm | Timestamp | Client | Duration | Type |
|---|---|---|---|---|
| A001 | Day 14, 17:45 | client_012 | 45 min | UNDERVOLTAGE |
| A002 | Day 14, 18:00 | client_012 | 30 min | UNDERVOLTAGE |
| A003 | Day 14, 18:15 | client_027 | 15 min | UNDERVOLTAGE |
Program Logic, Inputs, and Outputs
Each alarm is transformed into a vector of temporal features, then validated by a simple interpretable model.
- clients voltage profiles
- alarm log
- true/false value for each alarm
Temporal Metrics Used
threshold_margin_min
Minimum distance to the alarm trigger threshold inside the temporal inspection window.
threshold_margin_mean
Mean threshold margin across the alarm-centered segment.
fraction_below_threshold
Fraction of samples that stay below threshold around the alarm.
event_energy_below_threshold
Integrated magnitude of the voltage deficit below the threshold.
pre_to_during_mean_drop
Average drop between the pre-alarm baseline and the alarm-centered window.
ar1_residual_mean_during
Mean AR(1) residual during the event window.
ar1_residual_max_abs_during
Maximum absolute AR(1) residual, highlighting unusual local structure.
ar1_residual_std_during
Residual volatility during the alarm-centered window.