I am using "Time-Based Entity Generator" and I need to control the entities generation. For example, if Simulation Clock < 100 stop generation and else set interarrival time = 1.
I tried this:
if SimClk < 100
IntARR = inf;
else
IntARR = 1;
end
It didn't work as when the interarrival time set to be Inf, It stopped generation and cannot return back.
Any help ?!