Reputation: 29
I would like to specify a fix numbers of agents that are shown at the beginning of the simulation so I can move them to the other place. However, the agents are generated continuously... Do you know how to make a pre-specified population and let them wait at an area instead of generating them continuously ??
Thank you!
Upvotes: 0
Views: 61
Reputation: 2213
Set the source properties as follows:
Then, in the on startup field of main, type the following code:
source.inject(50);
Upvotes: 1