LINE Solver (C++)
Templated C++ port of the LINE queueing solver
Loading...
Searching...
No Matches
qsys_gig1_approx_allencunneen.h File Reference

Allen-Cunneen approximation of the mean response time of a G/I/G/1 queue. More...

Include dependency graph for qsys_gig1_approx_allencunneen.h:

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_allencunneen (const T &lambda, const T &mu, const T &ca, const T &cs)
 Allen-Cunneen approximation of the mean response time of a G/I/G/1 queue.

Detailed Description

Allen-Cunneen approximation of the mean response time of a G/I/G/1 queue.

Templated port of matlab/src/api/qsys/qsys_gig1_approx_allencunneen.m, cross-checked against jar/src/main/java/jline/api/qsys/Qsys_gig1_approx_allencunneen.java (identical).

W = (rho/(1-rho))/mu * (cs^2+ca^2)/2 + 1/mu

Only squares of the coefficients of variation appear, so this is pure field arithmetic and exact for T = Rational. It reduces to M/M/1 at ca = cs = 1.

Definition in file qsys_gig1_approx_allencunneen.h.