I think that whatever your basis for modeling modelling execution time/space using O(n...) notations, you are assuming a typical normalized environment. I would think that whatever model you specify, and no matter how many variables you measure to determine it ... it only applies in a normalized environment. So when disk I/O is low in competition terms O(n...) may not be required to factor in those overheads ... if you see my point.
So O(n) models typical performance in a normalized environment on the input n.
By extension you can say disk reads are in the order O(n) or that memory allocations are order O(n) and so on. External events that add pressure (such as scheduling) shouldn't play a part in the model of typical time/space/occurrence of anything.
Or maybe I am missing your point (Which I suspect I might be).
