Learn R Programming

queueing (version 0.2.12)

Throughputck.o_MCMN: Reports a matrix with the throughput of class i in each node (server) j in a MultiClass Mixed Network

Description

Reports a matrix with the throughput of class i in each node (server) j in a MultiClass Mixed Network

Usage

# S3 method for o_MCMN
Throughputck(x, …)

Arguments

x

a object of class o_MCMN

aditional arguments

Details

Reports a matrix with the throughput of class i in each node (server) j in a MultiClass Mixed Network

References

[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.

[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.MCMN, CheckInput.i_MCMN, QueueingModel.i_MCMN

Examples

Run this code
# NOT RUN {
## See example in pag 147 in reference [Lazowska84] for more details.

classes <- 4
vLambda <- c(1, 1/2)
vNumber <- c(1, 1)
vThink <- c(0, 0)
nodes <- 2
vType <- c("Q", "Q")
vVisit <- matrix(data=1, nrow=4, ncol=2)
vService <- matrix(data=c(1/4, 1/2, 1/2, 1, 1/6, 1, 1, 4/3), nrow=4, ncol=2)

i_mcmn1 <- NewInput.MCMN(classes, vLambda, vNumber, vThink, nodes, vType, vVisit, vService)

# Build the model
o_mcmn1 <- QueueingModel(i_mcmn1)

Throughputck(o_mcmn1)

# }

Run the code above in your browser using DataLab