LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
qsys_gig1_lbnd.m
1function [W,rhohat]=qsys_gig1_lbnd(lambda,mu,ca,cs)
2% [W,RHOHAT]=QSYS_GIG1_LBND(LAMBDA,MU,CA,CS)
3%
4% Computes fundamental theoretical lower bounds for G/G/1 queues.
5% These are the minimum possible values that performance measures
6% cannot fall below for any realization of the arrival and service
7% processes.
8%
9% Inputs:
10% LAMBDA - Arrival rate
11% MU - Service rate
12% CA - Coefficient of variation of inter-arrival time
13% CS - Coefficient of variation of service time
14%
15% Returns:
16% W - Lower bound on average time in system (= 1/mu)
17% RHOHAT - Modified utilization (so that M/M/1 formulas still hold)
18
19% Copyright (c) 2012-2026, Imperial College London
20% All rights reserved.
21
22W = 1/mu; % At least the mean service time
23rhohat = W*lambda/(1+W*lambda);
24
25end