CheckInput.i_CJN: Check the input params of a Closed Jackson Network

Description Usage Arguments Details References See Also Examples

View source: R/CJN.R

Description

Check the input params of a Closed Jackson Network

Usage

1
2
  ## S3 method for class 'i_CJN'
CheckInput(x, ...)

Arguments

x

a object of class i_CJN

...

aditional arguments

Details

Check the input params of a Closed Jackson Network. The inputs params are created calling previously the NewInput.CJN

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.

See Also

NewInput.CJN

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
## See example 11.13 in reference [Sixto2004] for more details.
## create the nodes
n <- 2
n1 <- NewInput.MM1(lambda=0, mu=1/0.2, n=0)
n2 <- NewInput.MM1(lambda=0, mu=1/0.4, n=0)

# think time = 0
z <- 0

# operational value
operational <- FALSE

# definition of the transition probabilities
prob <- matrix(data=c(0.5, 0.5, 0.5, 0.5), nrow=2, ncol=2, byrow=TRUE)

cjn1 <- NewInput.CJN(prob, n, z, operational, 0, 0.001, n1, n2)

CheckInput(cjn1)

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