Hello, we are creating a model that simulates a restaurant in PROCESS FLOW. We want to know how to register people as groups — that is, when they arrive, they are identified as groups of 2, 3, 4, or a single person. For example, if a group of 4 arrives, they should go together to one table. If it’s a group of 2, they should be seated at a different table, and so on for all the groups.
Also, for instance, if a table is already being used by a group of 2 people who came together, other people (either another group of 2 or a single person) should look for a completely empty table. And if all tables are occupied, then the customers would have to wait until a table becomes available.
This means that groups, whether single, arrive as a group of 4, 3, 2, or just 1 client. They enter and leave together.
I don’t know how to create that logic.
In the end, I want to know which group size arrived the most — whether it was groups of 4, 3, 2, or individual customers. Help, pleasee.