Consider a factory simulation. Y=how long does it take to produce 500 widgets. If we run the simulation once we would have the simulated observation Y1. If we wanted to understand Y1 is an outlier, what we would like to do is repeat the simulation and CONTINUE using the same with the same RNG so that we have an array of observations [Y1, Y2, Y3 ... Yn]. Why?? So that we can apply statistics to the simulated observations.
When simulating a system, it is often necessary to replicate simulations. This means running the same simulation 20+ times consecutively with the same RNG (Random number Generator) stream and logging each observation (output of interest for each simulation run).
After each simulation run is complete, the clock and every metric is reset: all entities are removed from the system. The RNG is NOT reset between simualations. The RNG is not reset after each simulation completion because this would result same simulated observations in each simualtion.
The simulation output for each run are logged for statistical evaluation.
Questions
1) Does Simevents already have this built-in and I need to sharpen my Googling skills?
2) Is there an example of replication with a simple model using Simevents?