From 50 Hz Grids to 400 Hz Aircraft: Deep Learning Fault Detection Moves to Aerospace Power

A 400 Hz aerospace power fault detector built on a compact ResNet hits 95.87% after 8-bit quantization on a ZCU102, but stays simulation-bound.

Direct answer

A new hardware-aware deep learning framework pushes power quality disturbance and fault diagnosis from conventional 50/60 Hz grids into 400 Hz More Electric Aircraft territory, generating a 21-class dataset from a Boeing 787-inspired simulation model and comparing twelve architectures under common training conditions [1]. A compact 2D ResNet wins the accuracy-complexity tradeoff at 96.94% software test accuracy with 175,685 parameters, then holds 95.87% after 8-bit quantization on a Xilinx Zynq UltraScale Plus ZCU102 with a measured 6.90 ms mean accelerator latency per input record [1]. Earlier work established that signal-processing features such as wavelet packet energy [2] and Hilbert-transform envelopes with feed-forward neural networks [7] can detect and quantify disturbances, and that FPGA smart sensors can run such pipelines online [7]. What changes here is the migration to aerospace frequencies, a multiclass fault taxonomy, and an end-to-end quantized edge deployment path. What does not change is the evidence boundary: everything rests on simulated waveforms and accelerator-level testing, not on a real aircraft electrical system [1].

7sources cited

This article was generated with WisPaper-powered search and paper analysis.

The baseline the aerospace work inherits: features first, hardware second

Before deep learning entered power quality monitoring, the field had already settled on a recognizable pipeline: transform the waveform, extract a compact feature, classify it, and quantify the disturbance. Priyadarshini et al. decomposed voltage sag signals with wavelet packet analysis and compared six mother wavelets (db1, db4, db10, dmey, sym5, coif5), extracting energy features from terminal-node coefficients and finding maximum energy error at fifth-level decomposition [2]. Granados-Lieberman et al. built a complete smart sensor around the Hilbert transform: detection from envelope changes, classification of the half-cycle envelope by a feed-forward neural network, and quantification of RMS voltage, THD, crest factor, and transient time constants, all implemented on a Xilinx Spartan 3E FPGA and validated with synthetic signals plus real operating conditions against a Fluke 435-II reference [7]. That earlier line of work matters because it established both halves of the modern problem: what to compute, and that it can run online in digital hardware. It also established the evaluation culture the new paper inherits, where synthetic signals are the primary testbed and real-condition testing is a separate, harder step [2][7].

Why 400 Hz aircraft grids are not just faster 50 Hz grids

The anchor paper's core motivation is that More Electric Aircraft replace hydraulic, pneumatic, and mechanical components with electrical systems, raising voltages and frequencies and creating reliability challenges that conventional grid studies do not address [1]. Its simulated architecture is inspired by the Boeing 787: a 250 kVA three-phase synchronous generator feeding a 230 V AC main busbar at 400 Hz, a 115 V AC auxiliary busbar through a step-down transformer, and 28 V and 270 V DC lines via transformer rectifier units, with contactors, circuit breakers, resistive loads, and motors [1]. Signals were recorded at 33.3 kHz to capture transient behavior, and the 21 classes span normal operation, generator start-up switching transients, voltage sag, swell, interruption, harmonics, flicker, transient oscillations, transient pulses, combined disturbances, AC load disconnection, and nine fault types including generator open circuit, phase-to-ground and phase-to-phase shorts, transformer open and short circuits, TRU open circuits, and 28 V busbar short and open circuits [1]. The paper explicitly notes that aircraft networks operate at higher frequencies than traditional electrical systems and have compact architectures, and that there is a lack of studies specifically focused on aircraft power systems [1]. That gap claim is the load-bearing justification for the whole contribution, and it is a claim about the literature, not a measured result.

Building 73,500 samples: simulation, augmentation, and GANs

The anchor paper's first contribution is the dataset itself. Two datasets of 73,500 samples each were formed, one from 1D time-series signals and one from short-time Fourier transform time-frequency representations [1]. The per-class distribution is heavily augmented: 100 raw samples per class (2,100 total, 2.86%), 3,000 signal-processing-augmented samples per class (63,000 total, 85.71%), and 400 GAN-generated samples per class (8,400 total, 11.43%) [1]. Signal-processing augmentation multiplies each sample by a random scalar and adds additive white Gaussian noise, with optional diagonal scaling for multivariate series [1]. The time-series dataset was released through IEEE DataPort [1]. This is a meaningful methodological choice for the target reader: the classifier is trained mostly on synthetic variants of a small raw set, so reported accuracy reflects performance inside a simulated operating envelope rather than across independently collected aircraft conditions. The paper itself acknowledges this later, noting that robustness to additive noise is not a substitute for parent-waveform-disjoint validation because data leakage and related-sample overlap can produce optimistic generalization estimates [1].

Twelve architectures, one winner on the accuracy-complexity frontier

All evaluated models exceeded 94% test accuracy, which the authors read as confirmation that data-driven approaches work for this task [1]. The 1D-CNN posted the highest test accuracy at 97.29% but required 8,338,709 parameters; the Compact ResNet (2D) reached 96.94% with 175,685 parameters, a 0.35 percentage point gap against an order-of-magnitude reduction in complexity [1]. VGG16 needed 138,424,765 parameters for 96.55%, ResNet50 needed 23,544,789 for 95.88%, and the 1D-CNN-LSTM was the weakest at 94.57% despite 480,485 parameters [1]. The Compact ResNet's precision, recall, and F1 were 96.96%, 96.94%, and 96.95%, indicating balanced behavior across the 21 classes, and the confusion matrix showed more than 650 of 700 test samples correctly classified for most classes [1]. The authors interpret this as evidence that convolutional feature extraction captures the discriminative structure without needing recurrent layers, and that residual connections enable stable training with few parameters [1]. For an embedded AI engineer, the practical reading is that accuracy alone would have selected the wrong model: the 1D-CNN's 0.35 point advantage would have cost roughly 47 times the parameters, which matters directly for DSP slice, LUT, and BRAM budgets on an FPGA [1].

From software accuracy to 6.90 ms on a ZCU102, and how it degrades under noise

After 8-bit quantization and deployment on a Xilinx Zynq UltraScale Plus MPSoC ZCU102, the Compact ResNet achieved 95.87% accuracy with a measured mean neural-network accelerator latency of 6.90 ms per input record [1]. The FPGA deep learning processor uses external DDR memory for input signals, weights, and outputs, three AXI4 master interfaces, memory access arbitrators, a convolution kernel, a fully connected kernel, a custom kernel for addition, multiplication, and 2D resizing, a scheduler, and a profiler module that collects per-kernel timing [1]. The quantization loss is 1.07 percentage points relative to software, which is the kind of number that determines whether a design closes. On noise robustness, accuracy fell gradually with decreasing SNR: 96.04% at 10 dB, 95.25% at 7.5 dB, 92.74% at 5 dB, 86.55% at 2.5 dB, and 71.26% at 0 dB [1]. The authors note this noise was applied at inference on top of training augmentation, and that the smooth degradation suggests the model relies on stable temporal and spectral structure rather than noise-sensitive amplitudes [1]. The 0 dB result is the honest boundary: at equal signal and noise power, roughly three in ten records are misclassified, which is not a safety-critical operating point.

The distance between a simulated Boeing 787 and a flying aircraft

The anchor paper is explicit that its results establish simulation-based, accelerator-level feasibility and motivate future end-to-end data acquisition and experimental validation [1]. That framing is consistent with the broader evidence base. Bharadwaj et al. described model-based avionics fault simulation and detection and stated a plan to perform only limited validation of the fault detectors [6], which is a useful reminder that simulation-to-aircraft transfer has long been an open step rather than a solved one. Sidorov and Venkatesh's work on integrated maintenance data for diagnosing electrical system failures in modern aircraft is relevant context but was not available in full, so it can only be noted as a precursor direction, not used to support specific claims [3]. Rokocakau's comparative analysis of deep learning fault diagnosis for power electronics reports that hierarchical CNN models perform well, but the evidence is abstract-only and cannot be used to adjudicate architecture choices here [4]. Liu's INT8 1D-CNN hardware-software co-design for on-chip limit order book prediction demonstrates that microsecond-latency quantized inference on edge FPGAs is achievable in a different domain, which supports the general plausibility of the deployment approach without validating this specific aerospace model [5]. The unresolved questions are concrete: how the classifier behaves on real sensor data with aircraft-specific interference, whether the 21-class taxonomy survives contact with unmodeled fault modes, whether the 6.90 ms latency meets the timing budget of an actual health monitoring loop, and whether parent-waveform-disjoint validation would preserve the reported accuracy [1].

About These Sources

This research page is built on 7 peer-reviewed studies — published from 2010 to 2026, 5 from 2024 or later — selected as the most relevant from 7 studies that passed quality screening, drawn from 91 papers retrieved from a database of over 500 million.

Sources used in this answer

1

"Deep Learning Based Detection of Electrical Faults and Power Quality Disturbances in Aerospace Power Systems"

The anchor paper builds a 21-class, 73,500-sample-per-dataset benchmark from a Boeing 787-inspired 400 Hz simulation, selects a 175,685-parameter Compact ResNet at 96.94% software accuracy, and demonstrates 95.87% accuracy with 6.90 ms mean accelerator latency after 8-bit quantization on a ZCU102, while explicitly limiting its claim to simulation-based, accelerator-level feasibility [1].

2

Energy feature extraction and visualization of voltage sags using wavelet packet analysis for enhanced power quality monitoring.

Priyadarshini et al. establish wavelet packet energy feature extraction for voltage sag detection, comparing six mother wavelets and finding maximum energy error at fifth-level decomposition, and explicitly propose deep learning and reinforcement learning as future extensions of their signal-processing approach [2].

3

The Application of Integrated Maintenance Data in the Diagnosis of Electrical System Failures in Modern Aircraft

Sidorov and Venkatesh address integrated maintenance data for diagnosing electrical system failures in modern aircraft within the More Electric Aircraft context, covering sensor technologies, mechanical system diagnostics, and structural health monitoring, but the supplied evidence is unavailable in full and supports only its stated scope [3].

4

Fault Diagnostic Techniques using Deep Learning on Power Electronics Systems Integrations

Rokocakau's comparative analysis of deep learning fault diagnosis for power electronics reports that hierarchical CNN models perform well relative to classical machine learning methods, but the abstract-only evidence cannot support specific architecture or accuracy comparisons [4].

5

Microsecond-Latency, Fully On-Chip Limit Order Book Prediction on an Edge FPGA: A Lightweight INT8 1D-CNN Hardware–Software Co-Design

Liu demonstrates microsecond-latency, fully on-chip INT8 1D-CNN inference on an edge FPGA for limit order book prediction, providing cross-domain validation that quantized CNN deployment on edge FPGAs is feasible under tight latency constraints [5].

6

Model-based avionics systems fault simulation and detection

Bharadwaj et al. present model-based avionics systems fault simulation and detection and state a plan to perform only limited validation of the fault detectors, defining the simulation-to-validation gap that the anchor paper also acknowledges [6].

7

A Hilbert transform-based smart sensor for detection, classification, and quantification of power quality disturbances.

Granados-Lieberman et al. build an FPGA-based smart sensor using Hilbert transform detection, feed-forward neural network classification, and Parseval-based quantification, validated with synthetic signals and real operating conditions against a Fluke 435-II reference, establishing the online hardware pipeline that later deep learning work inherits [7].