-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathUnitsOfMeasure.php
More file actions
98 lines (93 loc) · 2.66 KB
/
UnitsOfMeasure.php
File metadata and controls
98 lines (93 loc) · 2.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<meta charset='utf-8'/>
<meta name="viewport" content="width=device-width, initial-scale=0.6">
<html>
<head>
<title>UnitsOfMeasure (namespace) - Plange</title>
<link rel=StyleSheet href='../../css/general.css' type='text/css' />
</head>
<body>
<?php require('../../header.php') ?>
<h2>Prefixes</h2>
<ul>
<li>Y - yota (10^24)</li>
<li>Z - zetta (10^21)</li>
<li>E - exa (10^18)</li>
<li>P - peta (10^15)</li>
<li>T - tera (10^12)</li>
<li>G - giga (10^9)</li>
<li>M - mega (10^6)</li>
<li>k - kilo (10^3)</li>
<li>h - hecto (10^2)</li>
<li>da - deca (10^1)</li>
<li>d - deci (10^(-1))</li>
<li>c - centi (10^(-2))</li>
<li>m - milli (10^(-3))</li>
<li>μ - micro (10^(-6))</li>
<li>n - nano (10^(-9))</li>
<li>p - pico (10^(-12))</li>
<li>f - femto (10^(-15))</li>
<li>a - atto (10^(-18))</li>
<li>z - zepto (10^(-21))</li>
<li>y - yocto (10^(-24))</li>
</ul>
<h2>Base units</h2>
<ul>
<li>m - metres</li>
<li>g - grams<sup>*</sup></li>
<li>s - seconds</li>
<li>A - amperes</li>
<li>K - kelvins</li>
<li>mol - moles</li>
<li>cd - candelas</li>
</ul>
<h2>Derived units</h2>
<ul>
<li>rad - radians<sup>†</sup></li>
<li>sr - steradians<sup>†</sup></li>
<li>Hz - hertz</li>
<li>N - newtons</li>
<li>Pa - pascals</li>
<li>J - joules</li>
<li>W - watts</li>
<li>C - coulombs</li>
<li>V - volts</li>
<li>F - farads</li>
<li>Ω - ohms</li>
<li>S - siemens</li>
<li>Wb - webers</li>
<li>T - teslas</li>
<li>H - henries<sup>‡</sup></li>
<li>°C - degrees celsius</li>
<li>lm - lumens</li>
<li>lx - lux</li>
<li>Bq - becquerels</li>
<li>Gy - grays</li>
<li>Sv - sieverts</li>
<li>kat - katals</li>
<li>deg - degrees (π / 180 radians)</li>
<li>grad - gradians</li>
<li>°F - degrees fahrenheit</li>
<li>l - liters</li>
<li>in - inches</li>
<li>yd - yards</li>
<li>mi - miles</li>
<li>ft - feet</li>
<li>lb - imperial pounds</li>
<li>qt - imperial quarts</li>
<li>gl - imperial gallons</li>
<li>pt - imperial pints</li>
<li>Btu - british thermal unit</li>
<li>cal - calories</li>
<li>short_tons</li>
<li>tonnes</li>
<li>horses</li>
<li>hands</li>
<li>foot_pounds</li>
<li>newton_meters</li>
</ul>
<p>* the SI base unit of mass is the kilogram, but gram is used for the consistency it provides in semantics and evaluation<br>
† the SI standard indicates that this is a dimensionless but nonetheless derived unit<br>
‡ this is the preferred plural form in English as per http://physics.nist.gov/cuu/pdf/sp811.pdf</p>
<?php require('../../footer.php') ?>
</body>
</html>