question

Max avatar image
0 Likes"
Max asked Max commented

Operators only unload the processors irregularly

Hello,


I'm looking for a simulation where there are 4 different processors. Every incoming item needs to go trought every processor. The order instead is not important, so the processors can be loaded by availability. After the process is finished the item should be send to the queue again. Here is the issue. While the loading of the processors works fine the loading of the queue causes some problems. The operators dont load from the processors when the item is finished just sometimes. Someone knows the reason for that?


For this model I folllowed the solution from

How to create activity sequences based on availability rather than a set order? - FlexSim Community


A lot of thanks in advance!

Model for asking.fsm

FlexSim 23.0.0
tokensprocesss flow
· 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.

Jeanette F avatar image Jeanette F ♦♦ commented ·

Hi @Max, was Jason Lightfoot's answer helpful? If so, please click the "Accept" button at the bottom of their answer. Or if you still have questions, add a comment and we'll continue the conversation.

If we haven't heard back from you within 3 business days we'll auto-accept an answer, but you can always comment back to reopen your question.

0 Likes 0 ·

1 Answer

·
Jason Lightfoot avatar image
0 Likes"
Jason Lightfoot answered Max commented

I think the main issues are:

1) that you're waiting until the processor finishes processing for ANY product, while the token needs to wait for its specfic product:

1708649839170.png

2) You're detecting the item entering Queue 2 every time and setting the machine labels to 1 - can't be good.


Attached is a fixed and simplified version where I use an array for the machines (this scales better to any number of machines in the Group 'Maschinen'.

I've also simplified the process flow and added a dispatcher in place of the Resources. I also made the list global and push to it on the Queue entry instead of the two process flows.

model-for-asking_jl.fsm1708651777668.png


· 3
5 |100000

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

Max avatar image Max commented ·

Hello Jason,


thanks for the answer and the new model. Works perfectly for me.


I'm just curious: How do add more maschines which are the same like the present ones? For example: Instead, we have machine A twice (while the other machines remain single), but the object only has to pass machine A once.

0 Likes 0 ·
Jason Lightfoot avatar image Jason Lightfoot ♦ Max commented ·

In that case you don't have a list of machines but a list of operations where each machine can do one step. So add a list of operations ('OP_A', 'OP_B' etc) and put a label on each machine saying what it can do and pull where there is a match.

Something like

WHERE Puller.OPnum IN Operations

0 Likes 0 ·
Max avatar image Max Jason Lightfoot ♦ commented ·
That makes a lot of sense. Thanks a lot!
0 Likes 0 ·

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.