My supermarket simulation model has queues, processors and 3 sinks which represents happy, satisfied, and unhappy customers. From the queue, i have to connect them to the processors (counters), and from the processors i send the output into a global list. My 3 sinks will then pull from the global list when the waiting time is < 10mins, >10mins, & >15mins respectively. However, the waiting time is the processor process time, and not the waiting time needed to wait in the queue before getting processed. I am trying to find out what code should i use in the global list so that the waiting time is for the queue and not the processor, even though the output is from the processor?