question

Frank Andres OR avatar image
0 Likes"
Frank Andres OR asked Frank Andres OR commented

How I can visualize flowitems been processed in batch size

Help please

I would like to visualize flowitems been processed in batch size..Actually, I am using a Processor,I have established the maximum content (12) and in Process Time I have established Batch processing, batch size: 12 and specified the cycle time, but when I run the model, in the Processor I can´t visualize the 12 flowitems been processed at the same time. I can only visualize one flowitem been processed at once.

Choose One
batch processing
· 2
5 |100000

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

tannerp avatar image tannerp commented ·

If you stop the model and then click and drag the box off of the processor, are there more boxes underneath? I think it may just be that they all process together so you don't see them separated by default.

0 Likes 0 ·
Frank Andres OR avatar image Frank Andres OR tannerp commented ·

When I stopped the model there are not flowitems underneath, the fact is that the processor is processing once at time. And I wolud like to visualize batching process, because in this way I could identify bottlenecks.

0 Likes 0 ·

1 Answer

·
Regan Blackett avatar image
1 Like"
Regan Blackett answered Frank Andres OR commented

If all 12 flowitems arrive to the processor at the same time, it will appear that there is only one item present but really all twelve are there but occupy the same coordinates. So you have a few options:

  • Collect the batch in a queue, release the batch to 12 individual processors each with the exact same cycle time

OR

  • Place the items manually using options in the OnEntry trigger, like 'Set Location'.

OR

  • Collect the batch into a container flowitem like a Pallet or Tote and release that to your single processor, then when the process is done take the individual items out of the container, probably into a Queue object before continuing on.

It really just depends on what kind of visual you are going for. I would probably do either the first or third options if it was me.

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

Frank Andres OR avatar image Frank Andres OR commented ·

Thanks a lot @Regan Blackett, I have tried with the first option

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.