<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Do you use hardware-in-the-loop simulation?</title>
	<atom:link href="http://www.embeddedinsights.com/channels/2011/11/16/do-you-use-hardware-in-the-loop-simulation/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.embeddedinsights.com/channels/2011/11/16/do-you-use-hardware-in-the-loop-simulation/</link>
	<description>Shedding Light on the Hidden World of Embedded Systems</description>
	<lastBuildDate>Mon, 28 Jul 2014 16:18:37 -0400</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: saurabh</title>
		<link>http://www.embeddedinsights.com/channels/2011/11/16/do-you-use-hardware-in-the-loop-simulation/#comment-13188</link>
		<dc:creator>saurabh</dc:creator>
		<pubDate>Tue, 14 Feb 2012 04:30:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.embeddedinsights.com/channels/?p=657#comment-13188</guid>
		<description>Hi all

Actually we do have a client requirement of designing a Hardware-in-the-loop simulator. the Client is a market giant in the mineral ore drilling industryand they want the &quot;HWIL&quot; simulator for their drill Rigs. They do have a Linux based DAS( drill Rig Automation System) with all the I/os controlled by the same. Our challenge is to develop a &quot;HWIL&quot; simulation application and hook it up with their DAS.

CAn any one help me in understanding the different s/w packages which can be used for the purpose, we are considering the Math works Simulink kind of softwares but have a very limited knowledge about the same. so can any one help us out in understanding like how to use different software packages available to serve the purpose.</description>
		<content:encoded><![CDATA[<p>Hi all</p>
<p>Actually we do have a client requirement of designing a Hardware-in-the-loop simulator. the Client is a market giant in the mineral ore drilling industryand they want the &#8220;HWIL&#8221; simulator for their drill Rigs. They do have a Linux based DAS( drill Rig Automation System) with all the I/os controlled by the same. Our challenge is to develop a &#8220;HWIL&#8221; simulation application and hook it up with their DAS.</p>
<p>CAn any one help me in understanding the different s/w packages which can be used for the purpose, we are considering the Math works Simulink kind of softwares but have a very limited knowledge about the same. so can any one help us out in understanding like how to use different software packages available to serve the purpose.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: J. @ LI</title>
		<link>http://www.embeddedinsights.com/channels/2011/11/16/do-you-use-hardware-in-the-loop-simulation/#comment-10067</link>
		<dc:creator>J. @ LI</dc:creator>
		<pubDate>Thu, 01 Dec 2011 23:06:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.embeddedinsights.com/channels/?p=657#comment-10067</guid>
		<description>Robert,
We develop industrial controllers that must communicate with several fieldbus networks simultaneously, in adittion to handling several ADC and sensor streams. The instruments may have user interfaces through serial port terminals or fieldbus HMI panels, and must attend to possibly smultaneous control loops over the fieldbus networks.

To test and verify the design, we use a layered test strategy. At the lowest level, static analysis and simulaton are employed, to validate algorithms and local functional behavior. This is done by the developer, using a software simulator on pieces of the compiled code, to catch basic design flaws and complex detailed interrupt and low-level behavior.
After this level, the system is tested directly in hardware. 

As you said, hardware-in-the-loop simulation and testing is a very ad-hoc and broad field.
We use several automated simulation engines, made in-house, to exercise and simulate complex scenarios on the fieldbus ports. These tests use PLCs programmed with command test sequences, with capability to perform random sequences and detect and capture unexpected responses. Usually these are performed on the complete system, sometimes with realtime capture of hardware signals using a Mixed Signal Oscilloscope with serial/parallel bus protocol decoding to detect problems under heavy processing loads. 
All these tests need to be non-intrusive, so the simulation involves generating real-life conditions and having the real system perform under observable conditions. Using an MSO oscilloscope is invaluable to analyse and verify behavior in real-time.

Another approach we use is unit testing using subsystem isolation and wrappers at selected points of the interface. This unit testing allows a broader range of test vectors to be done in layers of the logic that are not accessible in normal operation, and can be done using HIL also. The test vectors can create impossible scenarios to exercise fault handling and meta stable conditions to explore logic vulnerabilities. The tools we use for that are also designed internally, using C++ in a Windows platform as the test vector driver/logger. Sometimes, the HIL setup is actually embedded in the instrument itself, and run as another task in the target processor. This approach allows deep access to function interfaces while a subsystem is running.

We do not use &quot;traditional&quot; HIL modelling, using MATLAB/SIMULINK, for example. The control models involved in our systems are either too simple to require this level of modelling, or complex enough to require real circuit evaluation, instead of an idealized model.

- Jonny</description>
		<content:encoded><![CDATA[<p>Robert,<br />
We develop industrial controllers that must communicate with several fieldbus networks simultaneously, in adittion to handling several ADC and sensor streams. The instruments may have user interfaces through serial port terminals or fieldbus HMI panels, and must attend to possibly smultaneous control loops over the fieldbus networks.</p>
<p>To test and verify the design, we use a layered test strategy. At the lowest level, static analysis and simulaton are employed, to validate algorithms and local functional behavior. This is done by the developer, using a software simulator on pieces of the compiled code, to catch basic design flaws and complex detailed interrupt and low-level behavior.<br />
After this level, the system is tested directly in hardware. </p>
<p>As you said, hardware-in-the-loop simulation and testing is a very ad-hoc and broad field.<br />
We use several automated simulation engines, made in-house, to exercise and simulate complex scenarios on the fieldbus ports. These tests use PLCs programmed with command test sequences, with capability to perform random sequences and detect and capture unexpected responses. Usually these are performed on the complete system, sometimes with realtime capture of hardware signals using a Mixed Signal Oscilloscope with serial/parallel bus protocol decoding to detect problems under heavy processing loads.<br />
All these tests need to be non-intrusive, so the simulation involves generating real-life conditions and having the real system perform under observable conditions. Using an MSO oscilloscope is invaluable to analyse and verify behavior in real-time.</p>
<p>Another approach we use is unit testing using subsystem isolation and wrappers at selected points of the interface. This unit testing allows a broader range of test vectors to be done in layers of the logic that are not accessible in normal operation, and can be done using HIL also. The test vectors can create impossible scenarios to exercise fault handling and meta stable conditions to explore logic vulnerabilities. The tools we use for that are also designed internally, using C++ in a Windows platform as the test vector driver/logger. Sometimes, the HIL setup is actually embedded in the instrument itself, and run as another task in the target processor. This approach allows deep access to function interfaces while a subsystem is running.</p>
<p>We do not use &#8220;traditional&#8221; HIL modelling, using MATLAB/SIMULINK, for example. The control models involved in our systems are either too simple to require this level of modelling, or complex enough to require real circuit evaluation, instead of an idealized model.</p>
<p>- Jonny</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian McKay, Product Marketing Manager, MathWorks</title>
		<link>http://www.embeddedinsights.com/channels/2011/11/16/do-you-use-hardware-in-the-loop-simulation/#comment-9659</link>
		<dc:creator>Brian McKay, Product Marketing Manager, MathWorks</dc:creator>
		<pubDate>Mon, 21 Nov 2011 14:18:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.embeddedinsights.com/channels/?p=657#comment-9659</guid>
		<description>Hi Robert,

At MathWorks, we have customers using xPC Target to perform hardware-in-the-loop simulation and real-time rapid control prototyping on a wide variety of applications.  Usage is very strong in Aerospace and Automotive areas, but we also see customers emerging in other application areas who are now conducting real-time testing, such as wind turbines, solar power inverters, medical devices, office equipment, and industrial robotics.  All of these applications increasingly require embedded systems to control and monitor these systems.  Using HIL Simulation is a great way to do a full range of testing in the lab, even conducting tests that would be at the edge of the operating envelope or difficult to do on actual hardware in the field.

- Brian</description>
		<content:encoded><![CDATA[<p>Hi Robert,</p>
<p>At MathWorks, we have customers using xPC Target to perform hardware-in-the-loop simulation and real-time rapid control prototyping on a wide variety of applications.  Usage is very strong in Aerospace and Automotive areas, but we also see customers emerging in other application areas who are now conducting real-time testing, such as wind turbines, solar power inverters, medical devices, office equipment, and industrial robotics.  All of these applications increasingly require embedded systems to control and monitor these systems.  Using HIL Simulation is a great way to do a full range of testing in the lab, even conducting tests that would be at the edge of the operating envelope or difficult to do on actual hardware in the field.</p>
<p>- Brian</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://www.embeddedinsights.com/channels/2011/11/16/do-you-use-hardware-in-the-loop-simulation/#comment-9527</link>
		<dc:creator>John</dc:creator>
		<pubDate>Thu, 17 Nov 2011 11:27:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.embeddedinsights.com/channels/?p=657#comment-9527</guid>
		<description>Hi Robert,

Marine Cybernetics is currently developing HiL systems for maritime Dynamic Positioning Systems, Power Management Systems, and for oilfield Drilling Packages.

John</description>
		<content:encoded><![CDATA[<p>Hi Robert,</p>
<p>Marine Cybernetics is currently developing HiL systems for maritime Dynamic Positioning Systems, Power Management Systems, and for oilfield Drilling Packages.</p>
<p>John</p>
]]></content:encoded>
	</item>
</channel>
</rss>
