Return Operator / Task Executer to List without Puller

Return Operator / Task Executer to List without Puller

adam_c1
Not applicable
20 Views
3 Replies
Message 1 of 4

Return Operator / Task Executer to List without Puller

adam_c1
Not applicable

[ FlexSim 20.0.2 ]

This is a simplified version of the problem in a concept model. Assembly workers move a product, process it, and move it to an inspection queue. It then takes an assembly worker and an inspector to move the product to inspection.

Once the inspection is complete, the token is stuck at pushing the inspector back to the list until the inspector is called for again. This prevents the inspection station from being pushing back to its list until the inspector is pulled again (it cannot be used again until the inspector is used first). This causes issues when the model is scaled up and stations can be used for a variety of processes. Is there a way to return items to lists before they need to be pulled in order to prevent this locked-up condition?

Accepted solutions (1)
21 Views
3 Replies
Replies (3)
Message 2 of 4

Matthew_Gillespie
Autodesk
Autodesk
Accepted solution

To quote the documentation of the Push to List activity:

By default, this activity does not finish until the entry is pulled from the list. This means that a token will remain at a Push to List activity until the Push Value has been pulled off the list...

You can use the Max Wait Timer to cause the token to push a value to a list and then move on to additional activities.

As the documentation hints at, if you want the token to push something on the list and then immediately move on you should check the Use Max Wait Timer checkbox and also the Keep on List on Early Release checkbox. By default, the Max Wait Timer is set to have a Max Wait Time of 0 and to release the token from the activity.

25927-keeponlist.png

Here's an example model: pushtolistexample.fsm



Matthew Gillespie
FlexSim Software Developer

0 Likes
Message 3 of 4

joshua_s
Not applicable

My guess is your process looks like the picture below

25925-pic1.png

if so try this logic below

25926-pic2.png

Where the Create Token activity creates an independent token and copies the inspector label to the created token.

0 Likes
Message 4 of 4

adam_c1
Not applicable

It was the Keep On List On Early Release that I was missing... thank you.

0 Likes