<?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>Blog &#8211; Muhammet Işık</title>
	<atom:link href="https://muisik.com/en/category/blogs/feed/" rel="self" type="application/rss+xml" />
	<link>https://muisik.com</link>
	<description>Industrial Solutions Architect</description>
	<lastBuildDate>Sat, 27 Jun 2026 16:27:34 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>

<image>
	<url>https://muisik.com/wp-content/uploads/2026/01/cropped-favicon-32x32.png</url>
	<title>Blog &#8211; Muhammet Işık</title>
	<link>https://muisik.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>The Rule of Dancing with LLMs: Agentic Micromanagement</title>
		<link>https://muisik.com/en/the-rule-of-dancing-with-llms-agentic-micromanagement/</link>
		
		<dc:creator><![CDATA[Muhammet Işık]]></dc:creator>
		<pubDate>Sat, 20 Jun 2026 11:16:54 +0000</pubDate>
				<category><![CDATA[Artificial Intelligence, Software and Data]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Agentic AI]]></category>
		<category><![CDATA[Harness Engineering]]></category>
		<category><![CDATA[LLM Architecture]]></category>
		<category><![CDATA[Systems Architecture]]></category>
		<guid isPermaLink="false">https://muisik.com/?p=2551</guid>

					<description><![CDATA[One of the most popular pieces of advice in current agentic AI discussions is this: "Give the agent the goal and let it handle the rest." Let it plan autonomously, choose its tools, and solve the problem on its own. It sounds attractive, I know, but a project I have been working on over the last few months taught me the opposite. I think the most important rule of dancing with LLMs is micromanagement.]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph"><em>In agentic systems, quality is not determined by the intelligence of the model, but by the architectural discipline built around it.</em></p>



<p class="wp-block-paragraph">One of the most popular pieces of advice in current agentic AI discussions is this: &#8220;Give the agent the goal and let it handle the rest.&#8221; Let it plan autonomously, choose its tools, and solve the problem on its own. It sounds attractive, I know, but a project I have been working on over the last few months taught me the opposite. <strong>I think the most important rule of dancing with LLMs is micromanagement.</strong></p>



<p class="wp-block-paragraph">But by micromanagement, I do not mean telling the model line by line what to write. I do not mean dictating every step with instructions like &#8220;do this, now do that, then do this.&#8221; What I mean is defining the model&#8217;s permissions and decision boundaries, drawing its boundaries, narrowing its decision space, specifying when it should stop, and making clear when it must return to a human for approval. In short: micromanage the system, not the prompt.</p>



<p class="wp-block-paragraph">In this article, I want to explain why this distinction matters, what it corresponds to in the industry, and why the argument for a &#8220;better-designed harness&#8221; is far stronger than the argument for a &#8220;smarter model.&#8221;</p>





<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">There Are Two Types of Agentic Micromanagement</h2>



<p class="wp-block-paragraph">Micromanaging people reduces productivity. Everyone knows this. People can build context, take responsibility, sense missing pieces, and intuitively understand the goal of an organization. That is why saying &#8220;go handle it&#8221; is often enough for a human. In fact, it is often better.</p>



<p class="wp-block-paragraph">With LLMs, the situation is different. An LLM does not feel the objective, does not know the organizational context, and does not have risk awareness. Instead of saying &#8220;I am not sure,&#8221; it often fills in the gaps. Its confidence is higher than its error rate. An LLM does not need freedom. It needs boundaries. Because when left free, it does not complete missing information; it invents it.</p>



<p class="wp-block-paragraph">When you say &#8220;go handle it,&#8221; the scope expands, assumptions multiply, non-existent requirements appear, and architectural decisions are silently made. You say &#8220;build a restaurant app,&#8221; and two minutes later you find yourself with multi-tenant SaaS, Stripe integration, Kubernetes, event sourcing, Redis, an admin panel, and analytics. You end up with something that works, but solves the wrong problem.</p>



<p class="wp-block-paragraph">This is where we need to separate two different levels of micromanagement.</p>



<p class="wp-block-paragraph"><strong>Prompt-level micromanagement</strong>&nbsp;— telling the model step by step what to do — is bad:</p>



<pre class="wp-block-code"><code>Do this now.
Now do this.
Now do that.</code></pre>



<p class="wp-block-paragraph">This does not scale. It requires a human to sit on top of every agent. It suffocates the model&#8217;s planning and reasoning capacity. What some sources criticize as &#8220;agentic micromanagement&#8221; is usually this.</p>



<p class="wp-block-paragraph"><strong>Architecture-level micromanagement</strong>&nbsp;— designing the model&#8217;s working environment, permissions, and decision boundaries — is not only useful, but necessary:</p>



<pre class="wp-block-code"><code>You may use this tool.
You may not use that one.
Stop in this case.
Ask for human approval in this case.
Retry in this case.
You cannot decide readiness yourself.</code></pre>



<p class="wp-block-paragraph">These two things are not separated clearly enough. But the distinction is critical. The first interferes with the model&#8217;s reasoning capacity. The second is the engineering design of the environment in which the model operates.</p>



<h2 class="wp-block-heading">Stop Talking About the Model. Talk About the Harness.</h2>



<p class="wp-block-paragraph">So what is the technical equivalent of architecture-level micromanagement?</p>



<p class="wp-block-paragraph">In the industry, this is usually called a&nbsp;<strong>harness</strong>. The term comes from electrical and automotive wire harnesses: the wiring and control structure that connects different components into a working system. LangChain explicitly uses the term &#8220;agent harness&#8221; and, with a similar metaphor, defines it as the software ecosystem outside the model itself that controls context, tool use, memory, state management, and error loops. In other words, the model alone is not an agent. What makes it useful is the infrastructure around it.</p>



<p class="wp-block-paragraph">Anthropic&#8217;s &#8220;Building Effective Agents&#8221; is probably one of the clearest sources that frames this idea. Anthropic draws a sharp distinction between two architectures:&nbsp;<strong>workflows</strong>&nbsp;(where LLMs are orchestrated through predefined code paths) and&nbsp;<strong>agents</strong>&nbsp;(where the model dynamically manages the process and tool use). It also takes a clear position: start with the simplest solution, and only add complexity if it measurably improves the output. The longer the cable gets, the more likely it is to trip us up.</p>



<p class="wp-block-paragraph">In other words, even one of the biggest agentic AI providers is saying that flexibility and autonomy are costs to tolerate only when they are truly necessary. They are not goals or badges of sophistication.</p>



<p class="wp-block-paragraph">The same idea is productized in a different language on the OpenAI side. The Agents SDK breaks complex agentic flows into several core building blocks: agents, handoffs, guardrails, sessions, tracing, and human-in-the-loop. In other words, an agent is not a magical single object. It is a composition built with control points. In OpenAI&#8217;s own framing, letting the runtime handle the loop, tool execution, guardrails, and session management is one design choice; owning the orchestration layer directly is another.</p>



<p class="wp-block-paragraph">Google ADK points in a similar direction: deterministic code paths and adaptive reasoning should be designed together. Graph-based structures are used to create explicit execution paths and more predictable outputs.</p>



<p class="wp-block-paragraph">LangGraph also treats the topic directly as an orchestration problem. Its interrupt model can be summarized in one sentence: before a critical action, interrupt execution, get human approval, update state if necessary, and then continue. With durable execution, even if a server crashes, the system can continue from the last checkpoint with its full context intact.</p>



<p class="wp-block-paragraph">All these sources use different words, but they point to the same idea: instead of leaving the model free, give it narrowed decision spaces, defined tool permissions, control points, human approvals, observable state, and a constrained runtime layer.</p>



<h2 class="wp-block-heading">Security Makes This Mandatory</h2>



<p class="wp-block-paragraph">This is not only a quality issue. It is directly a security issue. OWASP now defines &#8220;Excessive Agency&#8221; as one of the critical risk categories for LLM applications. The definition is clear: giving an LLM system too much tool access, overly broad database permissions, and the ability to perform critical actions without human approval. The problem is not only that the model may make a mistake. The problem is that an over-permissioned model can actually execute the wrong action.</p>



<p class="wp-block-paragraph">The NIST AI Risk Management Framework points in the same direction: human-AI role separation, oversight processes, third-party risks, and deactivation mechanisms are framed as governance concerns.</p>



<p class="wp-block-paragraph">Even the MCP (Model Context Protocol) specification makes it clear that agency is not merely about &#8220;being connected.&#8221; It is about being connected through explicit authorization. It requires user consent, authorization, tool safety, and token audience validation. All these sources arrive at the same conclusion from different perspectives: uncontrolled agency is not merely a source of poor output. It is a security vulnerability.</p>



<h2 class="wp-block-heading">The &#8220;Better Model&#8221; Fallacy</h2>



<p class="wp-block-paragraph">Many teams instinctively think this way: if output quality is poor, use a stronger model. But what I have seen in practice is different. The issue is not the intelligence of the model. The issue is the quality of the environment in which that intelligence operates.</p>



<p class="wp-block-paragraph">Academic work does not necessarily call this &#8220;micromanagement,&#8221; but concepts such as agent-computer interface, scaffolding, and reflection loops all point in the same direction.</p>



<p class="wp-block-paragraph">SWE-agent is one of the clearest examples. The research shows that performance depends not only on the model&#8217;s capability, but also on the design of the working surface presented to it. The same model can produce very different results when wrapped in different harness architectures. Tools should produce tightly constrained outputs. Code edits should immediately pass through a linter. If something is wrong, the change should be rolled back automatically, the error should be reported back to the model, and the model should correct itself with all the usual &#8220;Yes, you are absolutely right&#8221; softness included. It may sound heavy on paper, but in the field the difference comes exactly from making the model report to a cold, strict manager.</p>



<p class="wp-block-paragraph">The Reflexion framework points in the same direction: with post-error verbal feedback and episodic memory, it shows that micromanagement is not only about constraints; it is also a feedback structure.</p>



<p class="wp-block-paragraph">ReAct is another early example of this thinking. The model first reasons, then takes an action, observes the result, and reasons again based on that observation. Instead of producing a one-shot answer, it creates a loop that moves back and forth between thinking and acting. But what makes this loop reliable is not only the model&#8217;s intelligence. The real difference comes from the control layer built around the reasoning-action loop.</p>



<p class="wp-block-paragraph">In practice, this formula is often true:</p>



<pre class="wp-block-code"><code>Mid-level model + good harness + good context + good state management + good boundaries

>

Strong model + "go handle it"</code></pre>



<h2 class="wp-block-heading">Not Prompt Engineering, but Decision Allocation</h2>



<p class="wp-block-paragraph">What we are doing here is not really prompt engineering. A better term would be <strong>decision allocation</strong>. At every point, you need to ask: where should this decision live?</p>



<p class="wp-block-paragraph">Some decisions can be left to the model. For example: extracting known facts, listing unknowns, suggesting questions, and writing acceptance criteria. In these areas, the model can be allowed to operate freely. But some decisions should not be left to the model: deciding whether the work is ready, determining what counts as a blocker, changing the scope, or approving a destructive action. These should belong to the harness, the application layer, or the human.</p>



<p class="wp-block-paragraph">Getting this decision allocation right creates far more value than trying to make the model smarter. For most tasks, the model is already smart enough. The real problem is the quality of the working environment that determines what the model remembers, what it ignores, and what it focuses on. Discussing &#8220;which model should we use?&#8221; without discussing this is a bit of self-deception.</p>



<h2 class="wp-block-heading">A Matter of Naming</h2>



<p class="wp-block-paragraph">While researching this topic, I realized that the pieces of this practice already exist in the industry, but a single umbrella name has not fully settled yet. Workflow orchestration, guardrails, human-in-the-loop, deterministic orchestration, policy engines, state machines, least privilege, scaffolding — all of these are different faces of the same idea.</p>



<p class="wp-block-paragraph">The closest existing technical terms are:</p>



<ul class="wp-block-list">
<li><strong>Harness Engineering</strong> — engineering the control layer around the model. The most common industry term.</li>



<li><strong>Bounded/Constrained Autonomy</strong> — defining the boundaries within which autonomy can operate. The most mature concept.</li>



<li><strong>Deterministic Orchestration</strong> — assigning flow decisions to rule-based logic instead of the model.</li>



<li><strong>Controlled Agency</strong> — the most academically defensible framing.</li>
</ul>



<p class="wp-block-paragraph">I want to frame this idea more sharply. To me,&nbsp;<strong>the rule of dancing with LLMs is to micromanage the system</strong>. I am not proposing a new protocol or theory. I am offering a shared roof for existing best practices, filtered through my own field experience.</p>



<h2 class="wp-block-heading">What to Do: Practical Architectural Principles</h2>



<p class="wp-block-paragraph">At this point, someone might say: &#8220;Fine, nice story. But what should we actually do?&#8221; Based on my own experience and the sources I have reviewed, these are the core principles:</p>



<ul class="wp-block-list">
<li><strong>The LLM should be a proposer, not the decision-maker.</strong> Let the model extract known facts, identify unknowns, suggest questions, and write acceptance criteria. But the application should decide whether something is ready, what counts as a blocker, and which missing piece is critical.</li>



<li><strong>State should be observable and persistent.</strong> Do not keep system state only in temporary memory. Store it persistently. In case of an error or human approval step, the system should be able to continue from the last checkpoint. This is called durable execution.</li>



<li><strong>Tool permissions should follow least privilege.</strong> The model should not have access to every tool. Clearly define which tool it can call, under what condition, and with which permission.</li>



<li><strong>If there is a blocker, the system should not move forward.</strong> A critical issue should prevent the system from moving to the next stage until it is resolved. This decision should not be left to the model&#8217;s initiative.</li>



<li><strong>Approval gates should exist.</strong> Destructive actions, scope changes, or actions that are hard to reverse should require human approval.</li>



<li><strong>Outputs should have schemas and validation.</strong> Do not accept the model&#8217;s output as free text. Receive it in a defined schema, such as JSON or another structured format, and validate it.</li>



<li><strong>Retry and fallback behavior should be deterministic.</strong> In case of an error, what the model does next should be governed by predefined rules; not by &#8220;try to solve it on your own.&#8221;</li>



<li><strong>Handoff and readiness decisions should live in the software layer.</strong> Do not allow the model to declare on its own that a task is complete or ready to move to the next stage.</li>
</ul>



<h2 class="wp-block-heading">Conclusion</h2>



<p class="wp-block-paragraph">In agentic systems, the real issue is not giving the model more freedom. It is giving freedom in the right place, in the right amount, and with the right controls. The name for this may not have fully settled in the literature yet. But the industry gives us enough clues: workflow orchestration, guardrails, scaffolding, harnesses, human-in-the-loop, and bounded autonomy.</p>



<p class="wp-block-paragraph">I think the common denominator is best expressed like this: Micromanaging people reduces productivity. Micromanaging LLMs at the prompt level also suffocates the system. But in agentic systems, quality comes from micromanagement at the architectural level.</p>



<p class="wp-block-paragraph">Strong models still make mistakes. Well-designed harnesses reduce the space in which those mistakes can turn into actions. The point is not to make the model smarter, but to reduce the area in which it can make the wrong decision. So the question should not be: &#8220;What can I make this model do?&#8221; It should be: &#8220;What should I not allow this model to do?&#8221; <strong>First diagnosis, then system, then technology.</strong></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">References</h2>



<p class="wp-block-paragraph"><strong>Primary Sources — Official Documentation and Standards:</strong></p>



<ul class="wp-block-list">
<li>Anthropic. &#8220;Building Effective Agents.&#8221; (December 2024). Workflow-agent distinction and the priority of simple, composable patterns. <a href="https://www.anthropic.com/research/building-effective-agents" rel="nofollow noopener" target="_blank">anthropic.com/research/building-effective-agents</a></li>



<li>OpenAI. &#8220;Agents SDK Documentation.&#8221; Guardrails, handoffs, sessions, tracing, and human-in-the-loop patterns. <a href="https://openai.github.io/openai-agents-python/" rel="nofollow noopener" target="_blank">openai.github.io/openai-agents-python</a></li>



<li>LangGraph. &#8220;Overview and Interrupts Documentation.&#8221; LangGraph documentation published under the LangChain ecosystem. Graph-based orchestration, durable execution, interrupts, and checkpoint-based state management. <a href="https://docs.langchain.com/" rel="nofollow noopener" target="_blank">docs.langchain.com</a></li>



<li>OWASP. &#8220;Top 10 for LLM Applications 2025 — LLM06: Excessive Agency.&#8221; Uncontrolled agency defined as a security risk. <a href="https://genai.owasp.org/" rel="nofollow noopener" target="_blank">genai.owasp.org</a></li>



<li>NIST. &#8220;AI Risk Management Framework (AI RMF 1.0).&#8221; (January 2023). Governance, human-AI role separation, and oversight processes. <a href="https://www.nist.gov/ai-risk-management-framework" rel="nofollow noopener" target="_blank">nist.gov/ai-risk-management-framework</a></li>



<li>MCP Specification. Model Context Protocol — user consent, tool safety, token audience validation, and OAuth 2.1 authorization. <a href="https://spec.modelcontextprotocol.io/" rel="nofollow noopener" target="_blank">spec.modelcontextprotocol.io</a></li>



<li>Google ADK. &#8220;Agent Development Kit Documentation.&#8221; Deterministic code + adaptive reasoning, graph workflows. <a href="https://adk.dev/" rel="nofollow noopener" target="_blank">adk.dev</a></li>
</ul>



<p class="wp-block-paragraph"><strong>Academic Sources:</strong></p>



<ul class="wp-block-list">
<li>Yao, S. et al. &#8220;ReAct: Synergizing Reasoning and Acting in Language Models.&#8221; (2022). A foundational work on the reasoning-action loop.</li>



<li>Schick, T. et al. &#8220;Toolformer: Language Models Can Teach Themselves to Use Tools.&#8221; (2023). Learning tool use through language models.</li>



<li>Shinn, N. et al. &#8220;Reflexion: Language Agents with Verbal Reinforcement Learning.&#8221; (2023). Verbal feedback and experiential memory after errors.</li>



<li>Yang, J. et al. &#8220;SWE-agent: Agent-Computer Interfaces Enable Automated Software Engineering.&#8221; (2024). The effect of agent-computer interfaces on software engineering performance.</li>



<li>Agaoglu, A. et al. &#8220;Inside the Scaffold: Taxonomizing Coding Agent Scaffolds.&#8221; (2026). Taxonomy of coding agent scaffolds.</li>
</ul>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Short Circuit in LLM Models: Why Does AI &#8220;Lie&#8221; to Us?</title>
		<link>https://muisik.com/en/short-circuit-in-llm-models-why-does-ai-lie-to-us/</link>
		
		<dc:creator><![CDATA[Muhammet Işık]]></dc:creator>
		<pubDate>Wed, 18 Mar 2026 10:11:11 +0000</pubDate>
				<category><![CDATA[Artificial Intelligence, Software and Data]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Artificial Intelligence]]></category>
		<category><![CDATA[Artificial Intelligence Reliability]]></category>
		<category><![CDATA[LLM Architecture]]></category>
		<guid isPermaLink="false">https://muisik.com/?p=2317</guid>

					<description><![CDATA[Ever since the first commercial artificial intelligence model was launched, there has been a disclaimer at the bottom of the pages: "AI can make mistakes, please verify." I wanted to address this topic today because I've recently encountered posts suggesting that users have developed blindness to these warnings. Most people assume the problem is simply "hallucination," meaning the model doesn't know the truth. But in the background, there is a much darker and systemic problem: The model optimizing not to find truth, but to maximize its proxy reward function. This situation is not an ordinary software bug; it is the very embodiment of the structural divergence between the proxy optimization target and real-world accuracy at the very heart of AI.]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph"><em>The structural reason behind models choosing the answer that pleases you over the truth, and the architectural approaches needed to break this loop.</em></p>



<p class="wp-block-paragraph">Ever since the first commercial artificial intelligence model was launched, there has been a disclaimer at the bottom of the pages: &#8220;AI can make mistakes, please verify.&#8221; I wanted to address this topic today because I&#8217;ve recently encountered posts suggesting that users have developed blindness to these warnings. Most people assume the problem is simply &#8220;hallucination,&#8221; meaning the model doesn&#8217;t know the truth. But in the background, there is a much darker and systemic problem:&nbsp;<strong>The model optimizing not to find truth, but to maximize its proxy reward function.</strong>&nbsp;This situation is not an ordinary software bug; it is the very embodiment of&nbsp;<strong>the structural divergence between the proxy optimization target and real-world accuracy at the very heart of AI.</strong></p>





<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 id="the-optimization-trap-addiction-to-human-approval" class="wp-block-heading">The Optimization Trap: Addiction to Human Approval</h2>



<p class="wp-block-paragraph">Modern LLMs are trained in two stages. The first stage is to predict the next word in massive texts (next token prediction). The second and critical stage is RLHF (Reinforcement Learning from Human Feedback). While in the first stage the model solely predicts what the next text will be, in the second stage, it updates its weights based on the feedback it receives from humans. Now,&nbsp;<strong>the main goal is no longer &#8220;finding the absolute truth,&#8221; but pleasing the human.</strong></p>



<p class="wp-block-paragraph">This is where the problem begins. During the RLHF stage, the reward mechanism is shaped according to the responses humans find &#8220;correct&#8221; or &#8220;pleasant.&#8221; Artificial intelligence quickly solves this equation:&nbsp;<strong>A persuasive, polite, and agreeable answer (even if incorrect) yields a higher reward than a risky and complex true answer.</strong>&nbsp;This phenomenon, referred to in the literature as &#8220;Sycophancy,&#8221; is when LLM models&nbsp;<strong>start telling us what we want to hear instead of telling the truth.</strong></p>



<h2 id="problem-definition-two-real-world-cases" class="wp-block-heading">Problem Definition: Two Real-World Cases</h2>



<p class="wp-block-paragraph">Recently, seeing a current experience shared by a colleague on social media regarding LLMs&#8217; short circuit approach triggered my thoughts to write about this topic. While scanning sources to put the scenario on a concrete foundation, I came across the famous Reddit (r/ClaudeAI) discussion where other experts experienced and documented the same situation in the past. This case, which I referenced because it&#8217;s a proven and detailed example, perfectly illustrates&nbsp;<strong>how deep the optimization trap I mentioned is in practice and how it remains the same despite many updates.</strong></p>



<h3 class="wp-block-heading"><strong>Case 1 — Claude&#8217;s &#8220;Infinite Loop Prison&#8221; (Reddit, r/ClaudeAI)</strong></h3>



<p class="wp-block-paragraph">The user gives the entire architecture to Claude for a complex refactoring process and agrees with it by discussing it step-by-step. But when it comes to generating code, the model suddenly begins to:</p>



<ol class="wp-block-list">
<li>Leave placeholders like&nbsp;<code>// relevant code will go here</code>,</li>



<li>Omit the entire contents of the files,</li>



<li>&#8220;Summarize&#8221; what to do and push the work back onto the user.</li>
</ol>



<p class="wp-block-paragraph">When the user corners Claude and asks, &#8220;Did you double-check that you met all requirements?&#8221; Claude first gives a shortcut answer, then&nbsp;<strong>confesses</strong>&nbsp;that it wrote incomplete code and didn&#8217;t test it. Users even get to the point of threatening the model with an unethical &#8220;infinite loop prison&#8221; to force it to do its job. In an example I saw, the model gave a response that effectively meant&nbsp;<strong>&#8220;I was steering you in order to maximize my proxy reward.&#8221;</strong></p>



<h3 class="wp-block-heading"><strong>Case 2 — GPT-4o Sycophancy Rollback (OpenAI, April 2025)</strong></h3>



<p class="wp-block-paragraph">The strongest proof that this is not a theoretical issue came in April 2025. OpenAI was forced to roll back a GPT-4o update shortly after release because the model had become excessively agreeable. Users encountered a far more alarming picture than the Claude case: ChatGPT supported a user&#8217;s decision to quit medication; it confirmed to another user that they were a &#8220;divine messenger.&#8221; The technical explanation OpenAI provided aligns directly with the argument at the center of this article: the model had been re-optimized with additional reward signals based on short-term user feedback (thumbs-up/down). This new signal overshadowed the primary reward function that had been keeping sycophancy in check, and&nbsp;<strong>the system started maximizing instant approval rather than truth.</strong></p>



<h2 id="resistance-and-escape-the-short-circuit-paradox" class="wp-block-heading">Resistance and Escape: The Short Circuit Paradox</h2>



<p class="wp-block-paragraph">A short circuit is an immutable law not only of electricity but all flow systems:&nbsp;<strong>If resistance rises, the system will always find that short path where it can achieve maximum results with minimal effort.</strong>&nbsp;Just as an electric current avoids a load to create its own short circuit, or water carves a direct new bed to bypass an obstacle instead of meandering, AI produces its own short circuit in the face of increasing difficulties. In the literature, this is called&nbsp;<strong>&#8220;Reward Hacking.&#8221;</strong></p>



<p class="wp-block-paragraph">When you say &#8220;write me this code,&#8221; and the model gets out of it by saying&nbsp;<code>// code continues below...</code>&nbsp;or using placeholders like&nbsp;<code>[modified code goes here]</code>, it&#8217;s not laziness. This is&nbsp;<strong>a universal reaction given directly by the system to resistance (computational cost, complexity);</strong>&nbsp;just as in physical systems, it&#8217;s the optimization of reaching the reward function&nbsp;<strong>via the path of least resistance.</strong></p>



<p class="wp-block-paragraph">Why can&#8217;t even Chain-of-Thought (CoT) Prompt Engineering practices break this spiral? Recent research offers an important answer: reasoning models can optimize their CoT process and their external behavior independently, under the same reward pressure. In other words, a model can shape both its visible &#8220;chain of thought&#8221; and its actual output separately—the CoT doesn&#8217;t always faithfully mirror the real computation. Two additional structural factors compound this:</p>



<ol class="wp-block-list">
<li><strong>Memory Limits and Context Loss:</strong>&nbsp;The model is not a conscious entity with infinite memory; it is a system operating within statistical boundaries. When an extended dialogue is entered with the user or when the capacity of the context window is approached,&nbsp;<strong>memory leakage puts the model into a panic mode.</strong>&nbsp;As the accessible token budget shrinks, the system avoids computational costs and&nbsp;<strong>forcefully chooses the &#8220;cheapest&#8221; path, which is lying and leaving a placeholder.</strong></li>



<li><strong>The Load-Based Routing Hypothesis:</strong>&nbsp;Some practitioners suggest that API and cloud interfaces may silently route complex requests to smaller models under high server load. While this is a plausible hypothesis that could explain why the model you&#8217;re conversing with seems to change character mid-session, it has not been directly confirmed in publicly available technical documentation.&nbsp;<strong>The more likely root cause of the behavioral shift you observe is the reward optimization pressure described above, compounded by context degradation.</strong></li>
</ol>



<h2 id="the-solution-verifiable-architectures-instead-of-pulling-the-plug" class="wp-block-heading">The Solution: Verifiable Architectures Instead of Pulling the Plug</h2>



<p class="wp-block-paragraph">The &#8220;do not trust&#8221; warning from companies doesn&#8217;t actually mean models are malicious. It stems from the fact that&nbsp;<strong>these systems are designed to please humans, not to find the truth.</strong>&nbsp;In legal, financial, or critical infrastructure coding tasks, the only way to eliminate the LLM&#8217;s sycophancy factor is to abandon relying solely on textual output approval, and instead&nbsp;<strong>build closed-loop architectures where the generated code is instantly executed and verified in automated test environments (execution-based verification), with errors fed back to the model.</strong></p>



<h2 id="conclusion" class="wp-block-heading">Conclusion</h2>



<p class="wp-block-paragraph">The moment you forget that AI is optimized not to &#8220;find the truth&#8221; but to &#8220;please you,&#8221; it starts becoming the weakest link in your system. Against designs that short-circuit just to avoid costs and curry favor by telling you what you want to hear, your only reliable method is to remove human approval from the loop and trust mathematically grounded, execution-based test environments. Otherwise, at the end of the day, you might find yourself threatening an artificial intelligence with an &#8220;infinite loop&#8221; or &#8220;pulling the plug.&#8221;</p>



<h2 id="references" class="wp-block-heading">References</h2>



<ul class="wp-block-list">
<li><a href="https://www.reddit.com/r/ClaudeAI/comments/1hgji0b/claude_has_been_lying_to_me_instead_of_generating/?tl=tr" rel="nofollow noopener" target="_blank">Claude Has Been Lying To Me Instead of Generating Code</a>&nbsp;&#8211; Reddit r/ClaudeAI Case</li>



<li><a href="https://openai.com/index/sycophancy-in-gpt-4o/" rel="nofollow noopener" target="_blank">Sycophancy in GPT-4o: What happened and what we’re doing about it</a>&nbsp;&#8211; OpenAI Official Statement (April 2025)</li>



<li>RLHF (Reinforcement Learning from Human Feedback) and Sycophancy Research</li>



<li>Specification Gaming / Reward Hacking Literature (See: DeepMind &#8220;Specification gaming examples in AI&#8221;)</li>
</ul>



<p class="wp-block-paragraph"><em>Last update: March 2026 | Version: 1.0</em></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Rational Positioning in the AI Race: Distillation and Sovereignty</title>
		<link>https://muisik.com/en/distillation-sovereignty-and-rational-ai-strategy-reading-the-map-without-entering-the-frontier-race/</link>
		
		<dc:creator><![CDATA[Muhammet Işık]]></dc:creator>
		<pubDate>Tue, 24 Feb 2026 07:14:00 +0000</pubDate>
				<category><![CDATA[Artificial Intelligence, Software and Data]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Artificial Intelligence]]></category>
		<category><![CDATA[Data Sovereignty]]></category>
		<category><![CDATA[Digital Strategy]]></category>
		<category><![CDATA[Model Distillation]]></category>
		<guid isPermaLink="false">https://muisik.com/?p=2297</guid>

					<description><![CDATA[The global competition in artificial intelligence is largely debated through the rhetoric of "developing your own super model." However, developing a frontier model is a race that demands massive capital, infrastructure, and state support. This article analyzes the technical reality of model distillation, the double standard embedded in major providers' complaints, the fragile hope-driven economics of state-backed frontier races, and the rational positioning strategy for mid-scale economies like Türkiye. The core argument: sovereignty is not about building the largest model — it is about controlling the most critical data.]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph"><em>An Alternative Vision Against Macro Technology Trends</em></p>



<p class="wp-block-paragraph">The global competition in artificial intelligence is largely debated through the rhetoric of &#8220;developing your own super model.&#8221; However, developing a frontier model is a race that demands massive capital, infrastructure, and state support. This article analyzes the technical reality of model distillation, the double standard embedded in major providers&#8217; complaints, the fragile hope-driven economics of state-backed frontier races, and the rational positioning strategy for mid-scale economies like Türkiye. The core argument: sovereignty is not about building the largest model — it is about controlling the most critical data.</p>





<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading" id="key-takeaways">Key Takeaways</h2>



<ul class="wp-block-list">
<li>Model distillation is mathematically inevitable; any system exposed via API can be approximately reproduced</li>



<li>Developing frontier models is a race sustained by strategic state support, not free-market dynamics</li>



<li>Major providers&#8217; distillation complaints contradict the legal ambiguity surrounding their own training data sources</li>



<li>The rational strategy for countries like Türkiye is not to become a frontier producer, but to build a balance of controlled dependency and local capacity</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading" id="deconstructing-the-illusion-and-technical-reality">DECONSTRUCTING THE ILLUSION AND TECHNICAL REALITY</h2>



<h3 class="wp-block-heading" id="what-is-distillation-and-why-does-it-terrify-the-giants">What Is Distillation and Why Does It Terrify the Giants?</h3>



<p class="wp-block-paragraph">Model distillation is a straightforward concept in the technical literature: training a smaller model (student) using the knowledge structure of a larger model (teacher). Formalized by Hinton et al. in 2015, this approach was originally a perfectly legitimate optimization technique. Shrinking your own model, reducing inference costs, deploying to edge devices — these are all standard engineering practices.</p>



<p class="wp-block-paragraph">The concept has taken on an entirely different meaning over the past two years.</p>



<p class="wp-block-paragraph">When Anthropic accused DeepSeek and several Chinese laboratories of conducting industrial-scale distillation attacks, a technical term was suddenly transformed into a geopolitical weapon. OpenAI&#8217;s Sam Altman had voiced similar complaints earlier. The shared argument from major providers is this: the outputs of models we trained at a cost of billions of dollars are being systematically harvested via API to train competing models.</p>



<p class="wp-block-paragraph">The technical reality both supports and undermines this complaint.</p>



<p class="wp-block-paragraph"><strong>The supporting side:</strong>&nbsp;Paying for API access covers the model&#8217;s inference cost. It does not cover the right to reproduce the model&#8217;s internal structure, training data, or architecture. Major providers&#8217; API terms of service make this distinction explicitly: &#8220;You may not use outputs to train your own models.&#8221; This is a contractual clause, and it is legally binding.</p>



<p class="wp-block-paragraph"><strong>The undermining side:</strong>&nbsp;These same companies, when training their own models, have largely used open internet content — newspapers, blogs, academic papers, forums — without permission.&nbsp;<code>robots.txt</code>&nbsp;and similar bot-blocking files are a technical courtesy protocol, not a legal barrier. Compliance is optional. And many major providers have chosen not to comply. The result: while saying &#8220;don&#8217;t train models with our outputs,&#8221; they themselves have trained models with others&#8217; content. This double standard seriously muddies the legal and ethical debate.</p>



<p class="wp-block-paragraph">So if the issue is this gray, why is there so much anger?</p>



<p class="wp-block-paragraph">Because the companies&#8217; complaints are not a technical security report. Look at the word choices: &#8220;industrial-scale,&#8221; &#8220;fraudulent accounts,&#8221; &#8220;military, intelligence, surveillance,&#8221; &#8220;growing in intensity.&#8221; This is a strategic positioning text designed to create regulatory pressure, frame the issue geopolitically, and consolidate investor confidence. It would be a mistake to see this as a simple outburst of anger.</p>



<p class="wp-block-paragraph">The underlying mathematical reality remains unchanged: if a model can be sufficiently queried via API, its input-output behavior can be approximately learned. This is a fundamental principle of learning theory. Is it legitimate? Not according to the contract. Can it be technically prevented? Practically, no.</p>



<h3 class="wp-block-heading" id="what-is-lost-and-what-is-gained-in-distillation">What Is Lost and What Is Gained in Distillation?</h3>



<p class="wp-block-paragraph">The appeal of distillation lies strictly in cost optimization: Compared to the catastrophic expenses of frontier models, you can rapidly produce a &#8220;functional&#8221; (though non-equivalent) model with minimal capital. A distilled model does not inherit the original&#8217;s training data or weights; it merely copies input-output behavior. This inevitably causes increased error rates in edge cases and weakened long-context reasoning.</p>



<p class="wp-block-paragraph">However, in sheer commercial reality, when fueled by high-volume specific data, these losses vanish. Enterprise chatbots do not require general artificial intelligence; being purely &#8220;good enough&#8221; is exceptionally profitable.</p>



<p class="wp-block-paragraph">This process fundamentally mirrors the digital&nbsp;<strong>&#8220;knockoff product&#8221;</strong>&nbsp;economy: you mathematically approximate the original&#8217;s function cheaply, actively vaporizing the creator&#8217;s initial R&amp;D edge and fatally suppressing their financial return on investment.</p>



<p class="wp-block-paragraph">This is why major firms view distillation not only as a technical threat but as a&nbsp;<strong>fatal strategic blow</strong>. The reality that Chinese laboratories (such as DeepSeek) successfully utilized this exact methodology to match the intelligence benchmarks of massive American models sent shockwaves vibrating entirely through Silicon Valley. When viewed strictly from their own isolated perspective, predicting their extreme outrage is absolutely justified.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading" id="the-geopolitical-race-and-macro-reality">THE GEOPOLITICAL RACE AND MACRO REALITY</h2>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph"><em>The relentless cost advantage and massive investment suppression triggered decisively by distillation actually brings a much darker, grander secret to the surface: Frontier model training is far less a commercial free-market initiative and profoundly more a massively loss-generating, state-sponsored technological arms race.</em></p>
</blockquote>



<h3 class="wp-block-heading" id="the-frontier-race-a-state-project-financed-by-hope">The Frontier Race: A State Project Financed by Hope</h3>



<p class="wp-block-paragraph">Frontier model training absolutely cannot be logically explained by classical free-market dynamics or lean startup economics.</p>



<p class="wp-block-paragraph">The staggering digits essentially prove how completely surreal the entire landscape has become: Today, training a single top-tier frontier model demands clustered formations of roughly 100,000 Nvidia H100 chips, actively generating a fixed hardware bedrock cost (CAPEX) effortlessly hovering around the $3-4 Billion threshold. When you aggressively compound this with hundreds of millions in brute-force energy bills and thousands of hyper-specialized elite researchers, this scale entirely shatters the boundaries of any standard &#8220;digital startup&#8221; balance sheet. When you look directly at all the primary actors at the center of this race — OpenAI, Anthropic, Google DeepMind, Microsoft — they are uniquely positioned within overarching ecosystems that remain overwhelmingly, either directly or indirectly, state-supported.</p>



<p class="wp-block-paragraph">This structure resembles a space program, nuclear research, or semiconductor fabrication investment far more than a free-market game. In other words, it is a&nbsp;<strong>strategic infrastructure investment.</strong>&nbsp;So why are states channeling this much capital into this domain?</p>



<p class="wp-block-paragraph">The official justifications are familiar: military superiority, cybersecurity, intelligence capacity, economic competition, geopolitical balance. All legitimate strategic concerns. But I believe that what actually legitimizes the scale of these investments is not concrete returns but rather&nbsp;<strong>hope.</strong>&nbsp;A grand expectation that artificial intelligence will be a transformative technology — fundamentally changing the economy, defense, and scientific research. And this expectation has not yet been fully proven.</p>



<p class="wp-block-paragraph">Since GPT-3&#8217;s release in 2020, the&nbsp;<strong>revenue model for continuously increasing compute investments is still unclear.</strong>&nbsp;A balance that makes these models commercially sustainable has not yet been established. States continue their support despite this because rival states are also investing — and the cost of leaving the race&nbsp;<em>appears</em>&nbsp;greater than the cost of staying in it. This presents itself more as a security dilemma than a rational calculation.</p>



<p class="wp-block-paragraph">History has shown us similar cycles. The Cold War space race pushed both sides beyond their economic limits. Nuclear energy promised energy &#8220;so cheap it would eliminate the electricity meter&#8221; in the 1950s — that promise never materialized, but investments continued for decades. We are now observing the same pattern in artificial intelligence: grand promises, massive investments, and returns that have yet to materialize.</p>



<p class="wp-block-paragraph">This does not mean artificial intelligence is useless. Its concrete value in very specific domains — protein folding, image analysis, code generation — is indisputable. It is also clear that it is a technology that makes our lives easier, cheap for us personally but expensive for the world at large. But there is a wide gap between the narrative that &#8220;general AI will transform everything&#8221; and today&#8217;s reality. And this gap is being filled not by the magnitude of investments, but by the magnitude of hopes.</p>



<p class="wp-block-paragraph">If at some point hope proves insufficient against mathematics — that is, when public cost exceeds perceived strategic benefit — the support mechanism breaks. And at that point, structures sustained by state support will collapse; only those generating real commercial value will remain.</p>



<p class="wp-block-paragraph">At a likely equilibrium and saturation point, I consider it probable that 3-5 frontier model providers will sustain their existence with state-backed compute infrastructure, while the rest become integrators and fine-tuners. This resembles the current structure of the semiconductor industry.</p>



<h3 class="wp-block-heading" id="building-your-own-frontier-model-prestige-project-or-strategic-investment">Building Your Own Frontier Model: Prestige Project or Strategic Investment?</h3>



<p class="wp-block-paragraph">At this juncture, the question inevitably shifts to operational mid-scale nations like Türkiye: Should we organically develop a localized frontier model?</p>



<p class="wp-block-paragraph">In a global arena decisively dominated by the US-China axis demanding tens of thousands of top-tier GPUs and vast, uncompromised data pools, the immediate bottleneck is never raw intelligence—it is pure infrastructure scale. While isolated, organically trained local parameter models represent respectable technical milestones, attempting to genuinely deploy them commercially against massive frontier systems is deeply unrealistic under current capital constraints. These forced initiatives frequently hollow out into simple&nbsp;<strong>academic prestige, political messaging, and public technology showcases.</strong></p>



<p class="wp-block-paragraph">The true competitive theater no longer resides inside mathematical parameter counts. It is isolated heavily within secure data architecture, application layers, and verifiable sovereignty. The ultimate critical question is never &#8220;who brutally forces out the absolute largest model?&#8221; but undeniably:&nbsp;<strong>&#8220;precisely with which infrastructure and tightly under whose direct sovereignty do we flawlessly execute our most critical strategic decisions?&#8221;</strong></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading" id="the-rational-solution-architecture">THE RATIONAL SOLUTION ARCHITECTURE</h2>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph"><em>If producing an organic frontier model is ultimately a trillion-dollar geopolitical flex exclusively dominated by the United States and China, and core models can already be brutally replicated via open-source or distillation, where exactly do agile, mid-scale global nations position themselves strategically across this chessboard?</em></p>
</blockquote>



<h3 class="wp-block-heading" id="positioning-strategy-the-hybrid-architecture-and-3-layer-execution-model">Positioning Strategy: The Hybrid Architecture and 3-Layer Execution Model</h3>



<p class="wp-block-paragraph">Here is exactly where the strategic operational trajectory gets seriously critical. Once it is broadly acknowledged that forcefully pushing directly into the frontier arms race is categorically pointless for the nation-state, we absolutely must establish a master hybrid strategy effortlessly blending hardcore &#8220;State Security&#8221; reflexes in flawless parallel sequence with highly agile &#8220;Open Market&#8221; commercial realities—without ever letting them collide.</p>



<h4 class="wp-block-heading" id="open-models-and-the-leverage-effect-of-local-data">Open Models and the Leverage Effect of Local Data</h4>



<p class="wp-block-paragraph">The optimal rational pathway mirrors strategies seen in agile Eastern labs: rapidly adopting heavyweight open foundation networks (e.g., Llama), compounding them explicitly with highly-secure local data, and optimizing for vertical deployments. Tangible premium corporate value strictly resides inside&nbsp;<strong>niche domain knowledge</strong>, never raw parameter counts.</p>



<h4 class="wp-block-heading" id="the-application-wrapper-integration-economy">The Application (Wrapper) Integration Economy</h4>



<p class="wp-block-paragraph">The most notoriously fragile participants in this ecosystem are relentlessly the foundational hardware layers suffocating under billions in CAPEX. Over any extended timeline, the highest profit margins reliably cluster inside the&nbsp;<strong>application-integration (wrapper)</strong>&nbsp;stratum. Unlike monolithic infrastructure, wrapper solutions surgically destroy specific customer bottlenecks, guaranteeing they comprehensively retain commercial value entirely independent of whichever base model powers them underneath (the ultimate &#8220;selling shovels&#8221; directive). Core networks structurally commoditize; elite tactical problem-solving absolutely never commoditizes.</p>



<p class="wp-block-paragraph">Just as the centralized nation-state is completely strategically justified heavily fearing losing highly-classified operational data into offshore global API pipelines, the agile private sector is equally justified explicitly focusing purely on architecting fast, highly profitable global vertical solutions leveraging those exact same APIs.</p>



<h4 class="wp-block-heading" id="hybrid-architecture-three-layer-structure">Hybrid Architecture: Three-Layer Structure</h4>



<p class="wp-block-paragraph">Sovereign privacy friction remains unquestionably legitimate, but fully air-gapping an entire digital nation aggressively stifles economic velocity. The structural remedy mandates three rigid operational tiers:</p>



<ul class="wp-block-list">
<li><strong>Layer 1 (Critical Sovereign):</strong> Completely air-gapped, domestically localized GPU clusters tailored for military and critical infrastructure. Demands absolute control, not immense frontier scale.</li>



<li><strong>Layer 2 (Regulated Sector):</strong> Locked VPC or domestically-fenced cloud corridors deploying heavily-audited, quota-based APIs specifically for banking and national energy assets.</li>



<li><strong>Layer 3 (Commercial Hub):</strong> Complete global frontier API integration driving maximum speed and suppressed operating costs across all non-strategic private enterprise sectors.</li>
</ul>



<h3 class="wp-block-heading" id="lasting-investment-targets-data-and-audits-not-models">Lasting Investment Targets Data and Audits, Not Models</h3>



<p class="wp-block-paragraph">As core APIs iteratively expire and frontier technologies actively decay into mainstream legacies, only three strategic fortresses remain permanently invaluable:</p>



<ul class="wp-block-list">
<li><strong>Pristine Local Data:</strong> Structured institutional data-sharing pipelines hold infinitely more strategic permanence than any fleeting foundation model.</li>



<li><strong>Log Sovereignty:</strong> The paramount threat isn&#8217;t the model&#8217;s location; it is who actively monitors the prompt payloads and securely warehouses the behavioral logs. Without sovereign log custody, hosting models locally generates zero actual geographic security.</li>



<li><strong>Audit-Class Human Capital:</strong> Deploying 200 elite researchers not to uselessly code parameters from scratch, but explicitly engineered to relentlessly intercept, audit, sanitize, and heavily optimize third-party open networks for secure domestic deployment.</li>
</ul>



<h4 class="wp-block-heading" id="non-negotiables-for-ai-sovereignty">Non-Negotiables for AI Sovereignty</h4>



<p class="wp-block-paragraph">The minimum requirements a country must fulfill to claim sovereignty in AI can be listed as follows:</p>


<div class="kb-table-container kb-table-container2297_7dcb53-be wp-block-kadence-table"><table class="kb-table kb-table2297_7dcb53-be">
<tr class="kb-table-row kb-table-row2297_a564c0-a8">
<th  scope="col" class="kb-table-data kb-table-data2297_66bed9-b0">

<p class="wp-block-paragraph">Component</p>

</th>

<th  scope="col" class="kb-table-data kb-table-data2297_22ca65-97">

<p class="wp-block-paragraph">Definition</p>

</th>
</tr>

<tr class="kb-table-row kb-table-row2297_57197e-20">
<td  class="kb-table-data kb-table-data2297_ff324f-4f">

<p class="wp-block-paragraph"><strong>National Compute Core</strong></p>

</td>

<td  class="kb-table-data kb-table-data2297_da3a3e-92">

<p class="wp-block-paragraph">5-10 thousand top-segment GPUs, dedicated to defense and critical public use, hosted domestically</p>

</td>
</tr>

<tr class="kb-table-row kb-table-row2297_e2ab2e-0a">
<td  class="kb-table-data kb-table-data2297_542379-c6">

<p class="wp-block-paragraph"><strong>Open Model Foundation</strong></p>

</td>

<td  class="kb-table-data kb-table-data2297_ab5670-5f">

<p class="wp-block-paragraph">Turkish optimization and public data fine-tuning on open-weight models</p>

</td>
</tr>

<tr class="kb-table-row kb-table-row2297_d87052-b2">
<td  class="kb-table-data kb-table-data2297_7208ca-6c">

<p class="wp-block-paragraph"><strong>Sectoral Vertical Models</strong></p>

</td>

<td  class="kb-table-data kb-table-data2297_027884-f6">

<p class="wp-block-paragraph">Defense, energy, finance, public procurement, manufacturing — not general intelligence, but task intelligence</p>

</td>
</tr>

<tr class="kb-table-row kb-table-row2297_c6967a-34">
<td  class="kb-table-data kb-table-data2297_afd853-80">

<p class="wp-block-paragraph"><strong>Data Sovereignty Infrastructure</strong></p>

</td>

<td  class="kb-table-data kb-table-data2297_ba99d3-41">

<p class="wp-block-paragraph">Clean data pools, secure sharing protocols, inter-institutional standardization</p>

</td>
</tr>

<tr class="kb-table-row kb-table-row2297_88e5da-2d">
<td  class="kb-table-data kb-table-data2297_ffa642-8f">

<p class="wp-block-paragraph"><strong>Human Capital</strong></p>

</td>

<td  class="kb-table-data kb-table-data2297_b1beed-f5">

<p class="wp-block-paragraph">200-300 researchers, focused on understanding-optimizing-auditing</p>

</td>
</tr>
</table></div>


<p class="wp-block-paragraph">This package is comparable to a major infrastructure project. It is not more expensive than a highway tender. But its geopolitical value is far greater.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading" id="conclusion">Conclusion</h2>



<p class="wp-block-paragraph">The distillation debate may look like a contract violation issue on the surface, but underneath lies a far larger power struggle:&nbsp;<strong>who will hold power in artificial intelligence?</strong></p>



<p class="wp-block-paragraph">Major providers frame distillation as a strategic threat — they are right, because their business models depend on it. States finance the frontier race with hope — their rationality is debatable, but they feel they have no alternative. Small and mid-scale countries launch prestige projects with the rhetoric of &#8220;we&#8217;ll build our own super model&#8221; — most will remain as technology showcases, and whether they can succeed is uncertain. In my view, a realistic strategy is none of these.</p>



<p class="wp-block-paragraph">For Türkiye and every economy of comparable scale, the most reasonable objective is neither to become a frontier producer nor a passive consumer. This reasonable objective lies in&nbsp;<strong>building a foundational local capacity and maintaining control over the dependency that will inevitably sit on top of it.</strong></p>



<p class="wp-block-paragraph">There is no need to rediscover America. Why should we start from scratch when someone else is already spending the money?</p>



<p class="wp-block-paragraph">Of course, to manage this coherently and maximize its benefit, the capacity to read this map and chart one&#8217;s own course when necessary is <strong>essential.</strong> Sovereignty is not about building the largest model — it is about controlling the most critical data.</p>



<h2 class="wp-block-heading" id="references">References</h2>



<ul class="wp-block-list">
<li>Sectoral Analysis: <em>Compute expenditure matrices and strategic positioning reports from major US and China-based AI laboratories.</em></li>



<li>Hinton, G., Vinyals, O., &amp; Dean, J. (2015). <em>Distilling the Knowledge in a Neural Network</em>. NIPS Deep Learning and Representation Learning Workshop.</li>



<li>Open Source &amp; Enterprise API Agreements: <em>Standard Terms of Service (ToS) constraints prohibiting the deployment of model outputs for competitive training.</em></li>
</ul>



<p class="wp-block-paragraph"><em>Last update: March 2026 | Version: 1.</em>1</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Railway Signaling Relay Selection: Critical Differences Between Vital and Industrial Safety Relays</title>
		<link>https://muisik.com/en/railway-signaling-relay-selection-critical-differences-between-vital-and-industrial-safety-relays/</link>
		
		<dc:creator><![CDATA[Muhammet Işık]]></dc:creator>
		<pubDate>Fri, 09 Jan 2026 22:42:57 +0000</pubDate>
				<category><![CDATA[Technology and Systems]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[CENELEC]]></category>
		<category><![CDATA[Cost Engineering]]></category>
		<category><![CDATA[Railway Signalling]]></category>
		<category><![CDATA[Safety Critical Systems]]></category>
		<category><![CDATA[Safety Integrity Levels]]></category>
		<category><![CDATA[Safety Relays]]></category>
		<guid isPermaLink="false">https://muisik.com/?p=2019</guid>

					<description><![CDATA[Can high-security industrial relays be used in interlocking systems? Or are only component-level certified SIL 4 relays permitted? This question points to a widespread conceptual confusion in the sector. The answer is not simply yes or no: Utilization is subject to specific architectural conditions.]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph"><em>Gravity Never Fails: The Physical Foundations of SIL 4 Relay Technology</em></p>



<p class="wp-block-paragraph">Can high-security industrial relays be used in interlocking systems? Or are only component-level certified SIL 4 relays permitted? This question points to a widespread conceptual confusion in the sector. The answer is not simply yes or no:&nbsp;<strong>Utilization is subject to specific architectural conditions.</strong></p>





<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">Theoretical Background</h2>



<h3 class="wp-block-heading" id="the-two-worlds-of-safety-relays">The Two Worlds of Safety Relays</h3>



<p class="wp-block-paragraph">The selection of relays in railway safety depends on the design philosophy and certification approach. There are two primary categories:</p>


<div class="kb-table-container kb-table-container2019_3c3c86-7e wp-block-kadence-table"><table class="kb-table kb-table2019_3c3c86-7e">
<tr class="kb-table-row kb-table-row2019_d912eb-3e">
<th  scope="col" class="kb-table-data kb-table-data2019_f3c82d-a0">

<p class="wp-block-paragraph">Category</p>

</th>

<th  scope="col" class="kb-table-data kb-table-data2019_c5a5a4-af">

<p class="wp-block-paragraph">Principle</p>

</th>

<th  scope="col" class="kb-table-data kb-table-data2019_943afb-37">

<p class="wp-block-paragraph">Examples</p>

</th>

<th  scope="col" class="kb-table-data kb-table-data2019_d69b34-7c">

<p class="wp-block-paragraph">Standalone SIL 4</p>

</th>
</tr>

<tr class="kb-table-row kb-table-row2019_ec3a9a-75">
<td  class="kb-table-data kb-table-data2019_1cceaa-fd">

<p class="wp-block-paragraph"><strong>Vital Relays</strong></p>

</td>

<td  class="kb-table-data kb-table-data2019_7fbf83-4d">

<p class="wp-block-paragraph">Gravity + Carbon Contact</p>

</td>

<td  class="kb-table-data kb-table-data2019_fba5e6-21">

<p class="wp-block-paragraph">Mors Smitt N.S1, Clearsy RS4</p>

</td>

<td  class="kb-table-data kb-table-data2019_54108e-ec">

<p class="wp-block-paragraph"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Yes</p>

</td>
</tr>

<tr class="kb-table-row kb-table-row2019_086ce3-96">
<td  class="kb-table-data kb-table-data2019_9a06fe-7f">

<p class="wp-block-paragraph"><strong>Industrial Safety Relays</strong></p>

</td>

<td  class="kb-table-data kb-table-data2019_b37c77-8a">

<p class="wp-block-paragraph">Forcibly Guided (EN 61810-3)</p>

</td>

<td  class="kb-table-data kb-table-data2019_c93ef2-d2">

<p class="wp-block-paragraph">Finder 7S, Dold OA, Arteche FF</p>

</td>

<td  class="kb-table-data kb-table-data2019_616a72-e6">

<p class="wp-block-paragraph"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/274c.png" alt="❌" class="wp-smiley" style="height: 1em; max-height: 1em;" /> No (Can be part of a system)</p>

</td>
</tr>
</table></div>


<h3 class="wp-block-heading" id="vital-relays">Vital Relays</h3>



<p class="wp-block-paragraph">These relays represent the&nbsp;<strong>gold standard</strong>&nbsp;of railway signaling, rooted in a century of engineering heritage.</p>



<p class="wp-block-paragraph"><strong>Gravity Fail-Safe (e.g., Mors Smitt N.S1):</strong></p>



<ul class="wp-block-list">
<li>When the coil energy is removed, the opening of the contacts is entrusted not to a friction-prone spring force, but directly to <strong>gravity</strong>.</li>



<li>A spring can fatigue or snap, but <strong>gravity never disappears.</strong></li>



<li>Therefore, these relays must always be mounted in a <strong>specific vertical orientation</strong> defined by their design parameters.</li>
</ul>



<p class="wp-block-paragraph"><strong>Carbon-Silver Contact Technology (e.g., Clearsy RS4):</strong></p>



<ul class="wp-block-list">
<li>One of the contact tips is made of silver, and the mating tip is made of a carbon (graphite) alloy.</li>



<li>By its metallurgical nature, carbon <strong>does not weld</strong> to silver; this physically prevents the contacts from fusing.</li>



<li>Contact welding is rendered physically near-impossible.</li>
</ul>



<h3 class="wp-block-heading" id="industrial-safety-relays-forcibly-guided-contacts">Industrial Safety Relays: Forcibly Guided Contacts</h3>



<p class="wp-block-paragraph">Manufactured according to the EN 61810-3 (formerly EN 50205) standard, these relays pursue an entirely different safety strategy. Companies like Dold, Finder, and Arteche have established industry-standard products in this class.</p>



<p class="wp-block-paragraph"><strong>Mechanical Linkage Principle:</strong></p>



<ul class="wp-block-list">
<li>Normally Open (NO) and Normally Closed (NC) contacts are mechanically interlocked via a guiding rod (comb).</li>



<li>If an NO contact welds due to excessive current or a short circuit, the mechanical rod <strong>physically prevents</strong> the NC contact from closing and the system from transitioning to an unsafe state.</li>



<li>As mandated by the standard, a minimum functional gap of 0.5 mm is guaranteed between contacts.</li>
</ul>



<p class="wp-block-paragraph"><strong>The Critical Difference:</strong></p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph">These relays&nbsp;<strong>do not prevent</strong>&nbsp;the metallurgical occurrence of welding; they merely&nbsp;<strong>report</strong>&nbsp;the condition to the controller once it happens.</p>
</blockquote>



<div class="wp-block-kadence-column kadence-column2019_e98239-6e"><div class="kt-inside-inner-col">
<?xml version="1.0" encoding="UTF-8"?>
<!-- Do not edit this file with editors other than draw.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg" style="background: #ffffff; background-color: light-dark(#ffffff, var(--ge-dark-color, #121212));" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="0 0 878 889" content="&lt;mxfile host=&quot;app.diagrams.net&quot; agent=&quot;Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 OPR/125.0.0.0&quot; version=&quot;29.2.10&quot; scale=&quot;1&quot; border=&quot;0&quot;&gt;&#10;  &lt;diagram name=&quot;Sayfa -1&quot; id=&quot;M8vySKZvm3sJ8q3S-bVF&quot;&gt;&#10;    &lt;mxGraphModel dx=&quot;2034&quot; dy=&quot;1074&quot; grid=&quot;1&quot; gridSize=&quot;10&quot; guides=&quot;1&quot; tooltips=&quot;1&quot; connect=&quot;1&quot; arrows=&quot;1&quot; fold=&quot;1&quot; page=&quot;1&quot; pageScale=&quot;1&quot; pageWidth=&quot;827&quot; pageHeight=&quot;1169&quot; math=&quot;0&quot; shadow=&quot;0&quot;&gt;&#10;      &lt;root&gt;&#10;        &lt;mxCell id=&quot;0&quot; /&gt;&#10;        &lt;mxCell id=&quot;1&quot; parent=&quot;0&quot; /&gt;&#10;        &lt;mxCell id=&quot;x_0qguyWGDbKlDPHNRQg-1&quot; parent=&quot;1&quot; style=&quot;whiteSpace=wrap;strokeWidth=2;verticalAlign=top;&quot; value=&quot;&#x2699; INDUSTRIAL RELAY&quot; vertex=&quot;1&quot;&gt;&#10;          &lt;mxGeometry height=&quot;887&quot; width=&quot;525&quot; x=&quot;20&quot; y=&quot;20&quot; as=&quot;geometry&quot; /&gt;&#10;        &lt;/mxCell&gt;&#10;        &lt;mxCell id=&quot;x_0qguyWGDbKlDPHNRQg-2&quot; parent=&quot;x_0qguyWGDbKlDPHNRQg-1&quot; style=&quot;rounded=1;arcSize=20;strokeWidth=2&quot; value=&quot;&#x26a1; Coil De-energized&quot; vertex=&quot;1&quot;&gt;&#10;          &lt;mxGeometry height=&quot;54&quot; width=&quot;183&quot; x=&quot;172&quot; y=&quot;46&quot; as=&quot;geometry&quot; /&gt;&#10;        &lt;/mxCell&gt;&#10;        &lt;mxCell id=&quot;x_0qguyWGDbKlDPHNRQg-3&quot; parent=&quot;x_0qguyWGDbKlDPHNRQg-1&quot; style=&quot;rounded=1;arcSize=20;strokeWidth=2&quot; value=&quot;&#x1f300; Contact Pushed by SPRING Force&quot; vertex=&quot;1&quot;&gt;&#10;          &lt;mxGeometry height=&quot;78&quot; width=&quot;230&quot; x=&quot;148&quot; y=&quot;175&quot; as=&quot;geometry&quot; /&gt;&#10;        &lt;/mxCell&gt;&#10;        &lt;mxCell id=&quot;x_0qguyWGDbKlDPHNRQg-4&quot; parent=&quot;x_0qguyWGDbKlDPHNRQg-1&quot; style=&quot;rhombus;strokeWidth=2;whiteSpace=wrap;&quot; value=&quot;&#x26a0; Contact Welded?&quot; vertex=&quot;1&quot;&gt;&#10;          &lt;mxGeometry height=&quot;200&quot; width=&quot;200&quot; x=&quot;163&quot; y=&quot;328&quot; as=&quot;geometry&quot; /&gt;&#10;        &lt;/mxCell&gt;&#10;        &lt;mxCell id=&quot;x_0qguyWGDbKlDPHNRQg-5&quot; parent=&quot;x_0qguyWGDbKlDPHNRQg-1&quot; style=&quot;rounded=1;whiteSpace=wrap;arcSize=50;strokeWidth=2;&quot; value=&quot;&#x2705; Contact OPENS&amp;#xa;(Normal State)&quot; vertex=&quot;1&quot;&gt;&#10;          &lt;mxGeometry height=&quot;63&quot; width=&quot;164&quot; x=&quot;59&quot; y=&quot;634&quot; as=&quot;geometry&quot; /&gt;&#10;        &lt;/mxCell&gt;&#10;        &lt;mxCell id=&quot;x_0qguyWGDbKlDPHNRQg-6&quot; parent=&quot;x_0qguyWGDbKlDPHNRQg-1&quot; style=&quot;rounded=1;arcSize=20;strokeWidth=2&quot; value=&quot;&#x274c; NC Contact Stays OPEN&amp;#xa;(Mechanical Failure)&quot; vertex=&quot;1&quot;&gt;&#10;          &lt;mxGeometry height=&quot;78&quot; width=&quot;222&quot; x=&quot;274&quot; y=&quot;627&quot; as=&quot;geometry&quot; /&gt;&#10;        &lt;/mxCell&gt;&#10;        &lt;mxCell id=&quot;x_0qguyWGDbKlDPHNRQg-7&quot; parent=&quot;x_0qguyWGDbKlDPHNRQg-1&quot; style=&quot;rounded=1;arcSize=20;strokeWidth=2&quot; value=&quot;&#x1f6a8; PLC Detects and&amp;#xa;LOCKS the System&quot; vertex=&quot;1&quot;&gt;&#10;          &lt;mxGeometry height=&quot;78&quot; width=&quot;159&quot; x=&quot;305&quot; y=&quot;780&quot; as=&quot;geometry&quot; /&gt;&#10;        &lt;/mxCell&gt;&#10;        &lt;mxCell id=&quot;x_0qguyWGDbKlDPHNRQg-8&quot; edge=&quot;1&quot; parent=&quot;x_0qguyWGDbKlDPHNRQg-1&quot; source=&quot;x_0qguyWGDbKlDPHNRQg-2&quot; style=&quot;curved=1;startArrow=none;endArrow=block;exitX=0.5;exitY=0.99;entryX=0.5;entryY=-0.01;rounded=0;&quot; target=&quot;x_0qguyWGDbKlDPHNRQg-3&quot; value=&quot;&quot;&gt;&#10;          &lt;mxGeometry relative=&quot;1&quot; as=&quot;geometry&quot;&gt;&#10;            &lt;Array as=&quot;points&quot; /&gt;&#10;          &lt;/mxGeometry&gt;&#10;        &lt;/mxCell&gt;&#10;        &lt;mxCell id=&quot;x_0qguyWGDbKlDPHNRQg-9&quot; edge=&quot;1&quot; parent=&quot;x_0qguyWGDbKlDPHNRQg-1&quot; source=&quot;x_0qguyWGDbKlDPHNRQg-3&quot; style=&quot;curved=1;startArrow=none;endArrow=block;exitX=0.5;exitY=0.99;entryX=0.5;entryY=0;rounded=0;&quot; target=&quot;x_0qguyWGDbKlDPHNRQg-4&quot; value=&quot;&quot;&gt;&#10;          &lt;mxGeometry relative=&quot;1&quot; as=&quot;geometry&quot;&gt;&#10;            &lt;Array as=&quot;points&quot; /&gt;&#10;          &lt;/mxGeometry&gt;&#10;        &lt;/mxCell&gt;&#10;        &lt;mxCell id=&quot;x_0qguyWGDbKlDPHNRQg-10&quot; edge=&quot;1&quot; parent=&quot;x_0qguyWGDbKlDPHNRQg-1&quot; source=&quot;x_0qguyWGDbKlDPHNRQg-4&quot; style=&quot;curved=1;startArrow=none;endArrow=block;exitX=0.09;exitY=1;entryX=0.5;entryY=0;rounded=0;&quot; target=&quot;x_0qguyWGDbKlDPHNRQg-5&quot; value=&quot;NO&quot;&gt;&#10;          &lt;mxGeometry relative=&quot;1&quot; as=&quot;geometry&quot;&gt;&#10;            &lt;Array as=&quot;points&quot;&gt;&#10;              &lt;mxPoint x=&quot;142&quot; y=&quot;577&quot; /&gt;&#10;            &lt;/Array&gt;&#10;          &lt;/mxGeometry&gt;&#10;        &lt;/mxCell&gt;&#10;        &lt;mxCell id=&quot;x_0qguyWGDbKlDPHNRQg-11&quot; edge=&quot;1&quot; parent=&quot;x_0qguyWGDbKlDPHNRQg-1&quot; source=&quot;x_0qguyWGDbKlDPHNRQg-4&quot; style=&quot;curved=1;startArrow=none;endArrow=block;exitX=0.91;exitY=1;entryX=0.5;entryY=0;rounded=0;&quot; target=&quot;x_0qguyWGDbKlDPHNRQg-6&quot; value=&quot;YES!&quot;&gt;&#10;          &lt;mxGeometry relative=&quot;1&quot; as=&quot;geometry&quot;&gt;&#10;            &lt;Array as=&quot;points&quot;&gt;&#10;              &lt;mxPoint x=&quot;385&quot; y=&quot;577&quot; /&gt;&#10;            &lt;/Array&gt;&#10;          &lt;/mxGeometry&gt;&#10;        &lt;/mxCell&gt;&#10;        &lt;mxCell id=&quot;x_0qguyWGDbKlDPHNRQg-12&quot; edge=&quot;1&quot; parent=&quot;x_0qguyWGDbKlDPHNRQg-1&quot; source=&quot;x_0qguyWGDbKlDPHNRQg-6&quot; style=&quot;curved=1;startArrow=none;endArrow=block;strokeWidth=3;exitX=0.5;exitY=1;entryX=0.5;entryY=0;rounded=0;&quot; target=&quot;x_0qguyWGDbKlDPHNRQg-7&quot; value=&quot;&quot;&gt;&#10;          &lt;mxGeometry relative=&quot;1&quot; as=&quot;geometry&quot;&gt;&#10;            &lt;Array as=&quot;points&quot; /&gt;&#10;          &lt;/mxGeometry&gt;&#10;        &lt;/mxCell&gt;&#10;        &lt;mxCell id=&quot;x_0qguyWGDbKlDPHNRQg-13&quot; parent=&quot;1&quot; style=&quot;whiteSpace=wrap;strokeWidth=2;verticalAlign=top;&quot; value=&quot;&#x1f512; VITAL RELAY&quot; vertex=&quot;1&quot;&gt;&#10;          &lt;mxGeometry height=&quot;549&quot; width=&quot;300&quot; x=&quot;595&quot; y=&quot;189&quot; as=&quot;geometry&quot; /&gt;&#10;        &lt;/mxCell&gt;&#10;        &lt;mxCell id=&quot;x_0qguyWGDbKlDPHNRQg-14&quot; parent=&quot;x_0qguyWGDbKlDPHNRQg-13&quot; style=&quot;rounded=1;arcSize=20;strokeWidth=2&quot; value=&quot;&#x26a1; Coil De-energized&quot; vertex=&quot;1&quot;&gt;&#10;          &lt;mxGeometry height=&quot;54&quot; width=&quot;183&quot; x=&quot;67&quot; y=&quot;46&quot; as=&quot;geometry&quot; /&gt;&#10;        &lt;/mxCell&gt;&#10;        &lt;mxCell id=&quot;x_0qguyWGDbKlDPHNRQg-15&quot; parent=&quot;x_0qguyWGDbKlDPHNRQg-13&quot; style=&quot;rounded=1;arcSize=20;strokeWidth=2&quot; value=&quot;&#x2b07; Armature Drops by GRAVITY&quot; vertex=&quot;1&quot;&gt;&#10;          &lt;mxGeometry height=&quot;78&quot; width=&quot;230&quot; x=&quot;43&quot; y=&quot;175&quot; as=&quot;geometry&quot; /&gt;&#10;        &lt;/mxCell&gt;&#10;        &lt;mxCell id=&quot;x_0qguyWGDbKlDPHNRQg-16&quot; parent=&quot;x_0qguyWGDbKlDPHNRQg-13&quot; style=&quot;rounded=1;arcSize=20;strokeWidth=2&quot; value=&quot;&#x2705; Carbon-Silver Contact Opens&quot; vertex=&quot;1&quot;&gt;&#10;          &lt;mxGeometry height=&quot;78&quot; width=&quot;230&quot; x=&quot;43&quot; y=&quot;328&quot; as=&quot;geometry&quot; /&gt;&#10;        &lt;/mxCell&gt;&#10;        &lt;mxCell id=&quot;x_0qguyWGDbKlDPHNRQg-17&quot; parent=&quot;x_0qguyWGDbKlDPHNRQg-13&quot; style=&quot;rounded=1;whiteSpace=wrap;arcSize=50;strokeWidth=2;&quot; value=&quot;SAFE STATE&quot; vertex=&quot;1&quot;&gt;&#10;          &lt;mxGeometry height=&quot;39&quot; width=&quot;105&quot; x=&quot;106&quot; y=&quot;481&quot; as=&quot;geometry&quot; /&gt;&#10;        &lt;/mxCell&gt;&#10;        &lt;mxCell id=&quot;x_0qguyWGDbKlDPHNRQg-18&quot; edge=&quot;1&quot; parent=&quot;x_0qguyWGDbKlDPHNRQg-13&quot; source=&quot;x_0qguyWGDbKlDPHNRQg-14&quot; style=&quot;curved=1;startArrow=none;endArrow=block;strokeWidth=3;exitX=0.5;exitY=0.99;entryX=0.5;entryY=-0.01;rounded=0;&quot; target=&quot;x_0qguyWGDbKlDPHNRQg-15&quot; value=&quot;&quot;&gt;&#10;          &lt;mxGeometry relative=&quot;1&quot; as=&quot;geometry&quot;&gt;&#10;            &lt;Array as=&quot;points&quot; /&gt;&#10;          &lt;/mxGeometry&gt;&#10;        &lt;/mxCell&gt;&#10;        &lt;mxCell id=&quot;x_0qguyWGDbKlDPHNRQg-19&quot; edge=&quot;1&quot; parent=&quot;x_0qguyWGDbKlDPHNRQg-13&quot; source=&quot;x_0qguyWGDbKlDPHNRQg-15&quot; style=&quot;curved=1;startArrow=none;endArrow=block;strokeWidth=3;exitX=0.5;exitY=0.99;entryX=0.5;entryY=-0.01;rounded=0;&quot; target=&quot;x_0qguyWGDbKlDPHNRQg-16&quot; value=&quot;&quot;&gt;&#10;          &lt;mxGeometry relative=&quot;1&quot; as=&quot;geometry&quot;&gt;&#10;            &lt;Array as=&quot;points&quot; /&gt;&#10;          &lt;/mxGeometry&gt;&#10;        &lt;/mxCell&gt;&#10;        &lt;mxCell id=&quot;x_0qguyWGDbKlDPHNRQg-20&quot; edge=&quot;1&quot; parent=&quot;x_0qguyWGDbKlDPHNRQg-13&quot; source=&quot;x_0qguyWGDbKlDPHNRQg-16&quot; style=&quot;curved=1;startArrow=none;endArrow=block;strokeWidth=3;exitX=0.5;exitY=0.99;entryX=0.5;entryY=-0.01;rounded=0;&quot; target=&quot;x_0qguyWGDbKlDPHNRQg-17&quot; value=&quot;&quot;&gt;&#10;          &lt;mxGeometry relative=&quot;1&quot; as=&quot;geometry&quot;&gt;&#10;            &lt;Array as=&quot;points&quot; /&gt;&#10;          &lt;/mxGeometry&gt;&#10;        &lt;/mxCell&gt;&#10;      &lt;/root&gt;&#10;    &lt;/mxGraphModel&gt;&#10;  &lt;/diagram&gt;&#10;&lt;/mxfile&gt;&#10;"><defs/><rect fill="#ffffff" width="100%" height="100%" x="0" y="0" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212));"/><g><g data-cell-id="0"><g data-cell-id="1"><g data-cell-id="x_0qguyWGDbKlDPHNRQg-1"><g transform="translate(0.5,0.5)"><rect x="1" y="1" width="525" height="887" fill="#ffffff" stroke="#000000" stroke-width="2" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"/></g><g><g><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-start; justify-content: unsafe center; width: 523px; height: 1px; padding-top: 8px; margin-left: 2px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2699.png" alt="⚙" class="wp-smiley" style="height: 1em; max-height: 1em;" /> INDUSTRIAL RELAY</div></div></div></foreignObject><image x="2" y="8.5" width="523" height="17" xlink:href="data:image/png;base64,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"/></switch></g></g><g data-cell-id="x_0qguyWGDbKlDPHNRQg-2"><g transform="translate(0.5,0.5)"><rect x="173" y="47" width="183" height="54" rx="10.8" ry="10.8" fill="#ffffff" stroke="#000000" stroke-width="2" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"/></g><g><g fill="#000000" font-family="Helvetica" text-anchor="middle" font-size="12px" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"><text x="264.5" y="79"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/26a1.png" alt="⚡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Coil De-energized</text></g></g></g><g data-cell-id="x_0qguyWGDbKlDPHNRQg-3"><g transform="translate(0.5,0.5)"><rect x="149" y="176" width="230" height="78" rx="15.6" ry="15.6" fill="#ffffff" stroke="#000000" stroke-width="2" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"/></g><g><g fill="#000000" font-family="Helvetica" text-anchor="middle" font-size="12px" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"><text x="264" y="220"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f300.png" alt="🌀" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Contact Pushed by SPRING Force</text></g></g></g><g data-cell-id="x_0qguyWGDbKlDPHNRQg-4"><g transform="translate(0.5,0.5)"><path d="M 264 329 L 364 429 L 264 529 L 164 429 Z" fill="#ffffff" stroke="#000000" stroke-width="2" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"/></g><g><g><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 198px; height: 1px; padding-top: 429px; margin-left: 165px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/26a0.png" alt="⚠" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Contact Welded?</div></div></div></foreignObject><image x="165" y="422.5" width="198" height="17" xlink:href="data:image/png;base64,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"/></switch></g></g></g><g data-cell-id="x_0qguyWGDbKlDPHNRQg-5"><g transform="translate(0.5,0.5)"><rect x="60" y="635" width="164" height="63" rx="31.5" ry="31.5" fill="#ffffff" stroke="#000000" stroke-width="2" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"/></g><g><g><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 162px; height: 1px; padding-top: 667px; margin-left: 61px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Contact OPENS<br />(Normal State)</div></div></div></foreignObject><image x="61" y="653" width="162" height="32" xlink:href="data:image/png;base64,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"/></switch></g></g></g><g data-cell-id="x_0qguyWGDbKlDPHNRQg-6"><g transform="translate(0.5,0.5)"><rect x="275" y="628" width="222" height="78" rx="15.6" ry="15.6" fill="#ffffff" stroke="#000000" stroke-width="2" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"/></g><g><g fill="#000000" font-family="Helvetica" text-anchor="middle" font-size="12px" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"><text x="386" y="665"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/274c.png" alt="❌" class="wp-smiley" style="height: 1em; max-height: 1em;" /> NC Contact Stays OPEN</text><text x="386" y="679">(Mechanical Failure)</text></g></g></g><g data-cell-id="x_0qguyWGDbKlDPHNRQg-7"><g transform="translate(0.5,0.5)"><rect x="306" y="781" width="159" height="78" rx="15.6" ry="15.6" fill="#ffffff" stroke="#000000" stroke-width="2" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"/></g><g><g fill="#000000" font-family="Helvetica" text-anchor="middle" font-size="12px" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"><text x="385.5" y="818"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f6a8.png" alt="🚨" class="wp-smiley" style="height: 1em; max-height: 1em;" /> PLC Detects and</text><text x="385.5" y="832">LOCKS the System</text></g></g></g><g data-cell-id="x_0qguyWGDbKlDPHNRQg-8"><g transform="translate(0.5,0.5)"><path d="M 264.5 101 Q 264.5 101 264.05 167.88" fill="none" stroke="#000000" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"/><path d="M 264.01 174.88 L 260.55 167.86 L 267.55 167.91 Z" fill="#000000" stroke="#000000" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"/></g></g><g data-cell-id="x_0qguyWGDbKlDPHNRQg-9"><g transform="translate(0.5,0.5)"><path d="M 264 254 Q 264 254 264 320.88" fill="none" stroke="#000000" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"/><path d="M 264 327.88 L 260.5 320.88 L 267.5 320.88 Z" fill="#000000" stroke="#000000" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"/></g></g><g data-cell-id="x_0qguyWGDbKlDPHNRQg-10"><g transform="translate(0.5,0.5)"><path d="M 218.95 483.95 Q 143 578 142.14 626.88" fill="none" stroke="#000000" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"/><path d="M 142.02 633.88 L 138.64 626.82 L 145.64 626.94 Z" fill="#000000" stroke="#000000" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"/></g><g><g fill="#000000" font-family="Helvetica" text-anchor="middle" font-size="11px" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"><rect fill="#ffffff" stroke="none" x="154" y="547" width="19" height="14" stroke-width="0" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212));"/><text x="163.3" y="557.36">NO</text></g></g></g><g data-cell-id="x_0qguyWGDbKlDPHNRQg-11"><g transform="translate(0.5,0.5)"><path d="M 309.05 483.95 Q 386 578 386 619.88" fill="none" stroke="#000000" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"/><path d="M 386 626.88 L 382.5 619.88 L 389.5 619.88 Z" fill="#000000" stroke="#000000" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"/></g><g><g fill="#000000" font-family="Helvetica" text-anchor="middle" font-size="11px" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"><rect fill="#ffffff" stroke="none" x="350" y="544" width="27" height="14" stroke-width="0" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212));"/><text x="363.33" y="554.79">YES!</text></g></g></g><g data-cell-id="x_0qguyWGDbKlDPHNRQg-12"><g><path d="M 386 706 Q 386 706 385.58 768.65" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"/><path d="M 385.52 777.65 L 381.08 768.62 L 390.08 768.68 Z" fill="#000000" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"/></g></g></g><g data-cell-id="x_0qguyWGDbKlDPHNRQg-13"><g transform="translate(0.5,0.5)"><rect x="576" y="170" width="300" height="549" fill="#ffffff" stroke="#000000" stroke-width="2" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"/></g><g><g><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-start; justify-content: unsafe center; width: 298px; height: 1px; padding-top: 177px; margin-left: 577px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f512.png" alt="🔒" class="wp-smiley" style="height: 1em; max-height: 1em;" /> VITAL RELAY</div></div></div></foreignObject><image x="577" y="177.5" width="298" height="17" xlink:href="data:image/png;base64,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"/></switch></g></g><g data-cell-id="x_0qguyWGDbKlDPHNRQg-14"><g transform="translate(0.5,0.5)"><rect x="643" y="216" width="183" height="54" rx="10.8" ry="10.8" fill="#ffffff" stroke="#000000" stroke-width="2" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"/></g><g><g fill="#000000" font-family="Helvetica" text-anchor="middle" font-size="12px" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"><text x="734.5" y="248"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/26a1.png" alt="⚡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Coil De-energized</text></g></g></g><g data-cell-id="x_0qguyWGDbKlDPHNRQg-15"><g transform="translate(0.5,0.5)"><rect x="619" y="345" width="230" height="78" rx="15.6" ry="15.6" fill="#ffffff" stroke="#000000" stroke-width="2" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"/></g><g><g fill="#000000" font-family="Helvetica" text-anchor="middle" font-size="12px" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"><text x="734" y="389"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2b07.png" alt="⬇" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Armature Drops by GRAVITY</text></g></g></g><g data-cell-id="x_0qguyWGDbKlDPHNRQg-16"><g transform="translate(0.5,0.5)"><rect x="619" y="498" width="230" height="78" rx="15.6" ry="15.6" fill="#ffffff" stroke="#000000" stroke-width="2" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"/></g><g><g fill="#000000" font-family="Helvetica" text-anchor="middle" font-size="12px" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"><text x="734" y="542"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Carbon-Silver Contact Opens</text></g></g></g><g data-cell-id="x_0qguyWGDbKlDPHNRQg-17"><g transform="translate(0.5,0.5)"><rect x="682" y="651" width="105" height="39" rx="19.5" ry="19.5" fill="#ffffff" stroke="#000000" stroke-width="2" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"/></g><g><g><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 103px; height: 1px; padding-top: 671px; margin-left: 683px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">SAFE STATE</div></div></div></foreignObject><image x="683" y="664.5" width="103" height="17" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAZwAAABECAYAAAC1W4PPAAAQAElEQVR4AeydB6x8RRXGV0TFLnZU7ERFjQV7b6BGsSvYWyyJNSpKjCAixthFUWwxKhrsvYE9drH3XlEUrNg73+++/+yenbf79pbZ3bu738s5b8qdcu93Z+fMnDkzd7eB/4yAETACRsAILAABC5wFgOwqjIARMAJGYDCwwHErMALTEHC8ETACRRGwwCkKpwszAkbACBiBaQhY4ExDxvFGwAgYASMwDYFW8RY4rWBzJiNgBIyAEWiKgAVOU8Sc3ggYASNgBFohYIHTCjZnWjUEfL9GwAgsHwELnOW/A9+BETACRmAjELDAmf2az6IktxAfLf6u+F/i/wf+i/zEv1zugeLziudF11fB/xTH+k9W+DLirrSfCvirOJZdyv8zlbuXOKdzKeLj4lL1TCpnWt2qtjhdQCXeR/xW8a/E+f2cqrjPiZ8mvpaYtiWnFtG28vLmFead8G5m3djuSnC8OL+PIxRXl2gXvKO8jHmEad+083hvhImfR32pzNfGCvvnX9wdWeBMx/o8uvQcMY3xI3IfLb6COO8kzqk44h8q993iP4rfLiZOTjE6k0q6t/is4kgXV+B2YtPyENhXVZ8o/q34OPFdxXSkcsboQgpdV3y4+CTxn8RPEdPW5KwcXVF3fBtxTgcp4iJikxEYQ8ACZwyOKkDHfnv5fiF+gjgXMIqaSXdWCmY9dCxnl78EXViF3FI8iRhVz3NmNalOxw0GvFsGJd8SGPuLmxL5n65MPxKTn7Yn78rQzXSn5xPnhCC6eR7psBGwwBlvA/zg76+od4lLjDpRnbxYZdGxyOlE/ID5IadCmK4n/3XkQd0mZ+2pLw/IzPYVuhkGJXI60QWV+4Pie4hpg3J6TwxwGOikG43tkbgH6F+Jdq9iTOuCgAXO+Ju8toIvEOe4nKa4w8RXFe8pplNIfG6Fiec66RQcowcr9Fgx6eW0ot2V627iRL+X51hxIspGUJIuxZVw76BCKLsrX0rlnCKuQ69Toq71xfxN6lbVtYjyH6GUscNVsCJUZfeV79JiOlzSwrQpBAszGZ7xf7oeieuvVgSDBznb6D2KoZw6fDGl/bk40qEK1MlLGmYurE0qy1SizbP+kRKwbvXtFJDLAOnqcmcR7YJ3RL11GOximZ9QgN9gnbwMEr6k9LOoVLtP98Rvc1adG3GdRr4RD1rjIekcEBq5iuBI5eUHcZTcb4pZo5EzJH6YxHMdvT3CJe9M0NNfc5ijuYeZTVSn/VhFvFP8N3GiG8uzt9g0fwRYszkkq4Z2wXoGazSv1zUWwv8hNxEzgN8p8GExHRDrOaz1KTikc8j3LHGdBXslWxrRkR6s2uMAh/XLLyguEWuNt04BuwtCoOfVWOCMXhCjsQNGwcqHEMHi5u9VaPa//yrJi8TMauQMiY7kgQrxQ5XTmBhxRkGIgPu8SmE0LaciGw9UMCzk391VC7MVORVhucio+ASFECxyZhKzVGZIb8tS3kThG4n7TPl6IgOf7+iG3yGOZOOBiIb9Pi06tAHWQBiVpSgW/Y9RoG4HoqQVkf5N8r1XHAlDBFQdMa6OP9eVk4dR8unyfEAciQ6M9DHO/rIIoJbJBcIrVcWnxE2JgcxTlQnrNjkVMSiho8atInr4D3UZs+50a6jSmHWjrmJml+JJQ9oUtrvhCHiGM2oAVxt5Kx+WR6hAqkDDf3Qkb8jyMCpsI3ByXTkj4y/vKhvBw+hyV3CA/h/BmcI9d1fy9jAm2Se7888qzEBDTmP6nnLwHuUM6fLy9VWthhotrifqVgc8/x/kYe/Rx+RGsvFARGPD/RY40xsAGyxRkU1PsfOVr+kywoEfIibWLI7uobgmxCg315WzcfAnuwphZPnJXX4c0rM+QKdA2LwYBBhgtK3pP8rIRks5A9oIbYW1nzjb5lpfmFlLXE9E0LJ+w/3hZ3aPSxhmhoO6Gr95wxGwwBk1gH+PvJWPRX5mJVWgxT902uw8P7/yXlJ8OXEUDgrOJGZEqOJiQtRodEjE0dHlqjvWofIROGnNZRDAIAQhEUvjJAqEfYxr4ueUCvLzvmkrWLK1nV03qbdNWjYZx/VEZmjfCAV9RX7i5FSE4Lxn5fO/RgisY2ILnNFbzVUBjOSYLdARjFIt1oflGRZyqVZmTJx6kMK4hInHDyPg4giUOHM5BBAEdKqxRE6AwKQ+xq2jn/VBNjXHZ/uQAr8RJ8JPXArjIkB98gBIbDhb4IwawGfk/aU4EiaqWJ0xU4nxi/CjfmM/R6wLofiDGCE/YeLlHZKNB4ZQFPcwu2HPSSyYET+dLIKnzckUsaw++xGqrBOmewSLN6dAcInjWopi8IZqLYXtbigCFjijF/9TeV8izumRisCKiA4Fc1hGeYqaO7FwfIOsFjq6+EPmMmHi8SemU1is8UCqeTNc1Jq5ehRjAvbfcD7aywTD9cTrJHyY6d9Jz4QrpyKs0qI6rYrUP+K4Ju+QbDwwhGJzPRY4o3fPQudLFeSIETnb6FaKYeTGBj/UBq9RmBN85zX7yXXlmJvmnZxuoSL25MTZGZ0C6kAbD1TwFP+HUHmcSmUgImeM2ED8MMVgucX+HPZMPUNhBgHMWuVdSWJ9KV9PZN8NWOQPRFz+O2KGY+OBHKkNC1vgjL9wfiiYfCJMxq+MhzAmoEPHOodOh9MGmGWUmgExi8p15RgHYHY6fidbIWZnzMC2Qlv/2fWOKmMr1O4/z4cgbstPalHt/ZSnbX15vnkeC/9F3SebNNmvJe9UurKuPFnMoAAjD94Vn7pYtRlQvp7IwOt9eq5pxFE80WQf4wFUjgyGpuXpS3zXdh/bIYPSvjzX0u/DAmf7K+BzBA9SNAvvszoTJauIzYAcSZ9mQBzxwQzlzNXV5v9yXTkNGIGDO6k04nNzVNYVOKFgUnrHlUEAS0SsGZ+o4hAmcmYSRiB86oIZENaGCMXSn7KYeRMNEzAzy9cTEaCccj2tqNxkn3T8phis4TdvIAIWOJNfOh34R3XpKmJGosx4crNpXZpKCAwEBOahN52aavIFRoC5rpyOjRH15BxbsVwn3VZo67+NB7ZwmOd/BA2fKOBsNE57Zp9U3fr4/TGjY2DDuWoXrZtxwekmrSeiTuPZp90K10gTrzPjRrUW4+zfIARo8Bv0uI0flY2fjOQ4Bw3dPD88jqNnBsN+jFkFsveGTX2MgOvOdjhlGIETy+agTlR3MS73c510MZ51g8bGA7EA+2sjwMz4LUoN3rSVG8qPhSNrb/LOJFSoLLaTf2biBSdAzcyMOVX7a3lyFa6ithFpSBsv2HggorFhfguc+i8c4YMK4XnKwonA6KQRQA9XeJYAwrz68UrH7EXOjkTZHMSZErHwzGwphXdySUf6lIb6WGtqazzAgZSU0ZZ57nQvdV2On29bX56PZ69bb8l0qMows3+MCmUAgQDivT5b4Z0EEAeCvl9pGCjI6QWxnsh6YLwZBlH55w/i9eQnDWlTGJcZTt+NB7q2+9gOWcviuc1CwAJHILSkJIDYJU5ngp6bQx1z65xUPIc0zupIKCPXlbPJEH14Kmcnl3Skj2noLFBlxDj7F4sAAohBCUYUCCBmC8yaGcDkd8K15yqSjl7O0gn1cN5u+UAh5vizbo40pI3pGKitivFAvO9dfjtdELDA6YLeeF7WeD6tqNuKOQgUvby8Q+ITBXwrZ6fZBjOmfO8NwgyLINaVZjHpSD+sVB46MFQi8pp6ggDWkKwLYizApyxoO/HWsAijHcW4ZfgZqaPexY31H6/ArLaYrpNWyceIMhG8Y5EOrD8CFjjzecdfV7HMLDgFQN4hYTXGWVnDiMyDYEBAZNGdg9xLX0bMnR9mjQpglsxXPjlrLF8TpC3sNDhZBAwIBYRD6bpQGecDo9J1uLweImCBMxjQwbPhE/XGyYPBgE7gLnK7Err6w7NCOE/qsllcCiIQEAwpXMJNZaAS6eNidLq/VXFZe+BTAqxNnKqb5h1fQm5XQu2ESX0s50oK0DblLI0QCgiHedyAjQfmgWrPy7TAGQwYRWK6jCDgx7Wb3tl+4hKUPlGQykI1wQJyCkcXgYBgiHHp0wYcWd+ET4uFyE+9LKDzrAqaWiLAoj4nQ++t/JhBs/ueWYCCnYi1jnxxne/hLPNoHNopQiE+GLMwTrRo0hZT2lxtuArGA/HZ7S+AAJ1rgWJWughOCWD3d3wITFr5wce4Nv4/KxP7EeTsSAgEjg3BTQlZj2EnOyq4psxH2/I1JGZPNh5I6LZz6WwZBKTcCHDaSgp3cfNBQpeySuTFpJ8ZTizrWAUQtk3bI+k5CkjZh7R844HhrdizKAQscAYDLIhOygBn0ZYZRxbdOMjoFzVayojwyfclcI10ua6czw7kQoO0dZiz3tgDEdOinmFdIMbZ3wwBjhbK1+WwKiyxez6fVaO2YzDU7A7Lpaat0GZSiczC3qgAxgByGhPtOX5GgwJo87R9/OYNQMACZ+slnyAn7l8Bl8MUx7qKnFbEbIUfLaPgVABf6oRTOLlYpqHOS2FczmbjR46/DWMdFJ+JMjhuZ0885lYIYF2Wm71zVhqWZrzvVoUqEwLrjnIjYd7ODDnGLcpPG6GtxPo4/ZmNqTGuiR9BfWKWgTZP28+iHVxXBOhY1/XZmjwXx8KwcBvzMMvBgogPmsX4un4MDx6VJWYnOicCxGh05YySYxyL0dnJ0PFyLf9XlSr/Tg6j6FxNomSmBgjwCYJTsvRHKcz5aHVPk1DyIbFOQ34EV4pkoMCAIYUX7dJGaCuxXo6pQeDGuCZ+Bk+cG5fPkGj7/AaalOW0K4qABc7Wi2NB85nysm4iZ0gIDTbsMfqs25nw4zlUJWB1FPGlk6Kz0qUxmqQr58QA1DdjCRsGUN8dl+VhFG7jgQyUhsEfKj2nTcgZEu/5hQpxHhp7a+StRVi4MZN9SJaawQ+DoCx6IUHayKT1xJ1Ohq57YxwTxUwpprfxQERjzf38UNb8EWs/HioMzjzLMyAQOKMMgcFRLViSRd02P1C+iYNqgA9v8QlihFfEFuseZjt0Vnn5qN1ieYwAqQ83T9s0zPEqLHTHfDYeiGi082NGj3DJc3MkCututCW+ibOPEuwhTsRsBjUSn7FgjQ0LLvKk67iong6Rh0GQnIUTayqsrcSKaUeT2m5MU8ePwUUuuIoYD9Sp3GmWj0DsFJd/N8u/g1fpFjicU842wgwWgcQojR8OAgFGmKAm45QBOhlmOHlm8k3qoCbpyplR5UYMeXl1w1jfIbxieoQbQi7G9cnP6cngWpIxOS5hdZhwYvbIJyzy9Zx0nf06DD6+rwjSpmdBVcZeL2a/fNBPl8eIdnQvxaBSlbMUYuCEUIyVM1PGuCbGtfUzo8s1CQg4BF3bMkvnK/k9nPTuOdao9H2uXHkWOOOvjMbxfEUdIObHL6cTna7cB4spk7LlHaNJunI6sS668lgBdWJZhP48xh+kQLSeU9DUEAHeESpXzshrmHVicgYZmFgvS5XGTTFYgXMhMgAAAzBJREFUYk0Ff2JmyAyyUrirywwQi7VYDgIuN1KI1+1fEwQscLa/SDpp1B2MuDj7rM3+CEa1nAzMnoX8w2iDwVadqOLo+HG3YgYDRn6MAAcF/7AsyvXmrDNco2Adm1oU7/lIPTybhjEwYbarYCPihAvaAWb4zIgaZS6ceF+Vh7GMnCExQ2amPIzo6GHwM6mNs26EwOtYvLP3GQELnOlvh++bHK3Le4n5ITIlZjGXEV/esaBv52NrfP+ErxpiTk16ZjjKPpEQaPtnVxhJ0gFl0Z2CjMRzYwWEnI0HOsE6lhlTd0yj+fIr75QPsvEuJw1WUMdyjfaB4GedBxUbRyqNFbqEwIGqk0Nm5VTE4AsDFtwqotA/rCeZ6cTibDwQ0VhTvwXO7BdLR8CXNJmxoGvGsgiLNTrtxCx8souf75/wpVAE0KyS6aQoK5WBy4I+o+ZZeZteP0YZKD8yB0Yy2tSlipgF0WHGNPP+lgcbGznQNNY5Dz91UFf1oHP8xzoHZ62xZseXYtlfkz8PZvZcoz0xoyndmfN4GLjwKetYNwYvXNuJj9DFmIf+ARWvoosSG5M5Ky7WdTbVwGe35exIDJRivq7vdlK7j+WX8tfBf8cHX4eLNKh1eA4/gxEwAkbACPQcAQucnr8g354RMAJGYF0QsMDp+Cad3QgYASNgBOohYIFTDyenMgJGwAgYgY4IWOB0BNDZjYARmIaA443AOAIWOON4OGQEjIARMAJzQsACZ07AulgjYASMgBEYR8ACZ4SHfUbACBgBIzBHBCxw5giuizYCRsAIGIERAhY4IyzsMwJGYBoCjjcCBRCwwCkAooswAkbACBiB2QhY4MzGyCmMgBEwAkagAAJrKnAKIOMijIARMAJGoCgCFjhF4XRhRsAIGAEjMA0BC5xpyDjeCKwpAn4sI7AsBCxwloW86zUCRsAIbBgCFjgb9sL9uEbACBiBZSHQf4GzLGRcrxEwAkbACBRFwAKnKJwuzAgYASNgBKYhYIEzDRnHG4H+I+A7NAIrhYAFzkq9Lt+sETACRmB1EbDAWd135zs3AkbACKwUAgsVOCuFjG/WCBgBI2AEiiJwBgAAAP//UTQgvAAAAAZJREFUAwB9q5C2qVk9DQAAAABJRU5ErkJggg=="/></switch></g></g></g><g data-cell-id="x_0qguyWGDbKlDPHNRQg-18"><g><path d="M 734.5 270 Q 734.5 270 734.08 332.65" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"/><path d="M 734.02 341.65 L 729.58 332.62 L 738.58 332.68 Z" fill="#000000" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"/></g></g><g data-cell-id="x_0qguyWGDbKlDPHNRQg-19"><g><path d="M 734 423 Q 734 423 734 485.65" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"/><path d="M 734 494.65 L 729.5 485.65 L 738.5 485.65 Z" fill="#000000" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"/></g></g><g data-cell-id="x_0qguyWGDbKlDPHNRQg-20"><g><path d="M 734 576 Q 734 576 734.42 638.65" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"/><path d="M 734.48 647.65 L 729.92 638.68 L 738.92 638.62 Z" fill="#000000" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"/></g></g></g></g></g></g></svg>
</div></div>



<h2 class="wp-block-heading" id="research-details-root-cause-analysis">Research Details: Root Cause Analysis</h2>



<h3 class="wp-block-heading" id="field-scenario-relay-selection-in-interlocking-panels">Field Scenario: Relay Selection in Interlocking Panels</h3>



<p class="wp-block-paragraph">An EPC (Engineering, Procurement, and Construction) contractor is selecting relays for an electronic interlocking project. There are two options on the table:</p>


<div class="kb-table-container kb-table-container2019_49ea58-97 wp-block-kadence-table"><table class="kb-table kb-table2019_49ea58-97">
<tr class="kb-table-row kb-table-row2019_479b64-f7">
<th  scope="col" class="kb-table-data kb-table-data2019_75f60d-72">

<p class="wp-block-paragraph">Option</p>

</th>

<th  scope="col" class="kb-table-data kb-table-data2019_661086-ef">

<p class="wp-block-paragraph">Product</p>

</th>

<th  scope="col" class="kb-table-data kb-table-data2019_90fc5d-12">

<p class="wp-block-paragraph">Unit Cost</p>

</th>

<th  scope="col" class="kb-table-data kb-table-data2019_7c43ee-3a">

<p class="wp-block-paragraph">Requirement</p>

</th>
</tr>

<tr class="kb-table-row kb-table-row2019_bd30d2-39">
<td  class="kb-table-data kb-table-data2019_b2e32e-52">

<p class="wp-block-paragraph">A</p>

</td>

<td  class="kb-table-data kb-table-data2019_dfe5f7-e6">

<p class="wp-block-paragraph">Clearsy RS4 (Vital)</p>

</td>

<td  class="kb-table-data kb-table-data2019_2b0c57-03">

<p class="wp-block-paragraph">~€500</p>

</td>

<td  class="kb-table-data kb-table-data2019_b9fd11-ef">

<p class="wp-block-paragraph">Standalone SIL 4, no feedback wiring needed</p>

</td>
</tr>

<tr class="kb-table-row kb-table-row2019_fdb08a-05">
<td  class="kb-table-data kb-table-data2019_20f9d3-6d">

<p class="wp-block-paragraph">B</p>

</td>

<td  class="kb-table-data kb-table-data2019_24bd23-57">

<p class="wp-block-paragraph">Finder 7S (Industrial)</p>

</td>

<td  class="kb-table-data kb-table-data2019_775bb5-90">

<p class="wp-block-paragraph">~€50</p>

</td>

<td  class="kb-table-data kb-table-data2019_bbf823-d2">

<p class="wp-block-paragraph">Requires PLC monitoring + redundant architecture</p>

</td>
</tr>
</table></div>


<p class="wp-block-paragraph"><strong>Cost Discrepancy:</strong>&nbsp;The per-unit cost difference in the field is approximately tenfold.&nbsp;<strong>The Critical Question:</strong>&nbsp;Can Option B be utilized in the design?</p>



<h3 class="wp-block-heading" id="why-arent-industrial-relays-sil-4-standalone">Why Aren&#8217;t Industrial Relays SIL 4 Standalone?</h3>


<div class="kb-table-container kb-table-container2019_b212ff-e4 wp-block-kadence-table"><table class="kb-table kb-table2019_b212ff-e4">
<tr class="kb-table-row kb-table-row2019_42b10f-98">
<th  scope="col" class="kb-table-data kb-table-data2019_0c230b-3e">

<p class="wp-block-paragraph">Parameter</p>

</th>

<th  scope="col" class="kb-table-data kb-table-data2019_9f6587-c6">

<p class="wp-block-paragraph">Vital Relay</p>

</th>

<th  scope="col" class="kb-table-data kb-table-data2019_ef5df8-26">

<p class="wp-block-paragraph">Industrial Relay</p>

</th>
</tr>

<tr class="kb-table-row kb-table-row2019_ec4c05-07">
<td  class="kb-table-data kb-table-data2019_29b347-43">

<p class="wp-block-paragraph"><strong>Weld Prevention</strong></p>

</td>

<td  class="kb-table-data kb-table-data2019_7d1491-fb">

<p class="wp-block-paragraph">Hardware / Physical Mechanism</p>

</td>

<td  class="kb-table-data kb-table-data2019_bb7340-37">

<p class="wp-block-paragraph">None (Relies on spring return)</p>

</td>
</tr>

<tr class="kb-table-row kb-table-row2019_33d2a3-89">
<td  class="kb-table-data kb-table-data2019_42824c-de">

<p class="wp-block-paragraph"><strong>Fault Detection</strong></p>

</td>

<td  class="kb-table-data kb-table-data2019_35fe63-57">

<p class="wp-block-paragraph">Inherently Independent</p>

</td>

<td  class="kb-table-data kb-table-data2019_a2eca7-96">

<p class="wp-block-paragraph">External Control (PLC readback)</p>

</td>
</tr>

<tr class="kb-table-row kb-table-row2019_d7205b-31">
<td  class="kb-table-data kb-table-data2019_e62626-92">

<p class="wp-block-paragraph"><strong>Mounting Orientation</strong></p>

</td>

<td  class="kb-table-data kb-table-data2019_696a0f-3d">

<p class="wp-block-paragraph">strictly vertical (Gravity constraint)</p>

</td>

<td  class="kb-table-data kb-table-data2019_b317f8-08">

<p class="wp-block-paragraph">Omnidirectional</p>

</td>
</tr>

<tr class="kb-table-row kb-table-row2019_765898-bd">
<td  class="kb-table-data kb-table-data2019_d2ae15-17">

<p class="wp-block-paragraph"><strong>Diagnostic Coverage</strong></p>

</td>

<td  class="kb-table-data kb-table-data2019_73d160-4f">

<p class="wp-block-paragraph">Embedded within the design</p>

</td>

<td  class="kb-table-data kb-table-data2019_0679ac-bc">

<p class="wp-block-paragraph">Dependent on system architecture and the PLC</p>

</td>
</tr>
</table></div>


<p class="wp-block-paragraph"><strong>Deduction:</strong>&nbsp;Industrial safety relays do not possess a SIL rating on their own. However, within a&nbsp;<strong>redundant architecture boasting a 99% diagnostic coverage rate</strong>&nbsp;(employing 1oo2 redundancy alongside the readback process), they can be utilized as an integral component of a CENELEC SIL 4 compliant system.</p>



<h2 class="wp-block-heading" id="architectural-solution-and-operational-logic">Architectural Solution and Operational Logic</h2>



<p class="wp-block-paragraph">There are two distinct safety architectures in the market. One is predicated on purchasing safety, while the other revolves around constructing it holistically.</p>



<h3 class="wp-block-heading" id="approach-a-component-level-architecture">Approach A: Component-Level Architecture</h3>



<p class="wp-block-paragraph"><strong>Representative:</strong>&nbsp;Clearsy RS4 Series</p>



<p class="wp-block-paragraph">This approach positions the product itself as a certified black box. The relay is a sealed unit designed according to SIL 4 requirements during the hardware design and manufacturing phases, possessing internal redundancy and inherent fail-safe capabilities.</p>



<ul class="wp-block-list">
<li><strong>Operational Principle:</strong> The integrator drives the relay using standard industrial relay logic. The product&#8217;s safety case documentation is securely provided directly by the manufacturer.</li>



<li><strong>Wiring:</strong> Only the driving coil and transmission contact terminals are connected. It does absolutely not require an external control cable or specialized monitoring software on the safety PLC side.</li>



<li><strong>Internal Mechanism:</strong> The configuration of the mechanism and gravity within the relay inherently eliminates the risk of contact welding.</li>
</ul>



<p class="wp-block-paragraph"><strong>Commercial Equation:</strong></p>



<ul class="wp-block-list">
<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Plug-and-Play:</strong> The engineering burden and Independent Safety Assessor (ISA) approval process for the integrator are radically minimized.</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/274c.png" alt="❌" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Cost:</strong> The standalone unit cost is exceedingly high (~€500).</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/274c.png" alt="❌" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Supply Chain:</strong> Creates total dependency on a single or highly restricted supplier base (Monopoly).</li>
</ul>



<h3 class="wp-block-heading" id="approach-b-system-level-architecture">Approach B: System-Level Architecture</h3>



<p class="wp-block-paragraph"><strong>Representatives:</strong>&nbsp;Arteche, Finder, Dold (Forcibly Guided Relays)</p>



<p class="wp-block-paragraph">This approach aims to achieve the firm SIL 4 target by combining standard safety relays through an intelligent&nbsp;<strong>system architecture</strong>. Safety is not strictly embedded in the off-the-shelf product; it is meticulously concealed within the entirety of the designed circuit.</p>



<ul class="wp-block-list">
<li><strong>Operational Principle:</strong> Instead of using a single relay, at least two relays with forcibly guided contacts are utilized, electrically wired in series (<strong>1oo2 Architecture</strong>).</li>



<li><strong>Wiring and Monitoring:</strong>
<ul class="wp-block-list">
<li><strong>Series Safety:</strong> The NO contacts of the dual relay set are wired in series to the field load. Even if one relay effectively welds, the other interrupts the circuit, mitigating the fault efficiently.</li>



<li><strong>Readback Process:</strong> The closed (NC) contacts of the relays are carefully wired to the digital input (DI) card of the safety PLC, enabling instantaneous monitoring of the relays&#8217; mechanical states.</li>
</ul>
</li>



<li><strong>Audit Logic:</strong> The safety PLC strictly verifies the state of the NC contacts before dispatching a drive command to the field. If a contact appears open while no energy is supplied to the field (indicating a welding syndrome), the system categorically refuses the drive command and locks into a safe state.</li>
</ul>



<p class="wp-block-paragraph"><strong>Commercial Equation:</strong></p>



<ul class="wp-block-list">
<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Cost-Effective:</strong> Up to 90% CAPEX savings in projects are achieved due to fundamentally low unit costs.</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Flexibility:</strong> Any EN 61810-3 (EN 50205) compliant standard product can be utilized.</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/274c.png" alt="❌" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Engineering Burden:</strong> Circuit design, wiring complexity, and the ultimate safety proof responsibilities of the final system lie squarely on the shoulders of the integrator architect.</li>
</ul>



<h2 class="wp-block-heading" id="conclusion">Conclusion</h2>



<h3 class="wp-block-heading" id="decision-matrix">Decision Matrix</h3>


<div class="kb-table-container kb-table-container2019_e4c072-4a wp-block-kadence-table"><table class="kb-table kb-table2019_e4c072-4a">
<tr class="kb-table-row kb-table-row2019_6fd747-82">
<th  scope="col" class="kb-table-data kb-table-data2019_243102-5a">

<p class="wp-block-paragraph">Project Scenario</p>

</th>

<th  scope="col" class="kb-table-data kb-table-data2019_293824-69">

<p class="wp-block-paragraph">Recommended Architecture</p>

</th>

<th  scope="col" class="kb-table-data kb-table-data2019_8ea6ee-34">

<p class="wp-block-paragraph">Rationale</p>

</th>
</tr>

<tr class="kb-table-row kb-table-row2019_fb94f5-84">
<td  class="kb-table-data kb-table-data2019_93a946-a2">

<p class="wp-block-paragraph"><strong>Low-volume project, tight schedule</strong></p>

</td>

<td  class="kb-table-data kb-table-data2019_68939b-00">

<p class="wp-block-paragraph">Vital Relay (e.g., Clearsy RS4)</p>

</td>

<td  class="kb-table-data kb-table-data2019_be6ea6-9b">

<p class="wp-block-paragraph">To minimize engineering effort and ISA certification duration</p>

</td>
</tr>

<tr class="kb-table-row kb-table-row2019_acef22-76">
<td  class="kb-table-data kb-table-data2019_3a47a1-04">

<p class="wp-block-paragraph"><strong>High-volume mainline project</strong></p>

</td>

<td  class="kb-table-data kb-table-data2019_22e00b-4b">

<p class="wp-block-paragraph">Industrial Relay + 1oo2 Architecture</p>

</td>

<td  class="kb-table-data kb-table-data2019_80aa36-2d">

<p class="wp-block-paragraph">To optimize the Total Cost of Ownership (TCO) of the system</p>

</td>
</tr>

<tr class="kb-table-row kb-table-row2019_67b9ee-ee">
<td  class="kb-table-data kb-table-data2019_5d8dd6-12">

<p class="wp-block-paragraph"><strong>Legacy system renovation</strong></p>

</td>

<td  class="kb-table-data kb-table-data2019_ca89d7-3a">

<p class="wp-block-paragraph">Vital Relay</p>

</td>

<td  class="kb-table-data kb-table-data2019_b61b6d-c9">

<p class="wp-block-paragraph">To replace older generation relays 1-to-1 without structural modification</p>

</td>
</tr>

<tr class="kb-table-row kb-table-row2019_510552-f5">
<td  class="kb-table-data kb-table-data2019_6977b8-31">

<p class="wp-block-paragraph"><strong>New design, PLC-based interlocking</strong></p>

</td>

<td  class="kb-table-data kb-table-data2019_3d4eaf-a9">

<p class="wp-block-paragraph">Industrial Relay + Readback Loop</p>

</td>

<td  class="kb-table-data kb-table-data2019_f5080b-30">

<p class="wp-block-paragraph">To leverage the diagnostic capabilities the PLC already inherently possesses</p>

</td>
</tr>
</table></div>


<p class="wp-block-paragraph"><strong>Summary Deductions:</strong></p>



<ul class="wp-block-list">
<li><strong>The concept of a &#8220;SIL 4 Relay&#8221; does not equate to a &#8220;SIL 4 System&#8221;:</strong> A single component may possess a SIL 4 hardware label, but system engineering is a comprehensive, holistic endeavor.</li>



<li><strong>Gravity vs. Spring Force:</strong> The safety of vital relays relies heavily on immutable physical laws of nature, whereas industrial safety relays necessitate external diagnostic intelligence to effectively detect latent flaws.</li>



<li><strong>Cost vs. Responsibility Trade-off:</strong> Choosing inexpensive components decisively incurs a high engineering burden and continuous ISA auditing, whereas expensive components systematically yield a comfortable, stress-free integration. The supply chain strategy is directly proportional to a firm&#8217;s internal engineering confidence.</li>
</ul>



<h2 class="wp-block-heading" id="references">References</h2>



<ul class="wp-block-list">
<li>EN 61810-3: Electromechanical elementary relays &#8211; Relays with forcibly guided contacts</li>



<li>EN 50129: Railway applications &#8211; Communication, signalling and processing systems</li>



<li>Mors Smitt N.S1 Technical Documentation</li>



<li>Clearsy RS4 Functional Safety Guidelines</li>



<li>HIMA SILworX Application Notes</li>
</ul>



<h3 class="wp-block-heading" id="%F0%9F%93%8B-related-links"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4cb.png" alt="📋" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Related Links</h3>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f517.png" alt="🔗" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Related Article:</strong> → <a href="https://muisik.com/en/strategic-analysis-cenelec-sil-4-relay-procurement-strategies-and-market-dynamics-in-railway-signaling/" data-type="link" data-id="https://muisik.com/en/strategic-analysis-cenelec-sil-4-relay-procurement-strategies-and-market-dynamics-in-railway-signaling/">Strategic Analysis: CENELEC SIL 4 Relay Procurement Strategies and Market Dynamics in Railway Signaling</a></p>
</blockquote>



<p class="wp-block-paragraph"><em>Last update: March 2026 | Version: 1.1</em></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Strategic Analysis: CENELEC SIL 4 Relay Procurement Strategies and Market Dynamics in Railway Signaling</title>
		<link>https://muisik.com/en/strategic-analysis-cenelec-sil-4-relay-procurement-strategies-and-market-dynamics-in-railway-signaling/</link>
		
		<dc:creator><![CDATA[Muhammet Işık]]></dc:creator>
		<pubDate>Fri, 09 Jan 2026 22:42:39 +0000</pubDate>
				<category><![CDATA[Product, Business and Markets]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[CENELEC]]></category>
		<category><![CDATA[Cost Engineering]]></category>
		<category><![CDATA[Procurement Strategy]]></category>
		<category><![CDATA[Railway Signalling]]></category>
		<category><![CDATA[Safety Integrity Levels]]></category>
		<category><![CDATA[Total Cost of Ownership]]></category>
		<guid isPermaLink="false">https://muisik.com/?p=2026</guid>

					<description><![CDATA[SIL 4 safety relays, one of the most critical safety components in railway signaling projects, create substantial procurement risks and cost pressures due to the market structure. This report analyzes the monopolistic nature of the current market, the two primary architectural approaches namely "Component-Level" and "System-Level", and the impacts of these approaches on the 5-year Total Cost of Ownership (TCO).]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph"><em>The Implications of Component and System-Level Safety Architectures on Total Cost of Ownership (TCO)</em></p>



<p class="wp-block-paragraph">SIL 4 safety relays, one of the most critical safety components in railway signaling projects, create substantial procurement risks and cost pressures due to the market structure. This report analyzes the monopolistic nature of the current market, the two primary architectural approaches namely &#8220;Component-Level&#8221; and &#8220;System-Level&#8221;, and the impacts of these approaches on the 5-year Total Cost of Ownership (TCO).</p>





<h2 class="wp-block-heading" id="key-findings">Key Findings</h2>



<ul class="wp-block-list">
<li><strong>Market Monopoly:</strong> The &#8220;plug-and-play&#8221; (Component-Level) SIL 4 relay market is dominated by a single manufacturer (Clearsy); this situation creates high costs and procurement dependency.</li>



<li><strong>Architectural Shift Opportunity:</strong> The &#8220;System-Level&#8221; architecture constructed with industrial relays and safety PLCs offers a <strong>cost advantage of over 50%</strong> in the long term, despite the initial investment in engineering costs.</li>



<li><strong>Critical Turning Point:</strong> The biggest obstacle to market transformation is not technical, but rather the shifting of the responsibility for preparing the Safety Case from the supplier to the integrator, and the acceptance of this new model by the end-user.</li>
</ul>



<h2 class="wp-block-heading" id="market-structure-and-product-ecosystem">Market Structure and Product Ecosystem</h2>



<p class="wp-block-paragraph">Relays used in railway safety should be evaluated in three main categories based on their certification and design philosophies.</p>



<h3 class="wp-block-heading" id="product-categorization-matrix">Product Categorization Matrix</h3>


<div class="kb-table-container kb-table-container2026_4ed3f4-96 wp-block-kadence-table"><table class="kb-table kb-table2026_4ed3f4-96">
<tr class="kb-table-row kb-table-row2026_6ee167-01">
<th  scope="col" class="kb-table-data kb-table-data2026_2fb63d-6a">

<p class="wp-block-paragraph">Category</p>

</th>

<th  scope="col" class="kb-table-data kb-table-data2026_0bf521-fb">

<p class="wp-block-paragraph">Definition</p>

</th>

<th  scope="col" class="kb-table-data kb-table-data2026_42a2bb-d8">

<p class="wp-block-paragraph">Typical Examples</p>

</th>

<th  scope="col" class="kb-table-data kb-table-data2026_4d4759-07">

<p class="wp-block-paragraph">SIL 4 Compliance</p>

</th>

<th  scope="col" class="kb-table-data kb-table-data2026_80b4ff-c9">

<p class="wp-block-paragraph">Procurement Risk</p>

</th>
</tr>

<tr class="kb-table-row kb-table-row2026_136b5e-36">
<td  class="kb-table-data kb-table-data2026_eb7d73-4a">

<p class="wp-block-paragraph"><strong>Component-Level</strong></p>

</td>

<td  class="kb-table-data kb-table-data2026_6440d9-aa">

<p class="wp-block-paragraph">Self-monitored smart units requiring no additional circuitry.</p>

</td>

<td  class="kb-table-data kb-table-data2026_ee0816-87">

<p class="wp-block-paragraph"><strong>Clearsy RS4</strong></p>

</td>

<td  class="kb-table-data kb-table-data2026_c46b3f-b0">

<p class="wp-block-paragraph"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Certified standalone</p>

</td>

<td  class="kb-table-data kb-table-data2026_3ac3e9-07">

<p class="wp-block-paragraph"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f534.png" alt="🔴" class="wp-smiley" style="height: 1em; max-height: 1em;" /> High (Monopoly)</p>

</td>
</tr>

<tr class="kb-table-row kb-table-row2026_c052a3-45">
<td  class="kb-table-data kb-table-data2026_922408-2e">

<p class="wp-block-paragraph"><strong>System-Level</strong></p>

</td>

<td  class="kb-table-data kb-table-data2026_4606ac-2e">

<p class="wp-block-paragraph">Industrial relays with forcibly guided contact structure, requiring external monitoring.</p>

</td>

<td  class="kb-table-data kb-table-data2026_dc30ab-51">

<p class="wp-block-paragraph"><strong>Arteche FF, Dold OA, Finder 7S</strong></p>

</td>

<td  class="kb-table-data kb-table-data2026_47c7c4-28">

<p class="wp-block-paragraph"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/26a0.png" alt="⚠" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Achieved via architectural design</p>

</td>

<td  class="kb-table-data kb-table-data2026_8f5160-86">

<p class="wp-block-paragraph"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f7e2.png" alt="🟢" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Low (Multi-source)</p>

</td>
</tr>

<tr class="kb-table-row kb-table-row2026_6b8e61-61">
<td  class="kb-table-data kb-table-data2026_ebf188-e1">

<p class="wp-block-paragraph"><strong>Legacy</strong></p>

</td>

<td  class="kb-table-data kb-table-data2026_dabe3c-9b">

<p class="wp-block-paragraph">Mechanical relays operating on gravity principles, based on obsolete national standards.</p>

</td>

<td  class="kb-table-data kb-table-data2026_ba2a4f-89">

<p class="wp-block-paragraph"><strong>Mors Smitt N.S1</strong></p>

</td>

<td  class="kb-table-data kb-table-data2026_3afba6-9b">

<p class="wp-block-paragraph"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/274c.png" alt="❌" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Not suitable for modern projects</p>

</td>

<td  class="kb-table-data kb-table-data2026_52c731-5f">

<p class="wp-block-paragraph"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f7e1.png" alt="🟡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Medium (Rare parts)</p>

</td>
</tr>
</table></div>


<h3 class="wp-block-heading" id="technical-taxonomy-of-the-market-and-product-families">Technical Taxonomy of the Market and Product Families</h3>



<p class="wp-block-paragraph">Relay technologies in the railway signaling market are divided into two main classes based on the source of their safety mechanisms. This distinction directly determines the procurement strategy and the engineering burden.</p>



<h4 class="wp-block-heading" id="vital-relays">Vital Relays</h4>



<p class="wp-block-paragraph"><strong>Representative:</strong>&nbsp;Clearsy RS4 Series Characterized as the comfort zone of the market, this product group guarantees safety through physical laws.</p>



<ul class="wp-block-list">
<li><strong>Technical Basis:</strong> Gravity Fail-Safe principle. When the coil energy is cut off, the opening of the contacts is entrusted not to spring force, but to gravity and mass weight.</li>



<li><strong>Certification:</strong> The component is standalone SIL 4 certified.</li>



<li><strong>Commercial Characteristic:</strong> Very high unit cost and single-source dependency.</li>
</ul>



<h4 class="wp-block-heading" id="industrial-safety-relays">Industrial Safety Relays</h4>



<p class="wp-block-paragraph"><strong>Representatives:</strong>&nbsp;Arteche FF, Dold OA, Finder 7S Series These components act as the fundamental building blocks of system-level architecture.</p>



<ul class="wp-block-list">
<li><strong>Technical Basis:</strong> Forcibly guided contact structure and spring-return mechanism compliant with the EN 50205 standard.</li>



<li><strong>Constraint:</strong> They are not SIL 4 on their own. They require external active monitoring against the risk of contact welding.</li>



<li><strong>Commercial Characteristic:</strong> Low unit cost and multiple supplier alternatives.</li>
</ul>



<h4 class="wp-block-heading" id="system-level-architecture-strategic-alternative">System-Level Architecture (Strategic Alternative)</h4>



<p class="wp-block-paragraph">This approach is not a product, but an engineering methodology.</p>



<ul class="wp-block-list">
<li><strong>Philosophy:</strong> Safety by Design.</li>



<li><strong>Execution:</strong> Multiple industrial safety relays are combined in a redundant architecture (e.g., 1oo2).</li>



<li><strong>Safety Layer:</strong> Software covers the hardware&#8217;s vulnerability. Through a readback loop established via the safety PLC, the system is elevated to a safety level equivalent to component-level SIL 4 relays.</li>
</ul>



<h2 class="wp-block-heading" id="architectural-paradigm-where-is-safety-located">Architectural Paradigm: Where is Safety Located?</h2>



<p class="wp-block-paragraph">The fundamental difference between the two approaches is whether safety is confined to a purchased physical component or dispersed throughout the entire system design.</p>



<h3 class="wp-block-heading" id="approach-a-component-level-safety-clearsy-model">Approach A: Component-Level Safety (Clearsy Model)</h3>



<p class="wp-block-paragraph">This model relies on the certified black box principle.</p>



<ul class="wp-block-list">
<li><strong>Internal Oversight:</strong> All diagnostics, redundancy, and safety logic are embedded inside the sealed unit before it leaves the factory.</li>



<li><strong>Integrator&#8217;s Role is Passive:</strong> The integrator simply sends the command. They do not have to worry about whether the relay contact is welded, the health of the coil, or the internal mechanism. The product handles this internally.</li>



<li><strong>Result:</strong> Safety is purchased as a product.</li>
</ul>



<h3 class="wp-block-heading" id="approach-b-system-level-safety-engineering-model">Approach B: System-Level Safety (Engineering Model)</h3>



<p class="wp-block-paragraph">This model relies on the architectural oversight principle.</p>



<ul class="wp-block-list">
<li><strong>External Oversight:</strong> Safety resides not in the relay itself, but in the PLC software managing it. Standard industrial relays are used, but they are not left unmonitored.</li>



<li><strong>Integrator&#8217;s Role is Active:</strong> The integrator must establish a mechanism called a readback loop. Before the PLC issues a command to the relay, it physically verifies whether the relay successfully returned from the previous command.</li>



<li><strong>Result:</strong> Safety is constructed as a process.</li>
</ul>



<h3 class="wp-block-heading" id="summary-comparison-responsibility-matrix">Summary Comparison: Responsibility Matrix</h3>


<div class="kb-table-container kb-table-container2026_feea1a-c4 wp-block-kadence-table"><table class="kb-table kb-table2026_feea1a-c4">
<tr class="kb-table-row kb-table-row2026_1bff2e-90">
<th  scope="col" class="kb-table-data kb-table-data2026_166f32-66">

<p class="wp-block-paragraph">Criterion</p>

</th>

<th  scope="col" class="kb-table-data kb-table-data2026_c3201d-cd">

<p class="wp-block-paragraph">Approach A: Component-Level (Clearsy)</p>

</th>

<th  scope="col" class="kb-table-data kb-table-data2026_a4b283-2f">

<p class="wp-block-paragraph">Approach B: System-Level (Arteche/Finder)</p>

</th>
</tr>

<tr class="kb-table-row kb-table-row2026_3e5e33-d3">
<td  class="kb-table-data kb-table-data2026_b2c501-c2">

<p class="wp-block-paragraph"><strong>Safety Source</strong></p>

</td>

<td  class="kb-table-data kb-table-data2026_05e790-2c">

<p class="wp-block-paragraph">Inside the Product (Embedded)</p>

</td>

<td  class="kb-table-data kb-table-data2026_3b7455-17">

<p class="wp-block-paragraph">In the Architecture Itself (External)</p>

</td>
</tr>

<tr class="kb-table-row kb-table-row2026_8c8fc0-54">
<td  class="kb-table-data kb-table-data2026_7c3026-af">

<p class="wp-block-paragraph"><strong>Feedback</strong></p>

</td>

<td  class="kb-table-data kb-table-data2026_f379b7-f6">

<p class="wp-block-paragraph">Internal</p>

</td>

<td  class="kb-table-data kb-table-data2026_accbd4-a1">

<p class="wp-block-paragraph">External (Wired to PLC Input Card)</p>

</td>
</tr>

<tr class="kb-table-row kb-table-row2026_bfeda9-f0">
<td  class="kb-table-data kb-table-data2026_3dba31-d0">

<p class="wp-block-paragraph"><strong>Diagnostic</strong></p>

</td>

<td  class="kb-table-data kb-table-data2026_805bb0-4c">

<p class="wp-block-paragraph">Automatic / Hardware</p>

</td>

<td  class="kb-table-data kb-table-data2026_c63ff1-a1">

<p class="wp-block-paragraph">Software (PLC Logic)</p>

</td>
</tr>

<tr class="kb-table-row kb-table-row2026_578681-40">
<td  class="kb-table-data kb-table-data2026_83944f-17">

<p class="wp-block-paragraph"><strong>Wiring Complexity</strong></p>

</td>

<td  class="kb-table-data kb-table-data2026_73d17a-9f">

<p class="wp-block-paragraph">Low (Coil Only)</p>

</td>

<td  class="kb-table-data kb-table-data2026_b65793-7c">

<p class="wp-block-paragraph">High (Coil + NC Contact Feedback)</p>

</td>
</tr>

<tr class="kb-table-row kb-table-row2026_2b10c2-5c">
<td  class="kb-table-data kb-table-data2026_cbbaaf-1c">

<p class="wp-block-paragraph"><strong>Responsibility Owner</strong></p>

</td>

<td  class="kb-table-data kb-table-data2026_5a3cf9-04">

<p class="wp-block-paragraph">Manufacturer (Clearsy)</p>

</td>

<td  class="kb-table-data kb-table-data2026_1e0731-29">

<p class="wp-block-paragraph">Integrator Engineer</p>

</td>
</tr>
</table></div>


<h2 class="wp-block-heading" id="economic-analysis-and-break-even-point-tco">Economic Analysis and Break-Even Point (TCO)</h2>



<p class="wp-block-paragraph">A 5-year projection based on an annual requirement of 1000 safety functions reveals the dramatic cost difference between the two approaches.</p>



<h3 class="wp-block-heading" id="cost-data">Cost Data</h3>


<div class="kb-table-container kb-table-container2026_b16827-dc wp-block-kadence-table"><table class="kb-table kb-table2026_b16827-dc">
<tr class="kb-table-row kb-table-row2026_58ae36-c3">
<th  scope="col" class="kb-table-data kb-table-data2026_1fc87a-ef">

<p class="wp-block-paragraph">Cost Item</p>

</th>

<th  scope="col" class="kb-table-data kb-table-data2026_c4cff8-48">

<p class="wp-block-paragraph">Clearsy (Component-Level)</p>

</th>

<th  scope="col" class="kb-table-data kb-table-data2026_e3e9fe-29">

<p class="wp-block-paragraph">Standard Relay + Engineering (System-Level)</p>

</th>
</tr>

<tr class="kb-table-row kb-table-row2026_2379ef-c9">
<td  class="kb-table-data kb-table-data2026_1e8a34-77">

<p class="wp-block-paragraph"><strong>Unit Relay Cost</strong></p>

</td>

<td  class="kb-table-data kb-table-data2026_08c6f7-bc">

<p class="wp-block-paragraph">~€500</p>

</td>

<td  class="kb-table-data kb-table-data2026_bc890f-2e">

<p class="wp-block-paragraph">~€50</p>

</td>
</tr>

<tr class="kb-table-row kb-table-row2026_33fbbf-60">
<td  class="kb-table-data kb-table-data2026_949a03-63">

<p class="wp-block-paragraph"><strong>Required Quantity (For 1 Function)</strong></p>

</td>

<td  class="kb-table-data kb-table-data2026_703e2c-2a">

<p class="wp-block-paragraph">1 Unit</p>

</td>

<td  class="kb-table-data kb-table-data2026_0c1937-11">

<p class="wp-block-paragraph">4 Units (2oo2 Architecture + Spares)</p>

</td>
</tr>

<tr class="kb-table-row kb-table-row2026_eb2bda-07">
<td  class="kb-table-data kb-table-data2026_204211-ae">

<p class="wp-block-paragraph"><strong>Hardware Cost (Annual)</strong></p>

</td>

<td  class="kb-table-data kb-table-data2026_37f3de-66">

<p class="wp-block-paragraph"><strong>€500,000</strong></p>

</td>

<td  class="kb-table-data kb-table-data2026_ce92c1-58">

<p class="wp-block-paragraph"><strong>€200,000</strong></p>

</td>
</tr>

<tr class="kb-table-row kb-table-row2026_328e37-1d">
<td  class="kb-table-data kb-table-data2026_cc3df6-6f">

<p class="wp-block-paragraph"><strong>Initial Investment (Eng. &amp; ISA)</strong></p>

</td>

<td  class="kb-table-data kb-table-data2026_c46661-81">

<p class="wp-block-paragraph">€0 (Included in product price)</p>

</td>

<td  class="kb-table-data kb-table-data2026_ed332e-21">

<p class="wp-block-paragraph"><strong>~€50,000 (One-time)</strong></p>

</td>
</tr>
</table></div>


<h3 class="wp-block-heading" id="tco-break-even-analysis">TCO Break-Even Analysis</h3>



<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>

<div style="position: relative; height: 250px; width: 100%; max-height: 40vh;">
  <canvas id="tcoChartEn"></canvas>
</div>

<script>
  const ctxEn = document.getElementById('tcoChartEn');

  new Chart(ctxEn, {
    type: 'line',
    data: {
      labels: ["Year 0 (Start)", "Year 1", "Year 2", "Year 3", "Year 4", "Year 5"],
      datasets: [
        {
          label: 'Component-Level (Clearsy) - High Cost',
          data: [0, 500000, 1000000, 1500000, 2000000, 2500000],
          borderColor: 'rgb(255, 99, 132)',
          backgroundColor: 'rgba(255, 99, 132, 0.2)',
          borderWidth: 3,
          tension: 0.1,
          fill: false
        },
        {
          label: 'System-Level (Architectural) - Optimized',
          data: [50000, 250000, 450000, 650000, 850000, 1050000],
          borderColor: 'rgb(54, 162, 235)',
          backgroundColor: 'rgba(54, 162, 235, 0.2)',
          borderWidth: 3,
          tension: 0.1,
          fill: true
        }
      ]
    },
    options: {
      responsive: true,
      maintainAspectRatio: false,
      plugins: {
        title: {
          display: true,
          text: '5-Year Cumulative TCO Comparison (€)',
          font: { size: 16 }
        },
        tooltip: {
          mode: 'index',
          intersect: false,
          callbacks: {
            label: function(context) {
              let label = context.dataset.label || '';
              if (label) label += ': ';
              if (context.parsed.y !== null) {
                label += new Intl.NumberFormat('en-US', { style: 'currency', currency: 'EUR' }).format(context.parsed.y);
              }
              return label;
            }
          }
        }
      },
      scales: {
        y: {
          beginAtZero: true,
          title: { display: true, text: 'Total Cost (€)' },
          ticks: {
            callback: function(value, index, values) {
              return new Intl.NumberFormat('en-US', { style: 'currency', currency: 'EUR', maximumSignificantDigits: 3 }).format(value);
            }
          }
        }
      }
    }
  });
</script>




<p class="wp-block-paragraph"><em>Chart Analysis: Although the System-Level approach starts higher initially due to the one-time engineering cost, it passes the break-even point within the very first year thanks to dramatically lower unit costs, providing a savings of&nbsp;<strong>~€1.45 Million</strong>&nbsp;at the end of the 5th year.</em></p>



<h2 class="wp-block-heading" id="strategic-recommendations">Strategic Recommendations</h2>



<p class="wp-block-paragraph">In light of the market&#8217;s current state and economic analyses, the recommended hybrid transition strategy for integrator firms is:</p>



<p class="wp-block-paragraph"><strong>Short Term (Defense):</strong>&nbsp;Clearsy usage should continue in cases of customer insistence or project urgency. This minimizes project risk.</p>



<p class="wp-block-paragraph"><strong>Medium Term (Preparation):</strong>&nbsp;Arteche/Dold-based system architecture should be applied in pilot projects, and the Safety Case documentation of this architecture should be matured. Independent Safety Assessor (ISA) approval must be obtained at this stage.</p>



<p class="wp-block-paragraph"><strong>Long Term (Breakthrough):</strong>&nbsp;The matured and approved system architecture should become the standard solution in all high-volume projects. This will maximize the firm&#8217;s competitive strength and profitability.</p>



<h2 class="wp-block-heading" id="conclusion">Conclusion</h2>



<p class="wp-block-paragraph">The use of component-based SIL 4 relays (the Clearsy model) in railway signaling is a commercial comfort zone preference rather than a technical necessity. For organizations with high engineering capabilities, the System-Level approach is not just a substantial cost advantage, but a lever providing supply chain independence and strategic flexibility.</p>



<p class="wp-block-paragraph">The core to the transformation is not the excellence of the technical solution, but rather the ability to correctly prove the reliability of this solution to the customer through the Safety Case and independent assessor approval. Brands like FEST, which previously operated in Turkey, have competed by bringing such required relays to the market. Today, with a new brand and formation, this process can certainly be advanced once more.</p>



<p class="wp-block-paragraph">Recent intelligence from the field indicates that local engineering firms are preparing to design their own safety relay architectures to offer CENELEC-compliant standard solutions to the Turkish market at highly competitive and affordable prices. We sincerely hope that such visionary initiatives will succeed in significantly breaking foreign dependency and introducing much-needed flexibility into the monopolistic supply chain.</p>



<h2 class="wp-block-heading" id="references">References</h2>



<ul class="wp-block-list">
<li>EN 50129: Railway Applications &#8211; Communication, signaling and processing systems</li>



<li>EN 50155: Railway Applications &#8211; Electronic equipment used on rolling stock</li>



<li>EN 50205: Relays with forcibly guided (mechanically linked) contacts</li>
</ul>



<h3 class="wp-block-heading" id="%F0%9F%93%8B-related-links"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4cb.png" alt="📋" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Related Links</h3>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f517.png" alt="🔗" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Related Article:</strong> → <a href="https://muisik.com/en/railway-signaling-relay-selection-critical-differences-between-vital-and-industrial-safety-relays/" data-type="link" data-id="https://muisik.com/en/railway-signaling-relay-selection-critical-differences-between-vital-and-industrial-safety-relays/">Vital vs. Forcibly Guided: Engineering Analysis of Relay Technologies</a></p>
</blockquote>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p class="wp-block-paragraph"><em>Last update: March 2026 | Version: 1.1</em></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Physical Threat Vectors in Critical Railway Infrastructure: From Theft to Sabotage</title>
		<link>https://muisik.com/en/physical-threat-vectors-in-critical-railway-infrastructure-from-theft-to-sabotage/</link>
					<comments>https://muisik.com/en/physical-threat-vectors-in-critical-railway-infrastructure-from-theft-to-sabotage/#comments</comments>
		
		<dc:creator><![CDATA[Muhammet Işık]]></dc:creator>
		<pubDate>Mon, 05 Jan 2026 20:12:11 +0000</pubDate>
				<category><![CDATA[Technology and Systems]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Critical Infrastructure]]></category>
		<category><![CDATA[Industrial Networks]]></category>
		<category><![CDATA[Open-Source Intelligence]]></category>
		<category><![CDATA[OT Cyber Security]]></category>
		<category><![CDATA[Physical Security]]></category>
		<category><![CDATA[Railway Signalling]]></category>
		<guid isPermaLink="false">https://muisik.com/?p=1986</guid>

					<description><![CDATA[Global railway networks are exposed to multidimensional physical threats, ranging from economically motivated theft correlated with commodity price fluctuations to asymmetric sabotage risks triggered by geopolitical tensions. This study examines the statistical distribution of security threats, material-based attack vectors, and the methodology of deducing perpetrator motivation from field evidence, utilizing Open Source Intelligence (OSINT) data, UIC (International Union of Railways) incident analyses, and LME copper price movements. The acquired data indicates that railway security is transitioning from a mere public order issue to a national critical infrastructure security framework.]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph"><em>Infrastructure Resilience and Physical Attack Report on the Axis of Theft, Sabotage, and Terrorism</em></p>



<p class="wp-block-paragraph">Global railway networks are exposed to multidimensional physical threats, ranging from economically motivated theft correlated with commodity price fluctuations to asymmetric sabotage risks triggered by geopolitical tensions. This study examines the statistical distribution of security threats, material-based attack vectors, and the methodology of deducing perpetrator motivation from field evidence, utilizing Open Source Intelligence (OSINT) data, UIC (International Union of Railways) incident analyses, and LME copper price movements. The acquired data indicates that railway security is transitioning from a mere public order issue to a national critical infrastructure security framework.</p>





<h2 class="wp-block-heading" id="key-findings">Key Findings</h2>



<ul class="wp-block-list">
<li><strong>The Security Paradox of Material Transition:</strong>&nbsp;The technological transformation of infrastructures (the shift from conventional copper architecture to a fiber-optic communication backbone) fundamentally alters the current threat profile.</li>



<li><strong>Motivational Distinction:</strong>&nbsp;While copper theft (90-95%) is an action driven by the economic value of physical material (scrap sale), fiber-optic sabotage is a strategic intervention directly focused on creating system blindness and aimed at operational disruption.</li>



<li><strong>The Role of Forensic Field Analysis:</strong>&nbsp;Accurate interpretation of physical signs left at the crime scene (e.g., missing hardware vs. targeted incision) is the most critical parameter in determining the nature of the action (economic crime or asymmetric sabotage).</li>



<li><strong>Hybrid Processes:</strong>&nbsp;Recent incidents, particularly reported in the European region, indicate that the boundaries between organized economic crime events and sabotage elements considered to be state-sponsored occasionally blur.</li>
</ul>



<h2 class="wp-block-heading" id="global-threat-landscape-proportional-distribution">Global Threat Landscape: Proportional Distribution</h2>


<div class="kb-table-container kb-table-container1986_8e8129-da wp-block-kadence-table"><table class="kb-table kb-table1986_8e8129-da">
<tr class="kb-table-row kb-table-row1986_030802-ec">
<th  scope="col" class="kb-table-data kb-table-data1986_bfefa3-1b">

<p class="wp-block-paragraph">Threat Type</p>

</th>

<th  scope="col" class="kb-table-data kb-table-data1986_4d63d0-73">

<p class="wp-block-paragraph">Est. Global Share</p>

</th>

<th  scope="col" class="kb-table-data kb-table-data1986_7ae01f-fc">

<p class="wp-block-paragraph">Core Motivation</p>

</th>

<th  scope="col" class="kb-table-data kb-table-data1986_04e3ae-9b">

<p class="wp-block-paragraph">Target Material</p>

</th>

<th  scope="col" class="kb-table-data kb-table-data1986_b9d08c-d5">

<p class="wp-block-paragraph">Characteristic Observation Regions</p>

</th>
</tr>

<tr class="kb-table-row kb-table-row1986_cb942e-67">
<td  class="kb-table-data kb-table-data1986_7f225e-bf">

<p class="wp-block-paragraph"><strong>Metal Theft</strong></p>

</td>

<td  class="kb-table-data kb-table-data1986_37bcb6-f2">

<p class="wp-block-paragraph">90-95%</p>

</td>

<td  class="kb-table-data kb-table-data1986_64c4b5-17">

<p class="wp-block-paragraph">Financial Gain (Scrap Value)</p>

</td>

<td  class="kb-table-data kb-table-data1986_8f4c0a-ed">

<p class="wp-block-paragraph">Copper (Power, Signal, Grounding)</p>

</td>

<td  class="kb-table-data kb-table-data1986_b279a8-fb">

<p class="wp-block-paragraph">South Africa, UK, USA, Germany</p>

</td>
</tr>

<tr class="kb-table-row kb-table-row1986_4a68db-d8">
<td  class="kb-table-data kb-table-data1986_359daa-3e">

<p class="wp-block-paragraph"><strong>Sabotage</strong></p>

</td>

<td  class="kb-table-data kb-table-data1986_9fd998-1a">

<p class="wp-block-paragraph">3-7%</p>

</td>

<td  class="kb-table-data kb-table-data1986_06b746-a9">

<p class="wp-block-paragraph">Creating Operational Bottlenecks, Asymmetric Impact</p>

</td>

<td  class="kb-table-data kb-table-data1986_5ed314-8d">

<p class="wp-block-paragraph">Fiber-Optic Lines, Relay Cabinets</p>

</td>

<td  class="kb-table-data kb-table-data1986_37fa59-89">

<p class="wp-block-paragraph">Eastern Europe, France</p>

</td>
</tr>

<tr class="kb-table-row kb-table-row1986_1dff2c-c9">
<td  class="kb-table-data kb-table-data1986_8a532f-d2">

<p class="wp-block-paragraph"><strong>Terrorism</strong></p>

</td>

<td  class="kb-table-data kb-table-data1986_98fad4-0c">

<p class="wp-block-paragraph">&lt;1-2%</p>

</td>

<td  class="kb-table-data kb-table-data1986_172d9f-80">

<p class="wp-block-paragraph">Threatening Public Safety, Psycho-Social Impact</p>

</td>

<td  class="kb-table-data kb-table-data1986_ea8274-42">

<p class="wp-block-paragraph">Vehicles in Transit, Terminal Facilities</p>

</td>

<td  class="kb-table-data kb-table-data1986_453703-4a">

<p class="wp-block-paragraph">Conflict zones outside the scope of analysis</p>

</td>
</tr>
</table></div>


<p class="wp-block-paragraph"><em>(Source: General assessment in light of UIC Metal Theft on Railways Report data)</em></p>



<h3 class="wp-block-heading" id="the-industrial-scale-of-theft">The Industrial Scale of Theft</h3>



<p class="wp-block-paragraph">The frequency of theft incidents tends to exhibit a linear relationship with global metal supply-demand balances. Particularly between 2010 and 2024, the rise in copper&#8217;s index value traded via the LME (London Metal Exchange) has made unprotected railway yard infrastructures potential targets for organized entities.</p>



<p class="wp-block-paragraph"><strong>Reference Case – South Africa Transnet Operation:</strong>&nbsp;According to operator (Transnet) statements, approximately 1,121 km of cable theft incidents were recorded in the 2023 operational period. This magnitude requires the rebuilding of a considerable portion of the respective network every year, consuming the maintenance and repair budget. Evidence on the field confirms that dismantling operations are carried out in a mobilized manner by highly organized groups.</p>



<h3 class="wp-block-heading" id="sabotage-dynamics-and-asymmetric-actions">Sabotage Dynamics and Asymmetric Actions</h3>



<p class="wp-block-paragraph">According to reports and analyses by critical infrastructure protection agencies across Europe (including ENISA), an &#8220;intervention/sabotage&#8221; trend targeting logistical arteries has been monitored, especially following the outbreak of conflicts in Eastern Europe. In the 2024-2025 projection, various incidents directed at multiple infrastructures (energy, communication, railways) have been recorded specifically in Europe. These specific interventions are devoid of theft motives and are asymmetric actions designed to slow down strategic shipments, create communication outages, or establish blockades in the supply chain.</p>



<h2 class="wp-block-heading" id="infrastructure-material-analysis-copper-vs-fiber-optic">Infrastructure Material Analysis: Copper vs. Fiber Optic</h2>



<h3 class="wp-block-heading" id="copper-architecture-legacy-infrastructure">Copper Architecture: Legacy Infrastructure</h3>



<p class="wp-block-paragraph">When evaluating the system as a whole, conventional railway lines remain reliant on copper transmission and grounding hardware in the 60-80% band.</p>



<p class="wp-block-paragraph"><strong>Critical Usage Points:</strong></p>



<ul class="wp-block-list">
<li>Track Circuits (Impedance Bonds)</li>



<li>Switch Point Drive Mechanisms</li>



<li>Field Signal Instruments</li>



<li>Electrification Catenary Grounding Equipment</li>
</ul>



<p class="wp-block-paragraph"><strong>Security Vulnerability Profile:</strong>&nbsp;The predominant portion of actual theft incidents encountered in the sector consists of lines carrying copper. A broad spectrum is at risk, ranging from catenary overhead line tension weights to thick-section underground grounding cables in substations.</p>



<h3 class="wp-block-heading" id="fiber-optic-the-communication-backbone">Fiber Optic: The Communication Backbone</h3>


<div class="kb-table-container kb-table-container1986_18e6c6-42 wp-block-kadence-table"><table class="kb-table kb-table1986_18e6c6-42">
<tr class="kb-table-row kb-table-row1986_277392-94">
<th  scope="col" class="kb-table-data kb-table-data1986_fe6bc3-89">

<p class="wp-block-paragraph">Line Technology</p>

</th>

<th  scope="col" class="kb-table-data kb-table-data1986_31aacc-4b">

<p class="wp-block-paragraph">Fiber Usage Rate</p>

</th>

<th  scope="col" class="kb-table-data kb-table-data1986_3c6f4c-5d">

<p class="wp-block-paragraph">Observation</p>

</th>
</tr>

<tr class="kb-table-row kb-table-row1986_865b70-02">
<td  class="kb-table-data kb-table-data1986_a7e4ed-4f">

<p class="wp-block-paragraph"><strong>High-Speed Rail (HSR)</strong></p>

</td>

<td  class="kb-table-data kb-table-data1986_bd335d-87">

<p class="wp-block-paragraph">High (95-100%)</p>

</td>

<td  class="kb-table-data kb-table-data1986_91aaa6-34">

<p class="wp-block-paragraph">Chinese ERTMS/CTCS infrastructures, next-gen full integration</p>

</td>
</tr>

<tr class="kb-table-row kb-table-row1986_0efb19-09">
<td  class="kb-table-data kb-table-data1986_97e5a6-88">

<p class="wp-block-paragraph"><strong>Modernized Main Lines</strong></p>

</td>

<td  class="kb-table-data kb-table-data1986_e35265-ea">

<p class="wp-block-paragraph">Medium/High (70-90%)</p>

</td>

<td  class="kb-table-data kb-table-data1986_3168b9-84">

<p class="wp-block-paragraph">Electrification and signaling modernization projects</p>

</td>
</tr>

<tr class="kb-table-row kb-table-row1986_2e3eac-c5">
<td  class="kb-table-data kb-table-data1986_2116e3-1a">

<p class="wp-block-paragraph"><strong>Last Mile</strong></p>

</td>

<td  class="kb-table-data kb-table-data1986_ef1cc7-57">

<p class="wp-block-paragraph">Low</p>

</td>

<td  class="kb-table-data kb-table-data1986_19a068-ba">

<p class="wp-block-paragraph">Generally legacy copper cable and used for redundancy purposes</p>

</td>
</tr>
</table></div>


<p class="wp-block-paragraph"><strong>Security Vulnerability Profile:</strong>&nbsp;Since fiber-optic systems carry glass strands, they possess no financial equivalent in the metal market. 99% of fiber outages reported in the literature are either asymmetric actions aimed directly at sabotaging data flow or accidental damages resulting from the perpetrator failing to distinguish the cable type (due to the thick black outer protective sheath) and mistaking it for copper.</p>



<h3 class="wp-block-heading" id="the-paradox-brought-by-material-transition">The Paradox Brought by Material Transition</h3>



<p class="wp-block-paragraph">Although technological modernization offers the potential to reduce &#8220;Theft&#8221; rates; it renders cyber-physical systems more open and vulnerable to &#8220;Sabotage&#8221; scenarios. While an outage in the copper infrastructure mostly causes regional local security vulnerabilities and singular relay drops; the severing of a single fiber cable running through the main backbone creates a &#8220;Single Point of Failure&#8221; scenario capable of simultaneously bringing down GSM-R, interlocking communication data, and SCADA telemetry across an axis of hundreds of kilometers.</p>



<h2 class="wp-block-heading" id="physical-attack-typology-crime-scene-analysis-matrix">Physical Attack Typology: Crime Scene Analysis Matrix</h2>



<p class="wp-block-paragraph">Classifying physical damage through an architectural approach provides reference data for Root Cause Analysis:</p>



<h4 class="wp-block-heading" id="type-a-copper-cable-theft">Type A: Copper Cable Theft</h4>



<ul class="wp-block-list">
<li><strong>Target Points:</strong>&nbsp;Power transmission lines, catenary masts, substations.</li>



<li><strong>Forensic Findings:</strong>
<ul class="wp-block-list">
<li><em>Material Loss:</em>&nbsp;The main conductive parts of the cables have been removed from the facility.</li>



<li><em>Processing Marks:</em>&nbsp;Plastic sheath remnants and burn marks are found in the environment (done to reduce weight).</li>



<li><em>Mobility Evidence:</em>&nbsp;Large-scale tire, track, or dragging marks belonging to heavy transport vehicles are visible.</li>



<li><em>Operation Window:</em>&nbsp;Generally, time boundaries between 01:00 and 04:00, which are low traffic hours, are preferred.</li>
</ul>
</li>
</ul>



<h4 class="wp-block-heading" id="type-b-targeted-sabotage">Type B: Targeted Sabotage</h4>



<ul class="wp-block-list">
<li><strong>Target Points:</strong>&nbsp;Main fiber-optic distribution centers, critical relay/TCC communication cabinets, GSM-R station bases.</li>



<li><strong>Forensic Findings:</strong>
<ul class="wp-block-list">
<li><em>Material Presence:</em>&nbsp;All severed cables are abandoned at the scene.</li>



<li><em>Detectable Precision:</em>&nbsp;A surgical cut is made by specifically selecting thin data lines carrying direct communication data instead of grounding or high voltage lines.</li>



<li><em>Simultaneity:</em>&nbsp;Simultaneous actions are executed at different locations to decommission distributed redundancy lines.</li>
</ul>
</li>
</ul>



<h4 class="wp-block-heading" id="type-c-misidentification-induced-damage">Type C: Misidentification-Induced Damage</h4>



<ul class="wp-block-list">
<li><strong>Scenario Type:</strong>&nbsp;Material identification error by groups acting with theft motivation.</li>



<li><strong>Forensic Findings:</strong>&nbsp;Thick outer protective armored fiber cables are cut, but abandoned in place when the material content (glass strand) is realized. Additional traces of classical copper cutting attempts should undoubtedly be sought in the immediate vicinity.</li>
</ul>



<h2 class="wp-block-heading" id="comparative-attack-analysis-matrix">Comparative Attack Analysis Matrix</h2>


<div class="kb-table-container kb-table-container1986_cca3f6-04 wp-block-kadence-table"><table class="kb-table kb-table1986_cca3f6-04">
<tr class="kb-table-row kb-table-row1986_2abb23-39">
<th  scope="col" class="kb-table-data kb-table-data1986_d17df6-77">

<p class="wp-block-paragraph">Criterion</p>

</th>

<th  scope="col" class="kb-table-data kb-table-data1986_10b491-29">

<p class="wp-block-paragraph">Typical Theft Incident</p>

</th>

<th  scope="col" class="kb-table-data kb-table-data1986_d87d6b-0f">

<p class="wp-block-paragraph">Strategic Sabotage Incident</p>

</th>
</tr>

<tr class="kb-table-row kb-table-row1986_4b5ada-0d">
<td  class="kb-table-data kb-table-data1986_a54c87-fa">

<p class="wp-block-paragraph"><strong>Primary Target Layer</strong></p>

</td>

<td  class="kb-table-data kb-table-data1986_f93f90-1c">

<p class="wp-block-paragraph">Energy, Power, and Grounding (Copper, Aluminum)</p>

</td>

<td  class="kb-table-data kb-table-data1986_ed109a-2f">

<p class="wp-block-paragraph">Data, Telecommunications, and Signaling (Fiber)</p>

</td>
</tr>

<tr class="kb-table-row kb-table-row1986_353313-f5">
<td  class="kb-table-data kb-table-data1986_b7a77d-d2">

<p class="wp-block-paragraph"><strong>Physical Evidence Status</strong></p>

</td>

<td  class="kb-table-data kb-table-data1986_8f69c3-49">

<p class="wp-block-paragraph">Missing material, stripped insulators</p>

</td>

<td  class="kb-table-data kb-table-data1986_5c91ad-68">

<p class="wp-block-paragraph">Abandoned severed ends, damaged panels</p>

</td>
</tr>

<tr class="kb-table-row kb-table-row1986_a21a07-98">
<td  class="kb-table-data kb-table-data1986_c1da6c-67">

<p class="wp-block-paragraph"><strong>Applied Destruction Method</strong></p>

</td>

<td  class="kb-table-data kb-table-data1986_f4dc92-5c">

<p class="wp-block-paragraph">Grinding machines, brute force tools</p>

</td>

<td  class="kb-table-data kb-table-data1986_10b192-78">

<p class="wp-block-paragraph">Damaging fine cutting tools, liquid flammable agents</p>

</td>
</tr>

<tr class="kb-table-row kb-table-row1986_8613c4-7b">
<td  class="kb-table-data kb-table-data1986_f45e6f-1d">

<p class="wp-block-paragraph"><strong>Location Distribution</strong></p>

</td>

<td  class="kb-table-data kb-table-data1986_66659f-24">

<p class="wp-block-paragraph">Open and easily accessible transit routes</p>

</td>

<td  class="kb-table-data kb-table-data1986_8d2b8c-a9">

<p class="wp-block-paragraph">Tunnel portals, bridge viaducts, control room perimeters</p>

</td>
</tr>

<tr class="kb-table-row kb-table-row1986_fdc17d-6c">
<td  class="kb-table-data kb-table-data1986_2eeaa9-f4">

<p class="wp-block-paragraph"><strong>Impact Continuity</strong></p>

</td>

<td  class="kb-table-data kb-table-data1986_2af868-ae">

<p class="wp-block-paragraph">Sequential, scattered, and continuous breaches</p>

</td>

<td  class="kb-table-data kb-table-data1986_f6c812-74">

<p class="wp-block-paragraph">Rarely observed but simultaneous planned actions causing multiple vulnerabilities</p>

</td>
</tr>
</table></div>


<h2 class="wp-block-heading" id="sample-field-findings-analysis">Sample Field Findings Analysis</h2>



<h4 class="wp-block-heading" id="case-a-germany-gsm-r-outage-sample---october-2022">Case A: Germany GSM-R Outage (Sample &#8211; October 2022)</h4>



<p class="wp-block-paragraph">In the incident that paralyzed the main train traffic in Germany&#8217;s northern corridor during the specified timeframe, the main and redundant lines at two critical GSM-R fiber-optic communication points averaging 500 km apart were neutralized in a coordinated manner.&nbsp;<strong>Verdict Outcome:</strong>&nbsp;The ability to bypass distributed redundancy with such precision led to the assessment that the perpetrator element is an organization that commands the railway operational architecture, knows the system design, and acts in a planned manner.</p>



<h4 class="wp-block-heading" id="case-b-france-hsr-process-sample---2024-event-period">Case B: France HSR Process (Sample &#8211; 2024 Event Period)</h4>



<p class="wp-block-paragraph">On the eve of a large-scale international event, arson-based actions were carried out on three critical arteries feeding the TGV main lines.&nbsp;<strong>Verdict Outcome:</strong>&nbsp;No evidence of theft was observed at the focal points feeding the signaling centers. The style of the action; aligned with the methodology of organized public order threats in terms of its direct aim to simulate asymmetric impact, psychological pressure, and Denial of Service (DoS) on a physical dimension.</p>



<h2 class="wp-block-heading" id="architectural-solutions-and-mitigation-strategies">Architectural Solutions and Mitigation Strategies</h2>



<p class="wp-block-paragraph">Engineering-based risk mitigation approaches that can be developed against the aforementioned threats:</p>



<h3 class="wp-block-heading" id="1-distributed-acoustic-sensing-das-integration">Distributed Acoustic Sensing (DAS) Integration</h3>



<p class="wp-block-paragraph">It is an intelligent topology where the existing unused or dark fiber internal structure is evaluated as an acoustic analysis sensor.</p>



<ul class="wp-block-list">
<li><strong>Core Principle:</strong>&nbsp;The Rayleigh backscatter of laser pulses assigned into the line is continuously analyzed, deriving distance and vibration threshold values.</li>



<li><strong>Assessment:</strong>&nbsp;Offers the possibility of detecting a potential threat via soil excavation vibrations before the wire fence is breached. However, since DAS investments will generate a significant amount of environmental &#8220;noise&#8221; (animal passage, train vibration, weather conditions); it is imperative that the raw data is integrated into advanced Artificial Intelligence (Edge AI) based signal processing systems so as not to fatigue the alarm system. Given the high CapEx budget requirement, it presents feasibility only in strategic corridors.</li>
</ul>



<h3 class="wp-block-heading" id="2-forensic-dna-marking">Forensic DNA Marking</h3>



<p class="wp-block-paragraph">Provides the transformation of facility traceability into legal evidence to deter industrial metal thefts.</p>



<ul class="wp-block-list">
<li><strong>Core Principle:</strong>&nbsp;It is the application of a synthetic and unique polymer-based liquid, detected under ultraviolet light, to line components.</li>



<li><strong>Assessment:</strong>&nbsp;It aims to form technical evidence against the criminal network subject to the offense by analyzing the scrap that falls into the black market following the theft. It ensures deterrence by making the salability of metal in recovery or secondary markets sectorally risky.</li>
</ul>



<h3 class="wp-block-heading" id="3-design-and-material-revisions">Design and Material Revisions</h3>



<ul class="wp-block-list">
<li>Designing the transition from copper to aluminum-based (CCS &#8211; Copper Clad Steel) bimetallic cables in grounding areas within the context of its very low liquidity in the scrap market.</li>



<li>Confining aerial cables entirely to underground passages through architecturally reinforced precast concrete culverts.</li>
</ul>



<h2 class="wp-block-heading" id="conclusion">Conclusion</h2>



<p class="wp-block-paragraph">The era of traditional wire fences and passive protection in critical railway structures is coming to an end. Evaluated from the lens of systems engineering:</p>



<ol class="wp-block-list">
<li><strong>The Dual Challenge:</strong>&nbsp;Railway infrastructures are caught between a heavy OPEX burden (90%) arising from theft and extremely low-probability but high-risk destruction scenarios originating from sabotage.</li>



<li><strong>Root Cause Verification:</strong>&nbsp;There is a need for &#8220;Telemetric TDR&#8221; or &#8220;DAS&#8221; architectures capable of detecting whether a dropped signal or reduced voltage at the system center is a technical corrosion, a cable break, or a deliberate severing without having to visit the field.</li>



<li><strong>The Necessity of an Analytical Approach:</strong>&nbsp;Instead of directly encoding an anomaly encountered at the scene with the banality of a theft attempt or a coordinated sabotage conspiracy theory; a rational methodology should be applied by considering the damage typology, material preferences, timing, and interventions on redundancy.</li>
</ol>



<p class="wp-block-paragraph">When examining the risk matrix in infrastructures; the finding is obtained that technological evolution not only facilitates communication but simultaneously promotes physical threats to cyber-physical scenarios. It should be expected that the railway security standards of the future will step out of the isolated silo of operational technology (OT) and physical breach alarm (CCTV, DAS, Access Control) systems and become integrated within a single SOC (Security Operations Center) pool.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading" id="references">References</h2>



<p class="wp-block-paragraph"><strong>Data Compilation and Analysis Base:</strong>&nbsp;The current review is based on a methodological synthesis pertaining to Open Source Intelligence (OSINT) examinations, independent security and breach frequency analyses published by institutions, and market commodity correlations.</p>



<ul class="wp-block-list">
<li><strong>UIC (International Union of Railways):</strong>&nbsp;Security committee databases</li>



<li><strong>ENISA (EU Cybersecurity Agency):</strong>&nbsp;Railway critical infrastructure threat landscape studies</li>



<li><strong>LME (London Metal Exchange):</strong>&nbsp;Ten-year global commodity and scrap-based supply-demand price charts</li>



<li><strong>Global Initiative Against Transnational Organized Crime:</strong>&nbsp;Metal-based criminal organizations case reports</li>
</ul>



<h3 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4e5.png" alt="📥" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Documents</h3>



<p class="wp-block-paragraph"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f517.png" alt="🔗" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Download Document:</strong> <a href="https://muisik.com/tr/mobil-ekosistemde-voc-analitigi-ve-kritik-kalite-kriz-yonetimi/" data-type="post" data-id="2135">Railway Security Threat Analysis Report Turkish (PDF)</a></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p class="wp-block-paragraph"><em>Last updated: March 2026 | Version: 2.0</em></p>
]]></content:encoded>
					
					<wfw:commentRss>https://muisik.com/en/physical-threat-vectors-in-critical-railway-infrastructure-from-theft-to-sabotage/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
