our model stops and crashes at the same time each run when we enter 32 or more passengers.
why does this happen? our experiments will have way more than 32 passengers.
your help is really appreciated.
Thank you,
our model stops and crashes at the same time each run when we enter 32 or more passengers.
why does this happen? our experiments will have way more than 32 passengers.
your help is really appreciated.
Thank you,
Hi @Haneen A, was Phil BoBo's answer helpful? If so, please click the red "Accept" button at the bottom of their answer. Or if you still have questions, add a comment and we'll continue the conversation.
If we haven't heard back from you within 3 business days we'll auto-accept an answer, but you can always unaccept and comment back to reopen your question.
The reason your model is so slow that it seems to have crashed is because your A* Navigator grid is humongous. It is much larger than your model and your grid node spacing is set to 0.1.
Below is an image of your grid with the node spacing changed from 0.1 to 10. This grid has 29,108 nodes; yours has 291,084,032 nodes.
When a person wants to travel from one position to another, it has to calculate a path through that entire grid. Because your grid has 300 million nodes, that calculation takes a long time.
To speed up your model, you should make your grid as small as possible. You should also change the node spacing to the size of the travelers that move on it. Each node should represent the space that one traveler takes up on the grid. For your model, 1 would probably be more appropriate than 0.1, and then you will have 100 times fewer grid nodes. You should also use barriers and dividers to block out nodes that travelers do not travel on. Then they won't check those nodes when trying to calculate a path.
Additionally, you should turn on Cache Paths so that travelers do not need to recalculate paths that have already been calculated.
Also, your model throws tons of errors when you run it. You should fix the logic in your model to not throw errors.
16 People are following this question.
FlexSim can help you understand and improve any system or process. Transform your existing data into accurate predictions.
FlexSim is a fully 3D simulation software environment. FlexSim can be used to simulate any process in any industry.
FlexSim®, FlexSim Healthcare™, Problem Solved.®, the FlexSim logo, the FlexSim X-mark, and the FlexSim Healthcare logo with stylized Caduceus mark are trademarks of FlexSim Software Products, Inc. All rights reserved.
Privacy | Do not sell or share my personal information | Cookie preferences | Report noncompliance | Terms of use | Legal | © Autodesk Inc. All rights reserved