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?