question

krishna K avatar image
0 Likes"
krishna K asked Matt Long commented

Operator not picking as per Task List

Hi Team,

The attached in 1 station of multiple typical Toting station, operator is not picking totes and cartons as per process flow.

Please Help.

toting.fsm

FlexSim 19.1.1
operator movementsgobal list
toting.fsm (53.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.

1 Answer

·
Matt Long avatar image
0 Likes"
Matt Long answered Matt Long commented

You're using a Create Task Sequence activity to build the task sequence to give to the operator, but you have the Wait Until Complete still checked on each of the activities. This causes the token to get stuck in the first activity, Load Tote-Empty. You need to go through and uncheck all of the Wait Until Complete boxes so the task sequence can build completely and then push it to the list. Also, your last 3 activities in that task sequence have bad references (token.resource, token.item, token.destination).

I'm not sure exactly why you're dispatching the task sequence all at once instead of executing the task sequence one task a time, but might I suggest trying that? Instead of having the operator pull from a task sequence list, you can have the operator push himself to a list saying he's ready for work. Then in process flow your token pulls from that list to get a reference to the available operator. You then change the Executer / Task Sequence reference in each activity to your operator reference label. Leave the Wait Until Complete check and you'll be able to see the token in whichever task the operator is currently working on. Using this method can be not only helpful for debugging and visual understanding of what the operator is doing at any given time, but it also allows you to get references to objects/flowitems on the fly as the model's state changes during the operator's task sequence.

In this case, the Create Task Sequence activity at the beginning is not necessary. The create task sequence activity has two purposes. One is to add tasks to the created task sequence and push the completed task sequence to a list or operator (as you were attempting to do). The second is to keep an operator from being interrupted while performing tasks. This second option is usually not an issue if you're acquiring the operator by only one token at a time (and so only one token is issues tasks to the operator).

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

krishna K avatar image krishna K commented ·

@Matt Long - Thanks, after un-check operator is moving now & need to correct last 3 references.

Note: As I told this is one of many stations. Which Process flow would be better to consider as shown in bellow image? 1. GlobalList 2. SubProcessFlow 3. Instances

I have added pull from task & Create Task sequence following Tuition using GloblList as shown in below link.

https://docs.flexsim.com/en/19.1/Tutorials/TaskLogic/Tutorial1TaskLogicTools/1-4TasksGlobalLists/

https://docs.flexsim.com/en/19.1/Tutorials/TaskLogic/Tutorial3ConditionalTasks/3-1SubflowsArrays/

https://docs.flexsim.com/en/19.1/Tutorials/ProcessFlow/Tutorial4Instances/4-3Instances/

Regards - Krishna

0 Likes 0 ·
processflowtypes.png (194.0 KiB)
Matt Long avatar image Matt Long krishna K commented ·

Your sub flow option is going to be the most versatile as you expand the functionality of your model and add additional logic, stats etc. As you add more stations to the model, you can likely use much of the logic you've already built to handle the new stations rather than copying all of those activities and changing a few variables. The latter method is difficult to maintain.

0 Likes 0 ·

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.