<?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: how can i make connection that item arrives first should move to first processor and second to the next processor and further in FlexSim Forum</title>
    <link>https://forums.autodesk.com/t5/flexsim-forum/how-can-i-make-connection-that-item-arrives-first-should-move-to/m-p/13511832#M24759</link>
    <description>&lt;P&gt;&lt;A rel="user" href="https://answers.flexsim.com/users/925/gilbert.j.html" nodeid="925"&gt;@gilbert jerald&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Here is a model that I posted for essentially the same question/problem &lt;A href="https://answers.flexsim.com/questions/26509/how-to-make-a-flow-such-that-the-item-from-the-con-1.html"&gt;here&lt;/A&gt;.  And here is the model:&lt;/P&gt;&lt;P&gt;&lt;A href="https://answers.flexsim.com/storage/attachments/2051-johnson-pharamaceutical-new-model-jn2.fsm"&gt;johnson-pharamaceutical-new-model-jn2.fsm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;This is very similar in results as &lt;A rel="user" href="https://answers.flexsim.com/users/461/joerg.v.html" nodeid="461"&gt;@Jörg Vogel&lt;/A&gt; posted above.  But still using DPs instead of PEs.  His model shows Processor7 with 17.7% and my model is 10.5% processing.  Not sure which one is more accurate.  You will have to decide that.  The essential difference between the models is that in my model, up to the very last DP, you can still send the flowtiem to one of the first two processors, if one of them is available.  Thus the lower % processing number.&lt;/P&gt;</description>
    <pubDate>Mon, 22 Aug 2016 23:14:34 GMT</pubDate>
    <dc:creator>jeff_nordgren</dc:creator>
    <dc:date>2016-08-22T23:14:34Z</dc:date>
    <item>
      <title>how can i make connection that item arrives first should move to first processor and second to the next processor and further</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-can-i-make-connection-that-item-arrives-first-should-move-to/m-p/13511819#M24746</link>
      <description>&lt;P&gt;three processor or connected in series to a conveyor , how can i make connection that item arrives first should move to first processor and second to the next processor and further  hear i have attached a model in starting time the item moves correctly but as time process the item does not move as per the condition. &lt;A href="https://answers.flexsim.com/storage/attachments/1864-johnson-pharamaceutical-new-model.fsm"&gt;johnson-pharamaceutical-new-model.fsm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Aug 2016 12:06:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-can-i-make-connection-that-item-arrives-first-should-move-to/m-p/13511819#M24746</guid>
      <dc:creator>gilbertjerald1993</dc:creator>
      <dc:date>2016-08-11T12:06:39Z</dc:date>
    </item>
    <item>
      <title>Re: how can i make connection that item arrives first should move to first processor and second to the next processor and further</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-can-i-make-connection-that-item-arrives-first-should-move-to/m-p/13511820#M24747</link>
      <description>&lt;P&gt;Currently your model is using a duniform() distribution on your decision point to send it to a processor. This will randomly pick a processor. What you want to do is increment your output each time an item hits the decision point. The following code will produce the output: 1 2 3 1 2 3 1 2 3 etc.&lt;/P&gt;&lt;PRE&gt;outobject(current, (getinput(current) - 1) % nrop(current) + 1)&lt;/PRE&gt;</description>
      <pubDate>Thu, 11 Aug 2016 14:01:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-can-i-make-connection-that-item-arrives-first-should-move-to/m-p/13511820#M24747</guid>
      <dc:creator>matt_long</dc:creator>
      <dc:date>2016-08-11T14:01:28Z</dc:date>
    </item>
    <item>
      <title>Re: how can i make connection that item arrives first should move to first processor and second to the next processor and further</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-can-i-make-connection-that-item-arrives-first-should-move-to/m-p/13511821#M24748</link>
      <description>&lt;P&gt;Does the % in your code act like the fmod() command?&lt;/P&gt;</description>
      <pubDate>Thu, 11 Aug 2016 17:03:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-can-i-make-connection-that-item-arrives-first-should-move-to/m-p/13511821#M24748</guid>
      <dc:creator>joshua_dunn</dc:creator>
      <dc:date>2016-08-11T17:03:49Z</dc:date>
    </item>
    <item>
      <title>Re: how can i make connection that item arrives first should move to first processor and second to the next processor and further</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-can-i-make-connection-that-item-arrives-first-should-move-to/m-p/13511822#M24749</link>
      <description>&lt;P&gt;Yes, you could use fmod() the following way with the above code:&lt;/P&gt;&lt;PRE&gt;outobject(current, fmod(getinput(current) - 1, nrop(current)) + 1)&lt;/PRE&gt;</description>
      <pubDate>Thu, 11 Aug 2016 17:07:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-can-i-make-connection-that-item-arrives-first-should-move-to/m-p/13511822#M24749</guid>
      <dc:creator>Brandon_Peterson</dc:creator>
      <dc:date>2016-08-11T17:07:27Z</dc:date>
    </item>
    <item>
      <title>Re: how can i make connection that item arrives first should move to first processor and second to the next processor and further</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-can-i-make-connection-that-item-arrives-first-should-move-to/m-p/13511823#M24750</link>
      <description>&lt;P&gt;The % is an integer mod where the fmod() is for floating point numbers.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Aug 2016 17:18:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-can-i-make-connection-that-item-arrives-first-should-move-to/m-p/13511823#M24750</guid>
      <dc:creator>matt_long</dc:creator>
      <dc:date>2016-08-11T17:18:28Z</dc:date>
    </item>
    <item>
      <title>Re: how can i make connection that item arrives first should move to first processor and second to the next processor and further</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-can-i-make-connection-that-item-arrives-first-should-move-to/m-p/13511824#M24751</link>
      <description>&lt;P&gt;Thanks for the clarification!  Is there a symbol/character for a floating point mod?&lt;/P&gt;</description>
      <pubDate>Thu, 11 Aug 2016 17:28:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-can-i-make-connection-that-item-arrives-first-should-move-to/m-p/13511824#M24751</guid>
      <dc:creator>Brandon_Peterson</dc:creator>
      <dc:date>2016-08-11T17:28:24Z</dc:date>
    </item>
    <item>
      <title>Re: how can i make connection that item arrives first should move to first processor and second to the next processor and further</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-can-i-make-connection-that-item-arrives-first-should-move-to/m-p/13511825#M24752</link>
      <description>&lt;P&gt;thank you for the reply sir . now my model is running sir can u please explain the meaning of the coding which you have done sir. i am from mechanical background i don't have any idea about the coding can u please explain it sir&lt;/P&gt;</description>
      <pubDate>Fri, 12 Aug 2016 05:07:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-can-i-make-connection-that-item-arrives-first-should-move-to/m-p/13511825#M24752</guid>
      <dc:creator>gilbertjerald1993</dc:creator>
      <dc:date>2016-08-12T05:07:06Z</dc:date>
    </item>
    <item>
      <title>Re: how can i make connection that item arrives first should move to first processor and second to the next processor and further</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-can-i-make-connection-that-item-arrives-first-should-move-to/m-p/13511826#M24753</link>
      <description>&lt;P&gt;Dear Gilbert,&lt;/P&gt;&lt;P&gt;I think you may have to learn the basics of c++/ c programming. Give importance to control structures ( if-else, switch, loops) ,functions and syntax rules. &lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Arun KR&lt;/P&gt;</description>
      <pubDate>Fri, 12 Aug 2016 05:20:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-can-i-make-connection-that-item-arrives-first-should-move-to/m-p/13511826#M24753</guid>
      <dc:creator>arunTTT2P</dc:creator>
      <dc:date>2016-08-12T05:20:34Z</dc:date>
    </item>
    <item>
      <title>Re: how can i make connection that item arrives first should move to first processor and second to the next processor and further</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-can-i-make-connection-that-item-arrives-first-should-move-to/m-p/13511827#M24754</link>
      <description>&lt;P&gt;i have added third processor as a back up ,where  my first too processor have the capacity to handle 133% of incoming products , by this given data the ideal time of the first two machine should be less when compare to the third processor and the amount of work done should be more for the first two machine when compare the third processor ,for that what should be the changes to be done in my model or any coding want to be change if else please send me the coding that is to be change&lt;/P&gt;</description>
      <pubDate>Fri, 12 Aug 2016 06:38:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-can-i-make-connection-that-item-arrives-first-should-move-to/m-p/13511827#M24754</guid>
      <dc:creator>gilbertjerald1993</dc:creator>
      <dc:date>2016-08-12T06:38:57Z</dc:date>
    </item>
    <item>
      <title>Re: how can i make connection that item arrives first should move to first processor and second to the next processor and further</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-can-i-make-connection-that-item-arrives-first-should-move-to/m-p/13511828#M24755</link>
      <description>&lt;P&gt;My background is mechanical as well. As a start, take a look at the FlexSim User Manual under FlexSim Coding.There is a lot of information there that will get you started and teach you about mathematical operators, math functions, syntax in FlexSim and commands. &lt;/P&gt;
&lt;P&gt;There are some great online courses you can take, some free, some you have to pay for. &lt;A rel="noopener noreferrer" href="http://lynda.com" target="_blank"&gt;lynda.com&lt;/A&gt; has great tutorials if you want to get more in depth. Just be aware that only some things will cross over to FlexSim.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Aug 2016 12:20:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-can-i-make-connection-that-item-arrives-first-should-move-to/m-p/13511828#M24755</guid>
      <dc:creator>matt_long</dc:creator>
      <dc:date>2016-08-22T12:20:00Z</dc:date>
    </item>
    <item>
      <title>Re: how can i make connection that item arrives first should move to first processor and second to the next processor and further</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-can-i-make-connection-that-item-arrives-first-should-move-to/m-p/13511829#M24756</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://answers.flexsim.com/users/925/gilbert.j.html" nodeid="925"&gt;@gilbert jerald&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Would the attached model fit your needs?  What is does is send the flowitems from the conveyor to the next available processor in the order of Processor5, Processor6 and then Processor7 only if both of the first processors are busy.  Is this what you are looking to do?&lt;/P&gt;&lt;P&gt;&lt;A href="https://answers.flexsim.com/storage/attachments/2040-johnson-pharamaceutical-new-model.fsm"&gt;johnson-pharamaceutical-new-model.fsm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Aug 2016 17:05:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-can-i-make-connection-that-item-arrives-first-should-move-to/m-p/13511829#M24756</guid>
      <dc:creator>jeff_nordgren</dc:creator>
      <dc:date>2016-08-22T17:05:11Z</dc:date>
    </item>
    <item>
      <title>Re: how can i make connection that item arrives first should move to first processor and second to the next processor and further</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-can-i-make-connection-that-item-arrives-first-should-move-to/m-p/13511830#M24757</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://answers.flexsim.com/users/925/gilbert.j.html" nodeid="925"&gt;@gilbert jerald&lt;/A&gt; &lt;/P&gt;&lt;P&gt;If you insert a jam control on the conveyor and use the converyor as a buffer, you can get the distribution you want. An extra control let items wait at an exit, when the process finish time is nearly reached. The decision point sends all items to exit 3. But the photo eyes control the allocation. &lt;A href="https://answers.flexsim.com/storage/attachments/2043-1864-johnson-pharamaceutical-new-model-jv.fsm"&gt;
&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Aug 2016 17:40:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-can-i-make-connection-that-item-arrives-first-should-move-to/m-p/13511830#M24757</guid>
      <dc:creator>joerg_vogel_HsH</dc:creator>
      <dc:date>2016-08-22T17:40:46Z</dc:date>
    </item>
    <item>
      <title>Re: how can i make connection that item arrives first should move to first processor and second to the next processor and further</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-can-i-make-connection-that-item-arrives-first-should-move-to/m-p/13511831#M24758</link>
      <description>&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;  nice solution. &lt;A rel="user" href="https://answers.flexsim.com/users/206/phil.b.html" nodeid="206"&gt;@phil.bobo&lt;/A&gt;  sorry, I must comment this, that way. &lt;/P&gt;</description>
      <pubDate>Mon, 22 Aug 2016 17:44:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-can-i-make-connection-that-item-arrives-first-should-move-to/m-p/13511831#M24758</guid>
      <dc:creator>joerg_vogel_HsH</dc:creator>
      <dc:date>2016-08-22T17:44:42Z</dc:date>
    </item>
    <item>
      <title>Re: how can i make connection that item arrives first should move to first processor and second to the next processor and further</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-can-i-make-connection-that-item-arrives-first-should-move-to/m-p/13511832#M24759</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://answers.flexsim.com/users/925/gilbert.j.html" nodeid="925"&gt;@gilbert jerald&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Here is a model that I posted for essentially the same question/problem &lt;A href="https://answers.flexsim.com/questions/26509/how-to-make-a-flow-such-that-the-item-from-the-con-1.html"&gt;here&lt;/A&gt;.  And here is the model:&lt;/P&gt;&lt;P&gt;&lt;A href="https://answers.flexsim.com/storage/attachments/2051-johnson-pharamaceutical-new-model-jn2.fsm"&gt;johnson-pharamaceutical-new-model-jn2.fsm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;This is very similar in results as &lt;A rel="user" href="https://answers.flexsim.com/users/461/joerg.v.html" nodeid="461"&gt;@Jörg Vogel&lt;/A&gt; posted above.  But still using DPs instead of PEs.  His model shows Processor7 with 17.7% and my model is 10.5% processing.  Not sure which one is more accurate.  You will have to decide that.  The essential difference between the models is that in my model, up to the very last DP, you can still send the flowtiem to one of the first two processors, if one of them is available.  Thus the lower % processing number.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Aug 2016 23:14:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-can-i-make-connection-that-item-arrives-first-should-move-to/m-p/13511832#M24759</guid>
      <dc:creator>jeff_nordgren</dc:creator>
      <dc:date>2016-08-22T23:14:34Z</dc:date>
    </item>
  </channel>
</rss>

