redss
Programmer
- Oct 20, 2002
- 195
I've run speed tests and am still confused over the way its calculated: There are 1024 bytes in a kilobyte right? so doesn't that mean that 1 KBps = 1024 Kbps? (captital B meaning bytes, small meaning bits)
Upon completion of using ftp to download a file, it tells me the file size in bytes, the number of seconds it took to download, and the calculated speed in KBps... but it seems to be using 1000 Kilobits per kilobyte, rather than 1024. Is the ftp server wrong?
example, using DOS ftp to retrieve file from angelfire.com: It says
So that's using 1000 Kilobits/kilobyte, but the calculation I get with WS-FTP is even farther off:
I don't know how this was calculated, because I calculated 1.247 Mbps... the way I got that is:
Does anybody know where my calculation is wrong?
thanks...
Upon completion of using ftp to download a file, it tells me the file size in bytes, the number of seconds it took to download, and the calculated speed in KBps... but it seems to be using 1000 Kilobits per kilobyte, rather than 1024. Is the ftp server wrong?
example, using DOS ftp to retrieve file from angelfire.com: It says
Code:
ftp: 3579819 bytes received in 20.89Seconds 171.37Kbytes/sec.
So that's using 1000 Kilobits/kilobyte, but the calculation I get with WS-FTP is even farther off:
Code:
Received 3579819 bytes in 21.9 secs, (1.57 Mbps), transfer succeeded
I don't know how this was calculated, because I calculated 1.247 Mbps... the way I got that is:
Code:
3579819 bytes * 8 = 28638552 bits
28638552 bits / 21.9 sec = 1307696 bits/sec
1307696 / 1024 = 1277 Kbps
1277 / 1024 = 1.247 MBPS
Does anybody know where my calculation is wrong?
thanks...