D = distance in feet
T = time in seconds
S = speed in miles per hour
S = (D/5280)/(T/3600)
= (D/T)*(3600/5280)
= (15/22)D/T
You can use this formula in a spreadsheet to generate a table with the
ranges of times and distances of interest to you. For instance, in
Excel, a formula like
=15/22*$B3/C$2
can be used to generate a table like
1 2 3 4 5 6 7
-------------------------------------------------------------
1 0.682 0.341 0.227 0.170 0.136 0.114 0.097
2 1.364 0.682 0.455 0.341 0.273 0.227 0.195
3 2.045 1.023 0.682 0.511 0.409 0.341 0.292
4 2.727 1.364 0.909 0.682 0.545 0.455 0.390
5 3.409 1.705 1.136 0.852 0.682 0.568 0.487
6 4.091 2.045 1.364 1.023 0.818 0.682 0.584
7 4.773 2.386 1.591 1.193 0.955 0.795 0.682
8 5.455 2.727 1.818 1.364 1.091 0.909 0.779
9 6.136 3.068 2.045 1.534 1.227 1.023 0.877
10 6.818 3.409 2.273 1.705 1.364 1.136 0.974
11 7.500 3.750 2.500 1.875 1.500 1.250 1.071
12 8.182 4.091 2.727 2.045 1.636 1.364 1.169
13 8.864 4.432 2.955 2.216 1.773 1.477 1.266
14 9.545 4.773 3.182 2.386 1.909 1.591 1.364
15 10.227 5.114 3.409 2.557 2.045 1.705 1.461
16 10.909 5.455 3.636 2.727 2.182 1.818 1.558
where the numbers across the top are seconds and the numbers at the
left are feet. Going 11 feet in 3 seconds comes out to 2.5 miles per
hour.