question

tomonori S avatar image
0 Likes"
tomonori S asked tomonori S commented

Technical Question

The attached model is imagining refill work.
In the first half of the simulation, the boxes arrive at the separator first and the tote arrives late, so they are sent out as two empty boxes.
There is no problem if the tote is accumulated first, but is it possible for the separator to wait until the tote comes to the combiner? Is there any other good way?
If possible, I want to work only with 3D objects.
Also, only one box can be placed on the separator, but can it be two?

test.fsm

FlexSim 19.0.5
separator
test.fsm (108.2 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.

Markus Cueva avatar image Markus Cueva ♦ commented ·

I received some additional information from Tomonori-san that I'll add here:

The attached model "test_01.fsm" imagines refill work.
In the first half of the simulation, the boxes arrive at the separator
first and the tote arrives late, so they are sent out as two empty boxes.

I want the separator to wait until the tote comes to the combiner.

"Test_02.fsm" was able to open and close the port using a trigger, but
it does not work well when applied to the "test_03.fsm" model.

test-01.fsm

test-02.fsm

test-03.fsm

0 Likes 0 ·
test-01.fsm (108.2 KiB)
test-02.fsm (41.4 KiB)
test-03.fsm (108.5 KiB)

1 Answer

·
zacharyh avatar image
0 Likes"
zacharyh answered tomonori S commented

@tomonori S

What was happening in your model was that when an item entered the Separator you had a Trigger that was closing the output port so that you could wait for the Bins to arrive at the Combiner. This is fine because you would then use a trigger to open that output by using a trigger in the Combiner when the Bin would enter. The problem then is that a bin would enter the combiner and send an open output port command to the Separator, before an item entered the Separator to close it. So the operations were just getting mixed up after the first time and stopping production.

(closed port shown by the image below with a line above the arrows)

So to fix this I added 2 other triggers to the Separator:

1. On Exit Trigger - when items left Separator the Combiner input port was closed, this stopped a new Bin Entering and then firing the On Entry Trigger before it's time

2. On Process Finish - When the Operator was done working on the item in the Separator and Trigger would release the input port for the Combiner was then opened. Which in turn, when a Bin entered the Combiner it's On Entry Triggered then opened the Separators output ports.

tomonori-solution.fsm


· 5
5 |100000

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

tomonori S avatar image tomonori S commented ·

Thank you for your reply.
In the attached model, processing stops when the tote arrives earlier than the flow item.

Actually, there are multiple processes, and there are cases where the flow item arrives first and the case where the tote arrives first.

Is there a way to accommodate both?

tomonori-solution-01.fsm

0 Likes 0 ·
zacharyh avatar image zacharyh ♦ tomonori S commented ·

@tomonori S

Here is an updated model that I hope fits those use cases. I only added a conditional statement that opens or closes a port depending on what is already in the combiner.

tomonori-solution-v2.fsm

0 Likes 0 ·
tomonori S avatar image tomonori S commented ·

Thank you for your reply.

The model behaved as expected.
I have additional questions about this model.
Currently, the red box is split into two parts, one that goes into the tote and shipped, and one that becomes an empty box.

Is it possible to split this into three like the attached image and put one in each of the two totes, creating an empty box?

img.jpg

0 Likes 0 ·
img.jpg (119.7 KiB)
tannerp avatar image tannerp tomonori S commented ·

@tomonori S,

If the original question has been resolved on this post, please ask a new question (with a link to this one, if necessary) to avoid confusion and get a faster response. Thanks!

0 Likes 0 ·
tomonori S avatar image tomonori S commented ·

Thank you for the advice.

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.