Login     Register

        Contact Us     Search

XLeratorDB/engineering Online Documentation

SQL Server function to convert speed to inches per second


INSEC
 
Updated: 01 December 2008 

Use INSEC to convert from feet per hour, feet per minute, feet per second, inches per second, kilometers per hour, knots, miles per hour, miles per minute, miles per second, meters per second, meters per minute, or meters per hour to inches per second.
Syntax
SELECT [westclintech].[wct].[INSEC] (
  <@Speed, float,>
 ,<@From_scale, nvarchar(4000),>)
Arguments
@Speed
is any real number. @Speed is an expression of type float or of a type that can be implicitly converted to float
@From_scale
is the description of the units for @Speed. @From_scale must be a valid value as specified in speed unit representations@From_scale must be of a data type that is implicitly convertible to varchar.
 
Return Types
float
Remarks
·         The following table is a representation of the conversion of one of the speed units of measure into inches per second:
feet per hour
0.003333
feet per minute
0.2
feet per second
12
inches per second
1
kilometers per hour
10.93613
knots
20.25372
miles per hour
17.6
miles per minute
1056
miles per second
63360
meters per second
39.37008
meters per minute
0.656168
meters per hour
0.010936
 
·         Conversion of meters includes all the standard prefixes with kilo representing 1,000 and yocto representing 10E-24.
Example
 
select wct.INSEC(10, 'm/s')
Here is the result set
----------------------
393.700787
 
(1 row(s) affected)


Copyright 2008-2024 Westclintech LLC         Privacy Policy        Terms of Service