View Single Post
Old 10-31-09, 05:54 PM   #6
Pisces
Silent Hunter
 
Join Date: Dec 2004
Location: AN9771
Posts: 4,892
Downloads: 303
Uploads: 0
Default

We want the speed to be in knots, or nautical miles per hour. But we have only the distance in meters, and the time in seconds, so it needs some conversion factors.

ship length in nautical miles= length/1852m

time in hours = time in seconds/3600s

Speed = length /time

Code:
Speed (in knots, nautical miles/hour) = length         seconds
                                        --------  / -------------
                                           1852          3600

Speed (in knots, nautical miles/hour) = length       3600
                                          -------  * --------
                                          1852        seconds

Speed (in knots, nautical miles/hour)  = (3600/1852) * length/seconds

3600/1852 = 1.94...
__________________
My site downloads: https://ricojansen.nl/downloads

Last edited by Pisces; 10-31-09 at 10:06 PM.
Pisces is offline   Reply With Quote