question

Neil Wu avatar image
0 Likes"
Neil Wu asked Neil Wu commented

Task Sequence List

Hi,

I have a question that if I can pull more than one task sequence from a task sequence list.

I have a task executer which capacity is 20.

Or is there any other way to dispatch the task sequence to one task executer with more than 1 capacity and the task sequence are ordered by priority?

TS in list.fsm1731097261239.png

Thank you for your answer!

FlexSim 23.2.0
listtask sequence
1731097261239.png (100.6 KiB)
ts-in-list.fsm (38.6 KiB)
· 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.

Joerg Vogel avatar image Joerg Vogel commented ·
There are many other ways. You can achieve it in 3D logic. You use a dispatcher object. A dispatcher stores Tasksequences like a list. It dispatch tasksequences to available taskexecuters. A taskexecuter can look for other tasksequences stored in dispatcher in Break To function, as long as the Taskexecuter has capacity left.
0 Likes 0 ·
Neil Wu avatar image Neil Wu Joerg Vogel commented ·
Thank you!
0 Likes 0 ·

1 Answer

Felix Möhlmann avatar image
0 Likes"
Felix Möhlmann answered Neil Wu commented

As Jörg suggests, you can do this by adding a "Break" task to the task sequences and using a dispatcher to store them.

ts-priority-dispatcher.fsm

You can also keep the list and have the TE pull additional task sequences in the "Break To" field.

ts-priority-list.fsm


· 1
5 |100000

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

Neil Wu avatar image Neil Wu commented ·
Thank you!! It works!
0 Likes 0 ·