question

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

Conveyor saturation

Good morning, everyone,
I have to determine when my conveyor is saturated according to the different scenarios.
Which dashboards were used to obtain this information?
Thank you in advance for your answers

Sincerely,

FlexSim 18.2.2
FlexSim 18.1.1
conveyortimeunknown variable
· 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.

ORNELLA S avatar image
0 Likes"
ORNELLA S answered ORNELLA S commented

Hello,

Here's what I did, I would like to simulate the following situation:
I saturate my conveyors to the maximum in how long does it take for the first pallet of the first conveyor to move?
Know the occupancy rate of the different conveyors
How do I get the trolleys to wait until the conveyors are full?
Run the red and yellow pallets randomly over the multiprocessor?

Best regard

passerelle-simulation.fsm


· 10
5 |100000

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

Matt Long avatar image
1 Like"
Matt Long answered

The WIP (Work In Progress) dashboard charts will allow you to track how many flowitems are on a conveyor. If you use the Composite WIP, you can specify an Entrance Object and an Exit Object. The chart will then track all of the flowitems between these two objects.


wip.png (51.2 KiB)
5 |100000

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

Jason Lightfoot avatar image
0 Likes"
Jason Lightfoot answered

Percentage used capacity (saturation level)

For legacy conveyors use

  1. 100*getvarnum(conv,"filledlength")/getvarnum(conv,"conveyorlength")

For new conveyors use:

  1. double itemlengths=0;
  2. for (int n=content(conv);n>0;n--)
  3. itemlengths+=conv.subnodes[n].as(Object).size.x;
  4. return 100*itemlengths/getvarnum(conv,"length");
5 |100000

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

Clair A avatar image
0 Likes"
Clair A answered ORNELLA S commented

In addition to Matt's answer, you could also use a PhotoEye with a blocking time to track when the conveyor is saturated.

See the attached example 2018-12-21-photoeye-saturation.fsm.


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