I'm currently writing a process-oriented simulator using JavaSim for an university exam. The simulator itself is working nicely, but I have one major doubt: is there a correct/best way to find the steady state of the simulation in code?
The book I read vaguely describe the process of finding the "steady state" when the behavior of the simulation converges to a constant or repeating value:

But how does this look in code? I think I could sample the statistics I need to gather at regular intervals and check whether they converge on a certain mean value or not. Or I could simply print out the values in time and arbitrarily decide when the simulation reaches a steady state?
