Class QsysMtginfResult

java.lang.Object
jline.api.qsys.QsysMtginfResult

public class QsysMtginfResult extends Object
Time-varying measures of the Mt/G/infinity queue, as produced by Qsys_mtginf.

Port of the struct returned by MATLAB qsys_mtginf.m.

Since:
LINE 3.1.0
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final double[]
    lambda(t).
    final double[]
    delta(t) = E[lambda(t-S)], the rate of the (Poisson) departure process.
    final double[]
    ES*lambda(t-E[Se]), the first-order lag approximation; null without ES2.
    final double
    E[Se] = E[S^2]/(2 ES), the time lag; NaN when ES2 was not supplied.
    final double[]
    m(t), the Poisson mean of the number in system.
    final double[]
    ES*lambda(t), the pointwise stationary approximation.
    final double[]
    The times at which everything below was evaluated.
    final double[]
    Equal to meanNumber, the law being Poisson.
  • Constructor Summary

    Constructors
    Constructor
    Description
    QsysMtginfResult(double[] times, double[] meanNumber, double[] varNumber, double[] arrivalRate, double[] departureRate, double[] offeredLoadPSA, double meanLag, double[] lagApproximation)
     
  • Method Summary

    Modifier and Type
    Method
    Description
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details

    • times

      public final double[] times
      The times at which everything below was evaluated.
    • meanNumber

      public final double[] meanNumber
      m(t), the Poisson mean of the number in system.
    • varNumber

      public final double[] varNumber
      Equal to meanNumber, the law being Poisson.
    • arrivalRate

      public final double[] arrivalRate
      lambda(t).
    • departureRate

      public final double[] departureRate
      delta(t) = E[lambda(t-S)], the rate of the (Poisson) departure process.
    • offeredLoadPSA

      public final double[] offeredLoadPSA
      ES*lambda(t), the pointwise stationary approximation.
    • meanLag

      public final double meanLag
      E[Se] = E[S^2]/(2 ES), the time lag; NaN when ES2 was not supplied.
    • lagApproximation

      public final double[] lagApproximation
      ES*lambda(t-E[Se]), the first-order lag approximation; null without ES2.
  • Constructor Details

    • QsysMtginfResult

      public QsysMtginfResult(double[] times, double[] meanNumber, double[] varNumber, double[] arrivalRate, double[] departureRate, double[] offeredLoadPSA, double meanLag, double[] lagApproximation)
  • Method Details