![]() |
LINE Solver (C++)
Templated C++ port of the LINE queueing solver
|
Heyman approximation of the mean response time of a G/I/G/1 queue. More...
Go to the source code of this file.
Namespaces | |
| namespace | line |
| namespace | line::qsys |
Functions | |
| template<class T> | |
| QsysResult< T > | line::qsys::qsys_gig1_approx_heyman (const T &lambda, const T &mu, const T &ca, const T &cs) |
| Heyman approximation of the mean response time of a G/I/G/1 queue. | |
Heyman approximation of the mean response time of a G/I/G/1 queue.
Templated port of matlab/src/api/qsys/qsys_gig1_approx_heyman.m, cross-checked against jar/src/main/java/jline/api/qsys/Qsys_gig1_approx_heyman.java (identical).
W = rho/(1-rho)/mu * (ca^2+cs^2)/2 + 1/mu
Algebraically the same expression as Allen-Cunneen, kept as a separate entry point because MATLAB exposes both. Pure field arithmetic, exact for T = Rational, and it reduces to M/M/1 at ca = cs = 1.
Definition in file qsys_gig1_approx_heyman.h.