<?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>event sequence analysis for system failure prediction &#8211; Science</title>
	<atom:link href="https://scienmag.com/tag/event-sequence-analysis-for-system-failure-prediction/feed/" rel="self" type="application/rss+xml" />
	<link>https://scienmag.com</link>
	<description></description>
	<lastBuildDate>Thu, 24 Sep 2026 23:53:31 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.1.2</generator>

<image>
	<url>https://scienmag.com/wp-content/uploads/2024/07/cropped-scienmag_ico-32x32.jpg</url>
	<title>event sequence analysis for system failure prediction &#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>Neural Networks Learn to Diagnose Faults in Complex Machines by Watching Their Event Signatures</title>
		<link>https://scienmag.com/neural-networks-learn-to-diagnose-faults-in-complex-machines-by-watching-their-event-signatures/</link>
		
		<dc:creator><![CDATA[Cassandra Pierce]]></dc:creator>
		<pubDate>Thu, 24 Sep 2026 23:53:31 +0000</pubDate>
				<category><![CDATA[Technology and Engineering]]></category>
		<category><![CDATA[complex systems]]></category>
		<category><![CDATA[computationally efficient fault detection in complex systems]]></category>
		<category><![CDATA[control theory applications in industrial fault diagnosis]]></category>
		<category><![CDATA[deep learning]]></category>
		<category><![CDATA[deep learning for complex machinery fault detection]]></category>
		<category><![CDATA[deterministic finite automata]]></category>
		<category><![CDATA[discrete event systems]]></category>
		<category><![CDATA[discrete event systems in machine health monitoring]]></category>
		<category><![CDATA[event sequence analysis for system failure prediction]]></category>
		<category><![CDATA[event signature analysis for predictive maintenance]]></category>
		<category><![CDATA[eVTOL]]></category>
		<category><![CDATA[fault diagnosis]]></category>
		<category><![CDATA[fault diagnosis using deterministic finite automata]]></category>
		<category><![CDATA[hybrid AI frameworks for industrial systems]]></category>
		<category><![CDATA[hybrid aircraft]]></category>
		<category><![CDATA[Machine learning]]></category>
		<category><![CDATA[machine learning approaches to autonomous factory maintenance]]></category>
		<category><![CDATA[NASA]]></category>
		<category><![CDATA[neural network fault diagnosis]]></category>
		<category><![CDATA[pattern recognition in sensor data for fault detection]]></category>
		<category><![CDATA[recurrent neural network]]></category>
		<category><![CDATA[safety]]></category>
		<category><![CDATA[scalable neural network models for large-scale machinery]]></category>
		<category><![CDATA[urban air mobility]]></category>
		<guid isPermaLink="false">https://scienmag.com/?p=213531</guid>

					<description><![CDATA[Researchers have combined discrete event modeling with recurrent neural networks to build a computationally efficient fault diagnosis framework, validated on an electric vertical take-off and landing aircraft platform.]]></description>
										<content:encoded><![CDATA[<p>Every complex machine, from a passenger aircraft to an autonomous factory line, tells a story through its behavior. Sensors fire, valves open, modes switch, and each of these events unfolds in a strict sequence that reveals whether the system is healthy or quietly failing. A new study published in Complex &amp; Intelligent Systems by Milad Khaleghi, Azmol Fuad, Samira Honarvar, and Ali Karimoddini of North Carolina Agricultural and Technical State University, working with an independent collaborator, presents a hybrid framework that teaches a neural network to read exactly this kind of story. By combining the formal rigor of discrete event systems with the pattern-recognition power of deep learning, the researchers show that fault diagnosis can be made both accurate and computationally affordable, even for large-scale systems that would overwhelm classical approaches.</p>
<p>The foundation of the work rests on a branch of control theory known as discrete event systems, or DES. Unlike continuous models that track variables such as temperature or velocity as smooth functions of time, DES abstract a system&#8217;s behavior into a sequence of discrete events: the landing gear deploys, the motor engages, the sensor reports nominal. This abstraction is captured mathematically using deterministic finite automata, which are state machines that move between defined states as events occur. Within this framework, engineers can construct diagnosers, specialized observers that monitor the stream of events and determine, with formal guarantees, whether a fault has occurred and which fault it is. The elegance of this approach is that it is exhaustive and provable; nothing about the event language escapes the diagnoser&#8217;s scrutiny.</p>
<p>The problem, as the authors emphasize, is scale. Building a diagnoser requires synthesizing the full behavioral model of the system and then continuously updating it as the system evolves, is reconfigured, or exhibits new operating modes. For small systems this synthesis is tractable, but for large-scale or dynamically evolving platforms the computational cost can become prohibitive. The state space of a realistic engineered system grows explosively with the number of components and interactions, a manifestation of the well-known state explosion problem. Every redesign of the diagnoser means re-enumerating enormous portions of that space, and in safety-critical applications where the model must track the live system in real time, the cost of keeping the diagnoser synchronized can exceed what onboard or even ground-based computing can deliver.</p>
<p>The researchers&#8217; answer is not to abandon formal methods but to delegate the heavy lifting to a recurrent neural network. Their framework proceeds in two stages. First, the system&#8217;s behavior is represented as a deterministic finite automaton, preserving the discrete-event abstraction that makes formal diagnosis possible. Second, a recurrent neural network is trained on this automaton to learn and reproduce the event-driven dynamics of the system. Recurrent architectures are naturally suited to this task because they maintain an internal hidden state that is updated as each event arrives, effectively encoding the memory of the event history. Once trained, the network acts as a learned surrogate for the diagnoser, capturing the mapping from event sequences to fault conclusions without requiring the diagnoser to be rebuilt from scratch each time the underlying model changes.</p>
<p>This division of labor is what gives the method its computational advantage. The formal automaton provides a compact, structured description of what the system can do, and the neural network learns to navigate that description efficiently. When the system is redesigned or its behavior evolves, the network can be retrained on the updated automaton rather than forcing a full re-synthesis of the diagnostic machinery. The authors describe this as reducing the complexity associated with redesigning the fault diagnosing system, and it addresses one of the most persistent obstacles to deploying formal diagnosis in practice: the mismatch between the theoretical guarantees of DES methods and the practical budgets of real engineering programs.</p>
<p>To demonstrate that the framework works outside of toy examples, the team validated it on a hybrid aircraft platform, specifically a generic urban air mobility model of an electric vertical take-off and landing aircraft, or eVTOL. These vehicles are among the most demanding imaginable testbeds for fault diagnosis. They transition between hovering, cruising, and landing phases, blending aerodynamic and propulsion dynamics, and they are intended to operate over cities where a failure could be catastrophic. The hybrid nature of the platform, mixing continuous flight dynamics with discrete mode changes, makes it a natural fit for a discrete-event abstraction layered over the underlying physics. The results showed that the proposed framework accurately detects and isolates faults while incurring minimal computational cost, suggesting that the approach could keep pace with the real-time demands of an airborne vehicle.</p>
<p>The word isolation matters as much as detection. A diagnostic system that merely announces that something is wrong is of limited use to an operator or an autonomous safety manager; it must also pinpoint which component or subsystem has failed so that corrective action can be taken, whether that means rerouting power, switching to a backup actuator, or initiating an emergency landing. In the discrete-event formalism, isolation is achieved because different faults produce distinguishable event signatures, and the diagnoser can reason over those signatures to attribute the anomaly to its source. The learned network inherits this capability by reproducing the automaton&#8217;s event-driven logic, so the framework retains the diagnostic resolution of the formal method while shedding much of its computational burden.</p>
<p>The research was supported by the NASA University Leadership Initiative Program under Award 80NSSC22M0070, an affiliation that underscores the practical motivation behind the work. NASA&#8217;s investment in urban air mobility reflects a broader recognition that the next generation of air vehicles will need onboard intelligence capable of assuring safety without constant human oversight. A diagnoser that is too slow to run in flight, or too expensive to update whenever the vehicle&#8217;s software or configuration changes, is of little value in that vision. By demonstrating the framework on an eVTOL model, the authors have positioned it squarely within one of the most consequential application domains for trustworthy autonomy, where certification authorities will demand both performance and explainable reasoning about system health.</p>
<p>More broadly, the study contributes to a growing conversation about how formal methods and machine learning can complement rather than compete with each other. Pure neural approaches to fault diagnosis can be flexible and fast, but they offer no inherent guarantees and can fail unpredictably on event sequences they never saw during training. Pure formal approaches are exhaustive but brittle in the face of scale. The hybrid strategy explored here uses the automaton as a structured curriculum for the network, so the learner is grounded in a complete and well-defined behavioral model rather than in raw, noisy data alone. This grounding is a form of built-in verification: the network&#8217;s task is to reproduce a known formal object, which constrains what it can learn and makes its behavior more auditable than that of a network trained end-to-end on sensor streams.</p>
<p>The implications extend well beyond aircraft. Power grids, chemical plants, autonomous driving stacks, and robotic fleets all generate event streams that could be abstracted into automata and diagnosed with this framework, and all of them face the same tension between model fidelity and computational feasibility. If the approach generalizes as the eVTOL case study suggests, engineers may be able to deploy diagnosers that stay synchronized with evolving systems at a fraction of the current cost, bringing formal safety guarantees within reach of systems that today rely on heuristic alarms. The open-access article, received in May 2026 and published on 24 September 2026, offers a concrete template for that future: model the behavior, teach a network to walk the model, and let the learned diagnoser watch the machine. It is a quiet but potentially far-reaching step toward machines that can explain, in the precise language of events, exactly what has gone wrong with them.</p>
<p><strong>Subject of Research:</strong> Learning-based fault diagnosis of complex systems using discrete event models and recurrent neural networks</p>
<p><strong>Article Title:</strong> Learning-enabled fault diagnosis based on abstract behaviors of the system</p>
<p><strong>Article References:</strong> Learning-enabled fault diagnosis based on abstract behaviors of the system. (n.d.). <a href="https://doi.org/10.1007/s40747-026-02525-8" rel="noopener noreferrer">https://doi.org/10.1007/s40747-026-02525-8</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1007/s40747-026-02525-8" rel="noopener noreferrer">10.1007/s40747-026-02525-8</a></p>
<p><strong>Keywords:</strong> fault diagnosis, discrete event systems, recurrent neural network, deep learning, deterministic finite automata, eVTOL, urban air mobility, hybrid aircraft, NASA, machine learning, complex systems, safety</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">213531</post-id>	</item>
	</channel>
</rss>
