<?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: Error in initializing the environment using the flexsim_env.py file in FlexSim Forum</title>
    <link>https://forums.autodesk.com/t5/flexsim-forum/error-in-initializing-the-environment-using-the-flexsim-env-py/m-p/13496154#M12384</link>
    <description>&lt;DIV class="fr-view clearfix"&gt;&lt;P&gt;It seems using the "OnEntry" event of a process flow activity as the decision trigger doesn't work properly. If you use the "OnLoad" event of the robot instead it works. (Sorry, that I didn't check this before saying you could use the PF activity. I didn't expect there to be a (likely) bug)&lt;/P&gt;&lt;P&gt;You should also adjust the code that sets the observation parameters. You are currently not dividing the idle time by the model time, so the observation wouldn't be the rate but the total time in the state. Also, since you are using an integer parameter, the calculated value should be rounded before applying it to the parameter.&lt;/P&gt;&lt;PRE&gt;if(Model.time == 0)
{
&amp;nbsp; &amp;nbsp; Model.parameters["IdleRate"].value = 0;
}
else
{
&amp;nbsp; &amp;nbsp; Model.parameters["IdleRate"].value = Math.round(Model.find("Sigillatura").as(Object).stats.state().getTotalTimeAt("idle")/Model.time*100, 0)/;
}&lt;/PRE&gt;&lt;/DIV&gt;</description>
    <pubDate>Fri, 21 Oct 2022 10:58:56 GMT</pubDate>
    <dc:creator>moehlmann_fe</dc:creator>
    <dc:date>2022-10-21T10:58:56Z</dc:date>
    <item>
      <title>Error in initializing the environment using the flexsim_env.py file</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/error-in-initializing-the-environment-using-the-flexsim-env-py/m-p/13496151#M12381</link>
      <description>&lt;P&gt;&lt;I&gt;[ FlexSim 22.2.2 ]&lt;/I&gt;&lt;/P&gt;&lt;DIV class="fr-view clearfix"&gt;
 &lt;P&gt;&lt;SPAN style="color: rgb(51, 51, 51); font-family: "&gt;Hi. I have developed a model in flexsim in which I need to optimize the idle rate of a processor by applying RL to a robot. It has to pick up the boxes from the right queue and decide on which combiner to leave it, based on the number of boxes present on the pallet placed on the top combiner (Combiner1). I used a process flow to manage the movement of the robots and defined all the parameters of the RLToolbox. However, initializing the environment via the flexsim_env.py file I get the following messages on the terminal:&lt;/SPAN&gt;&lt;/P&gt;
 &lt;P&gt;&lt;SPAN style="color: rgb(51, 51, 51); font-family: "&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="1665915821188.png"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1513501i684B561407D4F63E/image-size/large?v=v2&amp;amp;px=999" role="button" title="1665915821188.png" alt="1665915821188.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
 &lt;P&gt;The model in flexsim opens correctly; however, it appears that parameters regarding observations and actions are not being read correctly. At the end of loading, in fact, the terminal should return me the message "Waiting for input to close flexsim". Can you tell me what this may be due to? Is there some error in the initialization of the parameters?&lt;/P&gt;
 &lt;P&gt;&lt;A rel="noopener noreferrer" href="https://answers.flexsim.com/storage/attachments/59834-progettotesi.fsm" target="_blank"&gt;progettoTesi.fsm&lt;/A&gt;&lt;/P&gt;
 &lt;P&gt;&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Sun, 16 Oct 2022 10:28:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/error-in-initializing-the-environment-using-the-flexsim-env-py/m-p/13496151#M12381</guid>
      <dc:creator>lorenzo_pio_g</dc:creator>
      <dc:date>2022-10-16T10:28:15Z</dc:date>
    </item>
    <item>
      <title>Re: Error in initializing the environment using the flexsim_env.py file</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/error-in-initializing-the-environment-using-the-flexsim-env-py/m-p/13496152#M12382</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;&lt;P&gt;Hey &lt;A rel="user" href="https://answers.flexsim.com/users/40814/lorenzo-piog.html" nodeid="40814"&gt;@Lorenzo_pio G&lt;/A&gt;, when I opened your model, it said that it couldn't set your parameters to 0. I checked them and they had a lower bound of 1. If you change their lower bounds to 0, the program should be able to set them to 0 and allow you to run the simulation. Let me know if that helps.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="1666303863815.png"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1513488i91E073D30A10AA4D/image-size/large?v=v2&amp;amp;px=999" role="button" title="1666303863815.png" alt="1666303863815.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 20 Oct 2022 22:11:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/error-in-initializing-the-environment-using-the-flexsim-env-py/m-p/13496152#M12382</guid>
      <dc:creator>kavika_faleumu</dc:creator>
      <dc:date>2022-10-20T22:11:15Z</dc:date>
    </item>
    <item>
      <title>Re: Error in initializing the environment using the flexsim_env.py file</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/error-in-initializing-the-environment-using-the-flexsim-env-py/m-p/13496153#M12383</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;
 &lt;P&gt;Yes, I have already changed those parameters, but it still doesn't work.&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Fri, 21 Oct 2022 08:59:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/error-in-initializing-the-environment-using-the-flexsim-env-py/m-p/13496153#M12383</guid>
      <dc:creator>lorenzo_pio_g</dc:creator>
      <dc:date>2022-10-21T08:59:11Z</dc:date>
    </item>
    <item>
      <title>Re: Error in initializing the environment using the flexsim_env.py file</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/error-in-initializing-the-environment-using-the-flexsim-env-py/m-p/13496154#M12384</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;&lt;P&gt;It seems using the "OnEntry" event of a process flow activity as the decision trigger doesn't work properly. If you use the "OnLoad" event of the robot instead it works. (Sorry, that I didn't check this before saying you could use the PF activity. I didn't expect there to be a (likely) bug)&lt;/P&gt;&lt;P&gt;You should also adjust the code that sets the observation parameters. You are currently not dividing the idle time by the model time, so the observation wouldn't be the rate but the total time in the state. Also, since you are using an integer parameter, the calculated value should be rounded before applying it to the parameter.&lt;/P&gt;&lt;PRE&gt;if(Model.time == 0)
{
&amp;nbsp; &amp;nbsp; Model.parameters["IdleRate"].value = 0;
}
else
{
&amp;nbsp; &amp;nbsp; Model.parameters["IdleRate"].value = Math.round(Model.find("Sigillatura").as(Object).stats.state().getTotalTimeAt("idle")/Model.time*100, 0)/;
}&lt;/PRE&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 21 Oct 2022 10:58:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/error-in-initializing-the-environment-using-the-flexsim-env-py/m-p/13496154#M12384</guid>
      <dc:creator>moehlmann_fe</dc:creator>
      <dc:date>2022-10-21T10:58:56Z</dc:date>
    </item>
    <item>
      <title>Re: Error in initializing the environment using the flexsim_env.py file</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/error-in-initializing-the-environment-using-the-flexsim-env-py/m-p/13496155#M12385</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;
 &lt;P&gt;So do I need to change the Decision Events of the RL Tool? Should I delete the Event1 event and sample the Robot to which I need to add the OnLoad trigger?&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Fri, 21 Oct 2022 11:17:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/error-in-initializing-the-environment-using-the-flexsim-env-py/m-p/13496155#M12385</guid>
      <dc:creator>lorenzo_pio_g</dc:creator>
      <dc:date>2022-10-21T11:17:28Z</dc:date>
    </item>
    <item>
      <title>Re: Error in initializing the environment using the flexsim_env.py file</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/error-in-initializing-the-environment-using-the-flexsim-env-py/m-p/13496156#M12386</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;
 &lt;P&gt;What is the purpose of the "/" character in line 7? Because it gives me an error the moment I enter the ";".&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Fri, 21 Oct 2022 11:23:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/error-in-initializing-the-environment-using-the-flexsim-env-py/m-p/13496156#M12386</guid>
      <dc:creator>lorenzo_pio_g</dc:creator>
      <dc:date>2022-10-21T11:23:22Z</dc:date>
    </item>
    <item>
      <title>Re: Error in initializing the environment using the flexsim_env.py file</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/error-in-initializing-the-environment-using-the-flexsim-env-py/m-p/13496157#M12387</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;Yes, use the sampling tool to select the new event from the robot.&lt;P&gt;I don't know how the "/" at the end of the line got there. There shouldn't be one.&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 21 Oct 2022 11:40:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/error-in-initializing-the-environment-using-the-flexsim-env-py/m-p/13496157#M12387</guid>
      <dc:creator>moehlmann_fe</dc:creator>
      <dc:date>2022-10-21T11:40:48Z</dc:date>
    </item>
    <item>
      <title>Re: Error in initializing the environment using the flexsim_env.py file</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/error-in-initializing-the-environment-using-the-flexsim-env-py/m-p/13496158#M12388</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;
 &lt;P&gt;So can I also eliminate the "Make Decision" and "Breathe" blocks, since I will eliminate Event1?&lt;/P&gt;
 &lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="1666352743125.png"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1513489i0EB37699381D9F61/image-size/large?v=v2&amp;amp;px=999" role="button" title="1666352743125.png" alt="1666352743125.png" /&gt;&lt;/span&gt;&lt;/P&gt;
 &lt;P&gt; Next, should the OnLoad trigger be applied only to the robot I want to make the decision? Also, do I leave the OnLoad trigger space blank or do I need to write a condition?&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Fri, 21 Oct 2022 11:45:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/error-in-initializing-the-environment-using-the-flexsim-env-py/m-p/13496158#M12388</guid>
      <dc:creator>lorenzo_pio_g</dc:creator>
      <dc:date>2022-10-21T11:45:08Z</dc:date>
    </item>
    <item>
      <title>Re: Error in initializing the environment using the flexsim_env.py file</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/error-in-initializing-the-environment-using-the-flexsim-env-py/m-p/13496159#M12389</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;
 &lt;P&gt;&lt;BR /&gt;&lt;/P&gt;
 &lt;P&gt;However, it keeps giving me the same message over and over again.&lt;/P&gt;
 &lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="1666353594546.png"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1513492iE6D45E173459C77A/image-size/large?v=v2&amp;amp;px=999" role="button" title="1666353594546.png" alt="1666353594546.png" /&gt;&lt;/span&gt;&lt;/P&gt;
 &lt;P&gt;&lt;BR /&gt;&lt;/P&gt;
 &lt;P&gt;At least now the value of the state is increased&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Fri, 21 Oct 2022 12:00:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/error-in-initializing-the-environment-using-the-flexsim-env-py/m-p/13496159#M12389</guid>
      <dc:creator>lorenzo_pio_g</dc:creator>
      <dc:date>2022-10-21T12:00:53Z</dc:date>
    </item>
    <item>
      <title>Re: Error in initializing the environment using the flexsim_env.py file</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/error-in-initializing-the-environment-using-the-flexsim-env-py/m-p/13496160#M12390</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;
 &lt;P&gt;Using the flexsim_training.py file instead, it now succeeds in initializing the environment. However, despite the fact that I set a value of 100000 timesteps, it does not terminate the training, but stops at 2 iterations, without giving me a termination message. So, as with the flexsim_env-py file, it only manages to do 2 status updates.&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Fri, 21 Oct 2022 12:21:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/error-in-initializing-the-environment-using-the-flexsim-env-py/m-p/13496160#M12390</guid>
      <dc:creator>lorenzo_pio_g</dc:creator>
      <dc:date>2022-10-21T12:21:20Z</dc:date>
    </item>
    <item>
      <title>Re: Error in initializing the environment using the flexsim_env.py file</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/error-in-initializing-the-environment-using-the-flexsim-env-py/m-p/13496161#M12391</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;&lt;P&gt;- You can eliminate the "Make Decision" activity, but I'd keep the "Breathe".&lt;/P&gt;&lt;P&gt;- You don't have to actually add an On Load trigger to the robot, the event will fire regardless.&lt;/P&gt;&lt;P&gt;- Are you sure that the training stopped. If I run it, it takes some time, but further iteration messages do appear.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="1666356499315.png"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1513495i6D434D2633EEA23B/image-size/large?v=v2&amp;amp;px=999" role="button" title="1666356499315.png" alt="1666356499315.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 21 Oct 2022 12:48:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/error-in-initializing-the-environment-using-the-flexsim-env-py/m-p/13496161#M12391</guid>
      <dc:creator>moehlmann_fe</dc:creator>
      <dc:date>2022-10-21T12:48:22Z</dc:date>
    </item>
    <item>
      <title>Re: Error in initializing the environment using the flexsim_env.py file</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/error-in-initializing-the-environment-using-the-flexsim-env-py/m-p/13496162#M12392</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;
 &lt;P&gt;If I run it, it stops at this message:&lt;/P&gt;
 &lt;P&gt;The rollout/ section is missing.&lt;/P&gt;
 &lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="1666356995924.png"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1513496iA4F8CEC5D9C28F79/image-size/large?v=v2&amp;amp;px=999" role="button" title="1666356995924.png" alt="1666356995924.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Fri, 21 Oct 2022 12:56:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/error-in-initializing-the-environment-using-the-flexsim-env-py/m-p/13496162#M12392</guid>
      <dc:creator>lorenzo_pio_g</dc:creator>
      <dc:date>2022-10-21T12:56:41Z</dc:date>
    </item>
    <item>
      <title>Re: Error in initializing the environment using the flexsim_env.py file</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/error-in-initializing-the-environment-using-the-flexsim-env-py/m-p/13496163#M12393</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;
 &lt;P&gt;This is my project, maybe I made some mistakes.&lt;/P&gt;
 &lt;P&gt;&lt;A rel="noopener noreferrer" href="https://answers.flexsim.com/storage/attachments/60017-progettotesi.fsm" target="_blank"&gt;progettoTesi.fsm&lt;/A&gt;&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Fri, 21 Oct 2022 12:59:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/error-in-initializing-the-environment-using-the-flexsim-env-py/m-p/13496163#M12393</guid>
      <dc:creator>lorenzo_pio_g</dc:creator>
      <dc:date>2022-10-21T12:59:12Z</dc:date>
    </item>
    <item>
      <title>Re: Error in initializing the environment using the flexsim_env.py file</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/error-in-initializing-the-environment-using-the-flexsim-env-py/m-p/13496164#M12394</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;
 &lt;P&gt;I changed the value of the reward code, marking done=1 every 1000 seconds of simulation. Now everything works correctly.&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Fri, 21 Oct 2022 14:28:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/error-in-initializing-the-environment-using-the-flexsim-env-py/m-p/13496164#M12394</guid>
      <dc:creator>lorenzo_pio_g</dc:creator>
      <dc:date>2022-10-21T14:28:35Z</dc:date>
    </item>
    <item>
      <title>Re: Error in initializing the environment using the flexsim_env.py file</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/error-in-initializing-the-environment-using-the-flexsim-env-py/m-p/13496165#M12395</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;
 &lt;P&gt;&lt;A rel="user" href="https://answers.flexsim.com/users/19365/felixmh.html" nodeid="19365"&gt;@Felix Möhlmann&lt;/A&gt; In analyzing the data from the different trainings I ran, I noticed that the value of the reward is not incremented in the various steps of the simulation. Perhaps this is due to the fact that I rounded up the idleRate value? Or is it due to other settings, such as the reward allocation formula?&lt;/P&gt;
 &lt;P&gt;First, I changed the observations. I used the number of boxes on the combiner1 pallet as the only observation parameter. I did this because, using a multidiscrete parameter as the observation space, the flexsim_interference.py file was not working. However, as mentioned, the reward does not increase.&lt;/P&gt;
 &lt;P&gt;That's the code that I used to set observations:&lt;/P&gt;
 &lt;P&gt;&lt;SPAN style="font-family: Arial, Helvetica, sans-serif;"&gt;int itemNum = 0;&lt;/SPAN&gt;&lt;/P&gt;
 &lt;P&gt;&lt;SPAN style="font-family: Arial,Helvetica,sans-serif;"&gt;// Check if there is a pallet on the combiner (a subnode of the combiner)&lt;/SPAN&gt;&lt;/P&gt;
 &lt;P&gt;&lt;SPAN style="font-family: Arial,Helvetica,sans-serif;"&gt;if(Model.find("Combiner1").subnodes.length &amp;gt; 0)&lt;/SPAN&gt;&lt;/P&gt;
 &lt;P&gt;&lt;SPAN style="font-family: Arial,Helvetica,sans-serif;"&gt;{
   &lt;/SPAN&gt;&lt;/P&gt;
 &lt;P&gt;&lt;SPAN style="font-family: Arial,Helvetica,sans-serif;"&gt; /* Read the number of subnodes (items) of the pallet&lt;/SPAN&gt;&lt;/P&gt;
 &lt;P&gt;&lt;SPAN style="font-family: Arial,Helvetica,sans-serif;"&gt; "first" is the same as writing "subnodes[1]"; &lt;/SPAN&gt;&lt;/P&gt;
 &lt;P&gt;&lt;SPAN style="font-family: Arial,Helvetica,sans-serif;"&gt; the first subnode of the combiner, so the pallet */&lt;/SPAN&gt;&lt;/P&gt;
 &lt;P&gt;&lt;SPAN style="font-family: Arial,Helvetica,sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
 &lt;P&gt;&lt;SPAN style="font-family: Arial,Helvetica,sans-serif;"&gt; itemNum = Model.find("Combiner1").first.subnodes.length;&lt;/SPAN&gt;&lt;/P&gt;
 &lt;P&gt;&lt;SPAN style="font-family: Arial,Helvetica,sans-serif;"&gt;}&lt;/SPAN&gt;&lt;/P&gt;
 &lt;P&gt;&lt;SPAN style="font-family: Arial, Helvetica, sans-serif;"&gt;Model.parameters["numItem"].value = itemNum;&lt;/SPAN&gt;&lt;/P&gt;
 &lt;P&gt;&lt;BR /&gt;&lt;/P&gt;
 &lt;P&gt;&lt;SPAN style="font-family: Arial, Helvetica, sans-serif;"&gt;That's the code that sets rewards:&lt;/SPAN&gt;&lt;/P&gt;
 &lt;P&gt;&lt;SPAN style="font-family: Arial, Helvetica, sans-serif;"&gt;double reward = Model.time/(Model.find("Sigillatura").as(Object).stats.state().getTotalTimeAt("idle")+1);&lt;/SPAN&gt;&lt;/P&gt;
 &lt;P&gt;int done = (Model.time&amp;gt;1000);&lt;/P&gt;
 &lt;P&gt;&lt;BR /&gt;&lt;/P&gt;
 &lt;P&gt;return [reward, done];&lt;/P&gt;
 &lt;P&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Sun, 23 Oct 2022 19:39:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/error-in-initializing-the-environment-using-the-flexsim-env-py/m-p/13496165#M12395</guid>
      <dc:creator>lorenzo_pio_g</dc:creator>
      <dc:date>2022-10-23T19:39:12Z</dc:date>
    </item>
    <item>
      <title>Re: Error in initializing the environment using the flexsim_env.py file</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/error-in-initializing-the-environment-using-the-flexsim-env-py/m-p/13496166#M12396</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;If the timings are still set like in the latest model you uploaded, then this is to be expected. Currently the limiting factor of the throughput is the movetime of the robots. Which combiner Robot1 unloads to doesn't actually matter for the average throughput.&lt;/DIV&gt;</description>
      <pubDate>Mon, 24 Oct 2022 06:24:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/error-in-initializing-the-environment-using-the-flexsim-env-py/m-p/13496166#M12396</guid>
      <dc:creator>moehlmann_fe</dc:creator>
      <dc:date>2022-10-24T06:24:41Z</dc:date>
    </item>
  </channel>
</rss>

