Learn R Programming

queueing (version 0.1.4)

ROk.o_MCON: Reports a vector with each node (server) use of a MultiClass Open Network

Description

Reports a vector with each node (server) use of a MultiClass Open Network

Usage

## S3 method for class 'o_MCON':
ROk(x, \dots)

Arguments

Details

Reports a vector with each node (server) use of a MultiClass Open 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

QueueingModel.i_MCON.

Examples

Run this code
## See example in pag 138 in reference [Lazowska84] for more details.

classes <- 2
vLambda <- c(3/19, 2/19)
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_mcon1 <- NewInput.MCON(classes, vLambda, nodes, vType, vVisit, vMu)

# Build the model
o_mcon1 <- QueueingModel(i_mcon1)

ROk(o_mcon1)

Run the code above in your browser using DataLab