The problem is following: We want to simulate for 24 seconds. At every second except the 9th, 14th and 17th, the Entity-Generator must generate random number of entities e.g. between 1 and 3. For the concrete seconds (9th, 14th and 17th), the number of entities, generated at the same time, must be 5.
I'm thinking of taking the digital time block and adding some if-statements for the concrete seconds. But in this way, I will have the numbers of the entities at every simulation point. How can I then give this number to the generator as a parameter?
Is there also a simpler idea than mines?