<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Fault detection in critical infrastructure &#8211; Science</title>
	<atom:link href="https://scienmag.com/tag/fault-detection-in-critical-infrastructure/feed/" rel="self" type="application/rss+xml" />
	<link>https://scienmag.com</link>
	<description></description>
	<lastBuildDate>Tue, 22 Sep 2026 14:13:40 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.1.1</generator>

<image>
	<url>https://scienmag.com/wp-content/uploads/2024/07/cropped-scienmag_ico-32x32.jpg</url>
	<title>Fault detection in critical infrastructure &#8211; Science</title>
	<link>https://scienmag.com</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">73899611</site>	<item>
		<title>AI Spots Power Plant Faults Before Disaster Strikes Using Graph Neural Networks</title>
		<link>https://scienmag.com/ai-spots-power-plant-faults-before-disaster-strikes-using-graph-neural-networks/</link>
		
		<dc:creator><![CDATA[Cassandra Pierce]]></dc:creator>
		<pubDate>Tue, 22 Sep 2026 14:13:40 +0000</pubDate>
				<category><![CDATA[Technology and Engineering]]></category>
		<category><![CDATA[anomaly detection]]></category>
		<category><![CDATA[bidirectional GRU]]></category>
		<category><![CDATA[Class imbalance in industrial datasets]]></category>
		<category><![CDATA[cyber-physical system security]]></category>
		<category><![CDATA[cyber-physical systems]]></category>
		<category><![CDATA[Cyberattack detection in power plants]]></category>
		<category><![CDATA[cybersecurity]]></category>
		<category><![CDATA[Data mining for power plant safety]]></category>
		<category><![CDATA[deep learning]]></category>
		<category><![CDATA[Deep learning models for anomaly detection]]></category>
		<category><![CDATA[Fault detection in critical infrastructure]]></category>
		<category><![CDATA[fault diagnosis]]></category>
		<category><![CDATA[GE-BiGRU for fault prediction]]></category>
		<category><![CDATA[graph attention network]]></category>
		<category><![CDATA[Graph Neural Networks]]></category>
		<category><![CDATA[Graph neural networks for industrial systems]]></category>
		<category><![CDATA[HAI dataset]]></category>
		<category><![CDATA[industrial control systems]]></category>
		<category><![CDATA[Interpretable AI for industrial monitoring]]></category>
		<category><![CDATA[Machine learning for cyber-physical security]]></category>
		<category><![CDATA[multivariate time series]]></category>
		<category><![CDATA[power generation]]></category>
		<category><![CDATA[Power plant fault detection]]></category>
		<category><![CDATA[Real-time fault identification in power generation]]></category>
		<guid isPermaLink="false">https://scienmag.com/?p=205723</guid>

					<description><![CDATA[Researchers have developed a graph-enhanced bidirectional GRU model that detected 44 of 45 simulated anomalies in a realistic power generation testbed while revealing which sensor relationships drive fault propagation.]]></description>
										<content:encoded><![CDATA[<p>Power plants and industrial control systems are among the most critical infrastructures in modern society, and they are increasingly under threat from both mechanical failure and sophisticated cyberattacks. A team of researchers from Kwangwoon University, LG Electronics, and the University of Queensland has now unveiled a new deep learning framework that catches simulated attacks and anomalies with remarkable precision, identifying 44 out of 45 abnormal events in a realistic power generation testbed. The study, published in the journal Data Mining and Knowledge Discovery, introduces a model called GE-BiGRU that fuses graph neural networks with a bidirectional gated recurrent unit, offering an efficient and interpretable route to protecting the cyber-physical systems that keep electricity flowing.</p>
<p>The challenge the researchers set out to solve is deceptively simple to describe but notoriously difficult in practice. Industrial systems spend nearly all of their time operating normally, with genuine faults appearing only in fleeting moments. As the authors illustrate, a factory that malfunctions for just five seconds in a day produces a dataset in which normal data overwhelmingly dominates, creating severe class imbalance that cripples conventional binary classification approaches. Signals in these environments also tend to be erratic rather than seasonal, making them hard for machine learning models to segment and learn. Rather than trying to classify each moment as normal or abnormal, the team adopted a prediction-based strategy: train the model exclusively on normal data to forecast future sensor values, then flag anomalies whenever reality diverges sharply from prediction.</p>
<p>Architecturally, the framework stacks three complementary components. At its core sits a three-layer bidirectional gated recurrent unit, or Bi-GRU, which processes sequences of sensor readings in both forward and backward directions. The GRU itself is a streamlined variant of the recurrent neural network that tamed the vanishing gradient problem through reset and update gates, requiring fewer parameters than the better-known LSTM and therefore training faster and generalizing more easily. By making the network bidirectional, the researchers allowed it to interpret the full context at every point in a sequence, capturing complex temporal dependencies and converging more quickly during training thanks to gradients flowing from both directions. A residual skip connection further eased gradient flow through the deep stack.</p>
<p>Temporal modeling alone, however, ignores a crucial truth about industrial plants: sensors do not operate in isolation. Boilers, turbines, valves, pumps, and tanks interact through physical process flows, and an anomaly at one component often propagates to its neighbors. To capture this spatial dimension, the team wired a graph neural network into the predictive model. The graph&#8217;s adjacency matrix was not learned from statistical correlations, which the authors caution can introduce spurious edges when anomalies are rare, but instead derived directly from the piping and instrumentation diagrams of the testbed. Each entry in the matrix encodes whether a direct process-flow path exists between two sensors or actuators, embedding physically grounded causal pathways into the model&#8217;s structure from the outset.</p>
<p>On top of this structural backbone, the researchers layered a graph attention network, or GAT, a relatively recent architecture that has proven exceptionally powerful for graph-structured data. Unlike graph convolution, which applies uniform weights to all neighboring nodes, the attention mechanism learns normalized coefficients that quantify the relative influence of each connected sensor. Through multi-head attention, the model can simultaneously attend to multiple aspects of each node&#8217;s neighborhood, stabilizing learning and enriching feature extraction. The attention weights multiply the input data before it reaches the bidirectional GRU, ensuring that the temporal model processes information in alignment with the underlying system topology. Crucially, these weights are also interpretable, allowing operators to see exactly which sensor relationships drive detection decisions.</p>
<p>The experimental platform was anything but a toy. The team evaluated the framework on the HAI 21.03 dataset, recorded at one sample per second from 79 sensors and actuators spanning a hardware-in-the-loop industrial control system testbed that replicates steam turbine generation and pumped-storage hydroelectric power. The testbed comprises four integrated processes: a boiler process handling heat transfer through water, a turbine process simulating rotating machinery, a water treatment process moving water between reservoirs, and a hardware-in-the-loop simulation layer synchronizing the whole, built on real industrial controllers from Emerson, GE, and Siemens. The test set contained 50 simulated attack scenarios, of which five were reserved for validation and 45 for final evaluation, with anomalies making up just 2.23 percent of the data.</p>
<p>The results demonstrated clear benefits from each design decision. Among unidirectional models, the plain LSTM baseline fared worst, while GRU-based models with graph neural network modules led the field with an F1 score of 0.912. Switching to bidirectional architectures pushed performance further: Bi-LSTM+GNN and Bi-GRU+GNN achieved F1 scores of 0.879 and 0.924 respectively, with the GE-BiGRU configuration emerging as the best overall performer. The gains were especially pronounced in sensitivity and time-series-aware precision, metrics that directly reflect missed-detection risk and operator alarm burden in continuous monitoring. Notably, the bidirectional extension added negligible computational cost, with even the most expensive variant requiring less than half a millisecond per sample, comfortably within the one-second budget imposed by the testbed&#8217;s sampling rate.</p>
<p>Perhaps the most striking finding concerns interpretability. The attention weights learned by the GAT revealed three exceptionally strong sensor connections, and each corresponded precisely to documented actuator-sensor pairs in the plant&#8217;s feedback control loops: a flow control valve linked to return-tank water levels, a level control valve linked to tank level measurements, and an auto speed demand linked to turbine RPM. These same channel pairs coincided with the primary targets of the testbed&#8217;s attack scenarios and exhibited markedly elevated prediction errors during attack intervals. In practical terms, this means operators can trace fault-propagation paths through the plant, identifying, for example, that a valve malfunction is likely when an anomaly coincides with abrupt changes in the relationship between a flow control valve and downstream water levels. Such insights can inform troubleshooting and preventive maintenance strategies.</p>
<p>The authors are candid about limitations. The adjacency matrix is constructed statically from simulator configuration documents and remains fixed during training, so topology changes such as adding or removing sensors would require full retraining, an expensive prospect in continuously operating plants. The evaluation also relies on simulator-based data, which, despite incorporating genuine industrial controllers, cannot fully reproduce sensor degradation, environmental variability, or adaptive adversarial attacks seen in the field. The team notes that sensitivity values remained below 0.75 across most models, reflecting a threshold selection procedure that balances precision and recall rather than minimizing missed detections; in safety-critical deployments where a missed fault costs far more than a false alarm, operators might weight recall more heavily. Future work will pursue dynamic graph construction, broader benchmark evaluation, and latency optimization for resource-constrained edge devices.</p>
<p>Even with these caveats, the study marks a meaningful advance in the race to secure critical infrastructure. By learning what normal looks like, exploiting the physical topology of the plant, and explaining its own reasoning through attention weights, the GE-BiGRU framework offers a blueprint for anomaly detection systems that are simultaneously accurate, efficient, and transparent. As power grids, water treatment facilities, and transportation networks grow ever more interconnected through the Internet of Things, tools that can spot a five-second anomaly buried in a sea of normal data, and tell engineers exactly where to look, may prove indispensable to keeping the lights on.</p>
<p><strong>Subject of Research:</strong> A graph neural network and bidirectional GRU framework for detecting anomalies in multivariate time-series data from power generation cyber-physical systems.</p>
<p><strong>Article Title:</strong> Graph-enhanced bidirectional GRU for anomaly detection in power generation environments</p>
<p><strong>Article References:</strong> Kwon, D., Kang, Y., Lee, J., Nam, Y., Won, J., Kim, K. K., Kim, D. D., &amp; Park, C. (2026). Graph-enhanced bidirectional GRU for anomaly detection in power generation environments. <em>Data Mining and Knowledge Discovery, 40</em>(6), Article 102. <a href="https://doi.org/10.1007/s10618-026-01262-3" rel="noopener noreferrer">https://doi.org/10.1007/s10618-026-01262-3</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1007/s10618-026-01262-3" rel="noopener noreferrer">10.1007/s10618-026-01262-3</a></p>
<p><strong>Keywords:</strong> anomaly detection, graph neural networks, graph attention network, bidirectional GRU, cyber-physical systems, power generation, industrial control systems, multivariate time series, cybersecurity, deep learning, fault diagnosis, HAI dataset</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">205723</post-id>	</item>
	</channel>
</rss>
