question

Russell T avatar image
0 Likes"
Russell T asked Russell T commented

Multiple Operators Pulling Own Flow Items from Queue

KittingModel1.fsmI'm trying to create a kitting operation where I'll have multiple sources and queues to supply the items that need to be kitted and a few combiners with assigned operators to create these kits. The issue I'm having is getting each operator to pull their own tote and flow items to their assigned Combiner. I center port connected all of the operators to the queues for Transport, but only Operator 1 will grab items for all of the combiners. The other operators do not move to transport.

Thanks for any help!

FlexSim 25.0.3
multiple operatorskitting
kittingmodel1.fsm (46.5 KiB)
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

1 Answer

Felix Möhlmann avatar image
0 Likes"
Felix Möhlmann answered Russell T commented

Each queue is set to use the object connected with the first centerport-connection for the transport tasks (well, except ItemQueue3 which currently does not use an operator at all).

What you want to do is make this dependent on where the item is send. In the "Use Operator" field you can access the port rank the item is send through with the variable port. With this you can use the operator connected to the object the item is send to (combiner) for the transport and don't need centerport-connections on the queues at all.

current.outObjects[port].centerObjects[1]
· 1
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

Russell T avatar image Russell T commented ·
Great! This is a lot simpler than I thought it was going to be. Thank you!
0 Likes 0 ·