Package jline.api.fj
Class FJ_sm_tput
java.lang.Object
jline.api.fj.FJ_sm_tput
-
Method Summary
Modifier and TypeMethodDescriptionstatic doublefj_sm_tput(int K, double mu) Maximum throughput for Split-Merge queueing system.
-
Method Details
-
fj_sm_tput
public static double fj_sm_tput(int K, double mu) Maximum throughput for Split-Merge queueing system. lambda_K^SM = 1 / X_K^max = mu / H_K For comparison, the maximum throughput of a K-way F/J system is lambda_K^FJ = mu, which exceeds lambda_K^SM by a factor H_K.- Parameters:
K- Number of parallel servers (positive integer)mu- Service rate at each server- Returns:
- Maximum throughput lambda_K^SM = mu / H_K
- Throws:
IllegalArgumentException- if K < 1 or mu <= 0 Reference: Thomasian, page 17:2.
-