CFLib.org – Common Function Library Project

KtsToMph(knots)

Last updated September 10, 2001
Download UDF

author

Joshua Licht                                      Joshua Licht

Version: 1 | Requires: ColdFusion 5 | Library: ScienceLib

 
Rated 0 time(s). Average Rating: 0

Description:
Converts Knots to Miles Per Hour. Knots are a unit of speed, not distance.

Return Values:
Returns a numeric value.

Example:

<CFSET kts=20>
<CFOUTPUT>
Given kt=#kts#<BR>
#kts# Knots = #KtsToMph(kts)# Miles Per Hour. <br>
</CFOUTPUT>

Parameters:

Name Description Required
knots Number of knots you want to convert to miles per hour. Yes

Full UDF Source:

<cfscript>
/**
* Converts Knots to Mile Per Hour.
*
* @param knots      Number of knots you want to convert to miles per hour.
* @return Returns a numeric value.
* @author Joshua Licht (jlicht5@hotmail.com)
* @version 1.0, September 10, 2001
*/

function KtsToMph(knots)
{
Return Knots * 1.15;
}
</cfscript>

Search CFLib.org


Latest Additions

Alan McCollough Alan McCollough added
forceBoolean
1 day(s) ago

Shawn Porter Shawn Porter added
DeMoronize
4 day(s) ago

Chris Carey Chris Carey added
readPropertiesFi...
5 day(s) ago

Randy Johnson Randy Johnson added
lastDayofWeek
7 day(s) ago

Top Rated

James Sleeman                                     QuickSort
Rated 5.0, 3 time(s)

Barney Boisvert indentXml
Rated 5.0, 3 time(s)

Nathan Dintenfass                                 queryColumnsToSt...
Rated 5.0, 3 time(s)

Kevin Pepperman generateSsccAsn
Rated 5.0, 3 time(s)

Created by Raymond Camden / Design by Justin Johnson