question

pc neo avatar image
0 Likes"
pc neo asked Felix Möhlmann edited

shift change send unfinished job back to appropriate dispatcher

shiftsample.fsmAttached is a model that simulates an issue that I have.

The scenario that I want to simulate is there are operators that have various skillsets, some single skill and others multi-skills. Each dispatcher represents a particular skill and are connected to operators with that skillset. All queues are connected to all dispatchers so that when a job arrive it will be sent to appropriate dispatcher base on skillset requirement. In the model a label "dispatcherNo" is used to relate to the skillset needed by the job(flowitem). In case when a shift ended the job will be passed on to the next shift to be continued by another operator with same skillset (that is connected to the same dispatcher). The issue I have is getting the right skillset operator to continue the job.

Attached model simulates the issue at time 8.45am the flowitem at processor needed an operator from "dispatcher_skillB" but after shift change an operator from "dispatcher_skillA" is summoned instead.


Any advice is appreciated.

FlexSim 21.1.3
operatorflexsim 21.1.3shift changeschange over
shiftsample.fsm (32.7 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

·
Felix Möhlmann avatar image
1 Like"
Felix Möhlmann answered Felix Möhlmann edited

First of, you entered "item.dispatcherNo" in the "Send to Port" option. That one controls through which output port the item will leave the queue. In both cases there is only one connection, so that option should just remain as "First Available".

Instead you want to open the code for the "Use Transport" option. There, the dispatcher, the task sequence is send to, is set to "current.centerObjects[1]". Here you should replace the 1 with "item.dispatcherNo" to send the tasks to the correct dispatcher (instead of the one connected first).

1628077004284.png

Do the same in the code of the "Use Operator" option of the processors.

current.inObjects[1].centerObjects[1] 

becomes

current.inObjects[1].centerObjects[item.dispatcherNo]


Now, to sending the tasksequence of the "mixed"-operator, who ends his shift, back to the correct dispatcher. As this will not trigger the "Pass To" option of the operator I instead connected it to a new dispatcher, that then connects back to the original ones.

In this dispatcher's "Pass To" option, I use the fact that the second task of the task sequences is loading the item. That way I can get a reference to the item and the label on it, to send the sequence to the correct dispatcher.

TaskSequence taskSequence = param(1);
Dispatcher current = ownerobject(c);
/**Dependant on item label - custom*/

TaskSequence.Task LoadTask = taskSequence.tasks[2];    // Second task is load task

return LoadTask.involved1.dispatcherNo;    // involved1 points to item in load task

If you have more that one type of task sequence in your main model you might to find a different way to get a reference to the involved item.

These changes were made in the attached model.

shiftsample_1.fsm


With all of this said though, I would suggest you think about using a process flow for this logic instead. Using the operators as a resource, distinguished by a label to be able to query for the correct "type", would likely be easier than using dispatchers and 3d-model-logic.


1628077004284.png (43.3 KiB)
shiftsample-1.fsm (33.7 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.

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.