print.summary.o_MCMN: Summary of the results of a MultiClass Mixed Network

Description Usage Arguments Details References See Also Examples

View source: R/MCMN.R

Description

Summary of the results of a MultiClass Mixed Network

Usage

1
2
  ## S3 method for class 'summary.o_MCMN'
print(x, ...)

Arguments

x

a object of class summary.o_MCMN

...

aditional arguments

Details

Summaries a MultiClass Mixed Network model

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

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
## 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)

print(summary(o_mcmn1))

queueing documentation built on Dec. 9, 2019, 1:06 a.m.