LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
pfqn_qzgblow.m
1%{
2%{
3 % @file pfqn_qzgblow.m
4 % @brief Lower asymptotic bound on queue length (Zahorjan-Gittelsohn-Bryant).
5%}
6%}
7
8%{
9%{
10 % @brief Lower asymptotic bound on queue length (Zahorjan-Gittelsohn-Bryant).
11 % @fn pfqn_qzgblow(L, N, Z, i)
12 % @param L Service demand vector.
13 % @param N Population.
14 % @param Z Think time.
15 % @param i Station index.
16 % @return Qgb Lower bound on mean queue length at station i.
17%}
18%}
19function Qgb=pfqn_qzgblow(L,N,Z,i)
20yi=N*L(i)/(Z+sum(L)+max(L)*N);
21Qgb=yi/(1-yi) - (yi^(N+1))/(1-yi);
22end