question

Claire Krupp avatar image
0 Likes"
Claire Krupp asked Claire Krupp commented

How to connect many People to a Mandatory Path in AStar?

I have about 1000 people per shift, created by a Date-Time Source in Process Flow. I need them to take a mandatory path in a congested area. I set the condition on the path so that they should use it, but they are ignoring it. The manual says I have to set "Must Use Mandatory Paths" on the properties of the traveler object, but I can't do that as the people are not created yet. (And anyway there are 1000 of them so that is not feasible)

Is there a label or command that I have to use in the process flow logic to make them use mandatory paths?

FlexSim 19.0.0
astarpeople flowmandatory path
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

1 Answer

Matthew Gillespie avatar image
1 Like"
Matthew Gillespie answered Claire Krupp commented

We don't currently provide a command to do this, but this code snippet will do it:

  1. treenode person = token.Person;
  2. treenode traveler = person.find(">variables/navigator/1+");
  3. setsdtvalue(traveler, "useMandatoryPath", 1);

You could place this snippet in a custom code right after creating the person.

· 4
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.