Package jline.solvers.ssa
Class SSAResult
-
- All Implemented Interfaces:
public class SSAResult extends SolverResult
Result container for Stochastic State-space Analysis (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
-
-
Field Summary
Fields Modifier and Type Field Description public Map<Integer, Matrix>
tranSysState
public Matrix
tranSync
public NetworkStruct
sn
public Map<Station, Matrix>
space
public String
method
public String
solver
public int
iter
public Matrix
QN
public Matrix
UN
public Matrix
RN
public Matrix
TN
public Matrix
AN
public Matrix
WN
public Matrix
CN
public Matrix
XN
public Array<Array<Matrix>>
QNt
public Array<Array<Matrix>>
RNt
public Array<Array<Matrix>>
UNt
public Array<Array<Matrix>>
TNt
public Array<Array<Matrix>>
XNt
public Array<Array<Matrix>>
CNt
public Matrix
t
public Matrix
pi_t
public Matrix
SS
public double
runtime
-
Constructor Summary
Constructors Constructor Description SSAResult()
Constructs 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
Modifier and Type Method Description -
-
Constructor Detail
-
SSAResult
SSAResult()
Constructs an empty SSAResult to allow field population from different sources.
-
SSAResult
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
-
-
-
-