Package jline.api.qsys
Class Qsys_mginfKt
-
- All Implemented Interfaces:
public final class Qsys_mginfKt
-
-
Method Summary
Modifier and Type Method Description final static HashMap<String, Object>
qsys_mginf(Double lambda, Double mu, Double cv2)
M/G/∞ queue analysis (infinite servers)Computes exact performance measures for the M/G/∞ queueing system with unlimited servers. final static HashMap<String, Object>
qsys_mginf(Double lambda, Double mu, Double cv2, Integer k)
M/G/∞ queue analysis with state probability -
-
Method Detail
-
qsys_mginf
final static HashMap<String, Object> qsys_mginf(Double lambda, Double mu, Double cv2)
M/G/∞ queue analysis (infinite servers)
Computes exact performance measures for the M/G/∞ queueing system with unlimited servers. This represents a pure delay system where customers never wait in queue.
- Parameters:
lambda
- arrival ratemu
- service rate per servercv2
- squared coefficient of variation of service time (for consistency, not used in calculations)- Returns:
HashMap containing: - L: average number of customers in system - Lq: average number of customers in queue (always 0) - W: average time in system (= service time) - Wq: average waiting time in queue (always 0) - p0: probability of empty system
-
qsys_mginf
final static HashMap<String, Object> qsys_mginf(Double lambda, Double mu, Double cv2, Integer k)
M/G/∞ queue analysis with state probability
- Parameters:
lambda
- arrival ratemu
- service rate per servercv2
- squared coefficient of variation of service timek
- specific state for probability computation- Returns:
HashMap containing all metrics plus pk (probability of k customers)
-
-
-
-