<?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 How to make the operator return after unloading on 2 ressources ? in FlexSim Forum</title>
    <link>https://forums.autodesk.com/t5/flexsim-forum/how-to-make-the-operator-return-after-unloading-on-2-ressources/m-p/13508925#M22376</link>
    <description>&lt;P&gt;&lt;I&gt;[ FlexSim 19.0.0 ]&lt;/I&gt;&lt;/P&gt;&lt;DIV class="fr-view clearfix"&gt;
 &lt;P&gt;I would like to be able to bring the operator back to its original starting position after finishing the tasks assigned to it without waiting to be called by processor 1, knowing that the operator travels from Processor 1 to Processor 2 then Queue 1 then back to Processor 1 &lt;A rel="noopener noreferrer" href="https://answers.flexsim.com/storage/attachments/38636-operator-return.fsm" target="_blank"&gt;Operator return.fsm&lt;/A&gt;&lt;/P&gt;
 &lt;P&gt;Thank you in advance.&lt;/P&gt;
&lt;/DIV&gt;</description>
    <pubDate>Sun, 18 Apr 2021 12:57:50 GMT</pubDate>
    <dc:creator>hf_96</dc:creator>
    <dc:date>2021-04-18T12:57:50Z</dc:date>
    <item>
      <title>How to make the operator return after unloading on 2 ressources ?</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-to-make-the-operator-return-after-unloading-on-2-ressources/m-p/13508925#M22376</link>
      <description>&lt;P&gt;&lt;I&gt;[ FlexSim 19.0.0 ]&lt;/I&gt;&lt;/P&gt;&lt;DIV class="fr-view clearfix"&gt;
 &lt;P&gt;I would like to be able to bring the operator back to its original starting position after finishing the tasks assigned to it without waiting to be called by processor 1, knowing that the operator travels from Processor 1 to Processor 2 then Queue 1 then back to Processor 1 &lt;A rel="noopener noreferrer" href="https://answers.flexsim.com/storage/attachments/38636-operator-return.fsm" target="_blank"&gt;Operator return.fsm&lt;/A&gt;&lt;/P&gt;
 &lt;P&gt;Thank you in advance.&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Sun, 18 Apr 2021 12:57:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-to-make-the-operator-return-after-unloading-on-2-ressources/m-p/13508925#M22376</guid>
      <dc:creator>hf_96</dc:creator>
      <dc:date>2021-04-18T12:57:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to make the operator return after unloading on 2 ressources ?</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-to-make-the-operator-return-after-unloading-on-2-ressources/m-p/13508926#M22377</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;&lt;P&gt;Please look into the unload trigger. There is an option to let the Taskexecuter travel to an object.&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Sun, 18 Apr 2021 21:03:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-to-make-the-operator-return-after-unloading-on-2-ressources/m-p/13508926#M22377</guid>
      <dc:creator>joerg_vogel_HsH</dc:creator>
      <dc:date>2021-04-18T21:03:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to make the operator return after unloading on 2 ressources ?</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-to-make-the-operator-return-after-unloading-on-2-ressources/m-p/13508927#M22378</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;
 &lt;P&gt;Yes, I have already tried this option, unfortunately, in my case I want the operator to unload the same item from processor 1 to processor 2 then processor 3 before returning to processor 1.&lt;/P&gt;
 &lt;P&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Sun, 18 Apr 2021 21:12:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-to-make-the-operator-return-after-unloading-on-2-ressources/m-p/13508927#M22378</guid>
      <dc:creator>hf_96</dc:creator>
      <dc:date>2021-04-18T21:12:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to make the operator return after unloading on 2 ressources ?</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-to-make-the-operator-return-after-unloading-on-2-ressources/m-p/13508928#M22379</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;&lt;P&gt;There is a condition. You set a condition. You need something that you can compare with. You open the source code editor. You see in the header predefined variables. Here first three code lines. The header ends before a comment line something with containing "Picklist". In most cases you don't know what they do. Then you use a simple print command to print them to an output console. &lt;/P&gt;&lt;PRE&gt;print(Model.time, "On Unload of Operator");
print(current);
print(item);
print(station);&lt;/PRE&gt;&lt;P&gt;You open the output console under main menu &lt;STRONG&gt;Debug&lt;/STRONG&gt;.You let run the model and watch the output console. You see the predefined variable correlates with the current output station. You &lt;A rel="noopener noreferrer" href="https://docs.flexsim.com/en/19.0/Reference/CodingInFlexSim/WritingLogic/#comparing" target="_blank"&gt;compare variables&lt;/A&gt; in a condition. &lt;/P&gt;&lt;PRE&gt;Model.find("Source1") == station&lt;/PRE&gt;&lt;P&gt;Now you have your condition for your On UnLoad Trigger.&lt;/P&gt;&lt;P&gt;&lt;A rel="noopener noreferrer" href="https://answers.flexsim.com/storage/temp/38628-travel-home-jv.fsm" target="_blank"&gt;Travel_home_JV.fsm&lt;/A&gt;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 19 Apr 2021 05:42:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-to-make-the-operator-return-after-unloading-on-2-ressources/m-p/13508928#M22379</guid>
      <dc:creator>joerg_vogel_HsH</dc:creator>
      <dc:date>2021-04-19T05:42:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to make the operator return after unloading on 2 ressources ?</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-to-make-the-operator-return-after-unloading-on-2-ressources/m-p/13508929#M22380</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;
 &lt;P&gt;Thank you again.&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Tue, 20 Apr 2021 11:22:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-to-make-the-operator-return-after-unloading-on-2-ressources/m-p/13508929#M22380</guid>
      <dc:creator>hf_96</dc:creator>
      <dc:date>2021-04-20T11:22:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to make the operator return after unloading on 2 ressources ?</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-to-make-the-operator-return-after-unloading-on-2-ressources/m-p/13508930#M22381</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi &lt;A rel="user" href="https://answers.flexsim.com/users/29008/hf-96.html" nodeid="29008"&gt;@Hichem&lt;/A&gt;, was Jörg Vogel's answer helpful? If so, please click the red "Accept" button at the bottom of their answer. Or if you still have questions, add a comment and we'll continue the conversation.&lt;/P&gt;&lt;P&gt;If we haven't heard back from you within 3 business days we'll auto-accept an answer, but you can always unaccept and comment back to reopen your question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 26 Apr 2021 21:41:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-to-make-the-operator-return-after-unloading-on-2-ressources/m-p/13508930#M22381</guid>
      <dc:creator>Ben_WilsonADSK</dc:creator>
      <dc:date>2021-04-26T21:41:12Z</dc:date>
    </item>
  </channel>
</rss>

