I have a complex simulation for the manufacture of various product types, with each product following a dynamically-generated trajectory unique to that product. The products share a pool of common resources (where each resource is a process step).
I was wondering - is there a way to initialize the simulation with arrivals at specific points along their trajectories? I'm picturing something like the rollback() function with a target, except in this case it would be a "rollforward". I need this to replicate the current state of the real-world manufacturing line, then run simulations from that point on for optimization purposes.
Thanks!