question

REX BRIONES avatar image
0 Likes"
REX BRIONES asked Marco Baccalaro edited

How to Prioritize delivery of transporters when the content of a queue reaches a certain number?

I have 3 item types that are processed by 2 combiners, then transported by 2 transporters (using a dispatcher) to 2 separators, each connected to 3 queues as storage, and then the items are transported to 2 sinks.

My question is how do I make the model prioritize delivery from the combiner to a separator when the total content of the 3 queues connected to that separator reaches a certain level (like a re-order point)?

I'm using FlexSim 4.5.0.

FlexSim (other - please specify)
FlexSim (other)
queuetransporterdispatcherprioritizationre-order point
· 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.

Matt Long avatar image Matt Long commented ·

Recommend updating to FlexSim 2016.

0 Likes 0 ·

1 Answer

·
Marco Baccalaro avatar image
0 Likes"
Marco Baccalaro answered Marco Baccalaro edited

Control the queue contents on Sento To Port of the combiners.

For Example:

treenode separator1 = outobject(current,1);

treenode separator2 = outobject(current,2);

if (content(outobject(separator1,1) + content(outobject(separator1,2) + content(outobject(separator1,3)) > content(outobject(separator2,1) + content(outobject(separator2,2) + content(outobject(separator2,3)))

return 2;

else

return 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.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

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