Unit conversions

From Opasnet
Jump to: navigation, search


The code related to this tool is now a part of Opasnet (R library) (function convert.units).

Convert almost any unit to any other unit!

What is the amount?:

In what units is it?:

To what units do you want it? (blank: basic SI units):

Question

How to convert data from one unit to another in R?

Answer

We need conversion factors, which are listed below, and a code that does the actual conversion. Function convert.units is used to perform conversions. It has three parameters:

  • x: a numeric vector of values that are to be converted.
  • tounit: a character vector of units that are preferred in the output. This can contain more units than needed, as long as the the entries are exclusive (i.e., only one unit for length, only one for energy etc.).
  • fromunit: a character vector of units used in the input. It has (or is coerced to) the same size as x.

Composite units can be used, e.g. ug /m3. Then, each part of the unit is converted separately, e.g. micrograms to picograms and cubic metre to litres.

> convert.units(1, tounit = c("pg", "l"), fromunit = "ug /m3")

will result in

Unit Result
pg /l 1000

Note that in the units, different parts are separated with space, but the units in the denominator must have the slash before them without a space.


Unit conversions(-)
ObsFromToTypeResultDescription
1Prefix1basic unit
2daPrefix10deca
3hPrefix100hecto
4kPrefix1000kilo
5MPrefix1e+6mega
6GPrefix1e+9giga
7TPrefix1e+12tera
8PPrefix1e+15peta
9EPrefix1e+18exa
10ZPrefix1e+21zetta
11YPrefix1e+24yotta
12dPrefix0.1deci
13cPrefix0.01centi
14mPrefix0.001milli
15μPrefix1e-6micro
16uPrefix1e-6micro
17nPrefix1e-9nano
18pPrefix1e-12pico
19fPrefix1e-15femto
20aPrefix1e-18atto
21zPrefix1e-21zepto
22yPrefix1e-24yocto
23JJUnit1Joule, the Si unit of energy
24WhJUnit36001 Wh = 1 Wh * 3600 s/h = 3600 Ws = 3600 MJ
25toeJUnit3.5e+101 toe = 1000 kgoe = 1000 kg * 35 MJ/kg = 35000 MJ (energy as tons of oil equivalent)
26calJUnit4.1868calorie
27eVJUnit1.602176565e-19electronvolt
28ggUnit1gram, the SI unit of mass (although the definition is based on kg)
29tongUnit1e+6metric ton
30tngUnit1e+6metric ton
31lbgUnit453.59237international avoirdupois pound
32ssUnit1second, the SI unit of time
33minsUnit60minute
34hsUnit3600hour
35dsUnit86400day
36asUnit31557600year (assuming 365.25 days per year)
37mmUnit1metre, the SI unit of length
38inmUnit0.0254inch (strangely, some people still use these)
39ftmUnit0.3048foot = 12 inches
40mimUnit1609.344mile = 5280 feet
41ÅmUnit1e-101 angstrom = 100 pm
42m3m3Unit1cubic metre, the SI unit of volume
43lm3Unit0.001litre
44m^3m3Unit1
45AAUnit1Ampere, the SI unit of electric current
46VVUnit1Volt, the SI unit of electric potential
47NNUnit1Newton, the SI unit of force
48WWUnit1Watt, the SI unit of power
49hpWUnit735.498 75horsepower (metric)
50PaPaUnit1Pascal, the SI unit of pressure
51psiPaUnit6894.757pound-force per square inch
52barPaUnit100000bar
53atmPaUnit101325atmosphere (standard)
54molmolUnit1mole, the SI unit of substance amount
55Mmol /lUnit1
56HzHzUnit1Hertz, the SI unit of frequency
57Hz/sUnit1
58CCUnit1Coulomb, the SI unit of electric quantity
59OOUnit1Ohm, the SI unit of resistance
60FFUnit1Farad, the SI unit of capacitance
61WbWbUnit1Weber, the SI unit of magnetic flux
62-%Unit0.01Fraction

Rationale

Help

Start out by filling in the amount in the first field. In the second field write the original units from which you wish to convert. The third field is for the units you wish to convert the amount to. If you leave this blank, the amount will be converted to basic SI units.

There are several things to notify when filling the second and third fields:

  • Mark the units between apostrophies.
  • Leave a space between different units.
  • Do not leave a space after a division slash.

Press Run code to execute the conversion tool. Wait a moment for it to complete the conversion.

See also

References


Related files

<mfanonymousfilelist></mfanonymousfilelist>