I am simulating an evacuation and would like to pick up people with busses. I would like to select "exact quantity(wait for)" because partially empty busses would be highly inefficient. However, the problem Im running into is that some people may be left behind if the last group is smaller than the specified bus capacity. The bus will then not leave, because it's not filled up.
Does anybody know a way of using conditioning to get around the problem? I can't just modify the total amount of waiting people to fill all the busses. This is because I have different groups of people entering different types of vehicles.
something like
exact quantity (wait for) - IF "waiting area" contains > 12 agents
quantity (if available) - IF "waiting area" contains ≤ 12 agents
Thanks