<?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 can the AGV process flow assign multiple items to same pickup point? in FlexSim Forum</title>
    <link>https://forums.autodesk.com/t5/flexsim-forum/how-can-the-agv-process-flow-assign-multiple-items-to-same/m-p/13545196#M51119</link>
    <description>&lt;P&gt;&lt;I&gt;[ FlexSim 16.2.1 ]&lt;/I&gt;&lt;/P&gt;&lt;P&gt;When I use pickup points, only one work item is available at each point. Is there a setting that enables multiple items to be picked up at a pickup point?&lt;/P&gt;
&lt;P&gt;The capacity of the AGV is &amp;gt;1. When I don't use pickup points, the AGV picks up multiple items at once.&lt;/P&gt;
&lt;P&gt;TIA.&lt;/P&gt;</description>
    <pubDate>Wed, 09 Nov 2016 21:01:25 GMT</pubDate>
    <dc:creator>osman_eralp1</dc:creator>
    <dc:date>2016-11-09T21:01:25Z</dc:date>
    <item>
      <title>How can the AGV process flow assign multiple items to same pickup point?</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-can-the-agv-process-flow-assign-multiple-items-to-same/m-p/13545196#M51119</link>
      <description>&lt;P&gt;&lt;I&gt;[ FlexSim 16.2.1 ]&lt;/I&gt;&lt;/P&gt;&lt;P&gt;When I use pickup points, only one work item is available at each point. Is there a setting that enables multiple items to be picked up at a pickup point?&lt;/P&gt;
&lt;P&gt;The capacity of the AGV is &amp;gt;1. When I don't use pickup points, the AGV picks up multiple items at once.&lt;/P&gt;
&lt;P&gt;TIA.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2016 21:01:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-can-the-agv-process-flow-assign-multiple-items-to-same/m-p/13545196#M51119</guid>
      <dc:creator>osman_eralp1</dc:creator>
      <dc:date>2016-11-09T21:01:25Z</dc:date>
    </item>
    <item>
      <title>Re: How can the AGV process flow assign multiple items to same pickup point?</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-can-the-agv-process-flow-assign-multiple-items-to-same/m-p/13545197#M51120</link>
      <description>&lt;P&gt;I believe this article on the forum can help you figure out how to get an AGV to load multiple items:&lt;/P&gt;&lt;P&gt;&lt;A href="https://answers.flexsim.com/questions/23793/how-to-load-and-unload-a-trailer-agv-1.html"&gt;https://answers.flexsim.com/questions/23793/how-to-load-and-unload-a-trailer-agv-1.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;There is also this answer too that you may find helpful, it talks about using a coordinated task sequence to load multiple items:&lt;/P&gt;&lt;P&gt;&lt;A href="https://answers.flexsim.com/questions/28047/how-to-pick-up-multiple-items-in-coordinated-task.html"&gt;https://answers.flexsim.com/questions/28047/how-to-pick-up-multiple-items-in-coordinated-task.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Nov 2016 14:41:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-can-the-agv-process-flow-assign-multiple-items-to-same/m-p/13545197#M51120</guid>
      <dc:creator>sam_stubbsYXX86</dc:creator>
      <dc:date>2016-11-11T14:41:59Z</dc:date>
    </item>
    <item>
      <title>Re: How can the AGV process flow assign multiple items to same pickup point?</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-can-the-agv-process-flow-assign-multiple-items-to-same/m-p/13545198#M51121</link>
      <description>&lt;P&gt;This can be done with a few changes to the AGV process flow.&lt;/P&gt;&lt;P&gt;The default design was to only allow one item at each pickup point. The logic is in the &lt;EM&gt;Item Pickup&lt;/EM&gt; section of the process flow. There is a pull from list activity called &lt;EM&gt;Get an Available Pickup Point&lt;/EM&gt; that pulls from a list of available pickup points. The critical piece is that, when it pulls the pickup point from the list, it actually removes it from the list. This means that each time an item arrives, it will select an available pickup point, and remove that pickup point from availability. Once the item has been loaded, there is a &lt;EM&gt;Make Pick Point Available&lt;/EM&gt; activity that then pushes the pickup point back onto the list, making that pickup point available again. In order to make it so multiple items can go to the same pickup point, you'll need to change the logic so that it doesn't remove it from the list, i.e. the pickup point will continue to be available for other items to select.&lt;/P&gt;&lt;P&gt;Below is a picture of the spots that you'll need to change.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="3651-itempickupcustomization.png"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1494498iEE918DE526127C67/image-size/large?v=v2&amp;amp;px=999" role="button" title="3651-itempickupcustomization.png" alt="3651-itempickupcustomization.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;1. In &lt;EM&gt;Get an Available Pickup Point&lt;/EM&gt;'s properties, first change the &lt;EM&gt;Query&lt;/EM&gt; to include a WHERE clause that constrains the content. Something like: WHERE content &amp;lt; 2 ORDER BY distance. This means that if a pickup point already has 2 items, I don't want to add another item on.&lt;/P&gt;&lt;P&gt;2. Still in &lt;EM&gt;Get an Available Pickup Point&lt;/EM&gt;'s properties, check the box &lt;EM&gt;Leave Entries On List&lt;/EM&gt;. This will let the pickup points remain on the list for other items to select.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="3652-getavailablepickuppoint.png"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1494500iFB539AE7C105F73D/image-size/large?v=v2&amp;amp;px=999" role="button" title="3652-getavailablepickuppoint.png" alt="3652-getavailablepickuppoint.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;3. This step isn't essential, but it lets you see the different items better when they're put into the pickup point. In the &lt;EM&gt;Set Item Location&lt;/EM&gt; activity's properties, change Z Location to:&lt;/P&gt;&lt;PRE&gt;zsize(getlabel(token, "item")) * (content(up(getlabel(token, "item"))) - 1)&lt;/PRE&gt;&lt;P&gt;4. Remove the &lt;EM&gt;Make Pick Point Available&lt;/EM&gt; activity from the process flow. Since you're now leaving pickup points on the list, you don't need to push it back on after the item's picked up.&lt;/P&gt;&lt;P&gt;5. Finally, introducing a WHERE into the pull query introduces a new complication, namely for when there are no valid pickup points available (all points are filled to their 2 capacity limit). There is nothing to tell the list to re-evaluate its outstanding pull requests when an item is picked up, making a new slot available. To get around that, you'll need to add a back order re-evaluation event to the global PickupPoints list. You do this through the list's properties (Toolbox &amp;gt; PickupPoints properties &amp;gt; Back Orders tab). It should be a value based event that listens to the value's "OnExit" (the "value" is the value of a given entry, which in this case is a given pickup point control point).&lt;/P&gt;</description>
      <pubDate>Fri, 11 Nov 2016 17:12:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-can-the-agv-process-flow-assign-multiple-items-to-same/m-p/13545198#M51121</guid>
      <dc:creator>anthony_johnsonT83CM</dc:creator>
      <dc:date>2016-11-11T17:12:56Z</dc:date>
    </item>
    <item>
      <title>Re: How can the AGV process flow assign multiple items to same pickup point?</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-can-the-agv-process-flow-assign-multiple-items-to-same/m-p/13545199#M51122</link>
      <description>&lt;P&gt;Thanks very much for the detailed answer. This is exactly the info I was looking for!&lt;/P&gt;</description>
      <pubDate>Mon, 14 Nov 2016 16:07:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-can-the-agv-process-flow-assign-multiple-items-to-same/m-p/13545199#M51122</guid>
      <dc:creator>osman_eralp1</dc:creator>
      <dc:date>2016-11-14T16:07:03Z</dc:date>
    </item>
  </channel>
</rss>

