<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: Passion for Simulink</title>
	<link>http://blogs.mathworks.com/seth/2009/01/02/passion-for-simulink/</link>
	<description>This blog is about Simulink.</description>
	<pubDate>Sun, 22 Nov 2009 23:57:16 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
		<item>
		<title>By: Seth</title>
		<link>http://blogs.mathworks.com/seth/2009/01/02/passion-for-simulink/#comment-666</link>
		<dc:creator>Seth</dc:creator>
		<pubDate>Sun, 18 Jan 2009 21:06:39 +0000</pubDate>
		<guid>http://blogs.mathworks.com/seth/2009/01/02/passion-for-simulink/#comment-666</guid>
		<description>@Dongyun Lu - I am not an expert on the SimPowerSystems blocks, so I don't have any suggestions for you.  I saw that &lt;a href="http://www.mathworks.com/matlabcentral/newsreader/view_thread/242301#621282" rel="nofollow"&gt;you have posted on the newsgroup&lt;/a&gt;, and that is a good place to ask this question.  Another option is always technical support.  Sorry I couldn't be more help.  Good luck!</description>
		<content:encoded><![CDATA[<p>@Dongyun Lu - I am not an expert on the SimPowerSystems blocks, so I don&#8217;t have any suggestions for you.  I saw that <a href="http://www.mathworks.com/matlabcentral/newsreader/view_thread/242301#621282" rel="nofollow">you have posted on the newsgroup</a>, and that is a good place to ask this question.  Another option is always technical support.  Sorry I couldn&#8217;t be more help.  Good luck!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dongyun Lu</title>
		<link>http://blogs.mathworks.com/seth/2009/01/02/passion-for-simulink/#comment-663</link>
		<dc:creator>Dongyun Lu</dc:creator>
		<pubDate>Wed, 14 Jan 2009 20:46:47 +0000</pubDate>
		<guid>http://blogs.mathworks.com/seth/2009/01/02/passion-for-simulink/#comment-663</guid>
		<description>Happy New Year, Mr. Seth.
I started doing some work on Simulink and found it is an awesome tool. Right now, I have a problem that I can't found any answer to it,please help me.
I am using the switched reluctance motor model which belongs to the SimPowerSystems libray, the simulink version is V2007b. I tried 6/4 motor, 10/8 motor by using the example from the simulink, they worked very well, but for the 8/6 motor, the output is not good. The fluxes of the four phases should follow the same pattern, but for the 8/6, the flux of the fourth phase is weird, I don't know why. Also I want to know how to use the special model of the 8/6 motor, I can't get any information from the internet on how to define the parameter. Please have a look at it. Thanks a lot.</description>
		<content:encoded><![CDATA[<p>Happy New Year, Mr. Seth.<br />
I started doing some work on Simulink and found it is an awesome tool. Right now, I have a problem that I can&#8217;t found any answer to it,please help me.<br />
I am using the switched reluctance motor model which belongs to the SimPowerSystems libray, the simulink version is V2007b. I tried 6/4 motor, 10/8 motor by using the example from the simulink, they worked very well, but for the 8/6 motor, the output is not good. The fluxes of the four phases should follow the same pattern, but for the 8/6, the flux of the fourth phase is weird, I don&#8217;t know why. Also I want to know how to use the special model of the 8/6 motor, I can&#8217;t get any information from the internet on how to define the parameter. Please have a look at it. Thanks a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Seth</title>
		<link>http://blogs.mathworks.com/seth/2009/01/02/passion-for-simulink/#comment-656</link>
		<dc:creator>Seth</dc:creator>
		<pubDate>Mon, 12 Jan 2009 14:11:17 +0000</pubDate>
		<guid>http://blogs.mathworks.com/seth/2009/01/02/passion-for-simulink/#comment-656</guid>
		<description>@Kevin L. - Thanks for your regular comments and contribution to the blog.  I'll send you a shirt!

@Kenneth Eaton - I checked out your &lt;a href="http://www.mathworks.com/matlabcentral/fileexchange/authors/30774" rel="nofollow"&gt;author profile&lt;/a&gt;, good work.  I'll send you a shirt.... might you develop a Simulink based game?

@Chiew - Are you asking about generating code for a multi-core processor, or utilizing multiple CPUs during your Simulink simulation?

RTW uses a single threaded rate monotonic scheduler.  Out of the box it wouldn't be able to utilize multiple cores, although it would be possible to customize your scheduler and use mutli-tasking code to get something working.

In the case of utilizing more than one core on your desktop or laptop for simulation, this can only be accomplished using the Parallel Computing Toolbox (PCT).  Simulink is single threaded and will not use more than one core during a Simulation.  If you run in Rapid-Accel mode your simulation will run on it's own core while MATLAB and Simulink run on a separate core, but that doesn't result in the kind of processor utilization I think you are looking for.  If you craft a PARFOR command to run a series of simulations across workers, note that you can not call SIM directly.  You will need to wrap your sim command in a function call and look out for current directory conflicts across your labs. I hope that answers your question.</description>
		<content:encoded><![CDATA[<p>@Kevin L. - Thanks for your regular comments and contribution to the blog.  I&#8217;ll send you a shirt!</p>
<p>@Kenneth Eaton - I checked out your <a href="http://www.mathworks.com/matlabcentral/fileexchange/authors/30774" rel="nofollow">author profile</a>, good work.  I&#8217;ll send you a shirt&#8230;. might you develop a Simulink based game?</p>
<p>@Chiew - Are you asking about generating code for a multi-core processor, or utilizing multiple CPUs during your Simulink simulation?</p>
<p>RTW uses a single threaded rate monotonic scheduler.  Out of the box it wouldn&#8217;t be able to utilize multiple cores, although it would be possible to customize your scheduler and use mutli-tasking code to get something working.</p>
<p>In the case of utilizing more than one core on your desktop or laptop for simulation, this can only be accomplished using the Parallel Computing Toolbox (PCT).  Simulink is single threaded and will not use more than one core during a Simulation.  If you run in Rapid-Accel mode your simulation will run on it&#8217;s own core while MATLAB and Simulink run on a separate core, but that doesn&#8217;t result in the kind of processor utilization I think you are looking for.  If you craft a PARFOR command to run a series of simulations across workers, note that you can not call SIM directly.  You will need to wrap your sim command in a function call and look out for current directory conflicts across your labs. I hope that answers your question.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chiew</title>
		<link>http://blogs.mathworks.com/seth/2009/01/02/passion-for-simulink/#comment-653</link>
		<dc:creator>Chiew</dc:creator>
		<pubDate>Fri, 09 Jan 2009 01:16:05 +0000</pubDate>
		<guid>http://blogs.mathworks.com/seth/2009/01/02/passion-for-simulink/#comment-653</guid>
		<description>Happy New Year, Mr Seth.

My name is Chiew, Nice to meet you.

Being doing a lot of work using simulink lately, finding it more and more interesting. 

I've a problem on multithreading on Simulink, can it be done?

Regards

Chiew</description>
		<content:encoded><![CDATA[<p>Happy New Year, Mr Seth.</p>
<p>My name is Chiew, Nice to meet you.</p>
<p>Being doing a lot of work using simulink lately, finding it more and more interesting. </p>
<p>I&#8217;ve a problem on multithreading on Simulink, can it be done?</p>
<p>Regards</p>
<p>Chiew</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kenneth Eaton</title>
		<link>http://blogs.mathworks.com/seth/2009/01/02/passion-for-simulink/#comment-651</link>
		<dc:creator>Kenneth Eaton</dc:creator>
		<pubDate>Wed, 07 Jan 2009 01:21:51 +0000</pubDate>
		<guid>http://blogs.mathworks.com/seth/2009/01/02/passion-for-simulink/#comment-651</guid>
		<description>I could swear I saw a "MATLAB" license plate some time a while back around here (Cincinnati), but I was driving and didn't get a good look...

I don't have a geeky Simulink passion, but I do have a geeky MATLAB passion. As my FEX submissions show, I spend a lot of my free time writing video games using MATLAB. I use it for pretty much everything else I do, so why not my hobby too!

Ken</description>
		<content:encoded><![CDATA[<p>I could swear I saw a &#8220;MATLAB&#8221; license plate some time a while back around here (Cincinnati), but I was driving and didn&#8217;t get a good look&#8230;</p>
<p>I don&#8217;t have a geeky Simulink passion, but I do have a geeky MATLAB passion. As my FEX submissions show, I spend a lot of my free time writing video games using MATLAB. I use it for pretty much everything else I do, so why not my hobby too!</p>
<p>Ken</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin L.</title>
		<link>http://blogs.mathworks.com/seth/2009/01/02/passion-for-simulink/#comment-650</link>
		<dc:creator>Kevin L.</dc:creator>
		<pubDate>Tue, 06 Jan 2009 16:35:24 +0000</pubDate>
		<guid>http://blogs.mathworks.com/seth/2009/01/02/passion-for-simulink/#comment-650</guid>
		<description>Happy new year Seth! 
I have a geeky engineering passion on simulink just like you. 
So I have a lot of horrible problems on simulink. 
Can you help me on it? 
E.g., the questions on "The Answer for Large Scale Modeling: Model Reference".
Can you tell me your email address. So I can email you directly.
Will you ship a MathWorks T-shirt to me? Ha-ha.
Thanks a lot.

Kevin</description>
		<content:encoded><![CDATA[<p>Happy new year Seth!<br />
I have a geeky engineering passion on simulink just like you.<br />
So I have a lot of horrible problems on simulink.<br />
Can you help me on it?<br />
E.g., the questions on &#8220;The Answer for Large Scale Modeling: Model Reference&#8221;.<br />
Can you tell me your email address. So I can email you directly.<br />
Will you ship a MathWorks T-shirt to me? Ha-ha.<br />
Thanks a lot.</p>
<p>Kevin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Seth</title>
		<link>http://blogs.mathworks.com/seth/2009/01/02/passion-for-simulink/#comment-648</link>
		<dc:creator>Seth</dc:creator>
		<pubDate>Mon, 05 Jan 2009 16:44:02 +0000</pubDate>
		<guid>http://blogs.mathworks.com/seth/2009/01/02/passion-for-simulink/#comment-648</guid>
		<description>That picture actually ships as part of an Optimization Toolbox demo since R11 (1999!).  So, the age is at least 10 years old.  If you want to see the demo, try:
&lt;code style="font-size: 11pt;"&gt;&gt;&gt; optdeblur&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>That picture actually ships as part of an Optimization Toolbox demo since R11 (1999!).  So, the age is at least 10 years old.  If you want to see the demo, try:<br />
<code style="font-size: 11pt;">>> optdeblur</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Koechling</title>
		<link>http://blogs.mathworks.com/seth/2009/01/02/passion-for-simulink/#comment-647</link>
		<dc:creator>Jeff Koechling</dc:creator>
		<pubDate>Mon, 05 Jan 2009 14:46:29 +0000</pubDate>
		<guid>http://blogs.mathworks.com/seth/2009/01/02/passion-for-simulink/#comment-647</guid>
		<description>Nice pictures, and superb use of pristine snow!

I recall seeing the Massachusetts license plate "MATLAB" on a different car.  Any idea of the age of that photo?</description>
		<content:encoded><![CDATA[<p>Nice pictures, and superb use of pristine snow!</p>
<p>I recall seeing the Massachusetts license plate &#8220;MATLAB&#8221; on a different car.  Any idea of the age of that photo?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Seth</title>
		<link>http://blogs.mathworks.com/seth/2009/01/02/passion-for-simulink/#comment-646</link>
		<dc:creator>Seth</dc:creator>
		<pubDate>Sun, 04 Jan 2009 13:03:01 +0000</pubDate>
		<guid>http://blogs.mathworks.com/seth/2009/01/02/passion-for-simulink/#comment-646</guid>
		<description>Thank you Amin!</description>
		<content:encoded><![CDATA[<p>Thank you Amin!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amin</title>
		<link>http://blogs.mathworks.com/seth/2009/01/02/passion-for-simulink/#comment-645</link>
		<dc:creator>Amin</dc:creator>
		<pubDate>Sat, 03 Jan 2009 16:01:14 +0000</pubDate>
		<guid>http://blogs.mathworks.com/seth/2009/01/02/passion-for-simulink/#comment-645</guid>
		<description>Happy new year Seth!
Although, NowRooz (Persian new year) is in the spring, but i wish you will have a good year!</description>
		<content:encoded><![CDATA[<p>Happy new year Seth!<br />
Although, NowRooz (Persian new year) is in the spring, but i wish you will have a good year!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
