<?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 vary number of operators working on processor for different items in FlexSim Forum</title>
    <link>https://forums.autodesk.com/t5/flexsim-forum/how-to-vary-number-of-operators-working-on-processor-for/m-p/13554722#M58569</link>
    <description>&lt;P&gt;&lt;I&gt;[ FlexSim 19.1.0 ]&lt;/I&gt;&lt;/P&gt;&lt;DIV class="fr-view clearfix"&gt;
 &lt;P&gt;Hi I want to create a Scenario where Product A,B,C are produced and they are moved to a single processor but they should have different processing time for Product A = 10 mins, Product B=20 mins,Product C=30 mins. But i also want set number of operator working for processing Product A as 3 number, Product B as 2 numbers, Product C as 5 Numbers.&lt;/P&gt;
 &lt;P&gt;I have managed to create different processing time in a single processor by editing the code but can anyone help me on the operator mapping?&lt;A rel="noopener noreferrer" href="https://answers.flexsim.com/storage/attachments/27085-operator-mapping.fsm" target="_blank"&gt;Operator mapping.fsm&lt;/A&gt;&lt;/P&gt;
&lt;/DIV&gt;</description>
    <pubDate>Wed, 08 Apr 2020 06:45:51 GMT</pubDate>
    <dc:creator>dhakshinamoorthy_a</dc:creator>
    <dc:date>2020-04-08T06:45:51Z</dc:date>
    <item>
      <title>How to vary number of operators working on processor for different items</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-to-vary-number-of-operators-working-on-processor-for/m-p/13554722#M58569</link>
      <description>&lt;P&gt;&lt;I&gt;[ FlexSim 19.1.0 ]&lt;/I&gt;&lt;/P&gt;&lt;DIV class="fr-view clearfix"&gt;
 &lt;P&gt;Hi I want to create a Scenario where Product A,B,C are produced and they are moved to a single processor but they should have different processing time for Product A = 10 mins, Product B=20 mins,Product C=30 mins. But i also want set number of operator working for processing Product A as 3 number, Product B as 2 numbers, Product C as 5 Numbers.&lt;/P&gt;
 &lt;P&gt;I have managed to create different processing time in a single processor by editing the code but can anyone help me on the operator mapping?&lt;A rel="noopener noreferrer" href="https://answers.flexsim.com/storage/attachments/27085-operator-mapping.fsm" target="_blank"&gt;Operator mapping.fsm&lt;/A&gt;&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Wed, 08 Apr 2020 06:45:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-to-vary-number-of-operators-working-on-processor-for/m-p/13554722#M58569</guid>
      <dc:creator>dhakshinamoorthy_a</dc:creator>
      <dc:date>2020-04-08T06:45:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to vary number of operators working on processor for different items</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-to-vary-number-of-operators-working-on-processor-for/m-p/13554723#M58570</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;&lt;P&gt;There isn't a really easy way to do this as far as I know.  But you could do it with a flowitem Label and a couple of code expressions in the OnEntry Trigger of the Processor.&lt;/P&gt;&lt;P&gt;In the attached model (&lt;A rel="noopener noreferrer" href="https://answers.flexsim.com/storage/attachments/27099-variable-operators.fsm" target="_blank"&gt;variable operators.fsm&lt;/A&gt;), I created a label for your flowitems called "NumOps" with the value of how many operators should be requested.  Then OnEntry I ahve these two expressions to programmatically set the number of requested operators equal to the value of the label.&lt;/P&gt;&lt;PRE&gt;setvarnum(current, "nrofsetupoperators", item.NumOps);
setvarnum(current, "nrofprocessoperators", item.NumOps);&lt;/PRE&gt;&lt;P&gt;Visually this might look a little weird because when the operators are requested they may stand on top of each other but if you move them out of the way, the right number of operators are present.  Also since your process time for Product C is 0, the operators won't be requested at all.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 09 Apr 2020 14:47:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-to-vary-number-of-operators-working-on-processor-for/m-p/13554723#M58570</guid>
      <dc:creator>regan_blackett</dc:creator>
      <dc:date>2020-04-09T14:47:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to vary number of operators working on processor for different items</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-to-vary-number-of-operators-working-on-processor-for/m-p/13554724#M58571</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;&lt;P&gt;A related idea you might be able to take value from, is used in this old model from 2011 where the processing time is dependant on the number of &lt;EM&gt;available &lt;/EM&gt;operators which can change as the item is being processed. The idea is that you define how long it would take with a fixed number, say 1,2,3 or 4 (or n) operators, and then it looks at the lost efficiency compared to the optimal number (the one with least total operator time), and calculates the work content contributed/remaining. The work definition is stored in a label "processdurations" on the basicFR you see between the conveyors and the operators are called to that process, but can be preempted away by higher priority tasks. Needs re-verification in the latest versions no doubt and might benefit from being converted to process flow. For different products you could use multiple 'label tables' or have them nested in one lookup table.&lt;/P&gt;&lt;P&gt;&lt;A rel="noopener noreferrer" href="https://answers.flexsim.com/storage/attachments/27149-201-operatordependentprocesstime4-cleartasks.fsm" target="_blank"&gt;20.1_OperatorDependentProcessTime4_cleartasks.fsm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A rel="noopener noreferrer" href="https://answers.flexsim.com/storage/attachments/27151-55-operatordependentprocesstime4-cleartasks.fsm" target="_blank"&gt;5.5_OperatorDependentProcessTime4_cleartasks.fsm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A rel="noopener noreferrer" href="https://answers.flexsim.com/storage/attachments/27150-multipleoperatorsptimecalcs.xlsx" target="_blank"&gt;MultipleOperatorsPTimeCalcs.xlsx&lt;/A&gt;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 09 Apr 2020 16:32:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-to-vary-number-of-operators-working-on-processor-for/m-p/13554724#M58571</guid>
      <dc:creator>jason_lightfoot_adsk</dc:creator>
      <dc:date>2020-04-09T16:32:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to vary number of operators working on processor for different items</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-to-vary-number-of-operators-working-on-processor-for/m-p/13554725#M58572</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;&lt;P&gt;Hi &lt;A rel="user" href="https://answers.flexsim.com/users/226/jason.l.html" nodeid="226"&gt;@jason.lightfoot,&lt;/A&gt; you have probably edited your answer. All your uploads were erased. They don't work anymore. Can you upload them again. See my error report &lt;A rel="noopener noreferrer" href="https://answers.flexsim.com/questions/82077/answers-site-editing-post-attachments-get-lost.html" target="_blank"&gt;here.&lt;/A&gt; Many Thanks. Jörg&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 09 Apr 2020 17:11:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-to-vary-number-of-operators-working-on-processor-for/m-p/13554725#M58572</guid>
      <dc:creator>joerg_vogel_HsH</dc:creator>
      <dc:date>2020-04-09T17:11:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to vary number of operators working on processor for different items</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-to-vary-number-of-operators-working-on-processor-for/m-p/13554726#M58573</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;&lt;P&gt;The Use Operator picklist has an option called Multiple Teams that you can specify how many operators you want from any number of dispatchers. The number of operators can be dynamic based on the item.&lt;/P&gt;&lt;P&gt;Attached is your model using this option to do what you specified in your question.&lt;/P&gt;&lt;P&gt;I copied your Process Time code into a user command to use that same logic for picking the number of operators, and then I called that user command from the Multiple Teams picklist option.&lt;/P&gt;&lt;P&gt;I also added a dispatcher and set the operators to return to their starting positions when idle, so that you can easily see that it is using different amounts of operators for each item type. This isn't necessary in a real model though. It just makes it easier to see how many are being used in this sample model if they don't stand by the processor when idle.&lt;/P&gt;&lt;P&gt;&lt;A rel="noopener noreferrer" href="https://answers.flexsim.com/storage/attachments/27147-operator-mapping-1.fsm" target="_blank"&gt;operator-mapping_1.fsm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="27130-multiple-teams.png"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1501762i515152E4F2622DC7/image-size/large?v=v2&amp;amp;px=999" role="button" title="27130-multiple-teams.png" alt="27130-multiple-teams.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 09 Apr 2020 17:17:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-to-vary-number-of-operators-working-on-processor-for/m-p/13554726#M58573</guid>
      <dc:creator>philboboADSK</dc:creator>
      <dc:date>2020-04-09T17:17:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to vary number of operators working on processor for different items</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-to-vary-number-of-operators-working-on-processor-for/m-p/13554727#M58574</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;&lt;P&gt;Thanks for pointing that out - it's bit ironic, as I'd only just today found the model in an archive, having lost it from the original forum.&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 09 Apr 2020 21:58:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-to-vary-number-of-operators-working-on-processor-for/m-p/13554727#M58574</guid>
      <dc:creator>jason_lightfoot_adsk</dc:creator>
      <dc:date>2020-04-09T21:58:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to vary number of operators working on processor for different items</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-to-vary-number-of-operators-working-on-processor-for/m-p/13554728#M58575</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;
 &lt;P&gt;Thanks a lot for your help.&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Fri, 10 Apr 2020 03:12:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-to-vary-number-of-operators-working-on-processor-for/m-p/13554728#M58575</guid>
      <dc:creator>dhakshinamoorthy_a</dc:creator>
      <dc:date>2020-04-10T03:12:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to vary number of operators working on processor for different items</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-to-vary-number-of-operators-working-on-processor-for/m-p/13554729#M58576</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;
 &lt;P&gt;By any chance can i change the color to differentiate the various product type?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance.&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Fri, 10 Apr 2020 03:14:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-to-vary-number-of-operators-working-on-processor-for/m-p/13554729#M58576</guid>
      <dc:creator>dhakshinamoorthy_a</dc:creator>
      <dc:date>2020-04-10T03:14:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to vary number of operators working on processor for different items</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-to-vary-number-of-operators-working-on-processor-for/m-p/13554730#M58577</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;
 &lt;P&gt;Thanks a lot for your timely help &lt;A rel="user" href="https://answers.flexsim.com/users/226/jason.l.html"&gt;@jason.lightfoot&lt;/A&gt; but i needed the processor in the model so that i would be easy for myself to explain to others with a processor in the model. I appreciate your work on tracked variable but that would be very nice and thanks a lot but since this is for my college project the staffs would like to see in terms of graphical representation where i found out they can be done using Dashboards.&lt;BR /&gt;&lt;BR /&gt;Thanks mate for your help.&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Fri, 10 Apr 2020 03:28:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-to-vary-number-of-operators-working-on-processor-for/m-p/13554730#M58577</guid>
      <dc:creator>dhakshinamoorthy_a</dc:creator>
      <dc:date>2020-04-10T03:28:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to vary number of operators working on processor for different items</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-to-vary-number-of-operators-working-on-processor-for/m-p/13554731#M58578</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;&lt;P&gt;Of course. Use the Visual &amp;gt; Set Object Color picklist option in the Source's On Create trigger.&lt;/P&gt;&lt;P&gt;Or just set it with code:&lt;/P&gt;&lt;PRE&gt;item.color&amp;nbsp;=&amp;nbsp;Color.red;&lt;/PRE&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 10 Apr 2020 15:15:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-to-vary-number-of-operators-working-on-processor-for/m-p/13554731#M58578</guid>
      <dc:creator>philboboADSK</dc:creator>
      <dc:date>2020-04-10T15:15:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to vary number of operators working on processor for different items</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-to-vary-number-of-operators-working-on-processor-for/m-p/13554732#M58579</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;
 &lt;P&gt;Thanks &lt;A rel="user" href="https://answers.flexsim.com/users/206/phil.b.html" nodeid="206"&gt;@phil.bobo&lt;/A&gt; .&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Fri, 10 Apr 2020 17:45:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-to-vary-number-of-operators-working-on-processor-for/m-p/13554732#M58579</guid>
      <dc:creator>dhakshinamoorthy_a</dc:creator>
      <dc:date>2020-04-10T17:45:39Z</dc:date>
    </item>
  </channel>
</rss>

