LITF-PA-2026-122 · Wildfire / Grid Infrastructure / Edge AI

System and Method for Real-Time Wildfire Perimeter Estimation Using Spatiotemporal Correlation of Power Quality Anomalies Across Advanced Metering Infrastructure

Smart meter network overlaid on wildfire perimeter map
⚖️ Prior Art Notice: This document is published as defensive prior art under 35 U.S.C. § 102(a)(1). The inventions described herein are dedicated to the public domain as of the publication date above. This disclosure is intended to prevent the patenting of these concepts by any party.

Abstract

Disclosed is a system and method for estimating wildfire perimeter location and advance rate in near-real-time by analyzing spatiotemporal patterns of power quality anomalies reported by existing Advanced Metering Infrastructure (AMI) smart meters across a utility's service territory. As a wildfire front approaches distribution infrastructure, power lines experience a characteristic sequence of degradation events: conductor thermal sag from radiant heat exposure (causing voltage drop and increased line losses), smoke-particle-induced partial discharge and flashover on insulators (generating high-frequency transients and harmonic distortion), vegetation contact from wind-driven debris (producing asymmetric fault currents), and eventual protective relay tripping (causing outage). By correlating the spatiotemporal wavefront of these power quality anomaly signatures across the known geographic coordinates of AMI meters, the system infers the fire perimeter's shape, position, and velocity vector without requiring any dedicated fire-sensing hardware. The system outputs georeferenced perimeter polygons at 1-5 minute update intervals, complementing satellite thermal detection (15-60 minute latency) and ground crew reports with infrastructure-derived situational awareness.

Field of the Invention

This invention relates to wildfire detection and tracking, specifically to repurposing existing electrical grid telemetry infrastructure for real-time fire perimeter estimation using machine learning analysis of power quality degradation patterns.

Background

Wildfire perimeter tracking currently relies on three primary methods, each with significant latency or coverage limitations:

Meanwhile, U.S. utilities have deployed over 115 million AMI smart meters (EIA Form 861, 2024 data) covering approximately 75% of residential customers. These meters continuously measure voltage (RMS and waveform), frequency, power factor, total harmonic distortion (THD), and in many cases individual harmonic magnitudes through the 15th order. Meter data is typically reported at 15-minute intervals via RF mesh networks (Itron Silver Spring, Landis+Gyr Gridstream) or cellular backhaul, though many AMI platforms support event-triggered reporting at sub-second granularity for power quality excursions.

The relationship between wildfire proximity and power quality degradation is well-documented in utility engineering literature. Mitchell, IEEE Transactions on Power Delivery 2017 characterized four phases of fire-induced line degradation: thermal sag (conductor temperature rise from radiant heat causes increased resistance and sag, reducing clearance), smoke-path flashover (particulate matter and ionized gases reduce dielectric strength of air gaps around insulators, causing partial discharge at 50-80% of rated BIL), vegetation contact (burning or windblown vegetation contacts energized conductors, producing asymmetric ground faults), and protective tripping (relay operations isolate faulted sections). Jazebi et al., International Journal of Electrical Power & Energy Systems 2020 measured conductor temperature rises of 50-200°C within 3 minutes of radiant heat exposure from a fire front at 30-100 m distance, corresponding to 15-40% resistance increases in standard ACSR conductors.

The gap in the art is a system that exploits this known physical relationship at scale by correlating power quality anomalies across the spatial extent of an AMI network to infer fire perimeter geometry without dedicated fire-sensing hardware.

Detailed Description

1. Power Quality Anomaly Feature Extraction

Each AMI meter reports a feature vector at configurable intervals (default: 60 seconds during alert conditions, 15 minutes during normal operations). The feature vector comprises:

2. Spatiotemporal Anomaly Detection

A centralized analytics engine (deployed at the utility's meter data management system or a cloud instance) processes incoming meter feature vectors using a two-stage detection pipeline:

Stage 1: Per-meter anomaly scoring. A lightweight autoencoder (3-layer encoder: 6→32→16→8 latent dimensions, symmetric decoder) is trained per feeder circuit on 90 days of historical power quality data. The reconstruction error for each incoming feature vector produces an anomaly score. Scores exceeding a configurable threshold (default: 3σ above mean reconstruction error) flag the meter as anomalous. The autoencoder architecture handles the heterogeneous baseline power quality across different meter locations (urban dense feeders vs. rural radial feeders) without manual threshold tuning.

Stage 2: Spatial wavefront detection. Anomalous meter locations are mapped to their known GPS coordinates (from the AMI asset database). A spatial clustering algorithm (DBSCAN with haversine distance metric, ε = 500 m, minPts = 3) identifies contiguous clusters of anomalous meters. For each cluster, a wavefront velocity estimator fits a propagating front model to the timestamps of anomaly onset across meters:

The wavefront model estimates a fire advance vector v = (speed, heading) by minimizing the sum of squared residuals between predicted and observed anomaly onset times across the cluster. The predicted onset time for meter i at position (xi, yi) is: tpredicted,i = t0 + ((xix0) cos θ + (yiy0) sin θ) / s, where t0 is the reference time, (x0, y0) is the reference position, θ is the heading angle, and s is the advance speed. Non-linear least squares (Levenberg-Marquardt) yields the best-fit velocity vector.

3. Perimeter Polygon Generation

The system generates a georeferenced fire perimeter polygon using the following procedure:

  1. Active front estimation: The leading edge of the anomaly cluster (meters with anomaly onset in the most recent 5-minute window) defines the fire's active front. An alpha-shape algorithm (α = 300 m) generates a concave hull around these meters.
  2. Burned area backfill: Meters that have transitioned to full outage (protective relay tripped) are classified as inside the fire perimeter. The convex hull of outaged meters, merged with the active front polygon, defines the estimated burned area.
  3. Confidence contours: Because meter density varies (urban: 50-200 meters/km², rural: 5-20 meters/km²), the system computes spatial confidence by Voronoi tessellation of meter locations. Regions with Voronoi cell areas exceeding 0.5 km² are flagged as low-confidence interpolation zones.
  4. Temporal extrapolation: Between meter reports, the estimated perimeter is extrapolated forward using the wavefront velocity vector and terrain-adjusted spread models (slope factor: rate doubles per 20% slope grade, per Rothermel's surface fire spread model).

Output polygons conform to the OGC Simple Features specification and are published via a GeoJSON REST endpoint at 1-5 minute intervals, compatible with the IRWIN data exchange framework used by federal incident management teams.

4. False Positive Discrimination

Not all power quality anomaly clusters indicate wildfire. The system applies a multi-factor classifier to discriminate fire-induced anomalies from other causes:

5. Alert Integration and Dispatch

When the fire-probability score exceeds a configurable threshold (default: 0.8), the system generates alerts in the following formats:

6. System Architecture

The system operates within existing utility AMI infrastructure with minimal additions:

7. Figures Description

Claims

  1. A system for estimating wildfire perimeter location in real-time, comprising: a plurality of Advanced Metering Infrastructure (AMI) smart meters with known geographic coordinates, each reporting power quality feature vectors including voltage magnitude, total harmonic distortion, high-frequency transient counts, and power factor; a centralized analytics engine that computes per-meter anomaly scores using autoencoders trained on historical power quality data; a spatial clustering module that identifies contiguous clusters of anomalous meters; and a perimeter estimation module that generates georeferenced fire perimeter polygons from the spatial and temporal distribution of anomalous meter clusters.
  2. The system of claim 1, wherein the per-meter anomaly scoring uses a per-feeder autoencoder architecture trained on 90 days of historical data, producing anomaly scores based on reconstruction error relative to baseline power quality patterns specific to each meter's feeder circuit.
  3. The system of claim 1, further comprising a wavefront velocity estimator that fits a propagating front model to anomaly onset timestamps across spatially clustered meters, estimating fire advance speed and heading by non-linear least squares minimization of the residuals between predicted and observed onset times.
  4. The system of claim 1, further comprising a false positive discrimination module that applies propagation velocity filtering, directionality testing, fire weather correlation, and harmonic signature classification to distinguish wildfire-induced power quality anomalies from equipment failures, weather events, and load-induced disturbances.
  5. The system of claim 4, wherein the harmonic signature classifier is a one-dimensional convolutional neural network trained to discriminate smoke-path partial discharge harmonics from capacitor bank switching, nonlinear load harmonics, and ferroresonance sub-harmonics based on harmonic magnitude and phase angle patterns.
  6. The system of claim 1, wherein the perimeter estimation module generates confidence contours based on Voronoi tessellation of meter locations, flagging regions with Voronoi cell areas exceeding a configurable threshold as low-confidence interpolation zones where meter density is insufficient for reliable perimeter estimation.
  7. A method for wildfire perimeter tracking using existing electrical grid infrastructure, comprising: collecting power quality measurements from AMI smart meters at elevated reporting cadence during fire weather conditions; computing per-meter anomaly scores by comparing incoming measurements to historical baselines using trained autoencoders; spatially clustering anomalous meters using density-based clustering with geographic distance metrics; fitting a propagating wavefront model to anomaly onset timestamps to estimate fire advance velocity; generating georeferenced perimeter polygons using alpha-shape algorithms on the leading edge of anomalous meter clusters; and publishing perimeter estimates at 1-5 minute intervals via standard geospatial data formats.
  8. The method of claim 7, further comprising temporal extrapolation of the estimated perimeter between meter reports using the wavefront velocity vector adjusted for terrain slope effects on fire spread rate.
  9. The method of claim 7, further comprising integration with utility Public Safety Power Shutoff decision engines, wherein detected fire perimeters intersecting planned de-energization zones trigger pre-computed circuit isolation recommendations prioritized by the density of fire-proximity anomalies per circuit segment.
  10. The system of claim 1, wherein the analytics engine operates with an end-to-end latency of under 30 seconds from meter event to published perimeter update, providing perimeter estimates at least one order of magnitude faster than satellite thermal detection systems.

Implementation Notes

A proof-of-concept deployment could be conducted with a single California investor-owned utility (PG&E, SCE, or SDG&E) covering a wildfire-prone service territory. PG&E's AMI network alone comprises approximately 9.4 million smart meters across 70,000 square miles of service territory, including the majority of California's highest-risk Tier 2 and Tier 3 fire threat zones as mapped by CPUC Fire Threat Maps. The existing AMI infrastructure eliminates the capital cost barrier that limits deployment of purpose-built wildfire sensor networks (e.g., ALERTWildfire cameras at $15,000-25,000 per installation).

Key implementation considerations include: AMI backhaul latency (RF mesh networks add 5-15 seconds vs. 2-5 seconds for cellular AMI), which may limit temporal resolution in areas with RF-mesh-only backhaul; meter data privacy (power quality metrics are aggregated and anonymized at the feeder level before spatial analysis, avoiding exposure of individual consumption patterns); and the need for historical fault recorder data from controlled burn exercises or past wildfire events to train the harmonic signature classifier with ground-truth labels.

Prior Art References

  1. NOAA Hazard Mapping System — GOES satellite thermal hotspot detection for active fires
  2. Schroeder et al., Remote Sensing of Environment 2019 — Satellite fire detection latency analysis
  3. NIFC Aviation Resources — Aerial wildfire reconnaissance capabilities and costs
  4. EIA Form 861 Monthly Report — AMI smart meter deployment statistics (115M+ meters)
  5. Mitchell, IEEE Transactions on Power Delivery 2017 — Fire-induced power line degradation phases
  6. Jazebi et al., IJEPES 2020 — Conductor temperature rise from radiant heat exposure
  7. Rothermel's Surface Fire Spread Model — USFS fire behavior reference
  8. NIFC Fire Behavior Data — Wildfire advance rate statistics by fuel type
  9. NWS Fire Weather Services — Red Flag Warnings, Haines Index, fire weather forecasting
  10. IEEE PES General Meeting 2020 — Power system fault signature database
  11. OASIS CAP v1.2 — Common Alerting Protocol for emergency alerts
  12. IRWIN Data Exchange — Federal wildland fire incident reporting framework
  13. OGC Simple Features — Geospatial data interoperability standard
  14. CPUC Fire Threat Maps — California fire threat zone classification
  15. PG&E SmartMeter Program — 9.4M AMI meter deployment