Companion

object Companion

Functions

Link copied to clipboard
fun erlangB(numServers: Int, offeredLoad: Double): Double

Computes the steady state probability of blocking for the M/M/c/c model. Customers arriving when all c = numServers are busy will be blocked (lost). The offered load offeredLoad is the arrival rate divided by the service rate.

Link copied to clipboard
fun erlangC(numServers: Int, offeredLoad: Double): Double

Computes the steady state probability of delay for an arriving customer for an M/M/c queue, where c = numServers the number of servers given the offered load offeredLoad. The offered load offeredLoad is the arrival rate divided by the service rate.

Link copied to clipboard
fun lqMMC(rho: Double, mu: Double, c: Int): Double

Computes the steady state expected number in queue for an M/M/c queue.

Link copied to clipboard
fun wqMMC(rho: Double, mu: Double, c: Int): Double

Computes the steady state expected waiting time in queue for an M/M/c queue.