Learn R Programming

queueing (version 0.2.12)

QueueingModel.i_MCON: Builds one MultiClass Open Network

Description

Builds one MultiClass Open Network

Usage

# S3 method for i_MCON
QueueingModel(x, …)

Arguments

x

a object of class i_MCON

aditional arguments

Details

Build one MultiClass Open Network. It also checks the input params calling the CheckInput.i_MCON

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

CheckInput.i_MCON

Examples

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

i_mcon1 <- NewInput.MCON(classes, vLambda, nodes, vType, vVisit, vService)

# Build the model
o_mcon1 <- QueueingModel(i_mcon1)

o_mcon1

# }

Run the code above in your browser using DataLab