question

Jingyong P avatar image
0 Likes"
Jingyong P asked tannerp commented

Dedicated Operators to Processors

I have 4 operators and 4 different processors. Each operator has dedicated skill set. For example, Operator 1 allow to operate Processor 1 and 3. Each operator may have different work hour.


Work hour Processor 1 Processor 2 Processor 3 Processor 4
Operator 1 12am-12pm X
X
Operator 2 12am-12pm

X
X
Operator 3 12pm-12am

X X
Operator 4 12pm-12am
X X

For process dedication, I think I can group operators by there Skill set. For example, Processor1_Group has Op1 and Op4. Processor3_Group has Op1 and Op3. Then use multiple dispatchers. If I need to add more operators in the future, I can just modify the group members. Does this method make sense to you?

FlexSim 20.1.2
flexsim 20.1.2operators assignment
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
2 Likes"
Matt Long answered tannerp commented

Here's an example model that uses a List to determine which operators are on shift and which machines they can work on. This example is not the only solution, but hopefully will give you insights into how to make this work for your purposes.

In the model, a Task Executer List has an Expression Field called onShift. This compares the model's current hour with labels on the value. The values are the operators, which push themselves to this list at the beginning of the model (see the operator's trigger page). This expression field is marked as dynamic so it will be calculated each time a processor pulls from the list.

The processors each use a Pull from List option in the Pick Operator field. The query is:

  1. WHERE onShift AND value.ProcessorName

Each operator has associated labels for which processors they can work on. Again, this could be handled differently if you had another way to group operators or specify which skill sets they have. ie the query could be something like

  1. WHERE onShift AND (value.IsMechanic OR value.IsTechnician)

Each machine acquires the operator when an item is processed, and then the operator pushes themselves back onto the list once the processing is finished. Alternatively you could choose to release them at the end of a shift or after processing a certain amount of items etc.

PullOperators.fsm


1592712984784.png (8.4 KiB)
pulloperators.fsm (47.6 KiB)
· 8
5 |100000

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