As we know, a level 2 Matlab S Function has a command to accquire the next hit time for its block like:
block.NextTimeHit = block.CurrentTime + deltaT;
What's the relationship between the time step size of an individuell block and that of the system. I mean what would happen, if the system has a larger sample time step than what the block has? In my opinion, the solver would never let it happen, because the solver probably detect the block.NextTimeHit from every block for every iteration and make sure that the current system.NextTimeHit is smaller than every block.NextTimeHit. So there is no sample from blocks missed.