Learn R Programming

queueing (version 0.1.4)

Throughput.o_MCCN: Reports the throughput of a MultiClass Closed Network

Description

Reports the throughput of a MultiClass Closed Network

Usage

## S3 method for class 'o_MCCN':
Throughput(x, \dots)

Arguments

Details

Reports the throughput of a MultiClass 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

NewInput.MCCN, CheckInput.i_MCCN, QueueingModel.i_MCCN

Examples

Run this code
## 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)
vMu <- matrix(data=c(10, 3, 5/2, 1), nrow=2, ncol=2, byrow=TRUE)

i_MCCN1 <- NewInput.MCCN(classes, vNumber, vThink, nodes, vType, vVisit, vMu)

# Build the model
o_MCCN1 <- QueueingModel(i_MCCN1)

Throughput(o_MCCN1)

Run the code above in your browser using DataLab