Throughputcn {queueing} | R Documentation |
Returns a matrix with the Throughput from each class and every population of a Multi Class Closed Network
Description
Returns a matrix with the Throughput from each class and every population of a Multi Class Closed Network
Usage
Throughputcn(x, ...)
Arguments
x |
a object of class o_MCCN |
... |
aditional arguments |
Details
Returns a matrix with the Throughput from each class and every population of a Multi Class Closed Network
References
[Lazowska84] Edward D. Lazowska, John Zahorjan, G. Scott Graham, and Kenneth C. Sevcik (1984).
Quantitative System Performance: Computer System Analysis Using Queueing Network Models.
Prentice-Hall, Inc., Englewood Cliffs, New Jersey
See Also
Examples
## See example in pag 142 in reference [Lazowska84] for more details.
classes <- 2
vNumber <- c(1, 1)
vThink <- c(0, 0)
nodes <- 2
vType <- c("Q", "Q")
vVisit <- matrix(data=c(10, 9, 5, 4), nrow=2, ncol=2, byrow=TRUE)
vService <- matrix(data=c(1/10, 1/3, 2/5, 1), nrow=2, ncol=2, byrow=TRUE)
i_MCCN1 <- NewInput.MCCN(classes, vNumber, vThink, nodes, vType, vVisit, vService)
# Build the model
o_MCCN1 <- QueueingModel(i_MCCN1)
Throughputcn(o_MCCN1)
[Package queueing version 0.2.12 Index]