Description Usage Arguments Details References See Also Examples
Reports the results of a M/M/1 queueing model.
1 2 |
x |
a object of class o_MM1 |
... |
aditional arguments |
Generates a report of the queueing model received as parameter
[Sixto2004] Sixto Rios Insua, Alfonso Mateos Caballero, M Concepcion Bielza Lozoya, Antonio Jimenez Martin (2004).
Investigacion Operativa. Modelos deterministicos y estocasticos.
Editorial Centro de Estudios Ramon Areces.
1 2 3 4 5 6 7 8 9 | ## See example 10.3 in reference [Sixto2004] for more details.
## create input parameters
i_mm1 <- NewInput.MM1(lambda=1/4, mu=1/3, n=0)
## Build the model
o_mm1 <- QueueingModel(i_mm1)
## Report the results
Report(o_mm1)
|
The inputs of the M/M/1 model are:
lambda: 0.25, mu: 0.333333333333333, n: 0
The outputs of the M/M/1 model are:
The probability (p0, p1, ..., pn) of the n = 0 clients in the system are:
0.25
The traffic intensity is: 0.75
The server use is: 0.75
The mean number of clients in the system is: 3
The mean number of clients in the queue is: 2.25
The mean number of clients in the server is: 0.75
The mean time spend in the system is: 12
The mean time spend in the queue is: 9
The mean time spend in the server is: 3
The mean time spend in the queue when there is queue is: 12
The throughput is: 0.25
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.