Package jline.solvers
Class SolverAvgHandles
-
- All Implemented Interfaces:
public class SolverAvgHandles
Container for organized performance metric handles computed by queueing network solvers.
SolverAvgHandles groups all the average performance metric handles into a single container for convenient access and management. Each handle corresponds to a different type of performance measure and provides structured access to metrics by station and job class.
Standard performance metrics included:
- Q - Queue lengths (mean number of jobs)
- U - Utilization (fraction of time busy)
- R - Response times (time from arrival to departure)
- W - Residence times (time spent at specific stations)
- T - Throughputs (job completion rates)
- A - Arrival rates (job arrival rates)
- Since:
1.0
-
-
Method Summary
Modifier and Type Method Description AvgHandle
getAvgArvRHandles()
AvgHandle
getAvgQLenHandles()
AvgHandle
getAvgResidTHandles()
AvgHandle
getAvgRespTHandles()
AvgHandle
getAvgTputHandles()
AvgHandle
getAvgUtilHandles()
-
-
Constructor Detail
-
SolverAvgHandles
SolverAvgHandles(AvgHandle Q, AvgHandle U, AvgHandle R, AvgHandle W, AvgHandle T, AvgHandle A)
Constructs a new SolverAvgHandles container with the specified metric handles.- Parameters:
Q
- queue length handlesU
- utilization handlesR
- response time handlesW
- residence time handlesT
- throughput handlesA
- arrival rate handles
-
-
Method Detail
-
getAvgArvRHandles
AvgHandle getAvgArvRHandles()
-
getAvgQLenHandles
AvgHandle getAvgQLenHandles()
-
getAvgResidTHandles
AvgHandle getAvgResidTHandles()
-
getAvgRespTHandles
AvgHandle getAvgRespTHandles()
-
getAvgTputHandles
AvgHandle getAvgTputHandles()
-
getAvgUtilHandles
AvgHandle getAvgUtilHandles()
-
-
-
-