qnos
Analyze open, single class BCMP queueing networks with service centers.
This function works for a subset of BCMP single-class open networks satisfying the following properties:
m(k) ≥ 1
identical servers.
INPUTS
lambda Overall external arrival rate (lambda>0).
S(k) average service time at center (S(k)>0).
V(k) average number of visits to center (V(k) ≥ 0).
m(k) number of servers at center . If m(k) < 1,
enter is a delay center (IS); otherwise it is a regular
queueing center with m(k) servers. Default is
m(k) = 1 for all .
OUTPUTS
U(k) If is a queueing center,
U(k) is the utilization of center .
If is an IS node, then U(k) is the
defined as X(k)*S(k).
R(k)center average response time.
Q(k)average number of requests at center .
X(k)center throughput.
REFERENCES
See also: qnopen, qnclosed, qnosvisits
lambda = 3;
V = [16 7 8];
S = [0.01 0.02 0.03];
[U R Q X] = qnos( lambda, S, V );
R_s = dot(R,V) # System response time
N = sum(Q) # Average number in system
R_s = 1.4062
N = 4.2186
|