Task Sequence Using Global Task List

Task Sequence Using Global Task List

john_an
Not applicable
71 Views
9 Replies
Message 1 of 10

Task Sequence Using Global Task List

john_an
Not applicable

[ FlexSim 18.2.3 ]

operator-task-list.fsmGood Day,

I am trying to figure out how to get the operator to complete all the tasks on a plane before they move to the next plane. I attempted using a global list to no avail. If possible, wondering if I could do it with the regular 3D Logic. However, if it's easier to use process flow, then i'd appreciate a solution.

Thank you.

0 Likes
Accepted solutions (1)
72 Views
9 Replies
Replies (9)
Message 2 of 10

braydn_t
Not applicable
Accepted solution

@John AN

This is a solution for Process Flow:

I would have 2 different event triggered sources for each plane. They will create a token when work enters the system, and assign a label with the plane number. Then you acquire the operator, using a query to select the right plane number (Order by plane ascending) and then complete the Process Flow Chunk.

Here is a simple example of this:

plane-example.fsm

0 Likes
Message 3 of 10

john_an
Not applicable

Braydn,

My bad. I used the plane just to differentiate between the two areas. Removing the planes, how would I ensure that the operator completes all the tasks in the first section, before moving down to start and finish the next one?

0 Likes
Message 4 of 10

braydn_t
Not applicable

@John AN

I understood that. You can change the variable plane to be whatever you want, but the concept is the same. The only difference to the model I sent would be preemption. If you want the operator to do all of the tasks in area 1, and then go work on tasks in area 2 until there are more tasks to complete in area 1, the model I sent you will work. If you want the operator to complete all the tasks in area 1, then go and complete all the tasks in area 2, then I can give you an example of how to do that.

Also, the example will work with a dynamic number of created items. If you want either situation but you will know the number of created items before hand, this will be much easier.

0 Likes
Message 5 of 10

john_an
Not applicable

@Braydn T Awesome, I'll work on using a different variable for the model. The second option is what i want (The operator to complete all the tasks in area 1, then go and complete all the tasks in area 2.)

0 Likes
Message 6 of 10

braydn_t
Not applicable

@John AN Do you know the number that will be arriving before hand, or do you want the items to arrive on statistical distributions?

0 Likes
Message 7 of 10

john_an
Not applicable

@Braydn T 1 item shows up onCreation.

0 Likes
Message 8 of 10

braydn_t
Not applicable

@John AN

Does that mean you know the number before hand?

0 Likes
Message 9 of 10

john_an
Not applicable
@Braydn T

Yes i do.

0 Likes
Message 10 of 10

braydn_t
Not applicable

@John AN

If you know the number that will arrive, you can do something like this:

example-2.fsm

0 Likes