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.

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.