question

TiredStudent avatar image
0 Likes"
TiredStudent asked Felix Möhlmann commented

'QueueJoining' custom code does not follow the If else statement

QueueandOperator.fsmExplanation of my simulation:


After the first processor 'QueueJoining' connecting to the source,

I have three queues


(Port 1 and 2) - 2 Queues are towards checkout with operators (1 Queue served by 2 Operators on 1 Processor each)

(Port 3) 1 Queue is towards checkout by self (No operators)


The goal is for the three queues to self balance itself.

In order to self balance itself, I need to first consider two conditions.


Two Conditions are Queue Length and Queue Average Waiting Time.

The first processor will send the object to the Queue with the Shortest Queue Length and Shortest Average Waiting Time.

Special Conditions to fulfil:

Context:

- Operator work in three shifts, five hours per work shift.

- Operator have a tea break for 15 min after working for every 1 hour and 15 min, so in my simulation timetable there are 3 tea breaks per work shift.


Therefore, if Port 3 does not fulfil the two conditions, the first processor will have to see if Port 1 and Port 2 have two working operators, if only one operator is working instead of 2 in that Port, it will send to the other Port, else it should just follow the main Two Conditions - Queue Length and Queue Average Waiting Time.

By default at the start of the simulation the first processor will send to Port 1



My current issue with my 'QueueJoining' does not follow the If else statement of my Output custom code and choses to fulfil Port 1 first, followed by 2 and 3 which is not what I have in mind.

Additionally I am having stuck at figuring out how to pull the information whether the operator is on duty at their processor so that we can determine if we should send the object to its connected queue.
Is there an issue with how I set my timetable as currently the object is at the processor even when the operator is not on duty.

Should I simplify my timetable so that it will be in one timetable instead for ease of extraction?

If possible is there any guidance or resources you can point me towards to so I can successfully resolve this issues and move towards my goal?


FlexSim 24.1.1
timetablesoperaterif-else condition
queueandoperator.fsm (896.5 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
0 Likes"
Felix Möhlmann answered Felix Möhlmann commented

Your code is missing curly braces "{}" to properly group the conditions. If the first condition is false it currently skips the rest of the code.

You could just check the state of the operators to see if they are active or not.

  1. checkout01.centerObjects[1].stats.state().value != STATE_ON_BREAK

I don't understand why the time tables are setup as they are. Why are the breaks placed inbetween times where the operators should be off?

And you are using a Down Behaviour from the People Module (mostly meant for the HC environment). The standard operator does not support this down behaviour and the down time is ignored because of this.

· 4
5 |100000

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