<?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: ASRS distance along network egde in FlexSim Forum</title>
    <link>https://forums.autodesk.com/t5/flexsim-forum/asrs-distance-along-network-egde/m-p/13552601#M56865</link>
    <description>&lt;DIV class="fr-view clearfix"&gt;
 I want to maintain a certain fixed distance between ASRS in the aisle picking up from racks. I was thinking I could calculate the distance ASRS has travelled in the aisle and then use that to maintain distance. Is there a way to do this?
&lt;/DIV&gt;</description>
    <pubDate>Fri, 19 Aug 2022 14:10:55 GMT</pubDate>
    <dc:creator>devdatta_d</dc:creator>
    <dc:date>2022-08-19T14:10:55Z</dc:date>
    <item>
      <title>ASRS distance along network egde</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/asrs-distance-along-network-egde/m-p/13552598#M56862</link>
      <description>&lt;P&gt;&lt;I&gt;[ FlexSim 22.1.1 ]&lt;/I&gt;&lt;/P&gt;&lt;DIV class="fr-view clearfix"&gt;
 &lt;P&gt;I have a user command which gets executed everytime a package is loaded onto ASRS. When this happens, I want to calculate the distance of ASRS along the network edge. However, as seen below the function is not returning the distance correctly. &lt;/P&gt;
 &lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="1660857073843.png"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1512306iD6CD432FA3D6EB3B/image-size/large?v=v2&amp;amp;px=999" role="button" title="1660857073843.png" alt="1660857073843.png" /&gt;&lt;/span&gt;&lt;/P&gt;
 &lt;P&gt;File name is Warehouse_getDistance&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Thu, 18 Aug 2022 21:12:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/asrs-distance-along-network-egde/m-p/13552598#M56862</guid>
      <dc:creator>devdatta_d</dc:creator>
      <dc:date>2022-08-18T21:12:46Z</dc:date>
    </item>
    <item>
      <title>Re: ASRS distance along network egde</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/asrs-distance-along-network-egde/m-p/13552599#M56863</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;&lt;P&gt;An ASRS Vehicle doesn’t drive on an Network in warehouse aisles. It performs only Offset travel tasks for load and unload tasks then. It is still connected to a networknode, which is taking part to be a transfer point of load and unload actions.&lt;/P&gt;&lt;P&gt;Perhaps you can evaluate kinematics of such an object to get your desired data.&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 19 Aug 2022 05:31:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/asrs-distance-along-network-egde/m-p/13552599#M56863</guid>
      <dc:creator>joerg_vogel_HsH</dc:creator>
      <dc:date>2022-08-19T05:31:18Z</dc:date>
    </item>
    <item>
      <title>Re: ASRS distance along network egde</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/asrs-distance-along-network-egde/m-p/13552600#M56864</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;
 Is it possible to measure offset travel?
&lt;/DIV&gt;</description>
      <pubDate>Fri, 19 Aug 2022 12:22:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/asrs-distance-along-network-egde/m-p/13552600#M56864</guid>
      <dc:creator>devdatta_d</dc:creator>
      <dc:date>2022-08-19T12:22:32Z</dc:date>
    </item>
    <item>
      <title>Re: ASRS distance along network egde</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/asrs-distance-along-network-egde/m-p/13552601#M56865</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;
 I want to maintain a certain fixed distance between ASRS in the aisle picking up from racks. I was thinking I could calculate the distance ASRS has travelled in the aisle and then use that to maintain distance. Is there a way to do this?
&lt;/DIV&gt;</description>
      <pubDate>Fri, 19 Aug 2022 14:10:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/asrs-distance-along-network-egde/m-p/13552601#M56865</guid>
      <dc:creator>devdatta_d</dc:creator>
      <dc:date>2022-08-19T14:10:55Z</dc:date>
    </item>
    <item>
      <title>Re: ASRS distance along network egde</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/asrs-distance-along-network-egde/m-p/13552602#M56866</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;&lt;P&gt;Use vectors to find the distance along the path between two netnodes when the traveler is no longer travelling along the edge due to offset travel:&lt;/P&gt;&lt;PRE&gt;Vec3 p1=Model.find("NN2").as(Object).location;
Vec3 p2=Model.find("NN3").as(Object).location;
Vec3 p12=p2-p1;
Vec3 t=Model.find("Transporter1").as(Object).location;
Vec3 p1t=t-p1;
double distAlong=p12.dot(p1t)/p12.magnitude;
return distAlong;&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Sat, 20 Aug 2022 19:26:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/asrs-distance-along-network-egde/m-p/13552602#M56866</guid>
      <dc:creator>jason_lightfoot_adsk</dc:creator>
      <dc:date>2022-08-20T19:26:21Z</dc:date>
    </item>
    <item>
      <title>Re: ASRS distance along network egde</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/asrs-distance-along-network-egde/m-p/13552603#M56867</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;&lt;P&gt;Hi &lt;A rel="user" href="https://answers.flexsim.com/users/38429/devdattad.html" nodeid="38429"&gt;@Devdatta D&lt;/A&gt;, was one of Jason Lightfoot's or Joerg Vogel's answers helpful? If so, please click the "Accept" button at the bottom of the one that best answers your question. 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;/DIV&gt;</description>
      <pubDate>Thu, 25 Aug 2022 19:33:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/asrs-distance-along-network-egde/m-p/13552603#M56867</guid>
      <dc:creator>andrew_o2</dc:creator>
      <dc:date>2022-08-25T19:33:21Z</dc:date>
    </item>
    <item>
      <title>Re: ASRS distance along network egde</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/asrs-distance-along-network-egde/m-p/13552604#M56868</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;&lt;P&gt;Hi &lt;A rel="user" href="https://answers.flexsim.com/users/38429/devdattad.html" nodeid="38429"&gt;@Devdatta D&lt;/A&gt;, was one of Jason Lightfoot's or Joerg Vogel's answers helpful? If so, please click the "Accept" button at the bottom of the one that best answers your question. 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;/DIV&gt;</description>
      <pubDate>Thu, 25 Aug 2022 19:34:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/asrs-distance-along-network-egde/m-p/13552604#M56868</guid>
      <dc:creator>Jeanette_Fullmer</dc:creator>
      <dc:date>2022-08-25T19:34:43Z</dc:date>
    </item>
  </channel>
</rss>

