Operator loading two items at once via PF

Operator loading two items at once via PF

denise_h2
Not applicable
13 Views
6 Replies
Message 1 of 7

Operator loading two items at once via PF

denise_h2
Not applicable

Hey!

How do I make the operator loading two items at once after a separator split a item into two? Do the items have the same label? Because the operator in my simulation just picks up 1 item.. The capacity of the operator is already 2.

Thank u!

0 Likes
Accepted solutions (1)
14 Views
6 Replies
Replies (6)
Message 2 of 7

denise_h2
Not applicable
load2items-autosave.fsm

Here you can find a simulation which shows my problem.

0 Likes
Message 3 of 7

joerg_vogel_HsH
Mentor
Mentor

Your current model creates two tokens by the event Send To in your Separator. The first token takes in the next activity Acquire the only available operator. The second token is set to a back order. Your approach is inappropriate to the task you describe. You get into trouble if the first token will load already two items in the model, because what should the second back ordered token accomplish, when the resource gets available again.

0 Likes
Message 4 of 7

denise_h2
Not applicable

Hey @Jörg Vogel!

Thank u for your fast answer. Can you tell me how to create just one token in the Seperator or another way how I can fix the problem?

0 Likes
Message 5 of 7

raja_sekaran
Not applicable

@Denise H2

You can create token by listening to OnProcess Finish trigger in the separator. Here is the updated model. loadtwoitems-support.fsm

0 Likes
Message 6 of 7

joerg_vogel_HsH
Mentor
Mentor
Accepted solution

Here is what I tested. You create two tokens by your chosen event. That is OK. You get at each token the reference to the box to tranport. The next activity is a Batch activity. You add at Label Aggregation by the plus icon a new row.

  • From Label you set your assigned label name of the Event-Triggered Source
  • To Label the same name or different this Label contain the references to load items.
  • Aggregation set Make Array of option list

The batch activity contains by default the parameters to join 2 tokens into one. This token will contain at its label an array of two entries. - I assume you use the same name as firstly assigned ("Seperated") - . Then the tokens enters the Acquire activity and will acquire the operator.

You need to change the reference at the load and unload activities, because the label contains an array.

  • token.Seperated[1] is the reference of the second box at the queue.
  • token.Seperated[2] is the reference of the first box in the queue.
At each activity you load one item by the direct reference.
0 Likes
Message 7 of 7

denise_h2
Not applicable
@Raja Sekaran

Perfect! Thank you, now it works 🙂

0 Likes