top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What does Simulation of queues mean?

0 votes
377 views
What does Simulation of queues mean?
posted Mar 1, 2016 by Mohammed Hussain

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

Queuing simulation as a mehod is used to analyze how systems with limited resources distribute those resources to elements waiting to be served, while waiting elements may exhibit discrete variability in demand, i.e. arrival times and require discrete processing time.

Queuing theory based analysis is regularly used for e.g. telecommunications, computer networks, predicting computer performance, traffic, call centres, etc.

Kleinrock describes it as: Any system in which arrivals place demands upon a finite capacity resource may be termed a queuing system. Different queuing models are possible; however, all follow the structure of:

Arrival process
Service process
Number of servers
The arrival time and also the service process time can take different forms of probability distributions. Both can be either: Markov chain (M), deterministic (D), or arbitrary (G). Entry into the system is either in batch or bulk while servers are oriented either in parallel or in line. Commonly queuing models are described as M/M/1 or M/D/c models referring to the respective properties of the arrival process / services process / number of servers.

Markov chain: In mathematics, a Markov chain is a stochastic process with the Markov property. Markov property means that, given the present state, future states are independent of the past states. In other words, the description of the present state fully captures all the information that could influence the future evolution of the process. Future states will be reached through a probabilistic process instead of a deterministic one.

Poisson distribution: In probability theory and statistics, the Poisson distribution is a discrete probability distribution that expresses the probability of a number of events occurring in a fixed period of time if these events occur with a known average rate and independently of the time since the last event. The Poisson distribution can also be used for the number of events in other specified intervals such as distance, area or volume.

How is it used?

Queuing simulation is used to determine possible bottlenecks in resource allocation and enables a simulation of different usage stages and their consequences on waiting lines. It thereby makes it possible to estimate waiting times or optimize server utilization.

What does it tell?

Queuing simulation tells about the implications of service process configurations on the possibility of waiting lines and if and when those occur, how they develop over time (e.g. the implications of a red traffic light on a road for the flow or throughput of the traffic on the road). Its application in Workplace Management can be seen in the modelling of workspace usage over time. It can be used to optimize person/seat ratios and helps understanding the inherent limitations of such actions. It thereby enables Workplaces Managers to better leverage non-territorial workplace arrangements and help communicating utilization rate limitations to management.

answer Mar 2, 2016 by Manikandan J
Similar Questions
+4 votes

Give a good data structure for having n queues (n not fixed) in a finite memory segment. You can
have some data-structure separate for each queue. Try to use at least 90% of the memory space.

+7 votes

Given two n-node trees, how many rotations does it take to convert one tree into the other?

+4 votes

If we delete the mth number from a circle which is composed of numbers 0, 1, …, n-1 counting from 0 at every time, what is the last number?

For example, a circle is composed of five numbers 0, 1, 2, 3, 4. If we delete the 3rd number at every time, the deleted numbers are in order of 2, 0, 4, 1, so the last remaining number is 3.

...