Class QsysTandemPathResult

java.lang.Object
jline.api.qsys.QsysTandemPathResult

public class QsysTandemPathResult extends Object
Waiting times and epochs of a tandem sample path.

Returned by Qsys_tandem_lindley. Every matrix is indexed [customer][station].

Since:
LINE 3.1.0
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final double[][]
    Departure epochs of each customer from each station.
    final double[][]
    Interarrival times, G[n][k] between customers n and n+1 at station k, so column 0 is the external stream.
    final double[][]
    Sojourn times, W + S.
    final double[][]
    Waiting times, W[n][k] for customer n at station k.
  • Constructor Summary

    Constructors
    Constructor
    Description
    QsysTandemPathResult(double[][] W, double[][] G, double[][] T, double[][] departure)
     
  • Method Summary

    Methods inherited from class java.lang.Object

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

    • W

      public final double[][] W
      Waiting times, W[n][k] for customer n at station k.
    • G

      public final double[][] G
      Interarrival times, G[n][k] between customers n and n+1 at station k, so column 0 is the external stream. The last row is NaN, there being no customer N+1 to separate from.
    • T

      public final double[][] T
      Sojourn times, W + S.
    • departure

      public final double[][] departure
      Departure epochs of each customer from each station.
  • Constructor Details

    • QsysTandemPathResult

      public QsysTandemPathResult(double[][] W, double[][] G, double[][] T, double[][] departure)