<?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/"
    xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Automotive Testing Industry Blogs | Opinion | UKi Media &amp; Events</title>
	<atom:link href="https://www.automotivetestingtechnologyinternational.com/industry-opinion/feed" rel="self" type="application/rss+xml" />
	<link>https://www.automotivetestingtechnologyinternational.com/industry-opinion</link>
	<description></description>
	<lastBuildDate>Fri, 17 Apr 2026 10:27:25 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2026/01/tem-logo-black-square-2026-150x150.jpg</url>
	<title>Automotive Testing Industry Blogs | Opinion | UKi Media &amp; Events</title>
	<link>https://www.automotivetestingtechnologyinternational.com/industry-opinion</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>From code to road: The invisible tools ADAS can’t live without</title>
		<link>https://www.automotivetestingtechnologyinternational.com/industry-opinion/from-code-to-road-the-invisible-tools-adas-cant-live-without.html</link>
		
		<dc:creator><![CDATA[Sjoerd van der Zwaan, CPO, Solid Sands]]></dc:creator>
		<pubDate>Fri, 17 Apr 2026 10:26:47 +0000</pubDate>
				<category><![CDATA[ADAS & CAVs]]></category>
		<category><![CDATA[Industry Opinion]]></category>
		<category><![CDATA[Software Engineering & SDVs]]></category>
		<guid isPermaLink="false">https://www.automotivetestingtechnologyinternational.com/?p=65609</guid>

					<description><![CDATA[<a href="https://www.automotivetestingtechnologyinternational.com/industry-opinion/from-code-to-road-the-invisible-tools-adas-cant-live-without.html"><img width="400" height="198" src="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2026/04/SOL150-Image-1-Setting-the-Scene-e1776421577430-400x198.png" alt="From code to road: The invisible tools ADAS can’t live without" align="left" style="margin: 0 20px 20px 0;max-width:100%" /></a><p><strong><em>Sjoerd van der Zwaan, CPO at Solid Sands, discusses compilers and libraries, and how they are essential to the performance of ADAS software platforms. He details how these tools work, the unseen risks that need to be overcome, and how to ensure reliability through verification </em></strong></p>
<p>Advanced driver assistance systems bring increasingly sophisticated software into vehicles. Functions such as lane keeping, adaptive cruise control, automated emergency braking and sensor fusion rely on complex algorithms operating under tight real-time constraints.</p>
<p><a href="https://www.automotivetestingtechnologyinternational.com/industry-opinion/from-code-to-road-the-invisible-tools-adas-cant-live-without.html" rel="nofollow">Continue reading From code to road: The invisible tools ADAS can’t live without at Automotive Testing Technology International.</a></p>
]]></description>
										<content:encoded><![CDATA[<p><strong><em><a href="https://www.linkedin.com/in/sjoerdvanderzwaan/">Sjoerd van der Zwaan,</a> CPO at <a href="https://solidsands.com/">Solid Sands</a>, discusses compilers and libraries, and how they are essential to the performance of ADAS software platforms. He details how these tools work, the unseen risks that need to be overcome, and how to ensure reliability through verification </em></strong></p>
<p>Advanced driver assistance systems bring increasingly sophisticated software into vehicles. Functions such as lane keeping, adaptive cruise control, automated emergency braking and sensor fusion rely on complex algorithms operating under tight real-time constraints. Consequently, automotive development organizations invest substantial effort to ensure that application software and hardware platforms comply with functional safety standards such as <a href="https://www.iso.org/standard/68383.html">ISO 26262.</a></p>
<p>Yet one critical layer of the software stack often receives far less attention: the compilers and libraries that silently transform our software code into reliable, high-performance executable behavior. These tools operate largely out of sight, but they play a decisive role in determining how ADAS software performs on the road. In fact, no ADAS function can exist without them.</p>
<h3><strong>The silent force behind ADAS software </strong></h3>
<p>Compilers translate high-level source code into machine instructions, while standard libraries provide essential functionality for numerical computation, data handling and timing. Together, they form the foundation on which application software is built, and their correctness is often taken for granted throughout the development lifecycle.</p>
<p>In practice, this assumption can be risky. Even when application code complies with coding guidelines and the target hardware is safety-certified, deficiencies in the toolchain can still undermine system behavior. These issues typically do not originate in the application logic itself, but in lower layers that are difficult to observe directly.</p>
<h3><strong>Unseen risks in the toolchain </strong></h3>
<p>Compiler optimization is a prominent example. Optimization is essential for meeting performance and power consumption requirements in automotive systems, but it also introduces significant complexity. Changes in optimization paths can alter control flow, numerical precision or timing in ways that are not apparent from source code inspection. As a result, a compiler update or a change in optimization options may introduce new behaviors (and even errors) while the application code remains unchanged.</p>
<p>Standard libraries present similar risks. Library functions are widely assumed to be robust and well tested, yet they are subject to implementation choices and corner cases like any other software. In ADAS, where libraries are statically or tightly linked into the final executable, subtle deviations from expected behavior can propagate directly into system-level effects.</p>
<figure id="attachment_65619" aria-describedby="caption-attachment-65619" class="wp-caption alignnone"><img fetchpriority="high" decoding="async" class="size-full wp-image-65619" src="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2026/04/SOL150-Image-3-The-Unseen-Threats-400x134.png" alt="Flow diagram illustrating how even with compliant source code and certified hardware, errors in compilers and libraries can still lead to unsafe system behavior." width="400" style="display:block;margin:10px auto;max-width:400px;max-width:100%;"><figcaption id="caption-attachment-65619" class="wp-caption-text">Even with compliant source code and certified hardware, errors in compilers and libraries can still lead to unsafe system behavior</figcaption></figure>
<p>Because these problems originate below the application layer, they are not easily detected using conventional testing approaches. Integration testing may expose symptoms, but it rarely provides systematic coverage of toolchain behavior. As a result, determining whether the root cause lies in the application logic, the compiler or a library implementation can require extensive investigation. When such issues surface late in development, the associated cost and disruption can be substantial. Even more concerning, if they remain undetected until deployment, they may manifest as safety-critical failures, with potentially severe consequences.</p>
<h3><strong>Ensuring reliability through verification </strong></h3>
<p>Managing these risks requires systematic verification of compilers and libraries. This involves demonstrating conformance to relevant programming language standards and consistent behavior across configurations, optimization levels and target platforms.</p>
<p>Structured test suites are central to this effort. By exercising both front-end language features and back-end optimization paths, they can reveal defects that would otherwise remain latent. Problems are not confined to parsing or semantic analysis; changes deep within the optimization pipeline or the code generator can also introduce unintended effects. Comprehensive testing helps surface these issues early, before they impact product development.</p>
<figure id="attachment_65620" aria-describedby="caption-attachment-65620" class="wp-caption alignnone"><img decoding="async" class="size-full wp-image-65620" src="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2026/04/SOL150-Image-5-Ensuring-Reliability-Through-Testing-400x332.png" alt="Illustration of an integrated test and qualification platform. " width="400" style="display:block;margin:10px auto;max-width:400px;max-width:100%;"><figcaption id="caption-attachment-65620" class="wp-caption-text">An integrated test and qualification platform enables efficient validation of compilers and libraries through parallelization, targeted retesting and comprehensive coverage.</figcaption></figure>
<h3><strong>Supporting qualification and long-term confidence </strong></h3>
<p>Beyond identifying defects, verification provides the objective evidence needed to support tool qualification. The ISO 26262 safety standard for automotive software requires confidence in the correct operation of the compiler and evidence that the standard library meets the requirements on which the application relies. By testing the compiler against the programming language specification, it is possible to verify that source code is translated into machine code in a well-defined and predictable manner. Likewise, requirements-based testing of the standard library demonstrates that its functionality conforms to the requirements relied upon by the software. Together, these activities provide objective evidence that the generated object code faithfully represents the source code.</p>
<p>Furthermore, the goal of qualification is not to prove that the compiler or library is completely free of errors – an unrealistic expectation for any complex software tool. Instead, the objective is to understand their limitations and known deviations, and to manage them in a controlled way so that they do not compromise functional safety. This understanding is captured in a safety manual that complements the verification results and defines the constraints, assumptions and usage rules for the compiler and library, ensuring they can be applied safely within the software development process.</p>
<figure id="attachment_65622" aria-describedby="caption-attachment-65622" class="wp-caption alignnone"><img decoding="async" class="size-full wp-image-65622" src="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2026/04/SOL150-Image-4-How-to-Solve-It-400x185.png" alt="Graphic showing how a structured qualification process verifies compilers and libraries." width="400" style="display:block;margin:10px auto;max-width:400px;max-width:100%;"><figcaption id="caption-attachment-65622" class="wp-caption-text">A structured qualification process verifies compilers and libraries, generating the evidence and documentation needed to support functional safety compliance</figcaption></figure>
<p>This approach also supports long-term maintainability. Automotive platforms often have lifecycles spanning decades, during which compilers and libraries inevitably evolve. Systematic validation of updates enables controlled transitions without the need to re-qualify entire systems from scratch.</p>
<p>This benefit has been demonstrated in practice, where early identification of compiler issues has significantly reduced the effort associated with toolchain updates. By understanding tool behavior upfront, organizations can make informed decisions about changes and avoid costly surprises later.</p>
<p>Standard libraries follow similar principles. When assessing a new library implementation, behavioral comparison against a known baseline helps ensure that replacements do not introduce unintended or system-relevant changes.</p>
<h3><strong>The role of collaboration </strong></h3>
<p>ADAS development involves many stakeholders: software engineers, functional safety engineers, validation teams and certification bodies. Ensuring that compilers and libraries behave as expected requires collaboration across all these roles.</p>
<p>Verification cannot be treated as an isolated activity, it must be an integral part of a broader safety strategy. When toolchain behavior is well understood and documented, communication between teams becomes clearer, assumptions are explicit and decisions can be justified with evidence rather than intuition.</p>
<p>Strong partnerships between tool providers, system integrators and safety experts further support this process. By sharing knowledge and aligning on verification practices, organizations can reduce duplication of effort and improve overall confidence in their development environment.</p>
<figure id="attachment_65618" aria-describedby="caption-attachment-65618" class="wp-caption alignnone"><img loading="lazy" decoding="async" class="size-full wp-image-65618" src="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2026/04/SOL150-Image-2-Meet-the-Key-Players-400x192.png" alt="Diagram illustrating the key players – software engineers, functional safety engineers and safety-critical systems – and how collaboration between software and functional safety engineers ensures safety requirements are translated into validated, safety-critical automotive systems." width="400" style="display:block;margin:10px auto;max-width:400px;max-width:100%;"><figcaption id="caption-attachment-65618" class="wp-caption-text">Collaboration between software and functional safety engineers ensures safety requirements are translated into validated, safety-critical automotive systems</figcaption></figure>
<h3><strong>Conclusion </strong></h3>
<p>Compilers and libraries may operate invisibly, but their impact on ADAS safety is substantial. Treating them as implicit assumptions rather than explicit verification targets introduces avoidable risk. As ADAS functionality grows increasingly complex, this risk will only increase.</p>
<p>By recognizing the role of the toolchain early and subjecting it to the same rigor as application software, automotive developers can build a stronger foundation for safety. Verification and qualification of compilers and libraries are not optional extras; they are essential steps to ensure that software behaves as intended – from code to road.</p>
<p><em>A feature in the next issue of </em>Automotive Testing Technology International <em>will investigate the challenges of continuous testing for software, the stages of a typical DevOps pipeline, how companies are measuring software readiness, and more. <a href="https://automotivetesting.mydigitalpublication.com/march-2026-issue-/">Read the March 2026 edition here</a>. </em></p>
<p><em>Related news, <a href="https://www.automotivetestingtechnologyinternational.com/news/software-engineering-sdvs/software-test-specialists-solid-sands-and-plum-hall-team-up.html">Software test specialists Solid Sands and Plum Hall team up</a></em></p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">65609</post-id>		        		  <media:content url="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2026/04/SOL150-Image-1-Setting-the-Scene-e1776421577430.png" medium="image" />
        	</item>
		<item>
		<title>Building trust in AI with deterministic engineering</title>
		<link>https://www.automotivetestingtechnologyinternational.com/industry-opinion/building-trust-in-ai-with-deterministic-engineering.html</link>
		
		<dc:creator><![CDATA[Robert Ter Waarbeek, principal automotive industry manager EMEA, MathWorks]]></dc:creator>
		<pubDate>Wed, 01 Apr 2026 13:33:12 +0000</pubDate>
				<category><![CDATA[CAE, Simulation & Modeling]]></category>
		<category><![CDATA[Industry Opinion]]></category>
		<category><![CDATA[Software Engineering & SDVs]]></category>
		<guid isPermaLink="false">https://www.automotivetestingtechnologyinternational.com/?p=65534</guid>

					<description><![CDATA[<a href="https://www.automotivetestingtechnologyinternational.com/industry-opinion/building-trust-in-ai-with-deterministic-engineering.html"><img width="400" height="224" src="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2026/04/Mathworks_SDV-1-400x224.jpg" alt="Building trust in AI with deterministic engineering" align="left" style="margin: 0 20px 20px 0;max-width:100%" /></a><p><strong><em>Robert Ter Waarbeek, principal automotive industry manager EMEA at MathWorks, explains how engineers can advance automotive development with AI-enabled model-based design </em></strong></p>
<p>Automotive development is evolving as software-defined vehicle programs introduce faster feature cycles and more complex system interactions while meeting strict requirements for safety, reliability and long-term maintainability. Gen AI is now part of engineering workflows. It can help increase development speed, but its non-deterministic behavior, lack of physics awareness and limited traceability make it difficult to apply directly to safety-critical systems.</p>
<p><a href="https://www.automotivetestingtechnologyinternational.com/industry-opinion/building-trust-in-ai-with-deterministic-engineering.html" rel="nofollow">Continue reading Building trust in AI with deterministic engineering at Automotive Testing Technology International.</a></p>
]]></description>
										<content:encoded><![CDATA[<p><strong><em><a href="https://www.linkedin.com/in/robert-ter-waarbeek/?locale=en_US">Robert Ter Waarbeek</a>, principal automotive industry manager EMEA at MathWorks, explains how engineers can advance automotive development with AI-enabled model-based design </em></strong></p>
<p>Automotive development is evolving as software-defined vehicle programs introduce faster feature cycles and more complex system interactions while meeting strict requirements for safety, reliability and long-term maintainability. Gen AI is now part of engineering workflows. It can help increase development speed, but its non-deterministic behavior, lack of physics awareness and limited traceability make it difficult to apply directly to safety-critical systems. These characteristics make verification, certification and traceability challenging when outputs generated by Gen AI are introduced without constraints.</p>
<p>Model-based design addresses these issues through deterministic execution, executable specifications and physics-based simulation. <a href="https://uk.mathworks.com/">MathWorks</a> is bringing these strengths together by integrating Gen AI assistance directly into model-based design tooling, enabling engineers to benefit from accelerated workflows while preserving the rigor required for long-term reliability and certification of automotive software.</p>
<h3><strong>Simulation as the foundation of trust</strong></h3>
<p>Simulation is the foundation of trust in engineering workflows assisted by Gen AI. It provides a controlled environment where system behavior can be verified early and repeatedly. Model‑based design enables closed‑loop simulation within continuous development pipelines, enabling Gen AI‑assisted artifacts to be validated continuously in virtual environments long before software reaches hardware. Closed-loop simulation uncovers defects that emerge only from real‑time interaction between software, hardware and physical dynamics, such as instability, timing issues, saturation and integration errors. Unlike regular software tests that validate code logic in isolation, simulation validates system behavior against requirements under realistic operating conditions, catching safety‑ and performance‑critical issues much earlier.</p>
<p>In leading organizations, ‘shift left’ is not a one-time activity; virtual verification is embedded directly into continuous integration/continuous development (CI/CD) pipelines. Every change triggers automated builds and simulation runs, exercising models against representative scenarios and acceptance criteria. Verification becomes continuous, not episodic.</p>
<h3><strong>Scalable development for evolving E/E architectures</strong></h3>
<p>Automotive E/E architectures are transitioning from ECU-centric networks to zonal and centralized computing platforms. Software is no longer bound to specific hardware configurations but must now operate reliably across heterogeneous compute targets while remaining portable and scalable, from small controllers to high-performance vehicle computers.</p>
<p>Model-based design supports this requirement by separating system behavior and software intent from hardware implementation. Engineers develop executable models that serve as stable sources of truth. The models can generate production-ready code for a wide range of processors and operating systems, including platforms incorporating AI inference engines and hardware accelerators such as GPUs, DSPs and NPUs. This approach enables the development and validation of AI-enabled functions (e.g. virtual sensors) at the system level, reduces the need to reengineer algorithms for each target, and improves efficiency and consistency across platforms.</p>
<h3><strong>Improving collaboration through model-based design</strong></h3>
<p>Engineering organizations must transform their collaboration models to keep pace with increased complexity. Integrating simulation, virtualization and automated verification directly into CI/CD workflows supports rapid iteration across software, AI models and hardware acceleration strategies. This model-centric approach helps organizations operate more quickly while preserving robustness, safety and long-term maintainability in the era of software-defined and AI-driven vehicles.</p>
<h3><strong>Integrating AI into deterministic engineering workflows</strong></h3>
<p>AI is most effective in automotive development when embedded within a deterministic modeling framework. Within model-based design tools, GenAI-generated content is automatically tied to established interfaces, data definitions and architectural constraints. Model Context Protocol (MCP) capabilities empower engineers with AI assistance while preserving the rigor, repeatability and certification readiness.</p>
<p>Long-term maintainability and certification readiness require deterministic behavior, transparent audit trails and verification evidence that accumulates throughout the lifecycle. Model-based design naturally supports these goals by linking requirements, models, test suites and generated code. Continuous simulation produces verification data throughout development rather than only at the end of a program. When artifacts generated by Gen AI follow the same workflows, they inherit this structure. This ensures that productivity gains do not come at the cost of safety, quality or compliance, and that Gen AI can be adopted at scale.</p>
<h3><strong>Conclusion</strong></h3>
<p>Gen AI and model-based design offer a structured path to accelerate automotive software development while maintaining trust, safety and engineering rigor. Model-based design provides determinism, physics-based validation and traceability. Gen AI adds efficiency and supports faster iteration when integrated within these boundaries.</p>
<p>This combination enables earlier insight into system behavior and deployment across diverse hardware architectures. The model-centric approach ensures consistent collaboration across engineering teams, and promotes reuse and consistency across global programs. Gen AI-enabled model-based design provides a scalable and reliable foundation for developing robust and certifiable automotive systems.</p>
<p><a href="https://automotivetesting.mydigitalpublication.com/september-2024-issue-/page-100"><em>In the September 2024 edition of </em>ATTI<em>, Secondmind’s chief product officer, Morgan Jenkins, discusses the power and limitations of AI</em></a></p>
<p><em>In related news, <a href="https://www.automotivetestingtechnologyinternational.com/news/cae-simulation-modeling/agentic-ai-transforms-mclaren-automotives-entire-engineering-process.html">Agentic AI transforms McLaren Automotive’s entire engineering process</a></em></p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">65534</post-id>		        		  <media:content url="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2026/04/Mathworks_SDV-1.jpg" medium="image" />
        	</item>
		<item>
		<title>&#8220;Embedded storage remains a less scrutinized yet highly exposed attack surface&#8221; – Bernd Niedermeier, Tuxera</title>
		<link>https://www.automotivetestingtechnologyinternational.com/industry-opinion/embedded-storage-remains-a-less-scrutinized-yet-highly-exposed-attack-surface-bernd-niedermeier-tuxera.html</link>
		
		<dc:creator><![CDATA[Bernd Niedermeier, head of automotive market development, Tuxera]]></dc:creator>
		<pubDate>Tue, 03 Mar 2026 16:32:22 +0000</pubDate>
				<category><![CDATA[Industry Opinion]]></category>
		<category><![CDATA[Software Engineering & SDVs]]></category>
		<guid isPermaLink="false">https://www.automotivetestingtechnologyinternational.com/?p=65269</guid>

					<description><![CDATA[<a href="https://www.automotivetestingtechnologyinternational.com/industry-opinion/embedded-storage-remains-a-less-scrutinized-yet-highly-exposed-attack-surface-bernd-niedermeier-tuxera.html"><img width="400" height="225" src="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2026/03/Tuxera_shutterstock_2165428069-400x225.jpg" alt="&#8220;Embedded storage remains a less scrutinized yet highly exposed attack surface&#8221; – Bernd Niedermeier, Tuxera" align="left" style="margin: 0 20px 20px 0;max-width:100%" /></a><p><strong><em>Bernd Niedermeier, head of automotive market development at Tuxera, discusses why embedded storage is the next critical layer in vehicle cybersecurity </em></strong></p>
<p>As vehicles become more defined by code and software, the nature of their vulnerabilities is changing. While perimeter security protecting external interfaces, network communications and over-the-air updates have seen significant progress, embedded storage remains a less scrutinized yet highly exposed attack surface.</p>
<p>SDVs process and retain massive volumes of sensitive data from event logs, AI models, vehicle identities, credentials and firmware.</p>
<p><a href="https://www.automotivetestingtechnologyinternational.com/industry-opinion/embedded-storage-remains-a-less-scrutinized-yet-highly-exposed-attack-surface-bernd-niedermeier-tuxera.html" rel="nofollow">Continue reading &#8220;Embedded storage remains a less scrutinized yet highly exposed attack surface&#8221; – Bernd Niedermeier, Tuxera at Automotive Testing Technology International.</a></p>
]]></description>
										<content:encoded><![CDATA[<p><strong><em><a href="https://www.linkedin.com/in/bernd-niedermeier-a8a1b32/">Bernd Niedermeier</a>, head of automotive market development at <a href="https://www.tuxera.com/">Tuxera</a>, discusses why <span lang="EN-US" style="font-family: 'Century Gothic',sans-serif;">embedded storage is the next critical layer in vehicle cybersecurity </span></em></strong></p>
<p>As vehicles become more defined by code and software, the nature of their vulnerabilities is changing. While perimeter security protecting external interfaces, network communications and over-the-air updates have seen significant progress, embedded storage remains a less scrutinized yet highly exposed attack surface.</p>
<p>SDVs process and retain massive volumes of sensitive data from event logs, AI models, vehicle identities, credentials and firmware. This data is typically stored on flash memory within embedded systems, and often its security slips through the cracks. Embedded data is a rising source of risk, particularly when data management is left to legacy file systems that are not designed for these next-generation vehicles.</p>
<h3><strong>A new role for flash memory</strong></h3>
<p>Historically, automotive storage was used for logging or basic configuration. Today, storage systems are expected to withstand high-frequency data logging, real-time analytics and frequent write/erase cycles often under constrained power and thermal conditions.</p>
<p>Without a robust design, storage becomes vulnerable to security threats. A sudden power loss during a write operation can corrupt entire datasets or firmware. In addition, flash wear or incomplete writes can lead to system instability and contribute to safety risks, which in turn lead to costly in-field interventions.</p>
<p>Insecure storage paths open doors for cyberattackers to tamper with update packages or extract valuable system data. Interestingly, even compliance-grade data encryption alone is not sufficient; it must be paired with integrity verification, secure boot/signed updates and secure key handling.</p>
<h3><strong>The importance of embedded resilience </strong></h3>
<p>To counter these risks, automotive engineers need to adopt a new standard for embedded storage that treats reliability and data integrity as central design parameters. Storage architecture must be built from the ground up with resilience at the core to ensure it is capable of handling the operational requirements of automotive environments.</p>
<p>Equally critical is the ability to ensure atomic write operations. In an embedded context, even a single failed write can leave a log incomplete or a configuration file partially updated, leading to inconsistencies that undermine system behavior. Ensuring that every operation either completes fully or not at all is essential to maintaining coherence.</p>
<p>Security must also be native to the file system. Cryptographic safeguards, including encryption for embedded data and secure key handling, help prevent unauthorized access, even in the event of physical tampering or side-channel attacks. While standards such as <a href="https://unece.org/transport/documents/2021/03/standards/un-regulation-no-155-cyber-security-and-cyber-security">UN R155</a> and <a href="https://www.iso.org/standard/70918.html">ISO/SAE 21434</a> do not mandate specific technical controls, these measures are increasingly expected by OEM security, audit and assurance programs as part of demonstrating effective risk management. This also includes secure erase capabilities. Simply deleting data does not guarantee it is unrecoverable from flash memory. If not properly managed, residual data may remain accessible to attackers, introducing vulnerabilities that persist beyond expected lifecycles.</p>
<p>Finally, any storage solution intended for mission-critical automotive applications must support functional safety requirements, such as those defined by <a href="https://www.iso.org/standard/43464.html">ISO 26262</a>. From a safety perspective, this means demonstrating predictable behavior under fault conditions, including power loss, memory corruption or unexpected system resets, and ensuring the system can transition to or maintain a safe state.</p>
<p>Importantly, these are not theoretical considerations. Testing in automotive-grade environments has shown that purpose-built file systems can maintain 100% data integrity after more than 15,000 hard shutdowns. Such results provide concrete evidence that storage software can contribute to system robustness in environments where reliability and determinism are mandatory.</p>
<p>While compliance with functional safety standards does not in itself address cybersecurity threats, safety and security cannot be treated as independent concerns in modern vehicles. A system that is resilient to faults but vulnerable to malicious manipulation is not ultimately safe. Secure systems must also behave predictably under failure conditions. As vehicles become increasingly software-defined, achieving both safety and security requires coordinated design across storage, software and system architecture.</p>
<h3><strong>Ensuring compliance </strong></h3>
<p>New regulatory frameworks such as <a href="https://www.iso.org/standard/70918.html">ISO/SAE 21434</a>, the <a href="https://www.nhtsa.gov/sites/nhtsa.gov/files/documents/812333_cybersecurityformodernvehicles.pdf">NHTSA Cybersecurity Best Practices for Modern Vehicles</a> and <a href="https://unece.org/transport/documents/2021/03/standards/un-regulation-no-155-cyber-security-and-cyber-security">UN R155</a> are forcing a deeper rethink of in-vehicle system design. Rather than prescribing specific technical measures such as encryption, these frameworks require manufacturers to demonstrate that systems are secure by design, with traceability, risk management and evidence of integrity maintained throughout the vehicle’s lifecycle. The responsibility for how security is achieved and how it is proven remains with the system designer.</p>
<p>Even when open-source implementations are commercially supported, in many cases, the engineers responsible for integrating or modifying the code do not have deep expertise in embedded storage or file systems. This means that achieving a secure and efficient implementation that holds up under regulatory scrutiny or long-term performance demands, particularly in safety-critical environments, becomes challenging.</p>
<p>Engineers must now validate not just how the system performs, but how it fails and whether it fails safely. This has direct implications for the selection of storage technologies and file systems.</p>
<h3><strong>Why embedded storage is a strategic decision</strong></h3>
<p>The case for modernizing embedded storage goes beyond risk reduction. It’s also a driver for cost control, performance consistency and long-term product differentiation.</p>
<p>For instance, avoiding flash overprovisioning through better write management can drive significant cost reductions for manufacturers. When scaled across high-volume platforms, this can translate into lifecycle savings in the millions. Factor in reduced maintenance, extended warranties and higher reliability metrics and the ROI becomes even more compelling.</p>
<p>Moreover, embedded storage resilience supports more agile development. Secure file systems with predictable behavior enable faster testing, smoother OTA deployment and better root cause analysis when faults do occur. These are critical advantages, especially in an industry where time-to-market and regulatory agility matter.</p>
<h3><strong>Validating storage </strong></h3>
<p>Given these stakes, embedded storage must be fully integrated into the testing pipeline. This means validating storage performance across temperature extremes, power cycling and high-write workloads. It also means simulating fault conditions, including mid-write power loss, unexpected resets or firmware anomalies and observing recovery behavior.</p>
<p>Storage systems that pass compliance tests in isolation may still introduce fragility in multi-component environments. Engineers must test for system-level interactions and confirm that the storage layer does not become the weakest link in real-world conditions.</p>
<h3><strong>Securing the future of SDVs </strong></h3>
<p>As the cybersecurity landscape shifts from connectivity to persistence, the importance of secure, resilient data storage grows. The data that remains in the vehicle after the engine shuts off, for instance, logs, credentials and system images, can either support safe operations or become a target for exploitation.</p>
<p>For the automotive engineering community, this is a call to action. Embedded storage must be validated, reinforced and architected for long-term resilience. Not only because regulators demand it, but also because future vehicle safety, reliability and performance depend on it.</p>
<p><a href="https://automotivetesting.mydigitalpublication.com/june-2025/page-22"><em>In the June 2025 edition of </em>ATTI<em>, industry experts discuss how their cybersecurity strategies are evolving to ensure resiliency </em></a></p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">65269</post-id>		        		  <media:content url="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2026/03/Tuxera_shutterstock_2165428069.jpg" medium="image" />
        	</item>
		<item>
		<title>Building transparency in testing</title>
		<link>https://www.automotivetestingtechnologyinternational.com/industry-opinion/building-transparency-in-testing.html</link>
		
		<dc:creator><![CDATA[By Jon M Quigley, automotive testing engineer and founder, Value Transformation]]></dc:creator>
		<pubDate>Mon, 22 Dec 2025 12:53:54 +0000</pubDate>
				<category><![CDATA[Industry Opinion]]></category>
		<category><![CDATA[News]]></category>
		<guid isPermaLink="false">https://www.automotivetestingtechnologyinternational.com/?p=64790</guid>

					<description><![CDATA[<a href="https://www.automotivetestingtechnologyinternational.com/industry-opinion/building-transparency-in-testing.html"><img width="400" height="308" src="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2025/03/Jon-Quigley-400x308.jpg" alt="Building transparency in testing" align="left" style="margin: 0 20px 20px 0;max-width:100%" /></a><p class="p1"><strong><i>Transparency is not about exposing every flaw or overburdening the team with data. It is about ensuring that everyone has a clear, accurate view of what testing tells us</i></strong></p>
<p class="p2">Testing is an information-gathering activity that reveals how well processes, assumptions and designs hold up to reality. Yet, far too often, the outcomes of testing are obscured behind corporate politics, smiley-face dashboards that hide truth, a lack of metrics, or selective reporting that masks more than it reveals.</p>
<p><a href="https://www.automotivetestingtechnologyinternational.com/industry-opinion/building-transparency-in-testing.html" rel="nofollow">Continue reading Building transparency in testing at Automotive Testing Technology International.</a></p>
]]></description>
										<content:encoded><![CDATA[<p class="p1"><strong><i>Transparency is not about exposing every flaw or overburdening the team with data. It is about ensuring that everyone has a clear, accurate view of what testing tells us</i></strong></p>
<p class="p2"><span class="s1">Testing is an information-gathering activity that reveals how well processes, assumptions and designs hold up to reality. Yet, far too often, the outcomes of testing are obscured behind corporate politics, smiley-face dashboards that hide truth, a lack of metrics, or selective reporting that masks more than it reveals. Without transparency, decisions are based on incomplete or misleading information, and risk is managed by hope rather than evidence.</span></p>
<p class="p3"><span class="s1">Testing connects requirements, design and implementation in a continuous loop of learning and correction. When viewed as a separate phase, it becomes an afterthought gatekeeper function at the </span><span class="s1">end of the process. When viewed as a system, however, it becomes a feedback loop for the entire project, identifying defects and performance maladies early, and informing improvement.</span></p>
<p class="p3"><span class="s1">Transparency enables this systemic view that allows input from all perspectives. A transparent testing process shows how requirements are verified, what coverage exists, where defects cluster, emerging risks and what </span>impact these have. When test artifacts, results and<span class="s1"> methods are visible, everyone understands not only what </span>was tested and why, but also that the veracity of those <span class="s1">results is open for review. This transforms testing from a reactive activity to a proactive one, enabling adjustments to designs and project plans, and informed trade-offs.</span></p>
<p class="p3"><span class="s1">Despite the clear benefits, transparency in testing is often resisted – sometimes unintentionally. Executives and managers prize success, and it is challenging to share uncomfortable status reports. Cultural resistance also plays a role. In some organizations, testing is viewed as a cost center or a necessary evil rather<br>
than an integral part of value creation. That mindset encourages concealment: problems are downplayed to avoid blame, and test reports are sanitized to appear favorable. Another barrier is the misuse of metrics.<br>
A 100% pass rate or a high coverage percentage may create the illusion of completeness, even when critical risks remain untested. Transparency requires metrics that illuminate, not decorate.</span></p>
<p class="p3"><span class="s1">Transparent testing depends on process discipline and traceability. Every test case should be traceable to a specific requirement, risk or customer expectation. This traceability matrix not only shows coverage but also highlights gaps – requirements without tests or tests without a clear purpose.</span></p>
<p class="p3"><span class="s1">Testing transparency is a human endeavor. It depends on a culture of open communication, respect and shared accountability. Testers should not merely report defects; they should interpret what those defects mean in terms of system behavior and project risk. Developers, in turn, should engage with testers early<br>
in the process, reviewing test plans and understanding how their work will be evaluated.</span></p>
<p class="p3"><span class="s1">Leadership plays a vital role here. When leaders encourage openness – rewarding honesty over appearance – they create an environment where issues can be raised early, without fear. Transparency thrives where curiosity and problem-solving replace blame.</span></p>
<p class="p3"><span class="s1">Transparent testing metrics tell a story. They show trends, not just totals. For example, defect density by module or test coverage by risk level reveals where attention is needed most. Metrics should guide conversation, not end it.</span></p>
<p class="p3"><span class="s1">Qualitative insights are also important. Understanding the why behind a failure often provides more value than knowing how many failures occurred. Transparent teams combine numbers with narratives – quantitative data contextualized by expert judgment.</span></p>
<p class="p3"><span class="s1">When teams make their testing and results visible, they make their learning visible. Transparency builds not only better products but also better organizations that value facts over assumptions, collaboration over concealment and continuous improvement over static compliance. In the end, transparent testing is more than good engineering – it is good ethics. It is the practice of honesty, discipline and shared accountability in the service of building something that genuinely works, and works as promised.</span></p>
<p><span style="color: #ff0000;"><a style="color: #ff0000;" href="https://automotivetesting.mydigitalpublication.com/september-2025/page-38"><em>The September 2025 edition of </em>ATTI<em> carries a feature exploring how to foster transparency in automotive testing</em></a></span></p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">64790</post-id>		        		  <media:content url="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2025/03/Jon-Quigley-scaled.jpg" medium="image" />
        	</item>
		<item>
		<title>The role of testing in the future of electrified propulsion</title>
		<link>https://www.automotivetestingtechnologyinternational.com/industry-opinion/the-role-of-testing-in-the-future-of-electrified-propulsion.html</link>
		
		<dc:creator><![CDATA[Rob Smith]]></dc:creator>
		<pubDate>Mon, 15 Dec 2025 10:00:32 +0000</pubDate>
				<category><![CDATA[Industry Opinion]]></category>
		<guid isPermaLink="false">https://www.automotivetestingtechnologyinternational.com/?p=64526</guid>

					<description><![CDATA[<a href="https://www.automotivetestingtechnologyinternational.com/industry-opinion/the-role-of-testing-in-the-future-of-electrified-propulsion.html"><img width="400" height="224" src="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2025/11/cell-6-flexible-output-dyno-with-integrated-transmission-copy-2.jpg-400x224.png" alt="The role of testing in the future of electrified propulsion" align="left" style="margin: 0 20px 20px 0;max-width:100%" /></a><p><em><strong>As manufacturers push for shorter development cycles, reliance on virtual engineering and validation is growing fast. High-fidelity simulation and model-based design allow teams to iterate concepts more quickly than ever, but physical testing remains a vital part of the development chain. Rob Smith, head of development and test at propulsion system development partner Drive System Design, explores physical and virtual testing</strong></em></p>
<p>Physical tests at any level introduce risks. These include logistical and planning challenges, as well as additional program costs. </p>
<p><a href="https://www.automotivetestingtechnologyinternational.com/industry-opinion/the-role-of-testing-in-the-future-of-electrified-propulsion.html" rel="nofollow">Continue reading The role of testing in the future of electrified propulsion at Automotive Testing Technology International.</a></p>
]]></description>
										<content:encoded><![CDATA[<p><em><strong>As manufacturers push for shorter development cycles, reliance on virtual engineering and validation is growing fast. High-fidelity simulation and model-based design allow teams to iterate concepts more quickly than ever, but physical testing remains a vital part of the development chain. Rob Smith, head of development and test at propulsion system development partner <a href="https://www.drivesystemdesign.com/">Drive System Design</a>, explores physical and virtual testing</strong></em></p>
<p>Physical tests at any level introduce risks. These include logistical and planning challenges, as well as additional program costs.  Despite this, the demand for focused testing to support model correlation is increasing. Robust design verification (DV) and product validation (PV) programs remain non‑negotiable, underpinning confidence in product safety and performance.</p>
<h3><strong>The purpose of physical testing</strong></h3>
<p>Testing has always been a necessary way to quantify and assess many aspects of a product’s performance and characteristics.</p>
<p>Physical test results have long been the benchmark against which computer-aided engineering (CAE) models are correlated – a necessary step to ensure simulations represent reality for the full range of operating conditions.</p>
<h3><strong>Recent trends</strong></h3>
<p>With ever-improving computational power, product development programs are increasingly starting with the creation of digital twins, which are high‑fidelity, virtual representations of physical systems or components. Rather than acting solely as a pass/fail assessment, early test cycles are now tailored to strengthen model accuracy – deliberately selected load cases, boundary conditions and sensor arrays feed the virtual model with targeted data.</p>
<p>Test phases often mirror elements of conventional DV plans, but with a different emphasis, focusing on correlation points and characterization boundaries that make the digital twin trustworthy across the design space. That can mean smaller, more impactful tests executed quickly and iterated frequently.</p>
<h3><strong>Reducing risk through early virtual correlation</strong></h3>
<p>While physical testing is still a necessary part of any development program, early correlation with virtual models and simulations minimizes technical, fiscal, logistical and schedule risks. Issues discovered late in a program or close to production are far more expensive to fix and can jeopardize launch timelines. In extreme cases, they can even damage consumer confidence and brand reputation.</p>
<p>Equally important is the less quantifiable but critical return on investment – confidence. Confidence to scale production, to pass certification cycles with fewer surprises, and to stand behind a product in service. Well-executed test programs reduce uncertainty. They give engineering, manufacturing and business stakeholders the evidence to make faster, bolder decisions.</p>
<figure id="attachment_64530" aria-describedby="caption-attachment-64530" class="wp-caption alignleft"><img loading="lazy" decoding="async" class="wp-image-64530 size-medium" src="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2025/11/cell-6-flexible-output-dyno-with-integrated-transmission.jpg-400x533.png" alt="full view of test cell" width="400" style="display:block;margin:10px auto;max-width:400px;max-width:100%;"><figcaption id="caption-attachment-64530" class="wp-caption-text">Full view of test cell</figcaption></figure>
<h3><strong>Will digital twins replace the need for physical tests?</strong></h3>
<p>Digital twins are powerful accelerants. They let engineers explore options, run virtual what‑if scenarios and optimize systems faster than physical prototypes allow. But regardless of how well correlated they are, digital twins cannot capture every real‑world uncertainty.</p>
<p>There are factors that can only arise during physical testing, such as manufacturing variability, material property deviations or defects, and subtle system‑to‑system interactions. These can defeat even the best virtual model. Some sectors – aerospace is a notable example – have tightly controlled material processes that reduce this uncertainty, but that control comes at the expense of longer development cycles and higher cost.</p>
<p>Physical testing is the data source that validates and calibrates digital twins. It supplies ground truth for material behaviors, component interactions and environmental influences. In turn, validated digital twins enable predictive maintenance strategies, support virtual certification scenarios and let teams explore failure modes that would be destructive or impractical to test physically. The sooner a manufacturer can build and trust a digital twin, the more effective and efficient the subsequent development cycles become.</p>
<h3><strong>What can we expect in the future of testing?</strong></h3>
<p>The pace of testing progress will be driven by two technical shifts: increased modeling capability and faster, higher‑quality test data.</p>
<p>Modeling is becoming more accessible. Computational power and improved numerical methods now make it commercially viable to model fluid systems and thermal‑mechanical interactions that were once prohibitively expensive. Improved simulation of splash lubrication, transient cooling and multi‑physics coupling is already narrowing gaps to physical testing.</p>
<p>Real‑time processing and near‑continuous model updates will become standard practice. This places new demands on instrumentation, automation and test engineers. To capitalize on shorter development cycles, test systems must deliver reliable data at much higher rates and with faster post‑processing.</p>
<p>An example from development practice is a highly automated maximum torque per amp (MTPA) optimization routine. By combining machine learning, advanced test equipment and in‑house control and automation systems, it is possible to iterate tens of thousands of operating points in a matter of days. This delivers processed results ready for immediate analysis, which can be fed back into digital twins quickly, shortening the loop between hypothesis, test and update.</p>
<p>We should also expect innovation in measurement techniques and sensors. Telemetry solutions for rotor temperature, non‑intrusive torque measurements, and compact, high‑accuracy speed sensors are examples that will enable new test regimes. Treating test capability as strategic infrastructure by investing in well‑designed assets, integrating them into early design phases and using their data to feed both physical and virtual models will be essential.</p>
<h3><strong>Testing as a strategic enabler</strong></h3>
<p>Testing is often seen as a validation chore at the end of development. In a world of digital twins and rapid iteration, testing should be reframed as an enabler. It can be the provider of trusted data that lets virtual engineering unlock value.</p>
<p>The future will not see physical testing disappear. It will see testing become faster, more expansive in terms of data acquired, and more deeply integrated with simulation. This shift will reduce program risk, speed up time-to-market and, ultimately, enable the kind of propulsion innovation the industry continues to demand.</p>
<p>For engineers and program leads, the practical takeaway is simple: treat physical development testing as strategic. Build virtual model correlation into early test plans, invest in the right instrumentation and test equipment, and use those test results to mature digital twins as early as possible. Do that, and testing will shift from a necessary overhead into a competitive advantage.</p>
<p><em>Explore: <a href="https://www.automotivetestingtechnologyinternational.com/news/component-testing/electroformed-contacts-set-to-redefine-high-end-electronics-testing.html">Electroformed contacts set to redefine high-end electronics testing</a></em></p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">64526</post-id>		        		  <media:content url="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2025/11/cell-6-flexible-output-dyno-with-integrated-transmission-copy-2.jpg.png" medium="image" />
        	</item>
		<item>
		<title>Shared virtual testing shapes the path to SDV rollout</title>
		<link>https://www.automotivetestingtechnologyinternational.com/news/software-engineering-sdvs/shared-virtual-testing-shapes-the-path-to-sdv-rollout.html</link>
		
		<dc:creator><![CDATA[Judy Curran, CTO for automotive, Synopsys]]></dc:creator>
		<pubDate>Fri, 05 Dec 2025 15:27:24 +0000</pubDate>
				<category><![CDATA[CAE, Simulation & Modeling]]></category>
		<category><![CDATA[Industry Opinion]]></category>
		<category><![CDATA[Software Engineering & SDVs]]></category>
		<guid isPermaLink="false">https://www.automotivetestingtechnologyinternational.com/?p=64625</guid>

					<description><![CDATA[<a href="https://www.automotivetestingtechnologyinternational.com/news/software-engineering-sdvs/shared-virtual-testing-shapes-the-path-to-sdv-rollout.html"><img width="400" height="224" src="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2025/12/Synopsys_hoyoun-lee-P-h23hH2ySM-unsplash-scaled-e1764948347633-400x224.jpg" alt="Shared virtual testing shapes the path to SDV rollout" align="left" style="margin: 0 20px 20px 0;max-width:100%" /></a><p><strong><em>Judy Curran, CTO of automotive at Synopsys and former Ford exec, discusses how shared virtual testing environments are helping reduce recalls and speed up software development</em></strong><br />
The software-defined vehicle is often portrayed as the future of motoring – a fully connected, endlessly updatable car, akin to a smartphone on wheels. In practice, however, the path to this vision is far from smooth. While European consumers continue to spend a growing portion of their digital lives on mobile apps, over-the-air updates in vehicles face unique challenges that make this scale of agility much harder to achieve.</p>
<p><a href="https://www.automotivetestingtechnologyinternational.com/news/software-engineering-sdvs/shared-virtual-testing-shapes-the-path-to-sdv-rollout.html" rel="nofollow">Continue reading Shared virtual testing shapes the path to SDV rollout at Automotive Testing Technology International.</a></p>
]]></description>
										<content:encoded><![CDATA[<div><strong><em><a href="https://www.linkedin.com/in/judycurran/">Judy Curran</a>, CTO of automotive at <span style="color: #ff0000;"><a style="color: #ff0000;" href="https://www.synopsys.com/">Synopsys</a></span> and former Ford exec, discusses how shared virtual testing environments are helping reduce recalls and speed up software development</em></strong></div>
<div class="x_elementToProof">The software-defined vehicle is often portrayed as the future of motoring – a fully connected, endlessly updatable car, akin to a smartphone on wheels. In practice, however, the path to this vision is far from smooth. While <span style="color: #ff0000;"><u><a id="OWA332f4b33-2d1b-5d4d-28ac-d5a707608004" class="x_OWAAutoLink" style="color: #ff0000;" title="https://www.statista.com/topics/8693/mobile-app-usage-in-europe/?srsltid=AfmBOorRJjH4wvacYXtk3zrzXu_FIgRT-Nh0ZJwgWkGSSCllo-rvJO-5" href="https://www.statista.com/topics/8693/mobile-app-usage-in-europe/?srsltid=AfmBOorRJjH4wvacYXtk3zrzXu_FIgRT-Nh0ZJwgWkGSSCllo-rvJO-5" target="_blank" rel="noopener noreferrer" data-auth="NotApplicable" data-linkindex="1">European consumers continue to spend a growing portion of</a></u> </span>their digital lives on mobile apps, over-the-air updates in vehicles face unique challenges that make this scale of agility much harder to achieve. Unlike smartphones, automotive software must meet stringent safety standards, integrate with complex hardware and operate reliably under extreme conditions, challenges that are only now being addressed through innovation in testing and integration.</div>
<h3 class="x_elementToProof"><b>Why car updates are harder than phone updates</b></h3>
<div class="x_elementToProof">Modern vehicles are complex ecosystems of hardware and software from multiple suppliers, all bound by strict safety regulations. A software patch on a phone may affect only the user interface or a single app, whereas in a car, an update can influence braking, steering or airbag systems. This makes verification and validation far more critical, and time consuming.</div>
<div class="x_elementToProof">Temperature management further complicates matters. Chips in vehicles often operate in extreme conditions, from the freezing Scottish Highlands to the heat of the southeast on summer roads. Unlike phones, these processors cannot easily be replaced if a software error causes overheating. Even minor inefficiencies can cascade into significant safety and reliability concerns.</div>
<h3 class="x_elementToProof"><b>Chokepoints in the supply chain</b></h3>
<div class="x_elementToProof">Another major hurdle lies in supplier integration. Cars today incorporate software and hardware from dozens of Tier 1 and 2 suppliers. Aligning release schedules, ensuring compatibility and resolving bugs across these suppliers can introduce delays measured in months rather than hours.</div>
<div class="x_elementToProof">Additionally, the physical nature of automotive components imposes constraints that mobile devices do not face. Chips must fit within existing space, adhere to strict thermal limits and interface reliably with legacy systems. Any redesign or recall is exponentially more costly than a simple app patch, making careful pre-release testing essential.</div>
<h3 class="x_elementToProof"><b>Virtual testing: a game changer </b></h3>
<div class="x_elementToProof">To overcome these challenges, the industry is increasingly turning to shared virtual testing environments. By simulating vehicles and their subsystems in a digital space, engineers can detect issues that might otherwise emerge only after production. This approach reduces recalls and accelerates software deployment without compromising safety.</div>
<div class="x_elementToProof">UK OEMs and suppliers have begun leveraging these tools to streamline development. For instance, virtual prototypes are enabling engineers in Coventry and Birmingham to test hundreds of scenarios simultaneously, eliminating bottlenecks created by limited physical prototypes. This collaborative, digital-first approach not only shortens development cycles but also provides regulators with verifiable evidence that updates meet safety standards.</div>
<h3 class="x_elementToProof"><b>Looking forward</b></h3>
<div class="x_elementToProof">The software defined vehicle remains an ambitious goal, but it is increasingly within reach. Integrated customer features that involve multiple hardware sensors/actuators, electronic modules, stringent regulations and operational parameters can now be virtually validated as part of the design process. Virtual design and validation saves a tremendous amount of time and engineering cost, which is driving a design revolution across automotive as well as other industries. For the UK market, where, <a href="https://www.reuters.com/world/uk/uk-new-car-sales-rise-2024-industry-data-shows-2025-01-06/">according to Reuters</a>, new car sales reached 1.95 million units in 2024, the impact is already tangible. Faster, safer updates mean vehicles can remain cutting-edge throughout their lifecycle, enhancing both consumer satisfaction and road safety.</div>
<div><span style="color: #ff0000;"><a style="color: #ff0000;" href="https://automotivetesting.mydigitalpublication.com/november-2025-issue/page-36"><em>In the November issue of </em>ATTI<em>, Stellantis discusses the learnings of adopting HIL to test software-defined vehicles </em></a></span></div>
<div><em>In related news, <a href="https://www.automotivetestingtechnologyinternational.com/news/software-engineering-sdvs/software-test-specialists-solid-sands-and-plum-hall-team-up.html">Software test specialists Solid Sands and Plum Hall team-up </a></em></div>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">64625</post-id>		        		  <media:content url="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2025/12/Synopsys_hoyoun-lee-P-h23hH2ySM-unsplash-scaled-e1764948347633.jpg" medium="image" />
        	</item>
		<item>
		<title>Why Renault is trusting the wind tunnel for Euro 7 prep</title>
		<link>https://www.automotivetestingtechnologyinternational.com/industry-opinion/in-preparation-for-euro-7-renault-is-scrutinizing-the-master-van-in-the-wind-tunnel.html</link>
		
		<dc:creator><![CDATA[Michael Gabriel, senior aerodynamic engineer – utility vehicles, Renault]]></dc:creator>
		<pubDate>Wed, 19 Nov 2025 09:58:58 +0000</pubDate>
				<category><![CDATA[Aerodynamics]]></category>
		<category><![CDATA[Emissions & Fuel Consumption]]></category>
		<category><![CDATA[Industry Opinion]]></category>
		<guid isPermaLink="false">https://www.automotivetestingtechnologyinternational.com/?p=64386</guid>

					<description><![CDATA[<a href="https://www.automotivetestingtechnologyinternational.com/industry-opinion/in-preparation-for-euro-7-renault-is-scrutinizing-the-master-van-in-the-wind-tunnel.html"><img width="400" height="266" src="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2025/11/Original-22444-master-e-tech-drivingelectric-400x266.jpg" alt="Why Renault is trusting the wind tunnel for Euro 7 prep" align="left" style="margin: 0 20px 20px 0;max-width:100%" /></a><p class="p1"><strong><i>In preparation for Euro 7, Renault is scrutinizing the Master van in the wind tunnel. It will be some time before CFD fully aligns with wind tunnel results, but the </i><i>new Renault Master serves as an exemplary aerodynamics success story</i><i>. By Michael Gabriel, senior aerodynamic engineer, Renault utility vehicles department </i></strong></p>
<p class="p1">Large utility vehicles significantly trail their passenger car counterparts when it comes to aerodynamic development.</p>
<p><a href="https://www.automotivetestingtechnologyinternational.com/industry-opinion/in-preparation-for-euro-7-renault-is-scrutinizing-the-master-van-in-the-wind-tunnel.html" rel="nofollow">Continue reading Why Renault is trusting the wind tunnel for Euro 7 prep at Automotive Testing Technology International.</a></p>
]]></description>
										<content:encoded><![CDATA[<p class="p1"><strong><i>In preparation for Euro 7, Renault is scrutinizing the Master van in the wind tunnel. It will be some time before CFD fully aligns with wind tunnel results, but the </i><i>new Renault Master serves as an exemplary aerodynamics success story</i><i>. By <span style="color: #ff0000;"><a style="color: #ff0000;" href="https://www.linkedin.com/in/michael-gabriel-4901354a/">Michael Gabriel</a></span>, senior aerodynamic engineer, <span style="color: #ff0000;"><a style="color: #ff0000;" href="https://business.renault.co.uk/">Renault utility vehicles</a></span> department </i></strong></p>
<p class="p1"><span style="font-size: 14px;">Large utility vehicles significantly trail </span><span style="font-size: 14px;">their passenger car counterparts when </span><span style="font-size: 14px;">it comes to aerodynamic development. There are many reasons for this, including less stringent regulation, longer product </span><span style="font-size: 14px;">cycles, poorly adapted resources and different customer priorities, but the winds of change have finally arrived.</span></p>
<p class="p3"><span class="s1">Euro 6 regulations began pushing many larger vans into the category affected by the CAFE standards, and another significant step will be made with <span style="color: #ff0000;"><a style="color: #ff0000;" href="https://automotivetesting.mydigitalpublication.com/march-2025/page-28">Euro 7</a></span> regulations set to take effect in 2027. Fierce competition is forcing OEMs to reduce their development cycles to stay competitive, while customers are being bombarded with information about the potential for operational cost reduction thanks to aerodynamically optimized vehicles.</span></p>
<p class="p3"><span class="s1">Finally, with the December 2024 inauguration of the Automotive Test Section (ATS) at <span style="color: #ff0000;"><a style="color: #ff0000;" href="https://automotivetesting.mydigitalpublication.com/march-2025/page-12">DNW’s Large Low-Speed Facility</a></span> in the Netherlands, the large utility vehicle industry has a turnkey solution for precise aerodynamic measurement. In fact, the ATS is in complete accordance with the Worldwide Harmonized Light Commercial Vehicle Test Procedure requirements. This perfect storm of events will inevitably accelerate the shift toward more aerodynamically efficient utility vehicles.</span></p>
<p class="p3"><span class="s1">When I was assigned as chief aerodynamic engineer on the new Renault Master project (XDD) in early 2018 – during the business strategy phase and just before the preconcept engineering kick-off – aerodynamic optimization for large vans was close to non-existent at the company. However, a competitor that had just won a coveted award was making a significant marketing effort to promote its world-class aerodynamic performance, which caught the attention of top management.</span></p>
<p class="p3"><span class="s1">At the kick-off event a few weeks later, it was announced that the XDD Master would be the world’s most aerodynamic large van at launch. It was an incredible challenge. It took more than three years of focused teamwork to achieve the goal. Using a combination of competitor deep-dive analysis, hundreds of CFD calculations, around 200 hours of reduced-scale wind tunnel testing and regular intensive taskforce brainstorming, the general shape, engine cooling and exterior features were optimized. The achievement was confirmed during WLTP certification testing at DNW.</span></p>
<p class="p3"><span class="s1">The result is a new Master large van family with 20% less drag and considerably reduced energy consumption. This means lower operating costs but also increased range and crosswind stability and, most importantly, without a negative impact on the vehicle’s utility, access, ergonomics or payload. The ‘advanced aerodynamics’ were specifically cited by the 25 international journalists that voted the new Renault Master IVOTY 2025.</span></p>
<p class="p3"><span class="s1">While the XDD aero project can be considered a success at this point, the story continues with prep for Euro 7 certification. This month we will perform the first Master pre-Euro 7 certification testing using the wide-belt system for dual-wheeled utility vehicles. It’ll be a chance to test and perfect the Euro 7 aero package while also making our first use of the rolling resistance system in the <span style="color: #ff0000;"><a style="color: #ff0000;" href="https://automotivetesting.mydigitalpublication.com/march-2025/page-12">ATS</a></span>.</span></p>
<p class="p3"><span class="s1">As I look back on my experience with this project, one subject particularly stands out: the issue of computer simulation versus physical testing. Clearly CFD will continue to gain importance and use as it is constantly improving. However, several large hurdles remain, which prevent an extremely accurate correlation with physical testing. The main limitation of CFD simulation is that it does not take into account model deformation. </span></p>
<p class="p3"><span class="s1">At the 140km/h measurement speed of WLTP testing, things move a lot. Rubber air dams bend back, doors and hoods move outward, wheel arch liners and underbody panels vibrate, and the flexible air guides for engine cooling deform considerably. In addition, the tires and chassis change shape and position under the weight of the vehicle. None of this is taken into account by CFD, as the calculation burden would increase enormously.</span></p>
<p class="p3"><span class="s1">In addition, utility vehicles have a huge wake compared with passenger vehicles, which accounts for a majority of the drag. A slight miscalculation in wake balance can have a large impact on the CdA result calculated by the software. Having compared a large number of wind tunnel tomography images and CFD wake calculations, I know that they are very similar but never identical. I believe a large part of the error in correlation I witnessed was caused by this discrepancy.</span></p>
<p class="p3"><span class="s1">Therefore, I learned to use CFD for what it’s great at: visualizing the airflow. With CFD you can quickly detect early detachment at the rear, areas of localized turbulence and leaks in the air guides. There’s no better tool to explain to the architectural or design department why a change is needed. But when you need the precise drag value for a project milestone, or when it’s time to tweak the air dam or rear roof drop to balance the wake, you have to spend some time in the wind tunnel.</span></p>
<p><em>This thought leadership piece was published in the September edition of </em>ATTI<em>. <span style="color: #ff0000;"><a style="color: #ff0000;" href="https://automotivetesting.mydigitalpublication.com/september-2025/">Read the magazine online for free – it’s packed full of news, interviews and features, including how to maintain transparency in testing, the story behind the new Nissan Leaf, and the latest in battery testing and simulation</a></span></em></p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">64386</post-id>		        		  <media:content url="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2025/11/Original-22444-master-e-tech-drivingelectric-scaled.jpg" medium="image" />
        	</item>
		<item>
		<title>Why Euro 6e-bis brings another pre-production challenge for OEMs</title>
		<link>https://www.automotivetestingtechnologyinternational.com/industry-opinion/why-euro-6e-bis-brings-another-pre-production-challenge-for-oems.html</link>
		
		<dc:creator><![CDATA[Simon Williams CEng MIMechE, regulatory expert, Mahle Powertrain]]></dc:creator>
		<pubDate>Thu, 18 Sep 2025 15:55:51 +0000</pubDate>
				<category><![CDATA[Industry Opinion]]></category>
		<guid isPermaLink="false">https://www.automotivetestingtechnologyinternational.com/?p=63716</guid>

					<description><![CDATA[<a href="https://www.automotivetestingtechnologyinternational.com/industry-opinion/why-euro-6e-bis-brings-another-pre-production-challenge-for-oems.html"><img width="400" height="224" src="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2025/09/S-Williams-2020-HR-copy.jpg-400x224.png" alt="Why Euro 6e-bis brings another pre-production challenge for OEMs" align="left" style="margin: 0 20px 20px 0;max-width:100%" /></a><p>The UK’s adoption of Euro 6e-bis emissions standards from April 2026 will represent a shift in how plug-in hybrid vehicles must be tested and validated during development. While original equipment manufacturers (OEMs) have been planning for this transition with increasing battery sizes for plug-in hybrid electric vehicles (PHEVs), the stagnating private purchases of electric vehicles (EVs) mean OEMs need to consider the increasing demand for PHEVs and focus on improving internal combustion engine (ICE) efficiency and increasing EV efficiency alongside larger batteries.</p>
<p><a href="https://www.automotivetestingtechnologyinternational.com/industry-opinion/why-euro-6e-bis-brings-another-pre-production-challenge-for-oems.html" rel="nofollow">Continue reading Why Euro 6e-bis brings another pre-production challenge for OEMs at Automotive Testing Technology International.</a></p>
]]></description>
										<content:encoded><![CDATA[<p>The UK’s adoption of Euro 6e-bis emissions standards from April 2026 will represent a shift in how plug-in hybrid vehicles must be tested and validated during development. While original equipment manufacturers (OEMs) have been planning for this transition with increasing battery sizes for plug-in hybrid electric vehicles (PHEVs), the stagnating private purchases of electric vehicles (EVs) mean OEMs need to consider the increasing demand for PHEVs and focus on improving internal combustion engine (ICE) efficiency and increasing EV efficiency alongside larger batteries. Vehicles currently progressing through validation cycles may need complete recalibration to avoid catastrophic CO<sub>2</sub> rating increases.</p>
<p>At <a href="https://www.mahle-powertrain.com/">Mahle Powertrain</a>, we already work to EU standards while maintaining comprehensive UK certification capabilities. This gives us clear visibility into what’s coming. We’re seeing PHEVs that would achieve 10g/km CO<sub>2</sub> ratings under current UK protocols potentially jumping to 30g/km or higher under Euro 6e-bis utility factor calculations. This is a fundamental change that demands immediate attention from pre-production testing teams.</p>
<p>The challenge is particularly acute because the new standards don’t just change the final compliance testing; they alter the calculation of the OEM fleet average CO<sub>2</sub>, causing PHEVs to contribute more to this fleet average CO<sub>2</sub>. This means OEMs have to sell more EV vehicles in a period of low consumer demand or improve the efficiency of the ICE and EV systems in PHEV and hybrid applications. OEMs continuing to develop PHEVs using current UK testing methodologies risk discovering compliance issues too late in the development cycle to implement cost-effective solutions.</p>
<h3><strong>Understanding utility factor calculations                </strong></h3>
<p>The core of Euro 6e-bis lies in utility factor calculations, which alter how plug-in hybrid vehicles are assessed during type approval. Under current UK regulations, PHEVs undertake straightforward charge-depleting and charge-sustaining test cycles that produce CO<sub>2</sub> figures that are not representative of all use cases. Euro 6e-bis introduces an updated calculation that biases the calculation toward the ICE operation of the vehicle, therefore placing increased relevance on ICE efficiency.</p>
<p>From our technology-agnostic testing experience, the utility factor methodology considers how frequently drivers actually charge their PHEVs, applying statistical weighting to different driving scenarios. This means that a PHEV designed and validated under current UK protocols could see its official CO<sub>2</sub> rating triple when subjected to Euro 6e-bis testing, even without any changes to the vehicle itself.</p>
<p>For pre-production testing teams, this focus on ICE and EV efficiency creates immediate challenges. At Mahle, we’re addressing this through our range extender (REx) and advanced battery systems technology, which allows us to optimize both electric range and charge-sustaining performance to meet the new requirements.</p>
<h3><strong>Validation timelines and fleet average impact</strong></h3>
<p>The transition to Euro 6e-bis creates significant challenges around OEM fleet average CO<sub>2</sub> compliance, particularly given consumer apathy toward private EV purchases. The issue for OEMs is the fast implementation of the UK regulation, which needs careful planning to ensure there are no fleet average CO<sub>2</sub> exceedances – a significant risk when considering what consumers currently want to purchase.</p>
<p>We’re working with several OEMs to understand how the new testing protocols will affect their ability to meet fleet targets while satisfying market demand. The emphasis on improving ICE efficiency and implementing improved battery technology becomes critical when PHEVs contribute more heavily to fleet averages under the new calculation methods.</p>
<p>OEMs with PHEVs planned for launch in late 2026 or early 2027 face strategic decisions about powertrain development priorities. Euro 6e-bis requires different approaches to ICE optimization and battery system integration.</p>
<p>Progressive OEMs are implementing strategies that account for regulatory compliance and market realities; powertrain configurations that can achieve acceptable fleet average contributions while meeting consumer expectations for PHEV performance.</p>
<h3><strong>Changing PHEV development processes</strong></h3>
<p>Forward-thinking OEMs are implementing Euro 6e-bis validation throughout development processes, with Mahle’s ICE efficiency and REx/PHEV technology providing crucial capabilities for customers navigating this transition. Our range extender technology and advanced battery systems allow OEMs to achieve the balance between electric efficiency and ICE performance that Euro 6e-bis demands.</p>
<p>The process changes extend beyond testing protocols to encompass fundamental powertrain architecture decisions. PHEV concepts that work well under current UK regulations may be fundamentally unsuited to Euro 6e-bis requirements, making early validation crucial for avoiding costly late-stage changes.</p>
<p>We’re seeing OEMs revisit their PHEV portfolio strategies in light of both Euro 6e-bis requirements and market demand patterns. Our REx and battery technology solutions help OEMs develop powertrains that can meet the new utility factor calculations while delivering the performance characteristics consumers expect.</p>
<p>For Mahle Powertrain, our early adoption of Euro 6e-bis testing protocols positions us to support OEMs through this transition. Our dual UK-EU testing capabilities allow us to provide comparative analysis that helps OEMs understand the specific implications of EU6e and beyond, along with global regulations, for their vehicle programs.</p>
<p>To ensure that OEMs have the correct fleet mix to achieve customer requirements and type approval legislation requirements, Euro 6e-bis represents a current development reality that demands immediate attention. Since EU6e is already established in Europe, those adapting advanced ICE efficiency will navigate the transition successfully while meeting regulatory requirements and market demands.</p>
<p><em>In related news, <a href="https://www.automotivetestingtechnologyinternational.com/news/battery-powertrain-testing/uks-faraday-institution-pledges-9m-for-advanced-battery-research-and-commercial-scale-up.html">UK’s Faraday Institution pledges £9m for advanced battery research and commercial scale-up</a></em></p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">63716</post-id>		        		  <media:content url="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2025/09/S-Williams-2020-HR-copy.jpg.png" medium="image" />
        	</item>
		<item>
		<title>Hardware-in-the-loop: key challenges and considerations</title>
		<link>https://www.automotivetestingtechnologyinternational.com/industry-opinion/hardware-in-the-loop-key-challenges-and-considerations.html</link>
		
		<dc:creator><![CDATA[Jon M Quigley,  Automotive testing engineer and founder, Value Transformation]]></dc:creator>
		<pubDate>Tue, 16 Sep 2025 09:02:44 +0000</pubDate>
				<category><![CDATA[Industry Opinion]]></category>
		<guid isPermaLink="false">https://www.automotivetestingtechnologyinternational.com/?p=63697</guid>

					<description><![CDATA[<a href="https://www.automotivetestingtechnologyinternational.com/industry-opinion/hardware-in-the-loop-key-challenges-and-considerations.html"><img width="400" height="308" src="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2025/09/new-headshot1-copy-400x308.jpg" alt="Hardware-in-the-loop: key challenges and considerations" align="left" style="margin: 0 20px 20px 0;max-width:100%" /></a><p><em><strong>The successful implementation and upkeep of a HIL rig depends not only on initial capital but also on access to a mix of specialized skills</strong></em></p>
<p class="p2">The development of vehicles is complicated. In the past, we built prototype versions to learn the scope of the system and gather details on its functionality and performance. Hardware-in-the-loop testing is a vital enabler for safe, reliable and cost-effective development. Besides helping to define systems, it is used to test a system long before all the constituent components have been made.</p>
<p><a href="https://www.automotivetestingtechnologyinternational.com/industry-opinion/hardware-in-the-loop-key-challenges-and-considerations.html" rel="nofollow">Continue reading Hardware-in-the-loop: key challenges and considerations at Automotive Testing Technology International.</a></p>
]]></description>
										<content:encoded><![CDATA[<p><em><strong>The successful implementation and upkeep of a HIL rig depends not only on initial capital but also on access to a mix of specialized skills</strong></em></p>
<p class="p2"><span class="s1">The development of vehicles is complicated. In the past, we built prototype versions to learn the scope of the system and gather details on its functionality and performance. Hardware-in-the-loop testing is a vital enabler for safe, reliable and cost-effective development. Besides helping to define systems, it is used to test a system long before all the constituent components have been made. </span></p>
<p class="p3"><span class="s1">HIL testing is an essential component within the broader framework of model-based development, particularly for engineering complex control systems, embedded software and safety-critical applications. It integrates physical hardware components (such as ECUs or sensors) with simulated components in a real-time simulated environment. Unlike pure software simulation or physical road tests, HIL provides a hybrid, highly controlled setting. We can simulate missing components under development and exercise a hybrid of actual and simulated components under simulated operation. </span></p>
<p class="p3"><span class="s1">Vehicles are increasingly loaded with ECUs, ADAS and intricate software. Developing multiple ECUs takes time, often starting with prototype parts that represent some of the attributes of the specific system. Although prototype creation is much faster than it used to be, it still takes time to lay out boards and write software for features. HIL provides the ability to explore multiple system designs and functional apportionment early in the development effort.</span></p>
<p class="p3"><span class="s1">Systems include ECUs, electrical components and sensors that are part of the entire system. A system may also include models of other elements or simulated components. The design of the hardware portions of the system that emulate other components will require low latency – that is, propagation of signals and component broadcasts via communication. This will include an emulation of the system environment, where high-fidelity component models emulate ECU responses, vehicle dynamics, road conditions, sensor inputs and fault conditions. Real-time computers and interfaces connect hardware and simulation for instantaneous interaction.</span></p>
<p class="p3"><span class="s1">Designing and managing high-fidelity simulation environments requires specialized expertise. There is a need for expertise in electronics and electrical hardware, software and real-time simulation, which is not often found in one person.</span></p>
<p class="p3"><span class="s1"> Setting up HIL systems requires specialized, often expensive, hardware and simulation tools. This can limit adoption, especially for smaller teams or startups. The initial HIL setup, for example, will need to be on a platform that does not introduce undue latency beyond the expectations of the vehicle system. Hardware that can coordinate multiple ECUs and communication protocols while avoiding timing mismatches is critical. Even minor latency issues or signal desynchronization can skew test results and mask actual faults. </span></p>
<p class="p3"><span class="s1">Simulation of modern vehicle systems requires high-fidelity models for subsystems such as motors, sensors and ECUs. The models are only as good as the hardware they mimic, which is reflected in the initial setup costs. Capturing second- and third-order effects or dynamic behaviors makes models complex and demands powerful simulation hardware. Inaccurate or incomplete models lead to misleading test outcomes, undermining the value of HIL validation. </span></p>
<p class="p3"><span class="s1">Sensors, actuators and other hardware used in HIL may have physical or signal constraints, meaning some aspects of real-world behavior can’t be fully replicated in the lab without investing in engineering time to uncover and adequately address them. This requires engineering talent to understand the gap, work to close it where possible, and note the limitations in simulating the system. This is but one level of specialized skill required for success.</span></p>
<p class="p3"><span class="s1">Generating realistic sensor data and simulating all relevant physical phenomena (including edge cases and faults) is challenging. Advanced use cases such as ADAS require vast, high-quality scenario libraries, which are time-consuming to build.</span></p>
<p class="p3"><span class="s1">As vehicle features grow in complexity and new standards emerge, HIL test benches need frequent updates to remain relevant and support continuous integration and version control. Scalability to accommodate new hardware or test scenarios can be a logistical challenge. The tool itself will need to fall under configuration management for two reasons. First, there will be a need to address specific system incarnations if the HIL rig is used to model more than one vehicle platform or a variety of vehicle incarnations. Second, we will need to be able to go back to previous versions of the test tool. </span></p>
<p class="p3"><span class="s1">Automating scenario generation, software reflashing and repeated validation while maintaining reproducible and valid ‘golden’ test data is challenging, especially across development cycles. The test and verification of the test fixture becomes more difficult with the complexity of the HIL. Ultimately, we must be able to make tangible statements of the quality of any test fixture, but it takes time and effort to understand the veracity and limits of the HIL.</span></p>
<p class="p3"><span class="s1">Some aspects may not be testable with HIL, so human-in-the-loop or vehicle-in-the-loop stages are still necessary.</span></p>
<p class="p3"><span class="s1">Hardware-in-the-loop testing has been a vital pillar of auto engineering for probably a decade, and with increasing complexity, its value has increased. With HIL rigs, we can explore design incarnations and test them in a simulated environment – well in advance of material availability. </span></p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">63697</post-id>		        		  <media:content url="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2025/09/new-headshot1-copy-scaled.jpg" medium="image" />
        	</item>
		<item>
		<title>Why design engineers are taking FEA into their own hands</title>
		<link>https://www.automotivetestingtechnologyinternational.com/industry-opinion/why-design-engineers-are-taking-fea-into-their-own-hands.html</link>
		
		<dc:creator><![CDATA[Naomichi Taketa, account manager, NewtonWorks Corporation]]></dc:creator>
		<pubDate>Tue, 22 Jul 2025 08:31:47 +0000</pubDate>
				<category><![CDATA[CAE, Simulation & Modeling]]></category>
		<category><![CDATA[Industry Opinion]]></category>
		<guid isPermaLink="false">https://www.automotivetestingtechnologyinternational.com/?p=63209</guid>

					<description><![CDATA[<a href="https://www.automotivetestingtechnologyinternational.com/industry-opinion/why-design-engineers-are-taking-fea-into-their-own-hands.html"><img width="400" height="224" src="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2025/07/NewtonWorks_image3-e1753111482912-400x224.png" alt="Why design engineers are taking FEA into their own hands" align="left" style="margin: 0 20px 20px 0;max-width:100%" /></a><p><strong><em>The role of the mechanical design engineer is rapidly evolving with the modernization of manufacturing and n</em><em>ew tools emerging to guide mechanical design engineers. </em></strong><strong><em>Naomichi Taketa, account manager at NewtonWorks Corporation, explores w</em><em>hat the role of the modern mechanical design engineer looks like in 2025</em></strong></p>
<p>FEA is historically tricky and expensive, leading many companies to skip pre-analysis steps or the process altogether.</p>
<p><a href="https://www.automotivetestingtechnologyinternational.com/industry-opinion/why-design-engineers-are-taking-fea-into-their-own-hands.html" rel="nofollow">Continue reading Why design engineers are taking FEA into their own hands at Automotive Testing Technology International.</a></p>
]]></description>
										<content:encoded><![CDATA[<p><strong><em>The role of the mechanical design engineer is rapidly evolving with the modernization of manufacturing and n</em><em>ew tools emerging to guide mechanical design engineers. </em></strong><strong><em>Naomichi Taketa, account manager at <span style="color: #ff0000;"><a style="color: #ff0000;" href="https://newtonworks.com/en/">NewtonWorks Corporation</a></span>, explores w</em><em>hat the role of the modern mechanical design engineer looks like in 2025</em></strong></p>
<p>FEA is historically tricky and expensive, leading many companies to skip pre-analysis steps or the process altogether. Software tools are emerging that enable design and material engineers to take back control of the pre-design process. The role of the typical design engineer has thus rapidly transformed in recent years. Self-enabling software is reducing lead time, enabling removal of waste from the creation process and improving communication barriers.</p>
<p>The manufacturing industry is experiencing a significant shift toward digital transformation, which is altering traditional engineering roles. Design engineers, once heavily reliant on manual processes, are now at the forefront of adopting smart manufacturing tools.</p>
<p><span style="color: #000000;">These advancements empower engineers to work faster, smarter and with enhanced precision. But how exactly will these transformations shape the role of the design engineer in 2025 and beyond? </span></p>
<h3>A demanding connective world</h3>
<p>Manufacturers must now be more agile and adaptive in 2025, quickly anticipating the changing market demands and customer needs.</p>
<p>In the<em> 2025 Smart Manufacturing and Operations Survey</em> by <a href="https://www2.deloitte.com/us/en/insights/industry/manufacturing/2025-smart-manufacturing-survey.html"><span style="color: #ff0000;">Deloitte</span></a>, 85% of respondents said they believe smart manufacturing initiatives will transform the way products are made, created and improved, and 49% said they believe operational benefits are the most sought-after value offered by smart manufacturing, with improved efficiency and reduced production costs.</p>
<p>The <span style="color: #ff0000;"><a style="color: #ff0000;" href="https://www.nist.gov/programs-projects/product-definitions-smart-manufacturing">NIST (National Institute of Standards and Technology</a>)</span> describes smart manufacturing as being “fully integrated” and “collaborative” and that it responds in real time across all supply chain functions. Forward-thinking companies are already adopting this to stay relevant and competitive in their industry.</p>
<p>But businesses will not be the only ones that need to adapt. The role of the modern engineer is also quickly changing. Less hierarchical engineering job roles, like the mechanical design engineer, can now leverage automation and self-enabling design tools to perform historically complex analysis.</p>
<p>Once discarded due to its time-consuming nature and technical skill requirements, pre-design analysis can now be performed by mid-level engineers, enabling design flaws to be identified and addressed earlier in the production process.</p>
<h3>Three changes in the design role</h3>
<p>The role of the mechanical design engineer is evolving to become more digitally integrated and collaborative, with a strong focus on sustainability (reducing waste).</p>
<p>I see this transformation as beneficial in three areas.</p>
<h3><strong>1. Saving time on production</strong></h3>
<p>The pre-analysis step has historically been skipped, resulting in more prototype waste and project costs. According to a <a href="https://www.mckinsey.com/capabilities/operations/our-insights/accelerating-product-development-the-tools-you-need-now"><span style="color: #ff0000;">McKinsey &amp; Company report</span></a>, digital and automated design technologies can reduce product development cycles by up to 30%, significantly cutting lead times and enhancing productivity (McKinsey, 2023).</p>
<p>With the development of new technologies, mechanical design engineers can now relieve pressure on lead engineers. Ultimately, these software tools are transforming mid-senior engineer roles, enabling traditional pre-production steps to be eliminated or allocated to a lower-cost employee, overall increasing project speed. Specifically, these tools have reduced long lead times in creating prototypes, which typically took two months or more.</p>
<h3><strong>2. Removing prototype waste</strong></h3>
<p>Traditionally, engineers created several prototypes for testing before sending the final design to production. Although this was important to reduce problems down the line, it would result in excessive prototype waste and the use of materials. It was necessary to 3D print several models for testing – this can now be avoided with self-enabling pre- and post-FEA analysis software.</p>
<h3><strong>3. Reducing communication barriers</strong></h3>
<p>Modern analysis software helps to reduce friction from cultural, time and language barriers. Engineers often work across time zones and languages, delivering projects at tight deadlines. Information can be ‘lost in translation’, which causes delays and more prototype waste. Self-enabling software with a two-dimensional cross-section and a smart GUI enables application design engineers to work on projects quickly and own the pre- and post-design in their local team. This also reduces language and time barriers.</p>
<div data-olk-copy-source="MessageBody">
<p>According to recent research, integrating collaborative digital platforms and intuitive graphical interfaces, often enhanced by AI, can boost efficiency by up to 8% annually for leading organizations. These platforms support real-time collaboration, minimize misunderstandings and enable faster decision-making. In industrial environments, intuitive GUIs that deliver real-time monitoring, diagnostics and alerting empower operators to respond quickly and optimize performance, further streamlining operations and enhancing safety.</p>
<p>Read recent studies on digital collaboration, platform strategy and productivity:</p>
<p><a href="https://www.mckinsey.com/capabilities/operations/our-insights/digital-collaboration-for-a-connected-manufacturing-workforce"><em>Digital collaboration for a connected manufacturing workforce</em>, McKinsey, 2020</a></p>
<p><a href="https://www.accenture.com/us-en/insights/strategy/platform-strategy"><em>Level up: Elevate your business with a platform strategy</em>, Accenture, 2024</a></p>
<p><a href="https://www.accenture.com/us-en/insights/strategy/productivity-payoff"><em>The productivity payoff: Unlock competitiveness with gen AI</em>, Accenture, 2024</a></p></div>
<p>Manufacturing is modernizing, and so too is the role of the typical mechanical design engineer. It’s already underway. Dedicated software built with a two-dimensional cross-section and a smart GUI is already transforming the mid-level engineer’s role, eliminating time-consuming tasks and speeding up processes.</p>
<p>Overall, the increase in efficiency will save companies on large project costs and lead to better customer satisfaction.</p>
<p><a href="https://www.automotivetestingtechnologyinternational.com/industry-opinion/testing-for-recall-why-oems-need-qa-that-anticipates-failures.html"><em>RELATED: Testing for recall: Why OEMs need QA that anticipates failures, by Pete Gillett, founder of Marketpoint Recall</em></a></p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">63209</post-id>		        		  <media:content url="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2025/07/NewtonWorks_image3-e1753111482912.png" medium="image" />
        	</item>
	</channel>
</rss>
