question

Pooja I avatar image
0 Likes"
Pooja I asked Pooja I commented

Operator and flow item flow issue

Hello Everyone,


I have applied triggers in this model.

1. The boxes come 2 at a time but some of the boxes in middle have space in between therefore boxes should be one above the other.

2. Operator should always pick the upper box.


Please find the attached model below:-

Operator and box flow.fsm

FlexSim 23.1.1
operatorflow items
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 Pooja I commented

Something like this? (20% of upper boxes are run through the processor)

operator-and-box-flow-fm.fsm

I also edited the item spacing on the conveyor and the triggers to showcase another way of having them overlap in the forward direction on the conveyor.


· 9
5 |100000

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

Pooja I avatar image Pooja I commented ·

Please can you guide me to how you have mapped 20% in the model.


And if I apply this in inches model the boxes are not placed on each other.

0 Likes 0 ·
Felix Möhlmann avatar image Felix Möhlmann Pooja I commented ·

The 20% are part of the case function in the decision point's arrival trigger.

item.location.z > 0.001 && uniform(0, 1, getstream(current)) > 0.8

The expression consists of two comparisons that are linked by a logical AND (&&), so both comparisons must the true in order for the expression to return 1/true. Otherwise it returns 0/false.

The left part checks if the item is the upper one (z-location > 0). The right expression generates a random value between 0 and 1 (uniformly distributed) and checks if it is larger than 0.8, which it should be in 20% of the cases. (Conversely the expression could also check if the value is smaller than 0.2.)

If both conditions are true, the item is send to the exit transfer that leads to the processor.

0 Likes 0 ·
Pooja I avatar image Pooja I Felix Möhlmann commented ·

Hello @Felix Möhlmann ,


Thanks for the response.

We have mapped 20% but only 9 boxes are going through processor from 100 boxes therefore 20 boxes should process through processor.

Please guide me for this issue

0 Likes 0 ·
Show more comments

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.