Observer wrote:
Clearly there is a relationship. In any given set of circumstances where a driver observes an obstruction which calls for emergency braking, the impact speed (assuming there is insufficient braking distance) will be higher if the initial free travelling speed is higher.
Actually that's a specious argument, which makes perfect sense until you start analysing it.
Impact speed, if braking takes place, depends on how much braking has taken place. If you're doing 20mph and you manage to brake for a quarter of a second before impact, the impact speed will be 15mph. On the other hand, if you manage to brake for one and a half seconds from an initial 40mph, the impact speed will be 10mph.
I know the scamerati will then say something like, "But if you're doing 40 you won't have one and a half seconds."
Maybe you will, maybe you won't - it depends on a lot of random factors, such as precisely what time both parties involved started their journeys, and how far they had travelled.
Then they'll say, "But, given the same circumstances, you'll have more time and space to stop from 20 than you will if you're doing 40."
Wrong. In any set of circumstances, you cannot just change the speed without changing everything else as well. In other words, you cannot rewind to some fixed point some distance back along the road and just change the speed of the car without also changing its position. The laws of physics simply will not allow it. No two sets of circumstances are the same, nor can they be. Additionally, the laws of probability dictate that the longer you spend on the road (the slower your speed) the more likely you are to be in the wrong place at the wrong time.
But still we hear, ad nauseam, "At 35mph you need an extra 21 feet...", as if it means something. If someone walks in front of you when you're at such a distance from them that you're just able to stop from 30, it doesn't mean that you'll hit them if you're doing 35. If you're doing 35 then, in all probability, you'll be way past that point in the road at the time that that same someone walks into the road. Someone else may run them down, but it won't be you.
If you want to test this theory, and you know how to write programs, write the following simulation:
1) Have cars passing a fixed point at fixed intervals, say one every three seconds, all travelling at the same fixed speed.
2) Have a hazard appearing at fixed intervals, say one every ten seconds, but at a random point along the road, say up to half a mile either side of the fixed point.
3) Whenever the hazard appears, calculate where the nearest car is in relationship to the hazard (but, obviously, not the one that's already passed) At this point you can, if you wish, build a little 'intelligence' into the equation - like, for example, to take.
4) If the hazard is within the stopping distance of that car, record a collision. For good measure, you can also calculate the impact speed and record it. At this point you can, if you wish, build a little 'intelligence' into the equation - like, for example, to take into account that the hazard takes a finite amount of time to get into the path of the car so, if the car is very close it will probably miss the hazard.
5) Run this simulation for say, 10 million (simulated) seconds, and then check the number of collisions vs the number of cars past the point.
6) Repeat the simulation at a different car speed.
7) Compare the results. You may be surprised.
You can write the simulation with some scripting language, but it will take forever to run. Better to use a compiled language.
Regards
Peter