I am building a model in which material handling employees carry parts from one department to another. For now, I only have one such handler. I added a few Barriers and Dividers to make the walls of the building.
When I run the model at max speed for one day of operations, the runtime is unbelievably different whether I use AStar or not:
- Runtime without AStar: 1 second
- Runtime with AStar: 72 seconds
The only difference between the 2 runs is whether the handler is connected to AStar or not.
All the AStar parameters are the defaults.
I'm afraid that when my model is complete and I'll want to run months of operations instead of single day, it will take hours to run. And I have a very powerful computer.
So, here is my question: Are there any AStar best practices for building the model while minimizing the impact on model run speed?
Examples:
- Is it better to make the wall with Barriers or Dividers or it doesn't matter?
- Is it better to add all processors and queues as members or just to draw a barrier around them?
- Which AStar parameters have the greatest impact on performance?
Thanks a lot for any advice you have on this,