question

tomonori S avatar image
0 Likes"
tomonori S asked Ryan Clark edited

About the model of reversible conveyor

The user has a question about the attached model.

Currently, we are ranking flow items, but I would like to bring them to the sink in this order, so please tell me how to make them.

The processing time at the station varies depending on the product, so even if the processing of the products that arrived later is completed, I would like to stay on the spot (station) and execute it after processing the products that arrived earlier.

I created a process flow as a trial and set it to flow only rank 1 items, but it seems that stopping and resuming custom code is not working well.

model_01.fsm



FlexSim 21.0.3
wait for eventcustom codedecidestationreversible conveyor
model-01.fsm (57.6 KiB)
· 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.

1 Answer

Felix Möhlmann avatar image
0 Likes"
Felix Möhlmann answered Ryan Clark edited

1. It seems that when you reverse the conveyor, the items get processed again by the station. I added the condition that only items with "Flag != 1" should be processed, so this doesn't happen.

2. One important thing to note here is: If you "stop" an item X times, you also have to "resume" it X times before it actually continues. In your model items might get stopped multiple times, because the tokens react to any station finishing its process, than stop the item and only continue it, when it has the correct rank.

I changed this so the item gets stopped in the arrival trigger of the station. The Wait for Event activity in the process flow now waits for the item it is assigned to to finish the process. It then either resumes the item if the rank is correct, or sends it to another Wait for Event. There it waits until another item has left the system (passed DP8) and then tries again.

3. To know which item's turn it is, I created a global variable "CurrentRank". This is an array with as many entries as there are item types. Each entry starts at 1. The process flow checks whether the items rank is equal to the value of "CurrentRank" at the index of the item's type. If that is the case, the items rank is the next one in order and it can continue. Each time an item passes over DP8, the arrival trigger increments the value of that types entry in the array by 1.

The "Breathe" delays in the process flow are important. They make sure, that the update of the global variable, item label and conveyor speed are complete before accessing these values.

model-01_fm.fsm

I hope this is helpful to you.


model-01-fm.fsm (58.9 KiB)
· 6
5 |100000

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