This is a model of a supermarket process. The process is:
We start with the following metrics:
Parameter | Value | Interpretation |
numCarts | 10 | Number of shopping carts available to the shoppers. This could also be interpreted as a software resource, such as a resource lock or a thread from a pool. |
numShopAssistants | 2 | Number of active shop assistants at the checkouts. Could also be interpreted as a processor. |
shoppingTime | 600.0 | Mean amount of time spent shopping. This is basically a delay sampled from an exponential distribution which occurs outside the scope of the model, and could thus be interpreted as a backend response time. |
tillTime | 120.0 | The mean number of seconds of time spent at the till. Also can be interpreted as the service time in the processor. |
shopperArrival | 60.0 | The interarrival time in seconds at which the shoppers arrives at the store. This is based on a Poisson clock with a mean time given by the parameter. |