<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Automatically Configure and Run a FlexSim Model in FlexSim Forum</title>
    <link>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480973#M608</link>
    <description>&lt;P&gt;Hi, Ben.&lt;/P&gt;
&lt;P&gt;I'm looking for a way to run some automation as well and I was wondering if it is possible to control FlexSim using MS PowerShell, a much newer solution, instead of CMD Prompt, an old and far more limited solution.&lt;/P&gt;
&lt;P&gt;I do know it is possible to call the CMD from PowerShell and use the solution above, but it's not a good solution. A more elegant one would be calling FlexSim directly from PowerShell.&lt;/P&gt;
&lt;P&gt;I couldn't find any information here at the forum or in the FlexSim user manual. &lt;/P&gt;
&lt;P&gt;I would appreciate any suggestions.&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
    <pubDate>Thu, 22 Mar 2018 12:18:33 GMT</pubDate>
    <dc:creator>bernard_laporteFYUJD</dc:creator>
    <dc:date>2018-03-22T12:18:33Z</dc:date>
    <item>
      <title>Automatically Configure and Run a FlexSim Model</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480970#M605</link>
      <description>&lt;P&gt;If I have a model that is built and ready, is it possible for FlexSim to import various object and model parameters automatically? And run the simulation automatically?&lt;/P&gt;</description>
      <pubDate>Mon, 16 May 2016 17:18:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480970#M605</guid>
      <dc:creator>jackie_ho</dc:creator>
      <dc:date>2016-05-16T17:18:42Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically Configure and Run a FlexSim Model</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480971#M606</link>
      <description>&lt;P&gt;A FlexSim model has an &lt;A href="https://answers.flexsim.com/articles/19572/model-triggers-75.html"&gt;On Model Open trigger&lt;/A&gt;. Here you could put 
whatever logic you like, including &lt;A href="https://answers.flexsim.com/articles/10477/flexsim-command-reference-46.html#Communication"&gt;importing data&lt;/A&gt; &lt;A href="https://answers.flexsim.com/articles/19550/excel-interface-75.html"&gt;from Excel&lt;/A&gt; or a &lt;A href="https://answers.flexsim.com/articles/10477/flexsim-command-reference-46.html#Communication"&gt; database&lt;/A&gt;, &lt;A href="https://answers.flexsim.com/articles/14745/runspeed-2.html"&gt;setting the runspeed&lt;/A&gt;, and &lt;A href="https://answers.flexsim.com/articles/14411/go-2.html"&gt;starting the model run&lt;/A&gt;. This screenshot shows how to add an On Model Open trigger to your model:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="61-flexsim-onmodelopen.png"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1493282iF51DA2686AF46EE2/image-size/large?v=v2&amp;amp;px=999" role="button" title="61-flexsim-onmodelopen.png" alt="61-flexsim-onmodelopen.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;If you want the model to open automatically when FlexSim starts, you can
 launch FlexSim and open the model at the same time by double-clicking 
the model file.&lt;/P&gt;</description>
      <pubDate>Mon, 16 May 2016 17:48:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480971#M606</guid>
      <dc:creator>jeff_nordgren</dc:creator>
      <dc:date>2016-05-16T17:48:24Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically Configure and Run a FlexSim Model</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480972#M607</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Command line options&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Alternatively, you
 can launch FlexSim from a Command Prompt or a batch file, by executing a
 line like this (this text probably wraps in this web view, but in the command prompt it should all go on a single line):&lt;/P&gt;&lt;PRE&gt;"C:\Program Files\FlexSim 2016\program\flexsim.exe" 
"C:\Users\username\Documents\Flexsim 16 Projects\test.fsm" /maintenance 
nogui_disablemsg_runscript /scriptpath C:\myscript.txt&lt;/PRE&gt;&lt;P&gt;This will open FlexSim, open the model at the specified path, set a flag
 to suppress showing FlexSim's interface, set a flag to suppress any 
msg() command popups from appearing, and execute the file C:\myscript.txt as 
FlexScript.&lt;/P&gt;&lt;P&gt;All of those command line features are optional. For 
instance, remove 
the nogui flag to launch FlexSim with the normal interface. You can put 
FlexScript code into myscript.txt to run custom behaviors in the model, 
such as resetting and running the model, but that is optional. Remove 
the runscript flag, plus the "/scriptpath 
C:\myscript.txt" portion from the line if you don't wish to run a 
FlexScript file on model load.&lt;/P&gt;&lt;P&gt;
Using an external 
script file that runs upon opening the model is an alternative to having
 the &lt;A href="https://answers.flexsim.com/articles/19572/model-triggers-75.html"&gt;OnModelOpen trigger&lt;/A&gt; coded into your model. Instead you can have an 
external script file that can run upon model open, that can be 
separately and independently edited without modifying anything inside 
the model file.&lt;/P&gt;&lt;P&gt;&lt;A href="https://answers.flexsim.com/storage/attachments/2107-runflexsimmodelsilently.zip"&gt;Attached&lt;/A&gt; is a zip file containing 3 files that show an example of how you can 
silently run a FlexSim model without an interface and then export 
results to a text file.&lt;/P&gt;&lt;P&gt;Extract these 3 files to your computer somewhere (I put them on my Desktop).&lt;/P&gt;&lt;P&gt;Edit
 runScriptDemo.bat so that it has correct paths to where you have 
installed FlexSim, where the model is, and where the script file is.&lt;/P&gt;&lt;PRE&gt;"C:\Program Files\FlexSim 2016\program\flexsim.exe" "C:\Users\username\Desktop\test.fsm" /maintenance nogui_disablemsg_runscript /scriptpath "C:\Users\username\Desktop\script.txt"&lt;/PRE&gt;&lt;P&gt;The script file (script.txt) has code to run the model:&lt;/P&gt;&lt;PRE&gt;resetmodel();
runspeed(10000);
go();
&lt;/PRE&gt;&lt;P&gt;The Sink's OnEntry trigger in the test.fsm model has code that exports results as a file and closes FlexSim.&lt;/P&gt;&lt;PRE&gt;cmdexit();&lt;/PRE&gt;</description>
      <pubDate>Tue, 24 May 2016 13:41:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480972#M607</guid>
      <dc:creator>Ben_WilsonADSK</dc:creator>
      <dc:date>2016-05-24T13:41:04Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically Configure and Run a FlexSim Model</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480973#M608</link>
      <description>&lt;P&gt;Hi, Ben.&lt;/P&gt;
&lt;P&gt;I'm looking for a way to run some automation as well and I was wondering if it is possible to control FlexSim using MS PowerShell, a much newer solution, instead of CMD Prompt, an old and far more limited solution.&lt;/P&gt;
&lt;P&gt;I do know it is possible to call the CMD from PowerShell and use the solution above, but it's not a good solution. A more elegant one would be calling FlexSim directly from PowerShell.&lt;/P&gt;
&lt;P&gt;I couldn't find any information here at the forum or in the FlexSim user manual. &lt;/P&gt;
&lt;P&gt;I would appreciate any suggestions.&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 22 Mar 2018 12:18:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480973#M608</guid>
      <dc:creator>bernard_laporteFYUJD</dc:creator>
      <dc:date>2018-03-22T12:18:33Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically Configure and Run a FlexSim Model</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480974#M609</link>
      <description>&lt;P&gt;Use the &lt;A href="https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management/start-process?view=powershell-6"&gt;Start-Process cmdlet&lt;/A&gt;.&lt;/P&gt;&lt;PRE&gt;Start-Process -FilePath "C:\Program Files\FlexSim 2018\program\flexsim.exe" -ArgumentList "C:\Users\phil.bobo\Desktop\test.fsm /maintenance runscript /scriptpath C:\Users\phil.bobo\Desktop\script.txt"&lt;/PRE&gt;</description>
      <pubDate>Thu, 22 Mar 2018 15:11:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480974#M609</guid>
      <dc:creator>philboboADSK</dc:creator>
      <dc:date>2018-03-22T15:11:37Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically Configure and Run a FlexSim Model</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480975#M610</link>
      <description>&lt;P style="margin-left: 40px;"&gt;Hi &lt;A rel="user" href="https://answers.flexsim.com/users/206/phil.b.html" nodeid="206"&gt;@phil.bobo&lt;/A&gt;,&lt;/P&gt;&lt;P style="margin-left: 40px;"&gt;do you know if there is a trouble when the script is saved in a folder which name contains a space?&lt;/P&gt;&lt;P style="margin-left: 40px;"&gt;I executed your code in two different ways and I obtained two different results.&lt;/P&gt;&lt;P style="margin-left: 40px;"&gt;First test works without space and results is good.&lt;/P&gt;&lt;PRE style="margin-left: 40px;"&gt;Start-Process -FilePath "C:\Program Files\FlexSim 2018\program\flexsim.exe" "/maintenance runscript /scriptpath C:\Users\amerl\Desktop\Folder_Without_Space\FlexScript.txt"&lt;BR /&gt;&lt;/PRE&gt;&lt;P style="margin-left: 40px;"&gt;Second test works with space and the script isn't executed.&lt;/P&gt;&lt;PRE style="margin-left: 40px;"&gt;Start-Process -FilePath "C:\Program Files\FlexSim 2018\program\flexsim.exe" "/maintenance runscript /scriptpath C:\Users\amerl\Desktop\folder with space\FlexScript.txt"&lt;BR /&gt;&lt;/PRE&gt;&lt;P style="margin-left: 40px;"&gt;The file FlexScript.txt simply contains this code&lt;/P&gt;&lt;PRE style="margin-left: 40px;"&gt;msg("Hello","World",1);&lt;BR /&gt;&lt;/PRE&gt;&lt;P style="margin-left: 40px;"&gt;Any idea?&lt;/P&gt;&lt;P style="margin-left: 40px;"&gt;Thanks for the support!&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 10:59:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480975#M610</guid>
      <dc:creator>amerloQ2XZU</dc:creator>
      <dc:date>2018-12-11T10:59:47Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically Configure and Run a FlexSim Model</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480976#M611</link>
      <description>&lt;P&gt;Command line parameters with spaces need to be wrapped in quotes.&lt;/P&gt;&lt;P&gt;Since you are passing a string within a string literal, you need to use quotes within the string.&lt;/P&gt;&lt;P&gt;You can either escape the inner quote marks with a grave accent ` character:&lt;/P&gt;&lt;PRE&gt;Start-Process -FilePath "C:\Program Files\FlexSim 2018\program\flexsim.exe" -ArgumentList "/maintenance runscript /scriptpath `"C:\Users\amerl\Desktop\folder with space\FlexScript.txt`""&lt;/PRE&gt;&lt;P&gt;Or you can use single quotes for the outer string and double quotes for the inner string:&lt;/P&gt;&lt;PRE&gt;Start-Process -FilePath "C:\Program Files\FlexSim 2018\program\flexsim.exe" -ArgumentList '/maintenance runscript /scriptpath "C:\Users\amerl\Desktop\folder with space\FlexScript.txt"'&lt;/PRE&gt;</description>
      <pubDate>Tue, 11 Dec 2018 14:40:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480976#M611</guid>
      <dc:creator>philboboADSK</dc:creator>
      <dc:date>2018-12-11T14:40:17Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically Configure and Run a FlexSim Model</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480977#M612</link>
      <description>&lt;P&gt;Thanks &lt;A rel="user" href="https://answers.flexsim.com/users/206/phil.b.html" nodeid="206"&gt;@phil.bobo&lt;/A&gt;!&lt;/P&gt;&lt;P&gt;I tried all possible combination to pass a string and I forgot grave accent!&lt;/P&gt;&lt;P&gt;Now it works!&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 16:46:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480977#M612</guid>
      <dc:creator>amerloQ2XZU</dc:creator>
      <dc:date>2018-12-11T16:46:08Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically Configure and Run a FlexSim Model</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480978#M613</link>
      <description>&lt;P&gt;Hi,Ben&lt;/P&gt;
&lt;P&gt;I use your way to launch Flexsim &lt;/P&gt;
&lt;P&gt;But it will take a long time to run in my model（almost 20 mins）&lt;/P&gt;
&lt;P&gt;Although my model is more complicated, I don’t think it takes so long.&lt;/P&gt;
&lt;P&gt;my computer have i7 8th CPU,32G Ram，so it shouldn't be the reason for my computer.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jan 2019 13:12:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480978#M613</guid>
      <dc:creator>wang_z2</dc:creator>
      <dc:date>2019-01-14T13:12:11Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically Configure and Run a FlexSim Model</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480979#M614</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://answers.flexsim.com/users/11612/wangz2.html" nodeid="11612"&gt;@Wang Z2,&lt;BR /&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Loading a model from the command line and starting the simulation via code doesn't automatically make the runspeed go at its maximum, the way background simulations do when using the experimenter or optimizer.&lt;/P&gt;&lt;P&gt;Instead, you need to use a script to set the runspeed to some high value, like:&lt;/P&gt;&lt;PRE&gt;runspeed(99999999);&lt;/PRE&gt;&lt;P&gt;Or something similar.&lt;/P&gt;&lt;P&gt;You can also confirm a typical run duration for your model by running it normally in FlexSim at max speed. If it can finish in 4-5 minutes through the regular interface, it should finish in 4-5 minutes when started from the command line.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jan 2019 14:52:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480979#M614</guid>
      <dc:creator>Ben_WilsonADSK</dc:creator>
      <dc:date>2019-01-14T14:52:49Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically Configure and Run a FlexSim Model</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480980#M615</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;
 &lt;P&gt;Hi everyone! &lt;/P&gt;
 &lt;P&gt;As somebody tried to import from excel while launching the model from a shell?&lt;/P&gt;
 &lt;P&gt;To the files shared in this post, I tried adding this line: &lt;BR /&gt;excelmultitableimport();&lt;/P&gt;
 &lt;P&gt;to &lt;BR /&gt;'onModelReset' trigger and/or &lt;BR /&gt;'script.txt' &lt;/P&gt;
 &lt;P&gt;without constant success.&lt;BR /&gt;&lt;BR /&gt;Thanks! &lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Wed, 15 Jul 2020 21:36:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480980#M615</guid>
      <dc:creator>royve</dc:creator>
      <dc:date>2020-07-15T21:36:11Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically Configure and Run a FlexSim Model</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480981#M616</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;&lt;P&gt;&lt;A rel="user" href="https://answers.flexsim.com/users/23305/erikrv2.html" nodeid="23305"&gt;@erik.rv2&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;I suggest posting a new question (this one is answered and fairly outdated) and referencing this question with a link. It sounds like you're looking for guidance on automating an Excel import, which we're happy to help with.&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 17 Jul 2020 15:58:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480981#M616</guid>
      <dc:creator>tanner_p</dc:creator>
      <dc:date>2020-07-17T15:58:56Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically Configure and Run a FlexSim Model</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480982#M617</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;&lt;P&gt;Another command line parameter:&lt;/P&gt;&lt;BLOCKQUOTE&gt;You can pass the command line parameter /excludemodules modulename1,modulename2,etc to exclude specific modules.&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;A rel="noopener noreferrer" href="https://answers.flexsim.com/answers/95256/view.html" target="_blank"&gt;https://answers.flexsim.com/answers/95256/view.html&lt;/A&gt;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 15 Dec 2020 18:59:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480982#M617</guid>
      <dc:creator>Ben_WilsonADSK</dc:creator>
      <dc:date>2020-12-15T18:59:01Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically Configure and Run a FlexSim Model</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480983#M618</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;
 &lt;P&gt;&lt;A rel="user" href="https://answers.flexsim.com/users/9/benjaminwilson.html" nodeid="9"&gt;@Ben Wilson&lt;/A&gt;&lt;/P&gt;
 &lt;P&gt;This is a good way!&lt;/P&gt;
 &lt;P&gt;Recently, I'm studying simulation-based optimization, which needs to use flexsim to evaluate objective function. I&lt;SPAN style="color: rgb(65, 65, 65); font-family: sans-serif; font-size: 15px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;"&gt;n c++ u&lt;/SPAN&gt;sing your method has solved the problem, but it consumes a lot of time because it needs to open and close flexsim constantly(the objective function needs to be evaluated many times).&lt;/P&gt;
 &lt;P&gt;More details: &lt;A rel="nofollow" href="https://answers.flexsim.com/questions/116556/interaction-of-simulation-and-optimization.html?childToView=116598#answer-116598"&gt;Interaction of simulation and optimization&lt;/A&gt; and &lt;A rel="nofollow" href="https://answers.flexsim.com/questions/116433/how-to-obtain-the-simulation-data-after-executing.html"&gt;How to obtain the simulation data after executing go() in script console? &lt;/A&gt; &lt;/P&gt;
 &lt;P&gt;So, I wonder if there is any way to save time, thanks!&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Fri, 18 Mar 2022 02:01:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480983#M618</guid>
      <dc:creator>zhu_m3</dc:creator>
      <dc:date>2022-03-18T02:01:23Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically Configure and Run a FlexSim Model</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480984#M619</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;
 &lt;P&gt;Ben, &lt;/P&gt;
 &lt;P&gt;How did you tell FlexSim to save the output into the "results.txt" file?&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Fri, 21 Oct 2022 16:09:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480984#M619</guid>
      <dc:creator>rafael_b22</dc:creator>
      <dc:date>2022-10-21T16:09:39Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically Configure and Run a FlexSim Model</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480985#M620</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;&lt;P&gt;The Sink's OnEntry trigger has code that writes the results.txt file using FlexScript commands:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="1666368764445.png"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1493286i01017B07209DE325/image-size/large?v=v2&amp;amp;px=999" role="button" title="1666368764445.png" alt="1666368764445.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 21 Oct 2022 16:13:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480985#M620</guid>
      <dc:creator>philboboADSK</dc:creator>
      <dc:date>2022-10-21T16:13:11Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically Configure and Run a FlexSim Model</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480986#M621</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;
 Thanks a lot!
&lt;/DIV&gt;</description>
      <pubDate>Fri, 21 Oct 2022 16:22:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480986#M621</guid>
      <dc:creator>rafael_b22</dc:creator>
      <dc:date>2022-10-21T16:22:58Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically Configure and Run a FlexSim Model</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480987#M622</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;
 &lt;P&gt;What could be the reason that when I run your model I get an average time of 0 and WIP of 0 in the resulsts.txt file?&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Fri, 21 Oct 2022 16:52:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480987#M622</guid>
      <dc:creator>rafael_b22</dc:creator>
      <dc:date>2022-10-21T16:52:56Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically Configure and Run a FlexSim Model</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480988#M623</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;&lt;P&gt;Starting in FlexSim 22.1, the 3D objects no longer update the WorkInProgress or TimeInSystem Tracked Variables.&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.flexsim.com/en/22.2/Reference/ReleaseNotesAndHistory/ReleaseNotesAndHistory.html"&gt;https://docs.flexsim.com/en/22.2/Reference/ReleaseNotesAndHistory/ReleaseNotesAndHistory.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;This is a sample model from 2016. Recent versions of FlexSim have better features for recording statistics. The point of the model is to demonstrate programmatically running FlexSim, not how to best collect and report statistics.&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 21 Oct 2022 17:01:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480988#M623</guid>
      <dc:creator>philboboADSK</dc:creator>
      <dc:date>2022-10-21T17:01:28Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically Configure and Run a FlexSim Model</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480989#M624</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;
 Thank you. Is there a work around?
&lt;/DIV&gt;</description>
      <pubDate>Fri, 21 Oct 2022 17:07:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/automatically-configure-and-run-a-flexsim-model/m-p/13480989#M624</guid>
      <dc:creator>rafael_b22</dc:creator>
      <dc:date>2022-10-21T17:07:00Z</dc:date>
    </item>
  </channel>
</rss>

