unit_measurements_us_complete 5.17.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (91) hide show
  1. checksums.yaml +7 -0
  2. data/.github/workflows/main.yml +31 -0
  3. data/.github/workflows/pages.yml +31 -0
  4. data/.gitignore +12 -0
  5. data/.rspec +3 -0
  6. data/.yardopts +2 -0
  7. data/CHANGELOG.md +645 -0
  8. data/Gemfile +7 -0
  9. data/Gemfile.lock +56 -0
  10. data/LICENSE.md +21 -0
  11. data/README.md +511 -0
  12. data/Rakefile +10 -0
  13. data/lib/unit_measurements/arithmetic.rb +225 -0
  14. data/lib/unit_measurements/base.rb +177 -0
  15. data/lib/unit_measurements/cache.rb +173 -0
  16. data/lib/unit_measurements/comparison.rb +64 -0
  17. data/lib/unit_measurements/configuration.rb +64 -0
  18. data/lib/unit_measurements/conversion.rb +92 -0
  19. data/lib/unit_measurements/errors/blank_quantity_error.rb +21 -0
  20. data/lib/unit_measurements/errors/blank_unit_error.rb +21 -0
  21. data/lib/unit_measurements/errors/missing_primitive_unit_error.rb +24 -0
  22. data/lib/unit_measurements/errors/parse_error.rb +37 -0
  23. data/lib/unit_measurements/errors/primitive_unit_already_set_error.rb +22 -0
  24. data/lib/unit_measurements/errors/unit_already_defined_error.rb +37 -0
  25. data/lib/unit_measurements/errors/unit_error.rb +36 -0
  26. data/lib/unit_measurements/extras/conversion_methods.rb +87 -0
  27. data/lib/unit_measurements/extras/numeric_methods.rb +85 -0
  28. data/lib/unit_measurements/formatter.rb +58 -0
  29. data/lib/unit_measurements/math.rb +120 -0
  30. data/lib/unit_measurements/measurement.rb +539 -0
  31. data/lib/unit_measurements/normalizer.rb +155 -0
  32. data/lib/unit_measurements/parser.rb +220 -0
  33. data/lib/unit_measurements/unit.rb +243 -0
  34. data/lib/unit_measurements/unit_group.rb +297 -0
  35. data/lib/unit_measurements/unit_group_builder.rb +224 -0
  36. data/lib/unit_measurements/unit_groups/acceleration.rb +36 -0
  37. data/lib/unit_measurements/unit_groups/all.rb +56 -0
  38. data/lib/unit_measurements/unit_groups/amount_of_substance.rb +13 -0
  39. data/lib/unit_measurements/unit_groups/angular_acceleration.rb +14 -0
  40. data/lib/unit_measurements/unit_groups/angular_velocity.rb +25 -0
  41. data/lib/unit_measurements/unit_groups/area.rb +49 -0
  42. data/lib/unit_measurements/unit_groups/catalytic_activity.rb +13 -0
  43. data/lib/unit_measurements/unit_groups/density.rb +33 -0
  44. data/lib/unit_measurements/unit_groups/dynamic_viscosity.rb +22 -0
  45. data/lib/unit_measurements/unit_groups/electric_charge.rb +20 -0
  46. data/lib/unit_measurements/unit_groups/electric_conductance.rb +15 -0
  47. data/lib/unit_measurements/unit_groups/electric_current.rb +19 -0
  48. data/lib/unit_measurements/unit_groups/electric_dipole_moment.rb +13 -0
  49. data/lib/unit_measurements/unit_groups/electric_potential.rb +17 -0
  50. data/lib/unit_measurements/unit_groups/electric_quadrupole_moment.rb +14 -0
  51. data/lib/unit_measurements/unit_groups/electrical_capacitance.rb +15 -0
  52. data/lib/unit_measurements/unit_groups/electrical_elastance.rb +13 -0
  53. data/lib/unit_measurements/unit_groups/electrical_inductance.rb +15 -0
  54. data/lib/unit_measurements/unit_groups/electrical_resistance.rb +16 -0
  55. data/lib/unit_measurements/unit_groups/energy.rb +58 -0
  56. data/lib/unit_measurements/unit_groups/force.rb +47 -0
  57. data/lib/unit_measurements/unit_groups/frequency.rb +16 -0
  58. data/lib/unit_measurements/unit_groups/illuminance.rb +18 -0
  59. data/lib/unit_measurements/unit_groups/information_entropy.rb +15 -0
  60. data/lib/unit_measurements/unit_groups/kinetic_viscosity.rb +18 -0
  61. data/lib/unit_measurements/unit_groups/length.rb +67 -0
  62. data/lib/unit_measurements/unit_groups/luminance.rb +21 -0
  63. data/lib/unit_measurements/unit_groups/luminous_flux.rb +11 -0
  64. data/lib/unit_measurements/unit_groups/luminous_intensity.rb +13 -0
  65. data/lib/unit_measurements/unit_groups/magnetic_field.rb +13 -0
  66. data/lib/unit_measurements/unit_groups/magnetic_flux.rb +15 -0
  67. data/lib/unit_measurements/unit_groups/magnetic_induction.rb +13 -0
  68. data/lib/unit_measurements/unit_groups/magnetomotive_force.rb +13 -0
  69. data/lib/unit_measurements/unit_groups/mass_flow_rate.rb +49 -0
  70. data/lib/unit_measurements/unit_groups/plane_angle.rb +30 -0
  71. data/lib/unit_measurements/unit_groups/power.rb +54 -0
  72. data/lib/unit_measurements/unit_groups/pressure.rb +60 -0
  73. data/lib/unit_measurements/unit_groups/quantity.rb +14 -0
  74. data/lib/unit_measurements/unit_groups/radiation_absorbed_dose.rb +14 -0
  75. data/lib/unit_measurements/unit_groups/radiation_equivalent_dose.rb +13 -0
  76. data/lib/unit_measurements/unit_groups/radiation_exposure.rb +15 -0
  77. data/lib/unit_measurements/unit_groups/radioactivity.rb +14 -0
  78. data/lib/unit_measurements/unit_groups/solid_angle.rb +18 -0
  79. data/lib/unit_measurements/unit_groups/sound_level.rb +13 -0
  80. data/lib/unit_measurements/unit_groups/temperature.rb +19 -0
  81. data/lib/unit_measurements/unit_groups/time.rb +29 -0
  82. data/lib/unit_measurements/unit_groups/torque.rb +40 -0
  83. data/lib/unit_measurements/unit_groups/velocity.rb +37 -0
  84. data/lib/unit_measurements/unit_groups/volume.rb +67 -0
  85. data/lib/unit_measurements/unit_groups/volumetric_flow_rate.rb +35 -0
  86. data/lib/unit_measurements/unit_groups/weight.rb +55 -0
  87. data/lib/unit_measurements/version.rb +8 -0
  88. data/lib/unit_measurements.rb +7 -0
  89. data/unit_measurements.gemspec +43 -0
  90. data/units.md +843 -0
  91. metadata +216 -0
data/units.md ADDED
@@ -0,0 +1,843 @@
1
+ # Bundled unit groups and units
2
+
3
+ As there are lots of units bundled with `unit_measurements`, we recommend you to
4
+ check below list of bundled units before converting your measurements.
5
+
6
+ **Legend**
7
+
8
+ | Indicator | Definition |
9
+ |:--|:--|
10
+ | * | Supports [decimal SI prefixes](README.md#decimal-si-prefixes) |
11
+ | ** | Supports [binary SI prefixes](README.md#binary-si-prefixes) in addition to [decimal SI prefixes](README.md#decimal-si-prefixes) |
12
+ | _emphasised typeface_ | Primitive unit of the unit group |
13
+
14
+ ## 1. Length or distance
15
+
16
+ These units are defined in `UnitMeasurements::Length`.
17
+
18
+ | # | Name | Aliases |
19
+ |:--|:--|:--|
20
+ | _1_ | _m*_ | _meter, metre, meters, metres_ |
21
+ | 2 | Å | angstrom, angstroms, ångström |
22
+ | 3 | S | spat, spats |
23
+ | 4 | μ | micron, microns |
24
+ | 5 | h | hh, hand, hands |
25
+ | 6 | in | ", inch, inches |
26
+ | 7 | ft | ', foot, feet |
27
+ | 8 | yd | yard, yards |
28
+ | 9 | mi | mile, miles, statute mile, international mile, statute miles, international miles |
29
+ | 10 | ch | chain, chains |
30
+ | 11 | th | thou, thousandth of an inch, mil, mils |
31
+ | 12 | au | astronomical unit, astronomical units |
32
+ | 13 | pc | parsec, parsecs |
33
+ | 14 | nl | NL, nleague, nleagues, nautical league, nautical leagues |
34
+ | 15 | rd | rod, rods, perch, pole, lug |
35
+ | 16 | cb | CBL., cable length |
36
+ | 17 | ls | light-second, light-seconds |
37
+ | 18 | lh | light-hour, light-hours |
38
+ | 19 | ld | light-day, light-days |
39
+ | 20 | lw | light-week, light-weeks |
40
+ | 21 | lm | light-month, light-months |
41
+ | 22 | ly | light-year, light-years |
42
+ | 23 | ftm | fm, fathom, fathoms |
43
+ | 24 | fur | furlong, furlongs |
44
+ | 25 | nmi | NMI, M, NM, nautical mile, nautical miles |
45
+ | 26 | lnk | l, li, link, links |
46
+ | 27 | lea | league, leagues |
47
+ | 28 | sft | sfoot, sfeet, survey-foot, survey-feet |
48
+ | 29 | bc | b.c., barleycorn, barleycorns |
49
+ | 30 | lmin | light-minute, light-minutes |
50
+ | 31 | cb (M) | CBL. (M), cable length (M) |
51
+ | 32 | cb (US) | CBL. (US), cable length (US) |
52
+ | 33 | lₚ | planck length, quantum length |
53
+ | 34 | qr | quarter, quarters |
54
+ | 35 | U | RU, rack unit, rack units |
55
+ | 36 | z | red-shift, redshift, redshifts |
56
+
57
+ ## 2. Weight or mass
58
+
59
+ These units are defined in `UnitMeasurements::Weight`.
60
+
61
+ | # | Name | Aliases |
62
+ |--|--|--|
63
+ | _1_ | _g*_ | _gram, grams, gramme, grammes_ |
64
+ | 2 | q | quintal, quintals |
65
+ | 3 | t | tonne, tonnes, metric tonne, metric tonnes |
66
+ | 4 | N | newton, newtons |
67
+ | 5 | s | scruple, scruples |
68
+ | 6 | ct | carat, carats |
69
+ | 7 | Da | dalton, daltons |
70
+ | 8 | st | stone, stones |
71
+ | 9 | dr | dram, drams |
72
+ | 10 | lb | lbs, lbm, pound-mass, pound, pounds, \# |
73
+ | 11 | oz | ounce, ounces |
74
+ | 12 | gr | grain, grains |
75
+ | 13 | tn | ton, tons, short ton, short tons |
76
+ | 14 | LT | imperial ton, displacement ton, imperial tons, displacement tons, long ton, long tons, weight ton, weight tons |
77
+ | 15 | dwt | pennyweight, pennyweights |
78
+ | 16 | ozt | troy ounce, troy ounces |
79
+ | 17 | lbt | troy pound, troy pounds |
80
+ | 18 | drt | troy dram, troy drams |
81
+ | 19 | hyl | mug, metric slug, metric slugs, hyls |
82
+ | 20 | cwt | hundredweight, long hundredweight, imperial hundredweight |
83
+ | 21 | slug | slugs |
84
+ | 22 | cwt (US) | hundredweight (US), short hundredweight |
85
+ | 23 | mₚ | planck mass, quantum mass |
86
+ | 24 | qr | qtr, quarter, quarters |
87
+ | 25 | fir | firkin, firkins |
88
+ | 26 | us qr | us qtr, us quarter, us quarters |
89
+
90
+ ## 3. Time or duration
91
+
92
+ These units are defined in `UnitMeasurements::Time`.
93
+
94
+ | # | Name | Aliases |
95
+ |:--|:--|:--|
96
+ | _1_ | _s*_ | _sec, second, seconds_ |
97
+ | 2 | h | hr, hour, hours |
98
+ | 3 | d | day, days |
99
+ | 4 | wk | week, weeks |
100
+ | 5 | mo | month, months |
101
+ | 6 | yr | y, year, years |
102
+ | 7 | ftn | 4tnite, fortnight, fortnights |
103
+ | 8 | min | minute, minutes |
104
+ | 9 | qtr | quarter, quarters |
105
+ | 10 | dec | decade, decades |
106
+ | 11 | cent | century, centuries |
107
+ | 12 | tₚ | planck time, quantum time |
108
+
109
+ ## 4. Amount of substance
110
+
111
+ These units are defined in `UnitMeasurements::AmountOfSubstance`.
112
+
113
+ | # | Name | Aliases |
114
+ |:--|:--|:--|
115
+ | _1_ | _mol*_ | _mole, moles_ |
116
+ | 2 | NA | avogadro constant |
117
+
118
+ ## 5. Electric current
119
+
120
+ These units are defined in `UnitMeasurements::ElectricCurrent`.
121
+
122
+ | # | Name | Aliases |
123
+ |:--|:--|:--|
124
+ | _1_ | _A*_ | _amp, ampere, amperes_ |
125
+ | 2 | abA | abampere, abamperes |
126
+ | 3 | Bi | biot, biots |
127
+ | 4 | statA | statampere, statamperes |
128
+ | 5 | Iₚ | planck current, quantum current |
129
+
130
+ ## 6. Luminous intensity
131
+
132
+ These units are defined in `UnitMeasurements::LuminousIntensity`.
133
+
134
+ | # | Name | Aliases |
135
+ |:--|:--|:--|
136
+ | _1_ | _cd*_ | _candela, candelas_ |
137
+ | 2 | hk | hefnerkerze |
138
+
139
+ ## 7. Temperature
140
+
141
+ These units are defined in `UnitMeasurements::Temperature`.
142
+
143
+ | # | Name | Aliases |
144
+ |:--|:--|:--|
145
+ | _1_ | _K*_ | _kelvin, kelvins_ |
146
+ | 2 | °R | R, °Ra, Ra, rankine |
147
+ | 3 | Tₚ | planck temperature, quantum temperature |
148
+
149
+ ## 8. Area
150
+
151
+ These units are defined in `UnitMeasurements::Area`.
152
+
153
+ | # | Name | Aliases |
154
+ |:--|:--|:--|
155
+ | _1_ | _m²_ | _m^2, sq m, square meter, square meters, square metre, square metres_ |
156
+ | 2 | a | are, ares |
157
+ | 3 | b | barn, barns |
158
+ | 4 | ha | hectare, hectares |
159
+ | 5 | ac | acre, acres |
160
+ | 6 | bd | board, boards |
161
+ | 7 | ro | rood |
162
+ | 8 | km² | km^2, sq km, square kilometer, square kilometers, square kilometre, square kilometres |
163
+ | 9 | in² | in^2, sq in, square inch, square inches |
164
+ | 10 | ft² | ft^2, sq ft, square foot, square feet |
165
+ | 11 | yd² | yd^2, sq yd, square yard, square yards |
166
+ | 12 | mi² | mi^2, sq mi, square mile, square miles |
167
+ | 13 | ch² | ch^2, sq ch, square chain, square chains |
168
+ | 14 | fur² | fur^2, sq fur, square furlong, square furlongs |
169
+ | 15 | rd² | rd^2, sq rd, square rod, square rods |
170
+ | 16 | lnk² | link^2, sq lnk, square link, square links |
171
+ | 17 | ac (US) | acre (US), acres (US) |
172
+ | 18 | ft² (US) | ft^2 (US), sq ft (US), square foot (US), square feet (US) |
173
+ | 19 | mi² (US) | mi^2 (US), sq mi (US), square mile (US), square miles (US) |
174
+ | 20 | ch² (US) | ch^2 (US), sq ch (US), square chain (US), square chains (US) |
175
+ | 21 | Aₚ | planck area, quantum area |
176
+ | 22 | dun | ḍn, dunam, dunams |
177
+ | 23 | sec | sect, section, sections |
178
+ | 24 | twp | survey township, survey townships |
179
+
180
+ ## 9. Volume & capacity
181
+
182
+ These units are defined in `UnitMeasurements::Volume`.
183
+
184
+ | # | Name | Aliases |
185
+ |:--|:--|:--|
186
+ | 1 | l* | liter, litre, liters, litres |
187
+ | 2 | λ | lambda, lambdas |
188
+ | _3_ | _m³_ | _m^3, cu m, cubic meter, cubic meters, cubic metre, cubic metres_ |
189
+ | 4 | mm³ | mm^3, cu mm, cubic millimeter, cubic millimeters, cubic millimetre, cubic millimetres |
190
+ | 5 | cm³ | cm^3, cu cm, cubic centimeter, cubic centimeters, cubic centimetre, cubic centimetres |
191
+ | 6 | dm³ | dm^3, cu dm, cubic decimeter, cubic decimeters, cubic decimetre, cubic decimetres |
192
+ | 7 | km³ | km^3, cu km, cubic kilometer, cubic kilometers, cubic kilometre, cubic kilometres |
193
+ | 8 | in³ | in^3, cu in, cubic inch, cubic inches |
194
+ | 9 | ft³ | ft^3, cu ft, cubic foot, cubic feet |
195
+ | 10 | yd³ | yd^3, cu yd, cubic yard, cubic yards |
196
+ | 11 | mi³ | mi^3, cu mi, cubic mile, cubic miles |
197
+ | 12 | ftm³ | ftm^3, cu ftm, cubic fathom, cubic fathoms |
198
+ | 13 | c | cup, cups |
199
+ | 14 | qt | quart, quarts |
200
+ | 15 | gi | gill, gills |
201
+ | 16 | pt | pint, pints |
202
+ | 17 | pk | peck, pecks |
203
+ | 18 | gt | gtt, drop, drops |
204
+ | 19 | cd | cord, cords |
205
+ | 20 | gal | gallon, gallons |
206
+ | 21 | bbl | barrel, barrels |
207
+ | 22 | tsp | teaspoon, teaspoons |
208
+ | 23 | bsh | bu, bushel, bushels |
209
+ | 24 | min | minim, minims |
210
+ | 25 | bkt | bucket, buckets |
211
+ | 26 | hhd | hogshead, hogsheads |
212
+ | 27 | fls | fluid scruple, fluid scruples |
213
+ | 28 | dspn | dsp, dstspn, dessertspoon, dessertspoons |
214
+ | 29 | fldr | fluid drachm, fluid drachms |
215
+ | 30 | bdft | bf, fbm, board-foot, board-feet |
216
+ | 31 | tbsp | tbs, tablespoon, tablespoons |
217
+ | 32 | floz | fluid ounce, fluid ounces |
218
+ | 33 | ac⋅ft | acre-foot, acre-feet |
219
+ | 34 | ac⋅in | acre-inch, acre-inches |
220
+ | 35 | cd-ft | cord-foot, cord-feet |
221
+ | 36 | Vₚ | planck volume, quantum volume |
222
+ | 37 | st | stère, stere, steres |
223
+ | 38 | fir | firkin, firkins |
224
+ | 39 | pot | pottle, pottles |
225
+
226
+ ## 10. Density
227
+
228
+ These units are defined in `UnitMeasurements::Density`.
229
+
230
+ | # | Name | Aliases |
231
+ |:--|:--|:--|
232
+ | 1 | g/m³ | g/m^3, gram per cubic meter, grams per cubic meter, gramme per cubic metre, grammes per cubic metre |
233
+ | _2_ | _kg/m³_ | _kg/m^3, kilogram per cubic meter, kilograms per cubic meter, kilogramme per cubic metre, kilogrammes per cubic metre_ |
234
+ | 3 | g/l | gram per liter, grams per liter, gramme per litre, grammes per litre |
235
+ | 4 | g/ml | gram per milliliter, grams per milliliter, gramme per millilitre, grammes per millilitre |
236
+ | 5 | kg/l | kilogram per liter, kilograms per liter, kilogramme per litre, kilogrammes per litre |
237
+ | 6 | oz/ft³ | oz/ft^3, ounce per cubic foot, ounces per cubic foot |
238
+ | 7 | oz/in³ | oz/in^3, ounce per cubic inch, ounces per cubic inch |
239
+ | 8 | oz/gal | ounce per gallon, ounces per gallon |
240
+ | 9 | lb/ft³ | lb/ft^3, pound per cubic foot, pounds per cubic foot |
241
+ | 10 | lb/in³ | lb/in^3, pound per cubic inch, pounds per cubic inch |
242
+ | 11 | lb/gal | pound per gallon, pounds per gallon |
243
+ | 12 | slug/ft³ | slug/ft^3, slug per cubic foot, slugs per cubic foot |
244
+ | 13 | slug/in³ | slug/in^3, slug per cubic inch, slugs per cubic inch |
245
+ | 14 | ρₚ | planck density, quantum density |
246
+
247
+ ## 11. Mass flow rate, mass flow, mass flux, or mass current
248
+
249
+ These units are defined in `UnitMeasurements::MassFlowRate`.
250
+
251
+ | # | Name | Aliases |
252
+ |:--|:--|:--|
253
+ | _1_ | _kg/s_ | _kilogramme per second, kilogrammes per second, kilogram per second, kilograms per second_ |
254
+ | 2 | kg/min | kilogramme per minute, kilogrammes per minute, kilogram per minute, kilograms per minute |
255
+ | 3 | kg/h | kilogramme per hour, kilogrammes per hour, kilogram per hour, kilograms per hour |
256
+ | 4 | g/s | gramme per second, grammes per second, gram per second, grams per second |
257
+ | 5 | g/min | gramme per minute, grammes per minute, gram per minute, grams per minute |
258
+ | 6 | g/h | gramme per hour, grammes per hour, gram per hour, grams per hour |
259
+ | 7 | t/s | tonne per second, tonnes per second, metric tonne per second, metric tonnes per second |
260
+ | 8 | t/min | tonne per minute, tonnes per minute, metric tonne per minute, metric tonnes per minute |
261
+ | 9 | t/h | tonne per hour, tonnes per hour, metric tonne per hour, metric tonnes per hour |
262
+ | 10 | lb/s | pound per second, pounds per second |
263
+ | 11 | lb/min | pound per minute, pounds per minute |
264
+ | 12 | lb/h | pound per hour, pounds per hour |
265
+ | 13 | tn/s | ton per second, tons per second, short ton per second, short tons per second |
266
+ | 14 | tn/min | ton per minute, tons per minute, short ton per minute, short tons per minute |
267
+ | 15 | tn/h | ton per hour, tons per hour, short ton per hour, short tons per hour |
268
+ | 16 | slug/s | slug per second, slugs per second |
269
+ | 17 | slug/min | slug per minute, slugs per minute |
270
+ | 18 | slug/h | slug per hour, slugs per hour |
271
+ | 19 | oz/s | ounce per second, ounces per second |
272
+ | 10 | oz/min | ounce per minute, ounces per minute |
273
+ | 21 | oz/h | ounce per hour, ounces per hour |
274
+ | 22 | gr/s | grain per second, grains per second |
275
+ | 23 | gr/min | grain per minute, grains per minute |
276
+ | 24 | gr/h | grain per hour, grains per hour |
277
+ | 25 | LT/s | long ton per second, long tons per second |
278
+ | 26 | LT/min | long ton per minute, long tons per minute |
279
+ | 27 | LT/h | long ton per hour, long tons per hour |
280
+
281
+ ## 12. Volumetric flow rate, volume flow rate or volume velocity
282
+
283
+ These units are defined in `UnitMeasurements::VolumetricFlowRate`.
284
+
285
+ | # | Name | Aliases |
286
+ |:--|:--|:--|
287
+ | _1_ | _m³/s_ | _m^3/s, cubic metre per second, cubic metres per second, cubic meter per second, cubic meters per second_ |
288
+ | 2 | m³/min | m^3/min, cubic metre per minute, cubic metres per minute, cubic meter per minute, cubic meters per minute |
289
+ | 3 | m³/h | m^3/h, cubic metre per hour, cubic metres per hour, cubic meter per hour, cubic meters per hour |
290
+ | 4 | l/s | L/s, litre per second, litres per second, liter per second, liters per second |
291
+ | 5 | l/min | L/min, litre per minute, litres per minute, liter per minute, liters per minute |
292
+ | 6 | l/h | L/h, litre per hour, litres per hour, liter per hour, liters per hour |
293
+ | 7 | ft³/s | ft^3/s, cubic foot per second, cubic feet per second |
294
+ | 8 | ft³/min | ft^3/min, cubic foot per minute, cubic feet per minute |
295
+ | 9 | ft³/h | ft^3/h, cubic foot per hour, cubic feet per hour |
296
+ | 10 | in³/s | in^3/s, cubic inch per second, cubic inches per second |
297
+ | 11 | in³/min | in^3/min, cubic inch per minute, cubic inches per minute |
298
+ | 12 | in³/h | in^3/h, cubic inch per hour, cubic inches per hour |
299
+ | 13 | yd³/s | yd^3/s, cubic yard per second, cubic yards per second |
300
+ | 14 | yd³/min | yd^3/min, cubic yard per minute, cubic yards per minute |
301
+ | 15 | yd³/h | yd^3/h, cubic yard per hour, cubic yards per hour |
302
+ | 16 | gal/s | gallon per second, gallons per second |
303
+ | 17 | gal/min | gallon per minute, gallons per minute |
304
+ | 18 | gal/h | gallon per hour, gallons per hour |
305
+
306
+ ## 13. Sound level
307
+
308
+ These units are defined in `UnitMeasurements::SoundLevel`.
309
+
310
+ | # | Name | Aliases |
311
+ |:--|:--|:--|
312
+ | 1 | B* | bel, bels |
313
+ | _2_ | _dB_ | _decibel, decibels_ |
314
+ | 3 | Np | neper, nepers |
315
+
316
+ ## 14. Plane angle
317
+
318
+ These units are defined in `UnitMeasurements::PlaneAngle`.
319
+
320
+ | # | Name | Aliases |
321
+ |:--|:--|:--|
322
+ | _1_ | _rad*_ | _radian, radians_ |
323
+ | 2 | tr | turn, turns |
324
+ | 3 | deg | °, degree, degrees, degree of arc, degrees of arc, arcdegree, arcdegrees |
325
+ | 4 | gon | ᵍ, grad, gradian, gradians |
326
+ | 5 | cir | circle, circles |
327
+ | 6 | mil | mils |
328
+ | 7 | rev | revolution, revolutions |
329
+ | 8 | cyc | cycle, cycles |
330
+ | 9 | brad | b°, bdeg, binary degree, binary radian, binary degrees, binary radians |
331
+ | 10 | sign | signs |
332
+ | 11 | arcmin | ′, amin, arcminute, arcminutes |
333
+ | 12 | arcsec | ″, asec, arcsecond, arcseconds |
334
+ | 13 | octant | octants |
335
+ | 14 | sextant | sextants |
336
+ | 15 | quadrant | quadrants |
337
+
338
+ ## 15. Solid angle or 3D angle
339
+
340
+ These units are defined in `UnitMeasurements::SolidAngle`.
341
+
342
+ | # | Name | Aliases |
343
+ |:--|:--|:--|
344
+ | _1_ | _sr*_ | _steradian, steradians_ |
345
+ | 2 | sp | spat, spats |
346
+ | 3 | deg² | (°)², sq °, square degree, square degrees |
347
+ | 4 | arcmin² | (′)², sq ′, square arcminute, square arcminutes |
348
+ | 5 | arcsec² | (″)², sq ″, square arcsecond, square arcseconds |
349
+
350
+ ## 16. Force
351
+
352
+ These units are defined in `UnitMeasurements::Force`.
353
+
354
+ | # | Name | Aliases |
355
+ |:--|:--|:--|
356
+ | _1_ | _N*_ | _newton, newtons_ |
357
+ | 2 | p | pond, ponds |
358
+ | 3 | gf | gram-force, gramme-force |
359
+ | 4 | tf | metric ton-force, tonne-force |
360
+ | 5 | sn | sthene, sthenes, sthène |
361
+ | 6 | dyn | dyne, dynes |
362
+ | 7 | kgf | kp, gvf, kilogram-force, kilogramme-force |
363
+ | 8 | ozf | ounce-force |
364
+ | 9 | lbf | pound-force |
365
+ | 10 | pdl | poundal, poundals |
366
+ | 11 | tnf | ton-force, short ton-force |
367
+ | 12 | LTf | long ton-force |
368
+ | 13 | mgvf | gvtf, gravet-force, milligrave-force |
369
+ | 14 | kipf | kip, klbf, kip-force |
370
+ | 15 | (lb⋅m)/s² | (lb*m)/s^2, pound meter per second squared, pound metre per second squared |
371
+ | 16 | (lb⋅ft)/s² | (lb*ft)/s^2, pound foot per second squared |
372
+ | 17 | (lb⋅in)/s² | (lb\*in)/s^2, pound inch per second squared |
373
+ | 18 | Fₚ | planck force, quantum force |
374
+
375
+ ## 17. Velocity or speed
376
+
377
+ These units are defined in `UnitMeasurements::Velocity`.
378
+
379
+ | # | Name | Aliases |
380
+ |:--|:--|:--|
381
+ | 1 | Kn | kt, knot, knots |
382
+ | _2_ | _m/s_ | _meter per second, meters per second, metre per second, metres per second_ |
383
+ | 3 | m/min | meter per minute, meters per minute, metre per minute, metres per minute |
384
+ | 4 | m/h | meter per hour, meters per hour, metre per hour, metres per hour |
385
+ | 5 | in/s | ips, inch per second, inches per second |
386
+ | 6 | in/min | ipm, inch per minute, inches per minute |
387
+ | 7 | in/h | iph, inch per hour, inches per hour |
388
+ | 8 | ft/s | fps, foot per second, feet per second |
389
+ | 9 | ft/min | fpm, foot per minute, feet per minute |
390
+ | 10 | ft/h | fph, foot per hour, feet per hour |
391
+ | 11 | mi/s | mps, mile per second, miles per second |
392
+ | 12 | mi/min | mpm, mile per minute, miles per minute |
393
+ | 13 | mi/h | mph, mile per hour, miles per hour |
394
+ | 14 | fur/ftn | furlong per fortnight, furlongs per fortnight |
395
+
396
+ ## 18. Acceleration
397
+
398
+ These units are defined in `UnitMeasurements::Acceleration`.
399
+
400
+ | # | Name | Aliases |
401
+ |:--|:--|:--|
402
+ | 1 | Gal | gal, galileo |
403
+ | _2_ | _m/s²_ | _m/s^2, meter per second squared, meters per second squared, metre per second squared, metres per second squared_ |
404
+ | 3 | in/s² | in/s^2, ips², inch per second squared, inches per second squared |
405
+ | 4 | ipm/s | in/(min⋅s), inch per minute per second, inches per minute per second |
406
+ | 5 | iph/s | in/(h⋅s), inch per hour per second, inches per hour per second |
407
+ | 6 | ft/s² | ft/s^2, fps², foot per second squared, feet per second squared |
408
+ | 7 | fpm/s | ft/(min⋅s), foot per minute per second, feet per minute per second |
409
+ | 8 | fph/s | ft/(h⋅s), foot per hour per second, feet per hour per second |
410
+ | 9 | mi/s² | mi/s^2, mps², mile per second squared, miles per second squared |
411
+ | 10 | mpm/s | mi/(min⋅s), mile per minute per second, miles per minute per second |
412
+ | 11 | mph/s | mi/(h⋅s), mile per hour per second, miles per hour per second |
413
+ | 12 | Kn/s | knot per second, knots per second |
414
+ | 13 | aₚ | planck acceleration, quantum acceleration |
415
+
416
+ ## 19. Angular velocity or rotational speed
417
+
418
+ These units are defined in `UnitMeasurements::AngularVelocity`.
419
+
420
+ | # | Name | Aliases |
421
+ |:--|:--|:--|
422
+ | _1_ | _rad/s_ | _radian per second, radians per second_ |
423
+ | 2 | rad/min | radian per minute, radians per minute |
424
+ | 3 | rad/h | radian per hour, radians per hour |
425
+ | 4 | deg/s | °/s, degree per second, degrees per second |
426
+ | 5 | deg/min | °/min, degree per minute, degrees per minute |
427
+ | 6 | deg/h | °/h, degree per hour, degrees per hour |
428
+ | 7 | rev/s | revolution per second, revolutions per second |
429
+ | 8 | rev/min | revolution per minute, revolutions per minute |
430
+ | 9 | rev/h | revolution per hour, revolutions per hour |
431
+ | 10 | gon/s | ᵍ/s, gradian per second, gradians per second |
432
+ | 11 | gon/min | ᵍ/min, gradian per minute, gradians per minute |
433
+ | 12 | gon/h | ᵍ/h, gradian per hour, gradians per hour |
434
+
435
+ ## 20. Angular acceleration
436
+
437
+ These units are defined in `UnitMeasurements::AngularAcceleration`.
438
+
439
+ | # | Name | Aliases |
440
+ |:--|:--|:--|
441
+ | _1_ | _rad/s²_ | _rad/s^2, radian per second squared, radians per second squared_ |
442
+ | 2 | deg/s² | °/s², deg/s^2, degree per second squared, degrees per second squared |
443
+ | 3 | gon/s² | ᵍ/s², gon/s^2, gradian per second squared, gradians per second squared |
444
+
445
+ ## 21. Quantity
446
+
447
+ These units are defined in `UnitMeasurements::Quantity`.
448
+
449
+ | # | Name | Aliases |
450
+ |:--|:--|:--|
451
+ | 1 | pc | pcs, piece, pieces |
452
+ | 2 | pr | pair, pairs |
453
+ | 3 | gr | gross, grosses |
454
+ | 4 | dz | doz, dozen, dozens |
455
+ | 5 | gg | great gross, great grosses, grand gross, grand grosses, dozen gross, dozen grosses |
456
+
457
+ ## 22. Electric potential or electromotive force
458
+
459
+ These units are defined in `UnitMeasurements::ElectricPotential`.
460
+
461
+ | # | Name | Aliases |
462
+ |:--|:--|:--|
463
+ | _1_ | _V*_ | _volt, volts_ |
464
+ | 2 | abV | abvolt, abvolts |
465
+ | 3 | statV | statvolt, statvolts |
466
+ | 4 | W/A | watt per ampere, watts per ampere |
467
+ | 5 | J/C | joule per coulomb, joules per coulomb |
468
+
469
+ ## 23. Electric charge
470
+
471
+ These units are defined in `UnitMeasurements::ElectricCharge`.
472
+
473
+ | # | Name | Aliases |
474
+ |:--|:--|:--|
475
+ | _1_ | _C*_ | _coulomb, coulombs_ |
476
+ | 2 | abC | abcoulomb, abcoulombs |
477
+ | 3 | statC | statcoulomb, statcoulombs |
478
+ | 4 | Fr | franklin, franklins |
479
+ | 5 | Fd | faraday, faradays |
480
+ | 6 | qₚ | planck charge, quantum charge |
481
+
482
+ ## 24. Electrical capacitance
483
+
484
+ These units are defined in `UnitMeasurements::ElectricalCapacitance`.
485
+
486
+ | # | Symbol | Aliases |
487
+ |:--|:--|:--|
488
+ | _1_ | _F*_ | _farad, farads_ |
489
+ | 2 | abF | abfarad, abfarads |
490
+ | 3 | statF | statfarad, statfarads |
491
+ | 4 | C/V | coulomb/volt, coulombs/volt, coulomb per volt, coulombs per volt |
492
+
493
+ ## 25. Electrical elastance
494
+
495
+ These units are defined in `UnitMeasurements::ElectricalElastance`.
496
+
497
+ | # | Name | Aliases |
498
+ |:--|:--|:--|
499
+ | _1_ | _D*_ | _F⁻¹, daraf, darafs, reciprocal farad, reciprocal farads_ |
500
+ | 2 | V/C | volt/coulomb, volts/coulomb, volt per coulomb, volts per coulomb |
501
+
502
+ ## 26. Electrical resistance or impedance
503
+
504
+ These units are defined in `UnitMeasurements::ElectricalResistance`.
505
+
506
+ | # | Name | Aliases |
507
+ |:--|:--|:--|
508
+ | _1_ | _Ω*_ | _ω, ohm, ohms, reciprocal siemens_ |
509
+ | 2 | abΩ | abω, abohm, abohms |
510
+ | 3 | statΩ | statω, statohm, statohms |
511
+ | 4 | S | siemens, mho, mhos |
512
+ | 5 | V/A | volt/amp, volts/amp, volt/ampere, volts/ampere, volt per ampere, volts per ampere |
513
+
514
+ ## 27. Electric conductance
515
+
516
+ These units are defined in `UnitMeasurements::ElectricConductance`.
517
+
518
+ | # | Name | Aliases |
519
+ |:--|:--|:--|
520
+ | _1_ | _S*_ | _℧, Ω⁻¹, siemens, mho, mhos_ |
521
+ | 2 | abS | ab℧, absiemens, abmho, abmhos |
522
+ | 3 | statS | stat℧, statsiemens, statmho, statmhos |
523
+ | 3 | A/V | amp/volt, amps/volt, ampere/volt, amperes/volt, ampere per volt, amperes per volt |
524
+
525
+ ## 28. Electrical inductance
526
+
527
+ These units are defined in `UnitMeasurements::ElectricalInductance`.
528
+
529
+ | # | Name | Aliases |
530
+ |:--|:--|:--|
531
+ | _1_ | _H*_ | _henry, henries_ |
532
+ | 2 | abH | abhenry, abhenries |
533
+ | 3 | statH | stathenry, stathenries |
534
+ | 4 | Wb/A | weber per ampere, webers per ampere |
535
+
536
+ ## 29. Magnetic flux
537
+
538
+ These units are defined in `UnitMeasurements::MagneticFlux`.
539
+
540
+ | # | Name | Aliases |
541
+ |:--|:--|:--|
542
+ | _1_ | _Wb*_ | _weber, webers_ |
543
+ | 2 | Mx | maxwell, maxwells |
544
+ | 3 | T·m² | T*m^2, tesla-square meter, tesla-square metre |
545
+ | 4 | G·cm² | G*cm^2, gauss-square centimeter, gauss-square centimetre |
546
+
547
+ ## 30. Magnetic induction
548
+
549
+ These units are defined in `UnitMeasurements::MagneticInduction`.
550
+
551
+ | # | Name | Aliases |
552
+ |:--|:--|:--|
553
+ | _1_ | _T*_ | _tesla, teslas_ |
554
+ | 2 | G | Gs, gauss |
555
+
556
+ ## 31. Magnetic field
557
+
558
+ These units are defined in `UnitMeasurements::MagneticField`.
559
+
560
+ | # | Name | Aliases |
561
+ |:--|:--|:--|
562
+ | _1_ | _Oe*_ | _oersted, oersteds_ |
563
+ | 2 | A/m | ampere/meter, ampere/metre, amperes/meter, amperes/metre, ampere per meter, ampere per metre, amperes per meter, amperes per metre |
564
+
565
+ ## 32. Catalytic activity
566
+
567
+ These units are defined in `UnitMeasurements::CatalyticActivity`.
568
+
569
+ | # | Name | Aliases |
570
+ |:--|:--|:--|
571
+ | _1_ | _kat*_ | _katal, katals_ |
572
+ | 2 | U | unit, units, enzUnit |
573
+
574
+ ## 33. Electric dipole moment
575
+
576
+ These units are defined in `UnitMeasurements::ElectricDipoleMoment`.
577
+
578
+ | # | Name | Aliases |
579
+ |:--|:--|:--|
580
+ | _1_ | _C⋅m*_ | _C*m, coulomb-meter, coulomb-metre_ |
581
+ | 2 | D | debye, debyes |
582
+
583
+ ## 34. Electric quadrupole moment
584
+
585
+ These units are defined in `UnitMeasurements::ElectricQuadrupoleMoment`.
586
+
587
+ | # | Name | Aliases |
588
+ |:--|:--|:--|
589
+ | _1_ | _C·m²*_ | _C*m^2, coulomb square meter, coulomb square metre_ |
590
+ | 2 | statC·cm² | statC*m^2, statcoulomb square meter, statcoulomb square metre |
591
+ | 3 | B | buckingham, buckinghams |
592
+
593
+ ## 35. Pressure or mechanical stress
594
+
595
+ These units are defined in `UnitMeasurements::Pressure`.
596
+
597
+ | # | Name | Aliases |
598
+ |:--|:--|:--|
599
+ | _1_ | _Pa*_ | _pascal, pascals_ |
600
+ | 2 | Ba | barye, baryes |
601
+ | 3 | pz | pieze, pièze |
602
+ | 4 | at | technical atmosphere, technical atmospheres |
603
+ | 5 | atm | atmosphere, atmospheres |
604
+ | 6 | bar | bars |
605
+ | 7 | psf | lb/ft², lb/ft^2, pound per square foot, pounds per square foot |
606
+ | 8 | psi | lb/in², lb/in^2, pound per square inch, pounds per square inch |
607
+ | 9 | ksi | kip per square inch, kilopound per square inch, kilopounds per square inch |
608
+ | 10 | Torr | torr |
609
+ | 11 | μmHg | micrometer of mercury, micrometers of mercury, micrometre of mercury, micrometres of mercury |
610
+ | 12 | mmHg | millimeter of mercury, millimeters of mercury, millimetre of mercury, millimetres of mercury |
611
+ | 13 | cmHg | centimeter of mercury, centimeters of mercury, centimetre of mercury, centimetres of mercury |
612
+ | 14 | inHg | ″Hg, inch of mercury, inches of mercury |
613
+ | 15 | ftHg | ′Hg, foot of mercury, feet of mercury |
614
+ | 16 | mH₂O | mH2O, meter of water, meters of water, metre of water, metres of water |
615
+ | 17 | dmH₂O | dmH2O, decimeter of water, decimeters of water, decimetre of water, decimetres of water |
616
+ | 18 | cmH₂O | cmH2O, centimeter of water, centimeters of water, centimetre of water, centimetres of water |
617
+ | 19 | mmH₂O | mmH2O, millimeter of water, millimeters of water, millimetre of water, millimetres of water |
618
+ | 20 | ftH₂O | ftH2O, foot of water, feet of water |
619
+ | 21 | inH₂O | inH2O, Aq, inAq, inch of water, inches of water, inch of water gauge, inches of water gauge, inch of water column, inches of water column |
620
+ | 22 | LT/ft² | LT/ft^2, long ton per square foot, long tons per square foot |
621
+ | 23 | tn/ft² | tn/ft^2, ton per square foot, tons per square foot, short ton per square foot, short tons per square foot |
622
+ | 24 | pdl/ft² | pdl/ft^2, poundal per square foot, poundals per square foot |
623
+ | 25 | kgf/m² | kgf/m^2, kilogram-force per square metre, kilogramme-force per square metre |
624
+ | 26 | kgf/mm² | kgf/mm^2, kilogram-force per square millimetre, kilogramme-force per square millimetre |
625
+ | 27 | kgf/dm² | kgf/dm^2, kilogram-force per square decimetre, kilogramme-force per square decimetre |
626
+ | 28 | Pₚ | planck pressure, quantum pressure |
627
+
628
+ ## 36. Torque or moment of force
629
+
630
+ These units are defined in `UnitMeasurements::Torque`.
631
+
632
+ | # | Name | Aliases |
633
+ |:--|:--|:--|
634
+ | _1_ | _N·m*_ | _N*m, newton meter, newton metre_ |
635
+ | 2 | N·cm | N*cm, newton centimeter, newton centimetre |
636
+ | 3 | N·mm | N*mm, newton millimeter, newton millimetre |
637
+ | 4 | gf·m | gf*m, gram-force meter, gramme-force metre |
638
+ | 5 | gf·cm | gf*cm, gram-force centimeter, gramme-force centimetre |
639
+ | 6 | gf·mm | gf*mm, gram-force millimeter, gramme-force millimetre |
640
+ | 7 | kgf·m | kgf*m, Kilogram-force meter, kilogramme-force metre |
641
+ | 8 | kgf·cm | kgf*cm, Kilogram-force centimeter, kilogramme-force centimetre |
642
+ | 9 | kgf·mm | kgf*mm, Kilogram-force millimeter, kilogramme-force millimetre |
643
+ | 10 | dyn·m | dyn*m, dyne meter, dyne metre |
644
+ | 11 | dyn·cm | dyn*cm, dyne centimeter, dyne centimetre |
645
+ | 12 | dyn·mm | dyn*mm, dyne millimeter, dyne millimetre |
646
+ | 13 | pdl⋅ft | pdl*ft, poundal foot, foot-poundal |
647
+ | 14 | ozf·in | oz⋅in, ozf\*in, oz\*in, ounce-force inch, ounce-inch |
648
+ | 15 | ozf·ft | oz⋅ft, ozf\*ft, oz\*ft, ounce-force foot, ounce-foot |
649
+ | 16 | lbf⋅in | lb⋅in, lbf\*in, lb\*in, pound-force inch, pound-inch |
650
+ | 17 | lbf⋅ft | lb⋅ft, lbf\*ft, lb\*ft, pound-force foot, pound-foot |
651
+
652
+ ## 37. Luminous flux
653
+
654
+ These units are defined in `UnitMeasurements::LuminousFlux`.
655
+
656
+ | # | Name | Aliases |
657
+ |:--|:--|:--|
658
+ | _1_ | _lm*_ | _lumen, lumens_ |
659
+
660
+ ## 38. Illuminance
661
+
662
+ These units are defined in `UnitMeasurements::Illuminance`.
663
+
664
+ | # | Name | Aliases |
665
+ |:--|:--|:--|
666
+ | _1_ | _lx*_ | _lux, lm/m², lm/m^2, lumen per square metre, lumen per square meter_ |
667
+ | 2 | ph | phot, phots, lm/cm², lm/cm^2, lumen per square centimetre, lumen per square centimeter |
668
+ | 3 | fc | footcandle, lm/ft², lm/ft^2, lumen per square foot |
669
+ | 4 | nx | nox |
670
+
671
+ ## 39. Luminance
672
+
673
+ These units are defined in `UnitMeasurements::Luminance`.
674
+
675
+ | # | Name | Aliases |
676
+ |:--|:--|:--|
677
+ | _1_ | _cd/m²_ | _cd/m^2, candela per square metre, candelas per square metre, candela per square meter, candelas per square meter_ |
678
+ | 2 | cd/in² | cd/in^2, candela per square inch, candelas per square inch |
679
+ | 3 | cd/ft² | cd/ft^2, candela per square foot, candelas per square foot |
680
+ | 4 | fL | ft-L, foot lambert, foot-lambert |
681
+ | 5 | L | lambert, lamberts |
682
+ | 6 | sb | stlib |
683
+
684
+ ## 40. Frequency
685
+
686
+ These units are defined in `UnitMeasurements::Frequency`.
687
+
688
+ | # | Name | Aliases |
689
+ |:--|:--|:--|
690
+ | _1_ | _Hz*_ | _hertz_ |
691
+ | 2 | rad/s | radian per second, radians per second |
692
+ | 3 | deg/s | °/s, degree per second, degrees per second |
693
+ | 4 | rev/s | rps, revolution per second, revolutions per second |
694
+
695
+ ## 41. Power or heat flow rate
696
+
697
+ These units are defined in `UnitMeasurements::Power`.
698
+
699
+ | # | Name | Aliases |
700
+ |:--|:--|:--|
701
+ | _1_ | _W*_ | _watt, watts_ |
702
+ | 2 | p | poncelet, poncelets |
703
+ | 3 | hp (M) | PS, metric horsepower |
704
+ | 4 | kgf⋅m | kgf*m, kilogramme-force meter, kilogram-force meter |
705
+ | 5 | cal/s | calorie per second, calories per second |
706
+ | 6 | cal/min | calorie per minute, calories per minute |
707
+ | 7 | cal/h | calorie per hour, calories per hour |
708
+ | 8 | l·atm/s | l*atm/s, litre-atmosphere per second, liter-atmosphere per second |
709
+ | 9 | l·atm/min | l*atm/min, litre-atmosphere per minute, liter-atmosphere per minute |
710
+ | 10 | l·atm/h | l*atm/h, litre-atmosphere per hour, liter-atmosphere per hour |
711
+ | 11 | atm⋅cm³/s | atm*cm^3/s, atmosphere-cubic centimetre per second, atmosphere-cubic centimeter per second |
712
+ | 12 | atm⋅cm³/min | atm*cm^3/min, atmosphere-cubic centimetre per minute, atmosphere-cubic centimeter per minute |
713
+ | 13 | atm⋅cm³/h | atm*cm^3/h, atmosphere-cubic centimetre per hour, atmosphere-cubic centimeter per hour |
714
+ | 14 | hp | hp (I), horsepower |
715
+ | 15 | ft⋅lbf/s | ft*lbf/s, foot pound-force per second |
716
+ | 16 | ft⋅lbf/min | ft*lbf/min, foot pound-force per minute |
717
+ | 17 | ft⋅lbf/h | ft*lbf/h, foot pound-force per hour |
718
+ | 18 | BTU/s | british thermal unit per second, british thermal units per second |
719
+ | 19 | BTU/min | british thermal unit per minute, british thermal units per minute |
720
+ | 20 | BTU/h | british thermal unit per hour, british thermal units per hour |
721
+ | 21 | erg/s | erg per second, ergs per second |
722
+ | 22 | lusec | lusecs |
723
+ | 23 | atm⋅ft³/s | atm*ft^3/s, atmosphere-cubic foot per second |
724
+ | 24 | atm⋅ft³/min | atm*ft^3/min, atmosphere-cubic foot per minute |
725
+ | 25 | atm⋅ft³/h | atm\*ft^3/h, atmosphere-cubic foot per hour |
726
+ | 26 | Pₚ | planck power, quantum power |
727
+
728
+ ## 42. Energy
729
+
730
+ These units are defined in `UnitMeasurements::Energy`.
731
+
732
+ | # | Name | Aliases |
733
+ |:--|:--|:--|
734
+ | _1_ | _J*_ | _joule, joules_ |
735
+ | 2 | eV | electronvolt, electron volt, electron-volt |
736
+ | 3 | th | thermie, thermies |
737
+ | 4 | Ry | rydberg |
738
+ | 5 | Ha | hartree, atomic unit of energy |
739
+ | 6 | boe | barrel of oil equivalent, barrels of oil equivalent |
740
+ | 7 | toe | tonne of oil equivalent, tonnes of oil equivalent |
741
+ | 8 | tce | TCE, tonne of coal equivalent, tonnes of coal equivalent |
742
+ | 9 | cal | calorie, calories |
743
+ | 10 | erg | ergs |
744
+ | 11 | BTU | Btu, british thermal unit, british thermal units |
745
+ | 12 | thm | therm, therms |
746
+ | 13 | W⋅s | W*s, watt-second |
747
+ | 14 | W⋅h | W*h, watt-hour |
748
+ | 15 | kp⋅m | kpm, kp*m, kilopond-metre, kilopond-meter |
749
+ | 16 | hp⋅h | hp*h, horsepower-hour |
750
+ | 17 | kW⋅h | kW*h, kilowatt-hour |
751
+ | 18 | foe | bethe |
752
+ | 19 | quad | quads |
753
+ | 20 | l⋅atm | l*atm, litre-atmosphere, liter-atmosphere |
754
+ | 21 | ft⋅lbf | ft\*lbf, ft⋅lb, ft\*lb, foot-pound force |
755
+ | 22 | in⋅lbf | in\*lbf, in⋅lb, in\*lb, inch-pound force |
756
+ | 23 | ft⋅pdl | ft*pdl, foot-poundal |
757
+ | 24 | gal⋅atm | gal*atm, gallon-atmosphere |
758
+ | 25 | Eₚ | planck energy, quantum energy |
759
+
760
+ ## 43. Dynamic viscosity
761
+
762
+ These units are defined in `UnitMeasurements::DynamicViscosity`.
763
+
764
+ | # | Name | Aliases |
765
+ |:--|:--|:--|
766
+ | _1_ | _Pa⋅s*_ | _Pa*s, pascal second_ |
767
+ | 2 | P | dyne·s/cm², dyne*s/cm^2, poise |
768
+ | 3 | lb/(ft⋅s) | lb/(ft*s), pound per foot second, pounds per foot second |
769
+ | 4 | lb/(ft⋅h) | lb/(ft*h), pound per foot hour, pounds per foot hour |
770
+ | 5 | (lbf⋅s)/ft² | (lb⋅s)/ft², (lbf\*s)/ft^2, (lb\*s)/ft^2, pound-force second per square foot |
771
+ | 6 | (lbf⋅s)/in² | (lb⋅s)/in², (lbf\*s)/in^2, (lb\*s)/in^2, pound-force second per square inch |
772
+ | 7 | Pl | poiseuille |
773
+
774
+ ## 44. Kinetic viscosity
775
+
776
+ These units are defined in `UnitMeasurements::KineticViscosity`.
777
+
778
+ | # | Name | Aliases |
779
+ |:--|:--|:--|
780
+ | _1_ | _m²/s_ | _m^2/s, square metre per second, square meter per second, square metres per second, square meters per second_ |
781
+ | 2 | St | stoke, strokes |
782
+ | 3 | ft²/s | ft^2/s, square foot per second, square feet per second |
783
+ | 4 | in²/s | in^2/s, square inch per second, square inches per second |
784
+
785
+ ## 45. Magnetomotive force
786
+
787
+ These units are defined in `UnitMeasurements::MagnetomotiveForce`.
788
+
789
+ | # | Name | Aliases |
790
+ |:--|:--|:--|
791
+ | _1_ | _A⋅t_ | _A*t, ampere-turn_ |
792
+ | 2 | Gb | Gi, gilbert, gilberts |
793
+
794
+ ## 46. Radioactivity
795
+
796
+ These units are defined in `UnitMeasurements::Radioactivity`.
797
+
798
+ | # | Name | Aliases |
799
+ |:--|:--|:--|
800
+ | _1_ | _Bq*_ | _becquerel, becquerels_ |
801
+ | 2 | Ci | curie, curies |
802
+ | 3 | Rd | rutherford, rutherfords |
803
+
804
+ ## 47. Radiation exposure
805
+
806
+ These units are defined in `UnitMeasurements::RadiationExposure`.
807
+
808
+ | # | Name | Aliases |
809
+ |:--|:--|:--|
810
+ | _1_ | _C/kg*_ | _coulomb per kilogram, coulomb per kilogramme, coulombs per kilogram, coulombs per kilogramme_ |
811
+ | 2 | R | röntgen, roentgen, roentgens |
812
+
813
+ ## 48. Radiation absorbed dose
814
+
815
+ These units are defined in `UnitMeasurements::RadiationAbsorbedDose`.
816
+
817
+ | # | Name | Aliases |
818
+ |:--|:--|:--|
819
+ | _1_ | _Gy*_ | _gray, grays_ |
820
+ | 2 | erg/g | erg per gram, erg per gramme, ergs per gram, ergs per gramme |
821
+ | 3 | rad | radiation absorbed dose |
822
+
823
+ ## 49. Radiation equivalent dose
824
+
825
+ These units are defined in `UnitMeasurements::RadiationEquivalentDose`.
826
+
827
+ | # | Name | Aliases |
828
+ |:--|:--|:--|
829
+ | _1_ | _Sv*_ | _sievert, sieverts_ |
830
+ | 2 | rem | röntgen equivalent man, roentgen equivalent man |
831
+
832
+ ## 50. Information entropy
833
+
834
+ These units are defined in `UnitMeasurements::InformationEntropy`.
835
+
836
+ | # | Name | Aliases |
837
+ |:--|:--|:--|
838
+ | 1 | b*\* | bit, bits |
839
+ | 2 | B*\* | byte, bytes |
840
+ | 3 | Sh | shannon, shannons |
841
+ | _4_ | _nat_ | _nit, nepit, natural unit of information_ |
842
+ | 5 | nybl | nibble, nibbles, nybble, nyble |
843
+ | 6 | Hart | hartley, ban, dit |