GNU Units

Units
Developer(s) GNU Project
Stable release
2.13 / June 21, 2016 (2016-06-21)
Operating system Linux, FreeBSD, NetBSD, OpenBSD, most Unix implementations, Windows
Platform Included with some Linux distributions. Two Windows binary distributions are available; distribution for other platforms is source only.
Type Utility
License GPLv3
Website Official website

GNU Units is a cross-platform computer program for conversion of units of quantities. It has a database of measurement units, including esoteric and historical units. This for instance allows conversion of velocities specified in furlongs per fortnight, and pressures specified in tons per acre. Output units are checked for consistency with the input, allowing verification of conversion of complex expressions.

History

GNU Units was written by Adrian Mariano as an implementation of the units utility included with the Unix operating system. It was originally available under a permissive license. The GNU variant is distributed under the GPL although the FreeBSD project maintains a free fork of units from before the license change.

units (Unix utility)

The original units program has been a standard part of Unix since the early Bell Laboratories versions.[1] Source code for a version very similar to the original is available from the Heirloom Project. [2]

The GNU implementation

GNU units includes several extensions to the original version,[3] including

Units definitions, including nonlinear conversions and unit lists, are user extensible.

The plain text database definitions.units is a good reference in itself, as it is extensively commented and cites numerous sources.

Other implementations

UDUNITS is a similar utility program, except that it has an additional programming library interface and date conversion abilities. UDUNITS is considered the de facto program and library for variable unit conversion for netCDF files.[4]

Version history

The latest version of GNU Units, 2.13, was released on June 21, 2016; it fixed several minor bugs and improved support for building on Windows. Version 2.10, released on March 26, 2014, added support for rational exponents greater than one, and added the ability to save an interactive session in a file to provide a record of the conversions performed. Beginning with version 2.10, a 32-bit Windows binary distribution has been available on the project Web page (a 32-bit Windows port of version 1.87 has been available since 2008 as part of the GnuWin32 project).

Version 2.02, released on July 11, 2013, added hexadecimal floating-point output and two other options to simplify changing the output format.

Version 2.0, released on July 2, 2012, added the ability to convert to sums of units, such as hours and minutes or feet and inches. In addition, this release added support for UTF-8 encoding.[5] Provision for locale-specific unit definitions was added. The syntax for defining non-linear units was changed, and added optional domain and range specifications. The names of the standard and personal units data files were changed, and the currency definitions were placed in a separate data file; a Python script for updating the currency definitions was added.

The version history is covered in detail in the NEWS file included with the source distribution.

Usage

Units will output the result of the conversion in two lines. Usually, the first line (multiplication) is the desired result; the second line is the same conversion expressed as a division.

Units can also function as a general-purpose scientific calculator; it includes several built-in mathematical functions such as sin, cos, atan, ln, exp, etc.

If you attempt to convert types of measurements that are incompatible, units will print a conformability error message and display a reduced form of each measurement.

Examples

The examples that follow show results from GNU units version 2.10.

Interactive mode

Currency exchange rates from www.timegenie.com on 2014-03-28
2729 units, 92 prefixes, 77 nonlinear units

You have: 10 furlongs
You want: miles
        * 1.25
        / 0.8
You have: 1 gallon + 3 pints
You want: quarts
        * 5.5
        / 0.18181818
You have: sqrt(meter)
                    ^
Unit not a root
You have: sqrt(acre)
You want: ft
        * 208.71033
        / 0.0047913298
You have: 21 btu + 6500 ft lbf
You want: btu
        * 29.352939
        / 0.034068139
You have: _
You want: J
        * 30968.99
        / 3.2290366e-005
You have: 3.277 hr
You want: time
        3 hr + 16 min + 37.2 sec

The underscore ('_') is used to indicate the result of the last successful unit conversion.

On the command line (non-interactive)

C:\>units "ten furlongs per fortnight" "kilometers per hour"
        * 0.0059871429
        / 167.02458
% units cup ounces
conformability error
        0.00023658824 m^3
        0.028349523 kg

Complex units expressions

One form of the Darcy–Weisbach equation for fluid flow is

where ΔP is the pressure drop, ρ is the mass density, f is the (dimensionless) friction factor, L is the length of the pipe, Q is the volumetric flow rate, and d is the pipe diameter. It might be desirable to have the equation in the form

that would accept typical US units; the constant A1 could be determined manually using the unit-factor method, but it could be determined more quickly and easily using units:

 $ units "(8/pi^2)(lbm/ft^3)ft(ft^3/s)^2(1/in^5)" psi
         * 43.533969
         / 0.022970568

Crane Technical Paper No. 410,[6] Eq. 3-5, gives the multiplicative value as 43.5.

References

  1. Bell Telephone Laboratories, Incorporated (1979). "Unix Seventh Edition Manual". Murray Hill, NJ: Alcatel-Lucent Bell Labs. Retrieved 2011-04-23. Online archive of the manual pages included with the Seventh Edition Unix distribution tapes.
  2. "Heirloom Project CVS repository". http://heirloom.cvs.sourceforge.net/viewvc/heirloom/heirloom/units/.
  3. Mariano, Adrian (2014). "Units: A Unit Conversion Program and Scientific Calculator". Boston, MA: Free Software Foundation, Inc. Retrieved 2014-03-29..
  4. As specified from several NetCDF conventions, e.g.:
  5. (German language) « GNU Units 2.0 berechnet Feet und Inches », linux-magazin.de, July 3, 2012.
  6. Technical Paper No. 410, Flow of Fluids through Valves, Fittings, and Pipe. New York: Crane Co. 1985.

External links

This article is issued from Wikipedia - version of the 10/7/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.