Dilip Ganesan
# First we will calculate the values for Placement Station where sigma = 15 per hour
lambda=10
sigma=15
Rhop=lambda/sigma
Lp=Rhop/(1-Rhop)
# Second we will calculate the values for Inspection Station where sigma = 20 per hour
lambda=10
sigma=20
Rhoi=lambda/sigma
Li=Rhoi/(1-Rhoi)
# W = L/lambda
L= Lp + Li
W = L/lambda
# Final Result.
df= data.frame(Rhop,Rhoi, Lp, Li, L, W)
knitr::kable(df)
Rhop | Rhoi | Lp | Li | L | W |
---|---|---|---|---|---|
0.6666667 | 0.5 | 2 | 1 | 3 | 0.3 |