Package jline.solvers.ssa
Class SSAResult
java.lang.Object
jline.solvers.SolverResult
jline.solvers.ssa.SSAResult
Result container for Stochastic Simulation Algorithm (SSA) solver computations.
SSAResult extends the base SolverResult to include SSA-specific simulation results and state-space information. SSA uses stochastic simulation to generate sample paths and estimate performance metrics with statistical confidence intervals.
SSA analysis results include:
- Transient system state evolution over time
- State space representations for each station
- Synchronization matrices for multi-class systems
- Statistical estimates from simulation runs
- Since:
- 1.0
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionConfidence interval half-widths for arrival rates [stations x classes]Confidence interval half-widths for queue lengths [stations x classes]Confidence interval half-widths for response times [stations x classes]Network structure used for the analysisState space matrices for each station in the networkConfidence interval half-widths for throughputs [stations x classes]Transient synchronization matrix for multi-class coordinationTransient system state matrices indexed by time pointsConfidence interval half-widths for utilizations [stations x classes]Confidence interval half-widths for residence times [stations x classes] -
Constructor Summary
ConstructorsConstructorDescriptionConstructs an empty SSAResult to allow field population from different sources.SSAResult(Matrix QN, Matrix UN, Matrix RN, Matrix TN, Matrix CN, Matrix XN, Map<Integer, Matrix> tranSysState, Matrix tranSync, NetworkStruct sn) Constructs an SSAResult with the specified performance metrics and state information. -
Method Summary
Methods inherited from class jline.solvers.SolverResult
deepCopy, reset
-
Field Details
-
tranSysState
Transient system state matrices indexed by time points -
tranSync
Transient synchronization matrix for multi-class coordination -
sn
Network structure used for the analysis -
space
State space matrices for each station in the network -
QNCI
Confidence interval half-widths for queue lengths [stations x classes] -
UNCI
Confidence interval half-widths for utilizations [stations x classes] -
RNCI
Confidence interval half-widths for response times [stations x classes] -
TNCI
Confidence interval half-widths for throughputs [stations x classes] -
ANCI
Confidence interval half-widths for arrival rates [stations x classes] -
WNCI
Confidence interval half-widths for residence times [stations x classes]
-
-
Constructor Details
-
SSAResult
public SSAResult()Constructs an empty SSAResult to allow field population from different sources. -
SSAResult
public SSAResult(Matrix QN, Matrix UN, Matrix RN, Matrix TN, Matrix CN, Matrix XN, Map<Integer, Matrix> tranSysState, Matrix tranSync, NetworkStruct sn) Constructs an SSAResult with the specified performance metrics and state information.- Parameters:
QN- queue lengths [stations x classes]UN- utilizations [stations x classes]RN- response times [stations x classes]TN- throughputs [stations x classes]CN- visit counts [stations x classes]XN- arrival rates [stations x classes]tranSysState- transient system states indexed by timetranSync- transient synchronization matrixsn- network structure information
-