question

Krish S avatar image
1 Like"
Krish S asked Ben Wilson commented

Operator work on 2 processors when one on a break

I have 2 processors with 2 operators. When one of them goes on a break I need the other operator to cover for him. I tried many things but it doesn't seem to work.

Operator Select.fsm

FlexSim 18.1.2
operatorsbreakdownflexsim 18.1.2operators assignmentbreaks
operator-select.fsm (35.2 KiB)
· 3
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

Raja Sekaran avatar image
2 Likes"
Raja Sekaran answered

Hi @Krish S

I have removed the dispatcher and connected and connect "Operator 1" as a center port connection 1 and connect "Operator 2" as a center port connection 2 for both the processors. Then I used the below code to assign the operator for "Processor 1" based on their state value.

  1. int portnum = 1;
  2. Variant stateVal = current.centerObjects[portnum].stats.state().valueString;
  3. if(stateVal == "breakdown")
  4. {
  5.     return current.centerObjects[2];
  6. }
  7. else
  8. {
  9.     return current.centerObjects[1];
  10. }

Below code to assign the operator for "Processor 2".

  1. int portnum = 2;
  2. Variant stateVal = current.centerObjects[portnum].stats.state().valueString;
  3. if(stateVal == "breakdown")
  4. {
  5.     return current.centerObjects[1];
  6. }
  7. else
  8. {
  9.     return current.centerObjects[2];
  10. }

Attached the model for your reference (Flexsim Version 19.0.0)

Let me know if this is what you are looking for.

assignOperator_v1.0.fsm

Thanks


5 |100000

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