Class Qsys_mmk

java.lang.Object
jline.api.qsys.Qsys_mmk

public final class Qsys_mmk extends Object
  • Method Summary

    Modifier and Type
    Method
    Description
    static double
    ErlangC(double nu, int C)
    Calculates the probability that an arriving customer is forced to join the queue (i.e., all servers are occupied) in an M/M/k system.
    static Ret.qsys
    qsys_mmk(double lambda, double mu, int k)
    Analyzes an M/M/k queueing system.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Method Details

    • qsys_mmk

      public static Ret.qsys qsys_mmk(double lambda, double mu, int k)
      Analyzes an M/M/k queueing system.
      Parameters:
      lambda - Arrival rate.
      mu - Service rate.
      k - Number of servers.
      Returns:
      qsysReturn containing average waiting time (W) and utilization (rho).
    • ErlangC

      public static double ErlangC(double nu, int C)
      Calculates the probability that an arriving customer is forced to join the queue (i.e., all servers are occupied) in an M/M/k system.
      Parameters:
      nu - Utilization.
      C - The number of servers.
      Returns:
      Probability that an arriving customer is forced to join the queue.