How can I set a transient phase of the simulation in AnyLogic so that it is not included in the statistics without changing the log entries?
For example, the first 100 orders should run through before the times are tracked
Manually :) AnyLogic is so flexible that there is no point in providing a warmup concept to users. This way you have full control.
For example, create an event with timeout=100 and make it eradicate any statistics collected so far:
Or use a statechart with state "warmup" and "running". Only log stats if in "running".
There are a million ways and it depends on how exactly you collect what stats :)