unitwise 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/.ruby-version +1 -0
- data/.travis.yml +4 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +110 -0
- data/Rakefile +21 -0
- data/data/base_unit.yaml +43 -0
- data/data/derived_unit.yaml +3394 -0
- data/data/prefix.yaml +121 -0
- data/lib/unitwise.rb +25 -0
- data/lib/unitwise/atom.rb +84 -0
- data/lib/unitwise/base.rb +45 -0
- data/lib/unitwise/composable.rb +25 -0
- data/lib/unitwise/errors.rb +7 -0
- data/lib/unitwise/expression.rb +25 -0
- data/lib/unitwise/expression/composer.rb +41 -0
- data/lib/unitwise/expression/decomposer.rb +42 -0
- data/lib/unitwise/expression/matcher.rb +41 -0
- data/lib/unitwise/expression/parser.rb +53 -0
- data/lib/unitwise/expression/transformer.rb +22 -0
- data/lib/unitwise/ext.rb +2 -0
- data/lib/unitwise/ext/numeric.rb +13 -0
- data/lib/unitwise/ext/string.rb +5 -0
- data/lib/unitwise/function.rb +51 -0
- data/lib/unitwise/functional.rb +21 -0
- data/lib/unitwise/measurement.rb +89 -0
- data/lib/unitwise/prefix.rb +17 -0
- data/lib/unitwise/scale.rb +61 -0
- data/lib/unitwise/standard.rb +26 -0
- data/lib/unitwise/standard/base.rb +73 -0
- data/lib/unitwise/standard/base_unit.rb +21 -0
- data/lib/unitwise/standard/derived_unit.rb +49 -0
- data/lib/unitwise/standard/extras.rb +17 -0
- data/lib/unitwise/standard/function.rb +35 -0
- data/lib/unitwise/standard/prefix.rb +17 -0
- data/lib/unitwise/standard/scale.rb +25 -0
- data/lib/unitwise/term.rb +106 -0
- data/lib/unitwise/unit.rb +89 -0
- data/lib/unitwise/version.rb +3 -0
- data/test/test_helper.rb +7 -0
- data/test/unitwise/atom_test.rb +122 -0
- data/test/unitwise/base_test.rb +6 -0
- data/test/unitwise/expression/decomposer_test.rb +36 -0
- data/test/unitwise/expression/matcher_test.rb +42 -0
- data/test/unitwise/expression/parser_test.rb +91 -0
- data/test/unitwise/ext/numeric_test.rb +46 -0
- data/test/unitwise/ext/string_test.rb +13 -0
- data/test/unitwise/function_test.rb +42 -0
- data/test/unitwise/measurement_test.rb +168 -0
- data/test/unitwise/prefix_test.rb +25 -0
- data/test/unitwise/term_test.rb +44 -0
- data/test/unitwise/unit_test.rb +57 -0
- data/test/unitwise_test.rb +7 -0
- data/unitwise.gemspec +28 -0
- metadata +213 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: e61cddd2199fa0eb4c5bf1ef9f8765e6abf7c1dd
|
4
|
+
data.tar.gz: fe384987b89b94a4a7f7e166bdc0b1119f98686e
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: acc76a1ae389f002106bc3ec9913f5377b0470ec3fd056d2879fc40bbf009594e7aa69251026b88f62a084c9bc28fdbb8b4292aaab1bd8c94e3fb8df857a24d4
|
7
|
+
data.tar.gz: 5491cbd50d20baf23e431831df67a073bdd0123007cc310d41cf027bbb64746de2d7dd44858343f39c584a7ef510fdf3c48d4d34f5242bb5fcb5dc893cd06d41
|
data/.gitignore
ADDED
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
2.0.0-p195
|
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 Josh Lewis
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,110 @@
|
|
1
|
+
# Unitwise
|
2
|
+
|
3
|
+
[![Build Status](https://travis-ci.org/joshwlewis/unitwise.png)](https://travis-ci.org/joshwlewis/unitwise)
|
4
|
+
[![Dependency Status](https://gemnasium.com/joshwlewis/unitwise.png)](https://gemnasium.com/joshwlewis/unitwise)
|
5
|
+
[![Coverage Status](https://coveralls.io/repos/joshwlewis/unitwise/badge.png)](https://coveralls.io/r/joshwlewis/unitwise)
|
6
|
+
[![Code Climate](https://codeclimate.com/github/joshwlewis/unitwise.png)](https://codeclimate.com/github/joshwlewis/unitwise)
|
7
|
+
|
8
|
+
|
9
|
+
Unitwise is a library for performing mathematical operations and conversions on all units defined by the [Unified Code for Units of Measure(UCUM)](http://unitsofmeasure.org/).
|
10
|
+
|
11
|
+
Unitwise supports a vast number of units. At the time of writing, it supports 95 metric units, 199 non-metric units, and 24 unit prefixes. That's approximately 2,500 basic units, but these can also be combined through multiplication and/or division to create an infinite number of possibilities.
|
12
|
+
|
13
|
+
Please note that while Unitwise is functional, it is still under development.
|
14
|
+
|
15
|
+
## Usage
|
16
|
+
|
17
|
+
### Initialization:
|
18
|
+
|
19
|
+
```ruby
|
20
|
+
|
21
|
+
require 'unitwise'
|
22
|
+
|
23
|
+
2.3.kilogram # => <Unitwise::Measurement 2.3 kilogram>
|
24
|
+
|
25
|
+
4.convert('pound') # => <Unitwise::Measurement 4 pound>
|
26
|
+
|
27
|
+
```
|
28
|
+
|
29
|
+
### Conversion
|
30
|
+
|
31
|
+
```ruby
|
32
|
+
|
33
|
+
26.2.mile.kilometer # => <Unitwise::Measurement 42.164897129794255 kilometer>
|
34
|
+
|
35
|
+
5.kilometer.convert('mile') # => <Unitwise::Measurement 3.106849747474748 mile>
|
36
|
+
|
37
|
+
```
|
38
|
+
|
39
|
+
### Comparison
|
40
|
+
|
41
|
+
```ruby
|
42
|
+
|
43
|
+
12.inch == 1.foot # => true
|
44
|
+
|
45
|
+
1.meter > 1.yard # => true
|
46
|
+
|
47
|
+
```
|
48
|
+
|
49
|
+
### Math
|
50
|
+
|
51
|
+
Note that you can also use SI abbreviations for units instead of names (i.e. ms for millisecond).
|
52
|
+
|
53
|
+
```ruby
|
54
|
+
|
55
|
+
m = 20.kg # => <Unitwise::Measurement 20 kg>
|
56
|
+
|
57
|
+
a = 10.m / 1.s2 # => <Unitwise::Measurement 10 m/s2>
|
58
|
+
|
59
|
+
f = m * a # => <Unitwise::Measurement 50 kg.m/s2>
|
60
|
+
|
61
|
+
f.newton # => <Unitwise::Measurement 50 newton>
|
62
|
+
|
63
|
+
```
|
64
|
+
|
65
|
+
## UCUM Atom Codes
|
66
|
+
|
67
|
+
There are several units that share names in the UCUM specification. There are a few versions of inch and foot, for example. So, specifying `1.foot` may not always be appropriate. You may have to use a UCUM Atom code instead of the unit name:
|
68
|
+
|
69
|
+
```ruby
|
70
|
+
|
71
|
+
1.convert('[ft_i]') == 1.convert('[ft_us]') # => false
|
72
|
+
|
73
|
+
3.convert('[in_br]') == 3.convert('[in_i]') # => false
|
74
|
+
|
75
|
+
```
|
76
|
+
|
77
|
+
## Compound Units
|
78
|
+
|
79
|
+
You can create compound units by multiplying or dividing measurements, or by using a compound string.
|
80
|
+
|
81
|
+
```ruby
|
82
|
+
|
83
|
+
20.mile / 1.hour == 20.convert("mile/hour") # => true
|
84
|
+
|
85
|
+
4.convert("kg.(m/s)2") == 4.joule # => true
|
86
|
+
|
87
|
+
```
|
88
|
+
|
89
|
+
## Installation
|
90
|
+
|
91
|
+
Add this line to your application's Gemfile:
|
92
|
+
|
93
|
+
gem 'unitwise'
|
94
|
+
|
95
|
+
And then execute:
|
96
|
+
|
97
|
+
$ bundle
|
98
|
+
|
99
|
+
Or install it yourself as:
|
100
|
+
|
101
|
+
$ gem install unitwise
|
102
|
+
|
103
|
+
|
104
|
+
## Contributing
|
105
|
+
|
106
|
+
1. Fork it
|
107
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
108
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
109
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
110
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
2
|
+
|
3
|
+
require 'rake'
|
4
|
+
require 'rake/testtask'
|
5
|
+
Rake::TestTask.new do |t|
|
6
|
+
t.libs << "test"
|
7
|
+
t.pattern = 'test/**/*_test.rb'
|
8
|
+
end
|
9
|
+
|
10
|
+
task default: :test
|
11
|
+
|
12
|
+
namespace :unitwise do
|
13
|
+
desc "Update Ucum Data"
|
14
|
+
task :update_standard do
|
15
|
+
require 'unitwise'
|
16
|
+
require 'unitwise/standard'
|
17
|
+
Unitwise::Standard::BaseUnit.write
|
18
|
+
Unitwise::Standard::DerivedUnit.write
|
19
|
+
Unitwise::Standard::Prefix.write
|
20
|
+
end
|
21
|
+
end
|
data/data/base_unit.yaml
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
---
|
2
|
+
- :names: meter
|
3
|
+
:symbol: m
|
4
|
+
:primary_code: m
|
5
|
+
:secondary_code: M
|
6
|
+
:property: length
|
7
|
+
:dim: L
|
8
|
+
- :names: second
|
9
|
+
:symbol: s
|
10
|
+
:primary_code: s
|
11
|
+
:secondary_code: S
|
12
|
+
:property: time
|
13
|
+
:dim: T
|
14
|
+
- :names: gram
|
15
|
+
:symbol: g
|
16
|
+
:primary_code: g
|
17
|
+
:secondary_code: G
|
18
|
+
:property: mass
|
19
|
+
:dim: M
|
20
|
+
- :names: radian
|
21
|
+
:symbol: rad
|
22
|
+
:primary_code: rad
|
23
|
+
:secondary_code: RAD
|
24
|
+
:property: plane angle
|
25
|
+
:dim: A
|
26
|
+
- :names: Kelvin
|
27
|
+
:symbol: K
|
28
|
+
:primary_code: K
|
29
|
+
:secondary_code: K
|
30
|
+
:property: temperature
|
31
|
+
:dim: C
|
32
|
+
- :names: Coulomb
|
33
|
+
:symbol: C
|
34
|
+
:primary_code: C
|
35
|
+
:secondary_code: C
|
36
|
+
:property: electric charge
|
37
|
+
:dim: Q
|
38
|
+
- :names: candela
|
39
|
+
:symbol: cd
|
40
|
+
:primary_code: cd
|
41
|
+
:secondary_code: CD
|
42
|
+
:property: luminous intensity
|
43
|
+
:dim: F
|
@@ -0,0 +1,3394 @@
|
|
1
|
+
---
|
2
|
+
- :names: the number ten for arbitrary powers
|
3
|
+
:symbol: '10'
|
4
|
+
:primary_code: 10*
|
5
|
+
:secondary_code: 10*
|
6
|
+
:scale:
|
7
|
+
:value: 10.0
|
8
|
+
:unit_code: '1'
|
9
|
+
:classification: dimless
|
10
|
+
:property: number
|
11
|
+
:metric: false
|
12
|
+
:special: false
|
13
|
+
:arbitrary: false
|
14
|
+
- :names: the number ten for arbitrary powers
|
15
|
+
:symbol: '10'
|
16
|
+
:primary_code: 10^
|
17
|
+
:secondary_code: 10^
|
18
|
+
:scale:
|
19
|
+
:value: 10.0
|
20
|
+
:unit_code: '1'
|
21
|
+
:classification: dimless
|
22
|
+
:property: number
|
23
|
+
:metric: false
|
24
|
+
:special: false
|
25
|
+
:arbitrary: false
|
26
|
+
- :names: the number pi
|
27
|
+
:symbol: π
|
28
|
+
:primary_code: '[pi]'
|
29
|
+
:secondary_code: '[PI]'
|
30
|
+
:scale:
|
31
|
+
:value: 3.141592653589793
|
32
|
+
:unit_code: '1'
|
33
|
+
:classification: dimless
|
34
|
+
:property: number
|
35
|
+
:metric: false
|
36
|
+
:special: false
|
37
|
+
:arbitrary: false
|
38
|
+
- :names: percent
|
39
|
+
:symbol: '%'
|
40
|
+
:primary_code: '%'
|
41
|
+
:secondary_code: '%'
|
42
|
+
:scale:
|
43
|
+
:value: 1.0
|
44
|
+
:unit_code: 10*-2
|
45
|
+
:classification: dimless
|
46
|
+
:property: fraction
|
47
|
+
:metric: false
|
48
|
+
:special: false
|
49
|
+
:arbitrary: false
|
50
|
+
- :names: parts per thousand
|
51
|
+
:symbol: ppth
|
52
|
+
:primary_code: '[ppth]'
|
53
|
+
:secondary_code: '[PPTH]'
|
54
|
+
:scale:
|
55
|
+
:value: 1.0
|
56
|
+
:unit_code: 10*-3
|
57
|
+
:classification: dimless
|
58
|
+
:property: fraction
|
59
|
+
:metric: false
|
60
|
+
:special: false
|
61
|
+
:arbitrary: false
|
62
|
+
- :names: parts per million
|
63
|
+
:symbol: ppm
|
64
|
+
:primary_code: '[ppm]'
|
65
|
+
:secondary_code: '[PPM]'
|
66
|
+
:scale:
|
67
|
+
:value: 1.0
|
68
|
+
:unit_code: 10*-6
|
69
|
+
:classification: dimless
|
70
|
+
:property: fraction
|
71
|
+
:metric: false
|
72
|
+
:special: false
|
73
|
+
:arbitrary: false
|
74
|
+
- :names: parts per billion
|
75
|
+
:symbol: ppb
|
76
|
+
:primary_code: '[ppb]'
|
77
|
+
:secondary_code: '[PPB]'
|
78
|
+
:scale:
|
79
|
+
:value: 1.0
|
80
|
+
:unit_code: 10*-9
|
81
|
+
:classification: dimless
|
82
|
+
:property: fraction
|
83
|
+
:metric: false
|
84
|
+
:special: false
|
85
|
+
:arbitrary: false
|
86
|
+
- :names: parts per trillion
|
87
|
+
:symbol: pptr
|
88
|
+
:primary_code: '[pptr]'
|
89
|
+
:secondary_code: '[PPTR]'
|
90
|
+
:scale:
|
91
|
+
:value: 1.0
|
92
|
+
:unit_code: 10*-12
|
93
|
+
:classification: dimless
|
94
|
+
:property: fraction
|
95
|
+
:metric: false
|
96
|
+
:special: false
|
97
|
+
:arbitrary: false
|
98
|
+
- :names: mole
|
99
|
+
:symbol: mol
|
100
|
+
:primary_code: mol
|
101
|
+
:secondary_code: MOL
|
102
|
+
:scale:
|
103
|
+
:value: 6.0221367
|
104
|
+
:unit_code: 10*23
|
105
|
+
:classification: si
|
106
|
+
:property: amount of substance
|
107
|
+
:metric: true
|
108
|
+
:special: false
|
109
|
+
:arbitrary: false
|
110
|
+
- :names: steradian
|
111
|
+
:symbol: sr
|
112
|
+
:primary_code: sr
|
113
|
+
:secondary_code: SR
|
114
|
+
:scale:
|
115
|
+
:value: 1.0
|
116
|
+
:unit_code: rad2
|
117
|
+
:classification: si
|
118
|
+
:property: solid angle
|
119
|
+
:metric: true
|
120
|
+
:special: false
|
121
|
+
:arbitrary: false
|
122
|
+
- :names: Hertz
|
123
|
+
:symbol: Hz
|
124
|
+
:primary_code: Hz
|
125
|
+
:secondary_code: HZ
|
126
|
+
:scale:
|
127
|
+
:value: 1.0
|
128
|
+
:unit_code: s-1
|
129
|
+
:classification: si
|
130
|
+
:property: frequency
|
131
|
+
:metric: true
|
132
|
+
:special: false
|
133
|
+
:arbitrary: false
|
134
|
+
- :names: Newton
|
135
|
+
:symbol: N
|
136
|
+
:primary_code: N
|
137
|
+
:secondary_code: N
|
138
|
+
:scale:
|
139
|
+
:value: 1.0
|
140
|
+
:unit_code: kg.m/s2
|
141
|
+
:classification: si
|
142
|
+
:property: force
|
143
|
+
:metric: true
|
144
|
+
:special: false
|
145
|
+
:arbitrary: false
|
146
|
+
- :names: Pascal
|
147
|
+
:symbol: Pa
|
148
|
+
:primary_code: Pa
|
149
|
+
:secondary_code: PAL
|
150
|
+
:scale:
|
151
|
+
:value: 1.0
|
152
|
+
:unit_code: N/m2
|
153
|
+
:classification: si
|
154
|
+
:property: pressure
|
155
|
+
:metric: true
|
156
|
+
:special: false
|
157
|
+
:arbitrary: false
|
158
|
+
- :names: Joule
|
159
|
+
:symbol: J
|
160
|
+
:primary_code: J
|
161
|
+
:secondary_code: J
|
162
|
+
:scale:
|
163
|
+
:value: 1.0
|
164
|
+
:unit_code: N.m
|
165
|
+
:classification: si
|
166
|
+
:property: energy
|
167
|
+
:metric: true
|
168
|
+
:special: false
|
169
|
+
:arbitrary: false
|
170
|
+
- :names: Watt
|
171
|
+
:symbol: W
|
172
|
+
:primary_code: W
|
173
|
+
:secondary_code: W
|
174
|
+
:scale:
|
175
|
+
:value: 1.0
|
176
|
+
:unit_code: J/s
|
177
|
+
:classification: si
|
178
|
+
:property: power
|
179
|
+
:metric: true
|
180
|
+
:special: false
|
181
|
+
:arbitrary: false
|
182
|
+
- :names: Ampère
|
183
|
+
:symbol: A
|
184
|
+
:primary_code: A
|
185
|
+
:secondary_code: A
|
186
|
+
:scale:
|
187
|
+
:value: 1.0
|
188
|
+
:unit_code: C/s
|
189
|
+
:classification: si
|
190
|
+
:property: electric current
|
191
|
+
:metric: true
|
192
|
+
:special: false
|
193
|
+
:arbitrary: false
|
194
|
+
- :names: Volt
|
195
|
+
:symbol: V
|
196
|
+
:primary_code: V
|
197
|
+
:secondary_code: V
|
198
|
+
:scale:
|
199
|
+
:value: 1.0
|
200
|
+
:unit_code: J/C
|
201
|
+
:classification: si
|
202
|
+
:property: electric potential
|
203
|
+
:metric: true
|
204
|
+
:special: false
|
205
|
+
:arbitrary: false
|
206
|
+
- :names: Farad
|
207
|
+
:symbol: F
|
208
|
+
:primary_code: F
|
209
|
+
:secondary_code: F
|
210
|
+
:scale:
|
211
|
+
:value: 1.0
|
212
|
+
:unit_code: C/V
|
213
|
+
:classification: si
|
214
|
+
:property: electric capacitance
|
215
|
+
:metric: true
|
216
|
+
:special: false
|
217
|
+
:arbitrary: false
|
218
|
+
- :names: Ohm
|
219
|
+
:symbol: Ω
|
220
|
+
:primary_code: Ohm
|
221
|
+
:secondary_code: OHM
|
222
|
+
:scale:
|
223
|
+
:value: 1.0
|
224
|
+
:unit_code: V/A
|
225
|
+
:classification: si
|
226
|
+
:property: electric resistance
|
227
|
+
:metric: true
|
228
|
+
:special: false
|
229
|
+
:arbitrary: false
|
230
|
+
- :names: Siemens
|
231
|
+
:symbol: S
|
232
|
+
:primary_code: S
|
233
|
+
:secondary_code: SIE
|
234
|
+
:scale:
|
235
|
+
:value: 1.0
|
236
|
+
:unit_code: Ohm-1
|
237
|
+
:classification: si
|
238
|
+
:property: electric conductance
|
239
|
+
:metric: true
|
240
|
+
:special: false
|
241
|
+
:arbitrary: false
|
242
|
+
- :names: Weber
|
243
|
+
:symbol: Wb
|
244
|
+
:primary_code: Wb
|
245
|
+
:secondary_code: WB
|
246
|
+
:scale:
|
247
|
+
:value: 1.0
|
248
|
+
:unit_code: V.s
|
249
|
+
:classification: si
|
250
|
+
:property: magentic flux
|
251
|
+
:metric: true
|
252
|
+
:special: false
|
253
|
+
:arbitrary: false
|
254
|
+
- :names: degree Celsius
|
255
|
+
:symbol: °C
|
256
|
+
:primary_code: Cel
|
257
|
+
:secondary_code: CEL
|
258
|
+
:scale:
|
259
|
+
:function_code: cel
|
260
|
+
:value: 1.0
|
261
|
+
:unit_code: K
|
262
|
+
:classification: si
|
263
|
+
:property: temperature
|
264
|
+
:metric: true
|
265
|
+
:special: true
|
266
|
+
:arbitrary: false
|
267
|
+
- :names: Tesla
|
268
|
+
:symbol: T
|
269
|
+
:primary_code: T
|
270
|
+
:secondary_code: T
|
271
|
+
:scale:
|
272
|
+
:value: 1.0
|
273
|
+
:unit_code: Wb/m2
|
274
|
+
:classification: si
|
275
|
+
:property: magnetic flux density
|
276
|
+
:metric: true
|
277
|
+
:special: false
|
278
|
+
:arbitrary: false
|
279
|
+
- :names: Henry
|
280
|
+
:symbol: H
|
281
|
+
:primary_code: H
|
282
|
+
:secondary_code: H
|
283
|
+
:scale:
|
284
|
+
:value: 1.0
|
285
|
+
:unit_code: Wb/A
|
286
|
+
:classification: si
|
287
|
+
:property: inductance
|
288
|
+
:metric: true
|
289
|
+
:special: false
|
290
|
+
:arbitrary: false
|
291
|
+
- :names: lumen
|
292
|
+
:symbol: lm
|
293
|
+
:primary_code: lm
|
294
|
+
:secondary_code: LM
|
295
|
+
:scale:
|
296
|
+
:value: 1.0
|
297
|
+
:unit_code: cd.sr
|
298
|
+
:classification: si
|
299
|
+
:property: luminous flux
|
300
|
+
:metric: true
|
301
|
+
:special: false
|
302
|
+
:arbitrary: false
|
303
|
+
- :names: lux
|
304
|
+
:symbol: lx
|
305
|
+
:primary_code: lx
|
306
|
+
:secondary_code: LX
|
307
|
+
:scale:
|
308
|
+
:value: 1.0
|
309
|
+
:unit_code: lm/m2
|
310
|
+
:classification: si
|
311
|
+
:property: illuminance
|
312
|
+
:metric: true
|
313
|
+
:special: false
|
314
|
+
:arbitrary: false
|
315
|
+
- :names: Becquerel
|
316
|
+
:symbol: Bq
|
317
|
+
:primary_code: Bq
|
318
|
+
:secondary_code: BQ
|
319
|
+
:scale:
|
320
|
+
:value: 1.0
|
321
|
+
:unit_code: s-1
|
322
|
+
:classification: si
|
323
|
+
:property: radioactivity
|
324
|
+
:metric: true
|
325
|
+
:special: false
|
326
|
+
:arbitrary: false
|
327
|
+
- :names: Gray
|
328
|
+
:symbol: Gy
|
329
|
+
:primary_code: Gy
|
330
|
+
:secondary_code: GY
|
331
|
+
:scale:
|
332
|
+
:value: 1.0
|
333
|
+
:unit_code: J/kg
|
334
|
+
:classification: si
|
335
|
+
:property: energy dose
|
336
|
+
:metric: true
|
337
|
+
:special: false
|
338
|
+
:arbitrary: false
|
339
|
+
- :names: Sievert
|
340
|
+
:symbol: Sv
|
341
|
+
:primary_code: Sv
|
342
|
+
:secondary_code: SV
|
343
|
+
:scale:
|
344
|
+
:value: 1.0
|
345
|
+
:unit_code: J/kg
|
346
|
+
:classification: si
|
347
|
+
:property: dose equivalent
|
348
|
+
:metric: true
|
349
|
+
:special: false
|
350
|
+
:arbitrary: false
|
351
|
+
- :names:
|
352
|
+
- gon
|
353
|
+
- grade
|
354
|
+
:symbol: □<sup>g</sup>
|
355
|
+
:primary_code: gon
|
356
|
+
:secondary_code: GON
|
357
|
+
:scale:
|
358
|
+
:value: 0.9
|
359
|
+
:unit_code: deg
|
360
|
+
:classification: iso1000
|
361
|
+
:property: plane angle
|
362
|
+
:metric: false
|
363
|
+
:special: false
|
364
|
+
:arbitrary: false
|
365
|
+
- :names: degree
|
366
|
+
:symbol: °
|
367
|
+
:primary_code: deg
|
368
|
+
:secondary_code: DEG
|
369
|
+
:scale:
|
370
|
+
:value: 2.0
|
371
|
+
:unit_code: '[pi].rad/360'
|
372
|
+
:classification: iso1000
|
373
|
+
:property: plane angle
|
374
|
+
:metric: false
|
375
|
+
:special: false
|
376
|
+
:arbitrary: false
|
377
|
+
- :names: minute
|
378
|
+
:symbol: ''''
|
379
|
+
:primary_code: ''''
|
380
|
+
:secondary_code: ''''
|
381
|
+
:scale:
|
382
|
+
:value: 1.0
|
383
|
+
:unit_code: deg/60
|
384
|
+
:classification: iso1000
|
385
|
+
:property: plane angle
|
386
|
+
:metric: false
|
387
|
+
:special: false
|
388
|
+
:arbitrary: false
|
389
|
+
- :names: second
|
390
|
+
:symbol: ''''''
|
391
|
+
:primary_code: ''''''
|
392
|
+
:secondary_code: ''''''
|
393
|
+
:scale:
|
394
|
+
:value: 1.0
|
395
|
+
:unit_code: '''/60'
|
396
|
+
:classification: iso1000
|
397
|
+
:property: plane angle
|
398
|
+
:metric: false
|
399
|
+
:special: false
|
400
|
+
:arbitrary: false
|
401
|
+
- :names: liter
|
402
|
+
:symbol: l
|
403
|
+
:primary_code: l
|
404
|
+
:secondary_code: L
|
405
|
+
:scale:
|
406
|
+
:value: 1.0
|
407
|
+
:unit_code: dm3
|
408
|
+
:classification: iso1000
|
409
|
+
:property: volume
|
410
|
+
:metric: true
|
411
|
+
:special: false
|
412
|
+
:arbitrary: false
|
413
|
+
- :names: liter
|
414
|
+
:symbol: L
|
415
|
+
:primary_code: L
|
416
|
+
:scale:
|
417
|
+
:value: 1.0
|
418
|
+
:unit_code: l
|
419
|
+
:classification: iso1000
|
420
|
+
:property: volume
|
421
|
+
:metric: true
|
422
|
+
:special: false
|
423
|
+
:arbitrary: false
|
424
|
+
- :names: are
|
425
|
+
:symbol: a
|
426
|
+
:primary_code: ar
|
427
|
+
:secondary_code: AR
|
428
|
+
:scale:
|
429
|
+
:value: 100.0
|
430
|
+
:unit_code: m2
|
431
|
+
:classification: iso1000
|
432
|
+
:property: area
|
433
|
+
:metric: true
|
434
|
+
:special: false
|
435
|
+
:arbitrary: false
|
436
|
+
- :names: minute
|
437
|
+
:symbol: min
|
438
|
+
:primary_code: min
|
439
|
+
:secondary_code: MIN
|
440
|
+
:scale:
|
441
|
+
:value: 60.0
|
442
|
+
:unit_code: s
|
443
|
+
:classification: iso1000
|
444
|
+
:property: time
|
445
|
+
:metric: false
|
446
|
+
:special: false
|
447
|
+
:arbitrary: false
|
448
|
+
- :names: hour
|
449
|
+
:symbol: h
|
450
|
+
:primary_code: h
|
451
|
+
:secondary_code: HR
|
452
|
+
:scale:
|
453
|
+
:value: 60.0
|
454
|
+
:unit_code: min
|
455
|
+
:classification: iso1000
|
456
|
+
:property: time
|
457
|
+
:metric: false
|
458
|
+
:special: false
|
459
|
+
:arbitrary: false
|
460
|
+
- :names: day
|
461
|
+
:symbol: d
|
462
|
+
:primary_code: d
|
463
|
+
:secondary_code: D
|
464
|
+
:scale:
|
465
|
+
:value: 24.0
|
466
|
+
:unit_code: h
|
467
|
+
:classification: iso1000
|
468
|
+
:property: time
|
469
|
+
:metric: false
|
470
|
+
:special: false
|
471
|
+
:arbitrary: false
|
472
|
+
- :names: tropical year
|
473
|
+
:symbol: a<sub>t</sub>
|
474
|
+
:primary_code: a_t
|
475
|
+
:secondary_code: ANN_T
|
476
|
+
:scale:
|
477
|
+
:value: 365.24219
|
478
|
+
:unit_code: d
|
479
|
+
:classification: iso1000
|
480
|
+
:property: time
|
481
|
+
:metric: false
|
482
|
+
:special: false
|
483
|
+
:arbitrary: false
|
484
|
+
- :names: mean Julian year
|
485
|
+
:symbol: a<sub>j</sub>
|
486
|
+
:primary_code: a_j
|
487
|
+
:secondary_code: ANN_J
|
488
|
+
:scale:
|
489
|
+
:value: 365.25
|
490
|
+
:unit_code: d
|
491
|
+
:classification: iso1000
|
492
|
+
:property: time
|
493
|
+
:metric: false
|
494
|
+
:special: false
|
495
|
+
:arbitrary: false
|
496
|
+
- :names: mean Gregorian year
|
497
|
+
:symbol: a<sub>g</sub>
|
498
|
+
:primary_code: a_g
|
499
|
+
:secondary_code: ANN_G
|
500
|
+
:scale:
|
501
|
+
:value: 365.2425
|
502
|
+
:unit_code: d
|
503
|
+
:classification: iso1000
|
504
|
+
:property: time
|
505
|
+
:metric: false
|
506
|
+
:special: false
|
507
|
+
:arbitrary: false
|
508
|
+
- :names: year
|
509
|
+
:symbol: a
|
510
|
+
:primary_code: a
|
511
|
+
:secondary_code: ANN
|
512
|
+
:scale:
|
513
|
+
:value: 1.0
|
514
|
+
:unit_code: a_j
|
515
|
+
:classification: iso1000
|
516
|
+
:property: time
|
517
|
+
:metric: false
|
518
|
+
:special: false
|
519
|
+
:arbitrary: false
|
520
|
+
- :names: week
|
521
|
+
:symbol: wk
|
522
|
+
:primary_code: wk
|
523
|
+
:secondary_code: WK
|
524
|
+
:scale:
|
525
|
+
:value: 7.0
|
526
|
+
:unit_code: d
|
527
|
+
:classification: iso1000
|
528
|
+
:property: time
|
529
|
+
:metric: false
|
530
|
+
:special: false
|
531
|
+
:arbitrary: false
|
532
|
+
- :names: synodal month
|
533
|
+
:symbol: mo<sub>s</sub>
|
534
|
+
:primary_code: mo_s
|
535
|
+
:secondary_code: MO_S
|
536
|
+
:scale:
|
537
|
+
:value: 29.53059
|
538
|
+
:unit_code: d
|
539
|
+
:classification: iso1000
|
540
|
+
:property: time
|
541
|
+
:metric: false
|
542
|
+
:special: false
|
543
|
+
:arbitrary: false
|
544
|
+
- :names: mean Julian month
|
545
|
+
:symbol: mo<sub>j</sub>
|
546
|
+
:primary_code: mo_j
|
547
|
+
:secondary_code: MO_J
|
548
|
+
:scale:
|
549
|
+
:value: 1.0
|
550
|
+
:unit_code: a_j/12
|
551
|
+
:classification: iso1000
|
552
|
+
:property: time
|
553
|
+
:metric: false
|
554
|
+
:special: false
|
555
|
+
:arbitrary: false
|
556
|
+
- :names: mean Gregorian month
|
557
|
+
:symbol: mo<sub>g</sub>
|
558
|
+
:primary_code: mo_g
|
559
|
+
:secondary_code: MO_G
|
560
|
+
:scale:
|
561
|
+
:value: 1.0
|
562
|
+
:unit_code: a_g/12
|
563
|
+
:classification: iso1000
|
564
|
+
:property: time
|
565
|
+
:metric: false
|
566
|
+
:special: false
|
567
|
+
:arbitrary: false
|
568
|
+
- :names: month
|
569
|
+
:symbol: mo
|
570
|
+
:primary_code: mo
|
571
|
+
:secondary_code: MO
|
572
|
+
:scale:
|
573
|
+
:value: 1.0
|
574
|
+
:unit_code: mo_j
|
575
|
+
:classification: iso1000
|
576
|
+
:property: time
|
577
|
+
:metric: false
|
578
|
+
:special: false
|
579
|
+
:arbitrary: false
|
580
|
+
- :names: tonne
|
581
|
+
:symbol: t
|
582
|
+
:primary_code: t
|
583
|
+
:secondary_code: TNE
|
584
|
+
:scale:
|
585
|
+
:value: 1000.0
|
586
|
+
:unit_code: kg
|
587
|
+
:classification: iso1000
|
588
|
+
:property: mass
|
589
|
+
:metric: true
|
590
|
+
:special: false
|
591
|
+
:arbitrary: false
|
592
|
+
- :names: bar
|
593
|
+
:symbol: bar
|
594
|
+
:primary_code: bar
|
595
|
+
:secondary_code: BAR
|
596
|
+
:scale:
|
597
|
+
:value: 100000.0
|
598
|
+
:unit_code: Pa
|
599
|
+
:classification: iso1000
|
600
|
+
:property: pressure
|
601
|
+
:metric: true
|
602
|
+
:special: false
|
603
|
+
:arbitrary: false
|
604
|
+
- :names: unified atomic mass unit
|
605
|
+
:symbol: u
|
606
|
+
:primary_code: u
|
607
|
+
:secondary_code: AMU
|
608
|
+
:scale:
|
609
|
+
:value: 1.6605402e-24
|
610
|
+
:unit_code: g
|
611
|
+
:classification: iso1000
|
612
|
+
:property: mass
|
613
|
+
:metric: true
|
614
|
+
:special: false
|
615
|
+
:arbitrary: false
|
616
|
+
- :names: electronvolt
|
617
|
+
:symbol: eV
|
618
|
+
:primary_code: eV
|
619
|
+
:secondary_code: EV
|
620
|
+
:scale:
|
621
|
+
:value: 1.0
|
622
|
+
:unit_code: '[e].V'
|
623
|
+
:classification: iso1000
|
624
|
+
:property: energy
|
625
|
+
:metric: true
|
626
|
+
:special: false
|
627
|
+
:arbitrary: false
|
628
|
+
- :names: astronomic unit
|
629
|
+
:symbol: AU
|
630
|
+
:primary_code: AU
|
631
|
+
:secondary_code: ASU
|
632
|
+
:scale:
|
633
|
+
:value: 149597.87
|
634
|
+
:unit_code: Mm
|
635
|
+
:classification: iso1000
|
636
|
+
:property: length
|
637
|
+
:metric: false
|
638
|
+
:special: false
|
639
|
+
:arbitrary: false
|
640
|
+
- :names: parsec
|
641
|
+
:symbol: pc
|
642
|
+
:primary_code: pc
|
643
|
+
:secondary_code: PRS
|
644
|
+
:scale:
|
645
|
+
:value: 3.085678e+16
|
646
|
+
:unit_code: m
|
647
|
+
:classification: iso1000
|
648
|
+
:property: length
|
649
|
+
:metric: true
|
650
|
+
:special: false
|
651
|
+
:arbitrary: false
|
652
|
+
- :names: velocity of light
|
653
|
+
:symbol: <i>c</i>
|
654
|
+
:primary_code: '[c]'
|
655
|
+
:secondary_code: '[C]'
|
656
|
+
:scale:
|
657
|
+
:value: 299792458.0
|
658
|
+
:unit_code: m/s
|
659
|
+
:classification: const
|
660
|
+
:property: velocity
|
661
|
+
:metric: true
|
662
|
+
:special: false
|
663
|
+
:arbitrary: false
|
664
|
+
- :names: Planck constant
|
665
|
+
:symbol: <i>h</i>
|
666
|
+
:primary_code: '[h]'
|
667
|
+
:secondary_code: '[H]'
|
668
|
+
:scale:
|
669
|
+
:value: 6.6260755e-24
|
670
|
+
:unit_code: J.s
|
671
|
+
:classification: const
|
672
|
+
:property: action
|
673
|
+
:metric: true
|
674
|
+
:special: false
|
675
|
+
:arbitrary: false
|
676
|
+
- :names: Boltzmann constant
|
677
|
+
:symbol: <i>k</i>
|
678
|
+
:primary_code: '[k]'
|
679
|
+
:secondary_code: '[K]'
|
680
|
+
:scale:
|
681
|
+
:value: 1.380658e-23
|
682
|
+
:unit_code: J/K
|
683
|
+
:classification: const
|
684
|
+
:property: (unclassified)
|
685
|
+
:metric: true
|
686
|
+
:special: false
|
687
|
+
:arbitrary: false
|
688
|
+
- :names: permittivity of vacuum
|
689
|
+
:symbol: <i>ε<sub><r>0</r></sub></i>
|
690
|
+
:primary_code: '[eps_0]'
|
691
|
+
:secondary_code: '[eps_0]'
|
692
|
+
:scale:
|
693
|
+
:value: 8.854187817e-12
|
694
|
+
:unit_code: F/m
|
695
|
+
:classification: const
|
696
|
+
:property: electric permittivity
|
697
|
+
:metric: true
|
698
|
+
:special: false
|
699
|
+
:arbitrary: false
|
700
|
+
- :names: permeability of vacuum
|
701
|
+
:symbol: <i>μ<sub><r>0</r></sub></i>
|
702
|
+
:primary_code: '[mu_0]'
|
703
|
+
:secondary_code: '[mu_0]'
|
704
|
+
:scale:
|
705
|
+
:value: 1.0
|
706
|
+
:unit_code: 4.[pi].10*-7.N/A2
|
707
|
+
:classification: const
|
708
|
+
:property: magnetic permeability
|
709
|
+
:metric: true
|
710
|
+
:special: false
|
711
|
+
:arbitrary: false
|
712
|
+
- :names: elementary charge
|
713
|
+
:symbol: <i>e</i>
|
714
|
+
:primary_code: '[e]'
|
715
|
+
:secondary_code: '[E]'
|
716
|
+
:scale:
|
717
|
+
:value: 1.60217733e-19
|
718
|
+
:unit_code: C
|
719
|
+
:classification: const
|
720
|
+
:property: electric charge
|
721
|
+
:metric: true
|
722
|
+
:special: false
|
723
|
+
:arbitrary: false
|
724
|
+
- :names: electron mass
|
725
|
+
:symbol: <i>m<sub><r>e</r></sub></i>
|
726
|
+
:primary_code: '[m_e]'
|
727
|
+
:secondary_code: '[M_E]'
|
728
|
+
:scale:
|
729
|
+
:value: 9.1093897e-28
|
730
|
+
:unit_code: g
|
731
|
+
:classification: const
|
732
|
+
:property: mass
|
733
|
+
:metric: true
|
734
|
+
:special: false
|
735
|
+
:arbitrary: false
|
736
|
+
- :names: proton mass
|
737
|
+
:symbol: <i>m<sub><r>p</r></sub></i>
|
738
|
+
:primary_code: '[m_p]'
|
739
|
+
:secondary_code: '[M_P]'
|
740
|
+
:scale:
|
741
|
+
:value: 1.6726231e-24
|
742
|
+
:unit_code: g
|
743
|
+
:classification: const
|
744
|
+
:property: mass
|
745
|
+
:metric: true
|
746
|
+
:special: false
|
747
|
+
:arbitrary: false
|
748
|
+
- :names: Newtonian constant of gravitation
|
749
|
+
:symbol: <i>G</i>
|
750
|
+
:primary_code: '[G]'
|
751
|
+
:secondary_code: '[GC]'
|
752
|
+
:scale:
|
753
|
+
:value: 6.67259e-11
|
754
|
+
:unit_code: m3.kg-1.s-2
|
755
|
+
:classification: const
|
756
|
+
:property: (unclassified)
|
757
|
+
:metric: true
|
758
|
+
:special: false
|
759
|
+
:arbitrary: false
|
760
|
+
- :names: standard acceleration of free fall
|
761
|
+
:symbol: <i>g<sub>n</sub></i>
|
762
|
+
:primary_code: '[g]'
|
763
|
+
:secondary_code: '[G]'
|
764
|
+
:scale:
|
765
|
+
:value: 9.80665
|
766
|
+
:unit_code: m/s2
|
767
|
+
:classification: const
|
768
|
+
:property: acceleration
|
769
|
+
:metric: true
|
770
|
+
:special: false
|
771
|
+
:arbitrary: false
|
772
|
+
- :names: standard atmosphere
|
773
|
+
:symbol: atm
|
774
|
+
:primary_code: atm
|
775
|
+
:secondary_code: ATM
|
776
|
+
:scale:
|
777
|
+
:value: 101325.0
|
778
|
+
:unit_code: Pa
|
779
|
+
:classification: const
|
780
|
+
:property: pressure
|
781
|
+
:metric: false
|
782
|
+
:special: false
|
783
|
+
:arbitrary: false
|
784
|
+
- :names: light-year
|
785
|
+
:symbol: l.y.
|
786
|
+
:primary_code: '[ly]'
|
787
|
+
:secondary_code: '[LY]'
|
788
|
+
:scale:
|
789
|
+
:value: 1.0
|
790
|
+
:unit_code: '[c].a_j'
|
791
|
+
:classification: const
|
792
|
+
:property: length
|
793
|
+
:metric: true
|
794
|
+
:special: false
|
795
|
+
:arbitrary: false
|
796
|
+
- :names: gram-force
|
797
|
+
:symbol: gf
|
798
|
+
:primary_code: gf
|
799
|
+
:secondary_code: GF
|
800
|
+
:scale:
|
801
|
+
:value: 1.0
|
802
|
+
:unit_code: g.[g]
|
803
|
+
:classification: const
|
804
|
+
:property: force
|
805
|
+
:metric: true
|
806
|
+
:special: false
|
807
|
+
:arbitrary: false
|
808
|
+
- :names: pound force
|
809
|
+
:symbol: lbf
|
810
|
+
:primary_code: '[lbf_av]'
|
811
|
+
:secondary_code: '[LBF_AV]'
|
812
|
+
:scale:
|
813
|
+
:value: 1.0
|
814
|
+
:unit_code: '[lb_av].[g]'
|
815
|
+
:classification: const
|
816
|
+
:property: force
|
817
|
+
:metric: false
|
818
|
+
:special: false
|
819
|
+
:arbitrary: false
|
820
|
+
- :names: Kayser
|
821
|
+
:symbol: K
|
822
|
+
:primary_code: Ky
|
823
|
+
:secondary_code: KY
|
824
|
+
:scale:
|
825
|
+
:value: 1.0
|
826
|
+
:unit_code: cm-1
|
827
|
+
:classification: cgs
|
828
|
+
:property: lineic number
|
829
|
+
:metric: true
|
830
|
+
:special: false
|
831
|
+
:arbitrary: false
|
832
|
+
- :names: Gal
|
833
|
+
:symbol: Gal
|
834
|
+
:primary_code: Gal
|
835
|
+
:secondary_code: GL
|
836
|
+
:scale:
|
837
|
+
:value: 1.0
|
838
|
+
:unit_code: cm/s2
|
839
|
+
:classification: cgs
|
840
|
+
:property: acceleration
|
841
|
+
:metric: true
|
842
|
+
:special: false
|
843
|
+
:arbitrary: false
|
844
|
+
- :names: dyne
|
845
|
+
:symbol: dyn
|
846
|
+
:primary_code: dyn
|
847
|
+
:secondary_code: DYN
|
848
|
+
:scale:
|
849
|
+
:value: 1.0
|
850
|
+
:unit_code: g.cm/s2
|
851
|
+
:classification: cgs
|
852
|
+
:property: force
|
853
|
+
:metric: true
|
854
|
+
:special: false
|
855
|
+
:arbitrary: false
|
856
|
+
- :names: erg
|
857
|
+
:symbol: erg
|
858
|
+
:primary_code: erg
|
859
|
+
:secondary_code: ERG
|
860
|
+
:scale:
|
861
|
+
:value: 1.0
|
862
|
+
:unit_code: dyn.cm
|
863
|
+
:classification: cgs
|
864
|
+
:property: energy
|
865
|
+
:metric: true
|
866
|
+
:special: false
|
867
|
+
:arbitrary: false
|
868
|
+
- :names: Poise
|
869
|
+
:symbol: P
|
870
|
+
:primary_code: P
|
871
|
+
:secondary_code: P
|
872
|
+
:scale:
|
873
|
+
:value: 1.0
|
874
|
+
:unit_code: dyn.s/cm2
|
875
|
+
:classification: cgs
|
876
|
+
:property: dynamic viscosity
|
877
|
+
:metric: true
|
878
|
+
:special: false
|
879
|
+
:arbitrary: false
|
880
|
+
- :names: Biot
|
881
|
+
:symbol: Bi
|
882
|
+
:primary_code: Bi
|
883
|
+
:secondary_code: BI
|
884
|
+
:scale:
|
885
|
+
:value: 10.0
|
886
|
+
:unit_code: A
|
887
|
+
:classification: cgs
|
888
|
+
:property: electric current
|
889
|
+
:metric: true
|
890
|
+
:special: false
|
891
|
+
:arbitrary: false
|
892
|
+
- :names: Stokes
|
893
|
+
:symbol: St
|
894
|
+
:primary_code: St
|
895
|
+
:secondary_code: ST
|
896
|
+
:scale:
|
897
|
+
:value: 1.0
|
898
|
+
:unit_code: cm2/s
|
899
|
+
:classification: cgs
|
900
|
+
:property: kinematic viscosity
|
901
|
+
:metric: true
|
902
|
+
:special: false
|
903
|
+
:arbitrary: false
|
904
|
+
- :names: Maxwell
|
905
|
+
:symbol: Mx
|
906
|
+
:primary_code: Mx
|
907
|
+
:secondary_code: MX
|
908
|
+
:scale:
|
909
|
+
:value: 1.0e-08
|
910
|
+
:unit_code: Wb
|
911
|
+
:classification: cgs
|
912
|
+
:property: flux of magnetic induction
|
913
|
+
:metric: true
|
914
|
+
:special: false
|
915
|
+
:arbitrary: false
|
916
|
+
- :names: Gauss
|
917
|
+
:symbol: Gs
|
918
|
+
:primary_code: G
|
919
|
+
:secondary_code: GS
|
920
|
+
:scale:
|
921
|
+
:value: 0.0001
|
922
|
+
:unit_code: T
|
923
|
+
:classification: cgs
|
924
|
+
:property: magnetic flux density
|
925
|
+
:metric: true
|
926
|
+
:special: false
|
927
|
+
:arbitrary: false
|
928
|
+
- :names: Oersted
|
929
|
+
:symbol: Oe
|
930
|
+
:primary_code: Oe
|
931
|
+
:secondary_code: OE
|
932
|
+
:scale:
|
933
|
+
:value: 250.0
|
934
|
+
:unit_code: /[pi].A/m
|
935
|
+
:classification: cgs
|
936
|
+
:property: magnetic field intensity
|
937
|
+
:metric: true
|
938
|
+
:special: false
|
939
|
+
:arbitrary: false
|
940
|
+
- :names: Gilbert
|
941
|
+
:symbol: Gb
|
942
|
+
:primary_code: Gb
|
943
|
+
:secondary_code: GB
|
944
|
+
:scale:
|
945
|
+
:value: 1.0
|
946
|
+
:unit_code: Oe.cm
|
947
|
+
:classification: cgs
|
948
|
+
:property: magnetic tension
|
949
|
+
:metric: true
|
950
|
+
:special: false
|
951
|
+
:arbitrary: false
|
952
|
+
- :names: stilb
|
953
|
+
:symbol: sb
|
954
|
+
:primary_code: sb
|
955
|
+
:secondary_code: SB
|
956
|
+
:scale:
|
957
|
+
:value: 1.0
|
958
|
+
:unit_code: cd/cm2
|
959
|
+
:classification: cgs
|
960
|
+
:property: lum. intensity density
|
961
|
+
:metric: true
|
962
|
+
:special: false
|
963
|
+
:arbitrary: false
|
964
|
+
- :names: Lambert
|
965
|
+
:symbol: L
|
966
|
+
:primary_code: Lmb
|
967
|
+
:secondary_code: LMB
|
968
|
+
:scale:
|
969
|
+
:value: 1.0
|
970
|
+
:unit_code: cd/cm2/[pi]
|
971
|
+
:classification: cgs
|
972
|
+
:property: brightness
|
973
|
+
:metric: true
|
974
|
+
:special: false
|
975
|
+
:arbitrary: false
|
976
|
+
- :names: phot
|
977
|
+
:symbol: ph
|
978
|
+
:primary_code: ph
|
979
|
+
:secondary_code: PHT
|
980
|
+
:scale:
|
981
|
+
:value: 0.0001
|
982
|
+
:unit_code: lx
|
983
|
+
:classification: cgs
|
984
|
+
:property: illuminance
|
985
|
+
:metric: true
|
986
|
+
:special: false
|
987
|
+
:arbitrary: false
|
988
|
+
- :names: Curie
|
989
|
+
:symbol: Ci
|
990
|
+
:primary_code: Ci
|
991
|
+
:secondary_code: CI
|
992
|
+
:scale:
|
993
|
+
:value: 37000000000.0
|
994
|
+
:unit_code: Bq
|
995
|
+
:classification: cgs
|
996
|
+
:property: radioactivity
|
997
|
+
:metric: true
|
998
|
+
:special: false
|
999
|
+
:arbitrary: false
|
1000
|
+
- :names: Roentgen
|
1001
|
+
:symbol: R
|
1002
|
+
:primary_code: R
|
1003
|
+
:secondary_code: ROE
|
1004
|
+
:scale:
|
1005
|
+
:value: 0.000258
|
1006
|
+
:unit_code: C/kg
|
1007
|
+
:classification: cgs
|
1008
|
+
:property: ion dose
|
1009
|
+
:metric: true
|
1010
|
+
:special: false
|
1011
|
+
:arbitrary: false
|
1012
|
+
- :names: radiation absorbed dose
|
1013
|
+
:symbol: RAD
|
1014
|
+
:primary_code: RAD
|
1015
|
+
:secondary_code: '[RAD]'
|
1016
|
+
:scale:
|
1017
|
+
:value: 100.0
|
1018
|
+
:unit_code: erg/g
|
1019
|
+
:classification: cgs
|
1020
|
+
:property: energy dose
|
1021
|
+
:metric: true
|
1022
|
+
:special: false
|
1023
|
+
:arbitrary: false
|
1024
|
+
- :names: radiation equivalent man
|
1025
|
+
:symbol: REM
|
1026
|
+
:primary_code: REM
|
1027
|
+
:secondary_code: '[REM]'
|
1028
|
+
:scale:
|
1029
|
+
:value: 1.0
|
1030
|
+
:unit_code: RAD
|
1031
|
+
:classification: cgs
|
1032
|
+
:property: dose equivalent
|
1033
|
+
:metric: true
|
1034
|
+
:special: false
|
1035
|
+
:arbitrary: false
|
1036
|
+
- :names: inch
|
1037
|
+
:symbol: in
|
1038
|
+
:primary_code: '[in_i]'
|
1039
|
+
:secondary_code: '[IN_I]'
|
1040
|
+
:scale:
|
1041
|
+
:value: 2.54
|
1042
|
+
:unit_code: cm
|
1043
|
+
:classification: intcust
|
1044
|
+
:property: length
|
1045
|
+
:metric: false
|
1046
|
+
:special: false
|
1047
|
+
:arbitrary: false
|
1048
|
+
- :names: foot
|
1049
|
+
:symbol: ft
|
1050
|
+
:primary_code: '[ft_i]'
|
1051
|
+
:secondary_code: '[FT_I]'
|
1052
|
+
:scale:
|
1053
|
+
:value: 12.0
|
1054
|
+
:unit_code: '[in_i]'
|
1055
|
+
:classification: intcust
|
1056
|
+
:property: length
|
1057
|
+
:metric: false
|
1058
|
+
:special: false
|
1059
|
+
:arbitrary: false
|
1060
|
+
- :names: yard
|
1061
|
+
:symbol: yd
|
1062
|
+
:primary_code: '[yd_i]'
|
1063
|
+
:secondary_code: '[YD_I]'
|
1064
|
+
:scale:
|
1065
|
+
:value: 3.0
|
1066
|
+
:unit_code: '[ft_i]'
|
1067
|
+
:classification: intcust
|
1068
|
+
:property: length
|
1069
|
+
:metric: false
|
1070
|
+
:special: false
|
1071
|
+
:arbitrary: false
|
1072
|
+
- :names: statute mile
|
1073
|
+
:symbol: mi
|
1074
|
+
:primary_code: '[mi_i]'
|
1075
|
+
:secondary_code: '[MI_I]'
|
1076
|
+
:scale:
|
1077
|
+
:value: 5280.0
|
1078
|
+
:unit_code: '[ft_i]'
|
1079
|
+
:classification: intcust
|
1080
|
+
:property: length
|
1081
|
+
:metric: false
|
1082
|
+
:special: false
|
1083
|
+
:arbitrary: false
|
1084
|
+
- :names: fathom
|
1085
|
+
:symbol: fth
|
1086
|
+
:primary_code: '[fth_i]'
|
1087
|
+
:secondary_code: '[FTH_I]'
|
1088
|
+
:scale:
|
1089
|
+
:value: 6.0
|
1090
|
+
:unit_code: '[ft_i]'
|
1091
|
+
:classification: intcust
|
1092
|
+
:property: depth of water
|
1093
|
+
:metric: false
|
1094
|
+
:special: false
|
1095
|
+
:arbitrary: false
|
1096
|
+
- :names: nautical mile
|
1097
|
+
:symbol: n.mi
|
1098
|
+
:primary_code: '[nmi_i]'
|
1099
|
+
:secondary_code: '[NMI_I]'
|
1100
|
+
:scale:
|
1101
|
+
:value: 1852.0
|
1102
|
+
:unit_code: m
|
1103
|
+
:classification: intcust
|
1104
|
+
:property: length
|
1105
|
+
:metric: false
|
1106
|
+
:special: false
|
1107
|
+
:arbitrary: false
|
1108
|
+
- :names: knot
|
1109
|
+
:symbol: knot
|
1110
|
+
:primary_code: '[kn_i]'
|
1111
|
+
:secondary_code: '[KN_I]'
|
1112
|
+
:scale:
|
1113
|
+
:value: 1.0
|
1114
|
+
:unit_code: '[nmi_i]/h'
|
1115
|
+
:classification: intcust
|
1116
|
+
:property: velocity
|
1117
|
+
:metric: false
|
1118
|
+
:special: false
|
1119
|
+
:arbitrary: false
|
1120
|
+
- :names: square inch
|
1121
|
+
:primary_code: '[sin_i]'
|
1122
|
+
:secondary_code: '[SIN_I]'
|
1123
|
+
:scale:
|
1124
|
+
:value: 1.0
|
1125
|
+
:unit_code: '[in_i]2'
|
1126
|
+
:classification: intcust
|
1127
|
+
:property: area
|
1128
|
+
:metric: false
|
1129
|
+
:special: false
|
1130
|
+
:arbitrary: false
|
1131
|
+
- :names: square foot
|
1132
|
+
:primary_code: '[sft_i]'
|
1133
|
+
:secondary_code: '[SFT_I]'
|
1134
|
+
:scale:
|
1135
|
+
:value: 1.0
|
1136
|
+
:unit_code: '[ft_i]2'
|
1137
|
+
:classification: intcust
|
1138
|
+
:property: area
|
1139
|
+
:metric: false
|
1140
|
+
:special: false
|
1141
|
+
:arbitrary: false
|
1142
|
+
- :names: square yard
|
1143
|
+
:primary_code: '[syd_i]'
|
1144
|
+
:secondary_code: '[SYD_I]'
|
1145
|
+
:scale:
|
1146
|
+
:value: 1.0
|
1147
|
+
:unit_code: '[yd_i]2'
|
1148
|
+
:classification: intcust
|
1149
|
+
:property: area
|
1150
|
+
:metric: false
|
1151
|
+
:special: false
|
1152
|
+
:arbitrary: false
|
1153
|
+
- :names: cubic inch
|
1154
|
+
:primary_code: '[cin_i]'
|
1155
|
+
:secondary_code: '[CIN_I]'
|
1156
|
+
:scale:
|
1157
|
+
:value: 1.0
|
1158
|
+
:unit_code: '[in_i]3'
|
1159
|
+
:classification: intcust
|
1160
|
+
:property: volume
|
1161
|
+
:metric: false
|
1162
|
+
:special: false
|
1163
|
+
:arbitrary: false
|
1164
|
+
- :names: cubic foot
|
1165
|
+
:primary_code: '[cft_i]'
|
1166
|
+
:secondary_code: '[CFT_I]'
|
1167
|
+
:scale:
|
1168
|
+
:value: 1.0
|
1169
|
+
:unit_code: '[ft_i]3'
|
1170
|
+
:classification: intcust
|
1171
|
+
:property: volume
|
1172
|
+
:metric: false
|
1173
|
+
:special: false
|
1174
|
+
:arbitrary: false
|
1175
|
+
- :names: cubic yard
|
1176
|
+
:symbol: cu.yd
|
1177
|
+
:primary_code: '[cyd_i]'
|
1178
|
+
:secondary_code: '[CYD_I]'
|
1179
|
+
:scale:
|
1180
|
+
:value: 1.0
|
1181
|
+
:unit_code: '[yd_i]3'
|
1182
|
+
:classification: intcust
|
1183
|
+
:property: volume
|
1184
|
+
:metric: false
|
1185
|
+
:special: false
|
1186
|
+
:arbitrary: false
|
1187
|
+
- :names: board foot
|
1188
|
+
:primary_code: '[bf_i]'
|
1189
|
+
:secondary_code: '[BF_I]'
|
1190
|
+
:scale:
|
1191
|
+
:value: 144.0
|
1192
|
+
:unit_code: '[in_i]3'
|
1193
|
+
:classification: intcust
|
1194
|
+
:property: volume
|
1195
|
+
:metric: false
|
1196
|
+
:special: false
|
1197
|
+
:arbitrary: false
|
1198
|
+
- :names: cord
|
1199
|
+
:primary_code: '[cr_i]'
|
1200
|
+
:secondary_code: '[CR_I]'
|
1201
|
+
:scale:
|
1202
|
+
:value: 128.0
|
1203
|
+
:unit_code: '[ft_i]3'
|
1204
|
+
:classification: intcust
|
1205
|
+
:property: volume
|
1206
|
+
:metric: false
|
1207
|
+
:special: false
|
1208
|
+
:arbitrary: false
|
1209
|
+
- :names: mil
|
1210
|
+
:symbol: mil
|
1211
|
+
:primary_code: '[mil_i]'
|
1212
|
+
:secondary_code: '[MIL_I]'
|
1213
|
+
:scale:
|
1214
|
+
:value: 0.001
|
1215
|
+
:unit_code: '[in_i]'
|
1216
|
+
:classification: intcust
|
1217
|
+
:property: length
|
1218
|
+
:metric: false
|
1219
|
+
:special: false
|
1220
|
+
:arbitrary: false
|
1221
|
+
- :names: circular mil
|
1222
|
+
:symbol: circ.mil
|
1223
|
+
:primary_code: '[cml_i]'
|
1224
|
+
:secondary_code: '[CML_I]'
|
1225
|
+
:scale:
|
1226
|
+
:value: 1.0
|
1227
|
+
:unit_code: '[pi]/4.[mil_i]2'
|
1228
|
+
:classification: intcust
|
1229
|
+
:property: area
|
1230
|
+
:metric: false
|
1231
|
+
:special: false
|
1232
|
+
:arbitrary: false
|
1233
|
+
- :names: hand
|
1234
|
+
:symbol: hd
|
1235
|
+
:primary_code: '[hd_i]'
|
1236
|
+
:secondary_code: '[HD_I]'
|
1237
|
+
:scale:
|
1238
|
+
:value: 4.0
|
1239
|
+
:unit_code: '[in_i]'
|
1240
|
+
:classification: intcust
|
1241
|
+
:property: height of horses
|
1242
|
+
:metric: false
|
1243
|
+
:special: false
|
1244
|
+
:arbitrary: false
|
1245
|
+
- :names: foot
|
1246
|
+
:symbol: ft<sub>us</sub>
|
1247
|
+
:primary_code: '[ft_us]'
|
1248
|
+
:secondary_code: '[FT_US]'
|
1249
|
+
:scale:
|
1250
|
+
:value: 1200.0
|
1251
|
+
:unit_code: m/3937
|
1252
|
+
:classification: us-lengths
|
1253
|
+
:property: length
|
1254
|
+
:metric: false
|
1255
|
+
:special: false
|
1256
|
+
:arbitrary: false
|
1257
|
+
- :names: yard
|
1258
|
+
:primary_code: '[yd_us]'
|
1259
|
+
:secondary_code: '[YD_US]'
|
1260
|
+
:scale:
|
1261
|
+
:value: 3.0
|
1262
|
+
:unit_code: '[ft_us]'
|
1263
|
+
:classification: us-lengths
|
1264
|
+
:property: length
|
1265
|
+
:metric: false
|
1266
|
+
:special: false
|
1267
|
+
:arbitrary: false
|
1268
|
+
- :names: inch
|
1269
|
+
:primary_code: '[in_us]'
|
1270
|
+
:secondary_code: '[IN_US]'
|
1271
|
+
:scale:
|
1272
|
+
:value: 1.0
|
1273
|
+
:unit_code: '[ft_us]/12'
|
1274
|
+
:classification: us-lengths
|
1275
|
+
:property: length
|
1276
|
+
:metric: false
|
1277
|
+
:special: false
|
1278
|
+
:arbitrary: false
|
1279
|
+
- :names: rod
|
1280
|
+
:primary_code: '[rd_us]'
|
1281
|
+
:secondary_code: '[RD_US]'
|
1282
|
+
:scale:
|
1283
|
+
:value: 16.5
|
1284
|
+
:unit_code: '[ft_us]'
|
1285
|
+
:classification: us-lengths
|
1286
|
+
:property: length
|
1287
|
+
:metric: false
|
1288
|
+
:special: false
|
1289
|
+
:arbitrary: false
|
1290
|
+
- :names:
|
1291
|
+
- Gunter's chain
|
1292
|
+
- Surveyor's chain
|
1293
|
+
:primary_code: '[ch_us]'
|
1294
|
+
:secondary_code: '[CH_US]'
|
1295
|
+
:scale:
|
1296
|
+
:value: 4.0
|
1297
|
+
:unit_code: '[rd_us]'
|
1298
|
+
:classification: us-lengths
|
1299
|
+
:property: length
|
1300
|
+
:metric: false
|
1301
|
+
:special: false
|
1302
|
+
:arbitrary: false
|
1303
|
+
- :names: link for Gunter's chain
|
1304
|
+
:primary_code: '[lk_us]'
|
1305
|
+
:secondary_code: '[LK_US]'
|
1306
|
+
:scale:
|
1307
|
+
:value: 1.0
|
1308
|
+
:unit_code: '[ch_us]/100'
|
1309
|
+
:classification: us-lengths
|
1310
|
+
:property: length
|
1311
|
+
:metric: false
|
1312
|
+
:special: false
|
1313
|
+
:arbitrary: false
|
1314
|
+
- :names:
|
1315
|
+
- Ramden's chain
|
1316
|
+
- Engineer's chain
|
1317
|
+
:primary_code: '[rch_us]'
|
1318
|
+
:secondary_code: '[RCH_US]'
|
1319
|
+
:scale:
|
1320
|
+
:value: 100.0
|
1321
|
+
:unit_code: '[ft_us]'
|
1322
|
+
:classification: us-lengths
|
1323
|
+
:property: length
|
1324
|
+
:metric: false
|
1325
|
+
:special: false
|
1326
|
+
:arbitrary: false
|
1327
|
+
- :names: link for Ramden's chain
|
1328
|
+
:primary_code: '[rlk_us]'
|
1329
|
+
:secondary_code: '[RLK_US]'
|
1330
|
+
:scale:
|
1331
|
+
:value: 1.0
|
1332
|
+
:unit_code: '[rch_us]/100'
|
1333
|
+
:classification: us-lengths
|
1334
|
+
:property: length
|
1335
|
+
:metric: false
|
1336
|
+
:special: false
|
1337
|
+
:arbitrary: false
|
1338
|
+
- :names: fathom
|
1339
|
+
:primary_code: '[fth_us]'
|
1340
|
+
:secondary_code: '[FTH_US]'
|
1341
|
+
:scale:
|
1342
|
+
:value: 6.0
|
1343
|
+
:unit_code: '[ft_us]'
|
1344
|
+
:classification: us-lengths
|
1345
|
+
:property: length
|
1346
|
+
:metric: false
|
1347
|
+
:special: false
|
1348
|
+
:arbitrary: false
|
1349
|
+
- :names: furlong
|
1350
|
+
:primary_code: '[fur_us]'
|
1351
|
+
:secondary_code: '[FUR_US]'
|
1352
|
+
:scale:
|
1353
|
+
:value: 40.0
|
1354
|
+
:unit_code: '[rd_us]'
|
1355
|
+
:classification: us-lengths
|
1356
|
+
:property: length
|
1357
|
+
:metric: false
|
1358
|
+
:special: false
|
1359
|
+
:arbitrary: false
|
1360
|
+
- :names: mile
|
1361
|
+
:primary_code: '[mi_us]'
|
1362
|
+
:secondary_code: '[MI_US]'
|
1363
|
+
:scale:
|
1364
|
+
:value: 8.0
|
1365
|
+
:unit_code: '[fur_us]'
|
1366
|
+
:classification: us-lengths
|
1367
|
+
:property: length
|
1368
|
+
:metric: false
|
1369
|
+
:special: false
|
1370
|
+
:arbitrary: false
|
1371
|
+
- :names: acre
|
1372
|
+
:primary_code: '[acr_us]'
|
1373
|
+
:secondary_code: '[ACR_US]'
|
1374
|
+
:scale:
|
1375
|
+
:value: 160.0
|
1376
|
+
:unit_code: '[rd_us]2'
|
1377
|
+
:classification: us-lengths
|
1378
|
+
:property: area
|
1379
|
+
:metric: false
|
1380
|
+
:special: false
|
1381
|
+
:arbitrary: false
|
1382
|
+
- :names: square rod
|
1383
|
+
:primary_code: '[srd_us]'
|
1384
|
+
:secondary_code: '[SRD_US]'
|
1385
|
+
:scale:
|
1386
|
+
:value: 1.0
|
1387
|
+
:unit_code: '[rd_us]2'
|
1388
|
+
:classification: us-lengths
|
1389
|
+
:property: area
|
1390
|
+
:metric: false
|
1391
|
+
:special: false
|
1392
|
+
:arbitrary: false
|
1393
|
+
- :names: square mile
|
1394
|
+
:primary_code: '[smi_us]'
|
1395
|
+
:secondary_code: '[SMI_US]'
|
1396
|
+
:scale:
|
1397
|
+
:value: 1.0
|
1398
|
+
:unit_code: '[mi_us]2'
|
1399
|
+
:classification: us-lengths
|
1400
|
+
:property: area
|
1401
|
+
:metric: false
|
1402
|
+
:special: false
|
1403
|
+
:arbitrary: false
|
1404
|
+
- :names: section
|
1405
|
+
:primary_code: '[sct]'
|
1406
|
+
:secondary_code: '[SCT]'
|
1407
|
+
:scale:
|
1408
|
+
:value: 1.0
|
1409
|
+
:unit_code: '[mi_us]2'
|
1410
|
+
:classification: us-lengths
|
1411
|
+
:property: area
|
1412
|
+
:metric: false
|
1413
|
+
:special: false
|
1414
|
+
:arbitrary: false
|
1415
|
+
- :names: township
|
1416
|
+
:primary_code: '[twp]'
|
1417
|
+
:secondary_code: '[TWP]'
|
1418
|
+
:scale:
|
1419
|
+
:value: 36.0
|
1420
|
+
:unit_code: '[sct]'
|
1421
|
+
:classification: us-lengths
|
1422
|
+
:property: area
|
1423
|
+
:metric: false
|
1424
|
+
:special: false
|
1425
|
+
:arbitrary: false
|
1426
|
+
- :names: mil
|
1427
|
+
:primary_code: '[mil_us]'
|
1428
|
+
:secondary_code: '[MIL_US]'
|
1429
|
+
:scale:
|
1430
|
+
:value: 0.001
|
1431
|
+
:unit_code: '[in_us]'
|
1432
|
+
:classification: us-lengths
|
1433
|
+
:property: length
|
1434
|
+
:metric: false
|
1435
|
+
:special: false
|
1436
|
+
:arbitrary: false
|
1437
|
+
- :names: inch
|
1438
|
+
:primary_code: '[in_br]'
|
1439
|
+
:secondary_code: '[IN_BR]'
|
1440
|
+
:scale:
|
1441
|
+
:value: 2.539998
|
1442
|
+
:unit_code: cm
|
1443
|
+
:classification: brit-length
|
1444
|
+
:property: length
|
1445
|
+
:metric: false
|
1446
|
+
:special: false
|
1447
|
+
:arbitrary: false
|
1448
|
+
- :names: foot
|
1449
|
+
:primary_code: '[ft_br]'
|
1450
|
+
:secondary_code: '[FT_BR]'
|
1451
|
+
:scale:
|
1452
|
+
:value: 12.0
|
1453
|
+
:unit_code: '[in_br]'
|
1454
|
+
:classification: brit-length
|
1455
|
+
:property: length
|
1456
|
+
:metric: false
|
1457
|
+
:special: false
|
1458
|
+
:arbitrary: false
|
1459
|
+
- :names: rod
|
1460
|
+
:primary_code: '[rd_br]'
|
1461
|
+
:secondary_code: '[RD_BR]'
|
1462
|
+
:scale:
|
1463
|
+
:value: 16.5
|
1464
|
+
:unit_code: '[ft_br]'
|
1465
|
+
:classification: brit-length
|
1466
|
+
:property: length
|
1467
|
+
:metric: false
|
1468
|
+
:special: false
|
1469
|
+
:arbitrary: false
|
1470
|
+
- :names: Gunter's chain
|
1471
|
+
:primary_code: '[ch_br]'
|
1472
|
+
:secondary_code: '[CH_BR]'
|
1473
|
+
:scale:
|
1474
|
+
:value: 4.0
|
1475
|
+
:unit_code: '[rd_br]'
|
1476
|
+
:classification: brit-length
|
1477
|
+
:property: length
|
1478
|
+
:metric: false
|
1479
|
+
:special: false
|
1480
|
+
:arbitrary: false
|
1481
|
+
- :names: link for Gunter's chain
|
1482
|
+
:primary_code: '[lk_br]'
|
1483
|
+
:secondary_code: '[LK_BR]'
|
1484
|
+
:scale:
|
1485
|
+
:value: 1.0
|
1486
|
+
:unit_code: '[ch_br]/100'
|
1487
|
+
:classification: brit-length
|
1488
|
+
:property: length
|
1489
|
+
:metric: false
|
1490
|
+
:special: false
|
1491
|
+
:arbitrary: false
|
1492
|
+
- :names: fathom
|
1493
|
+
:primary_code: '[fth_br]'
|
1494
|
+
:secondary_code: '[FTH_BR]'
|
1495
|
+
:scale:
|
1496
|
+
:value: 6.0
|
1497
|
+
:unit_code: '[ft_br]'
|
1498
|
+
:classification: brit-length
|
1499
|
+
:property: length
|
1500
|
+
:metric: false
|
1501
|
+
:special: false
|
1502
|
+
:arbitrary: false
|
1503
|
+
- :names: pace
|
1504
|
+
:primary_code: '[pc_br]'
|
1505
|
+
:secondary_code: '[PC_BR]'
|
1506
|
+
:scale:
|
1507
|
+
:value: 2.5
|
1508
|
+
:unit_code: '[ft_br]'
|
1509
|
+
:classification: brit-length
|
1510
|
+
:property: length
|
1511
|
+
:metric: false
|
1512
|
+
:special: false
|
1513
|
+
:arbitrary: false
|
1514
|
+
- :names: yard
|
1515
|
+
:primary_code: '[yd_br]'
|
1516
|
+
:secondary_code: '[YD_BR]'
|
1517
|
+
:scale:
|
1518
|
+
:value: 3.0
|
1519
|
+
:unit_code: '[ft_br]'
|
1520
|
+
:classification: brit-length
|
1521
|
+
:property: length
|
1522
|
+
:metric: false
|
1523
|
+
:special: false
|
1524
|
+
:arbitrary: false
|
1525
|
+
- :names: mile
|
1526
|
+
:primary_code: '[mi_br]'
|
1527
|
+
:secondary_code: '[MI_BR]'
|
1528
|
+
:scale:
|
1529
|
+
:value: 5280.0
|
1530
|
+
:unit_code: '[ft_br]'
|
1531
|
+
:classification: brit-length
|
1532
|
+
:property: length
|
1533
|
+
:metric: false
|
1534
|
+
:special: false
|
1535
|
+
:arbitrary: false
|
1536
|
+
- :names: nautical mile
|
1537
|
+
:primary_code: '[nmi_br]'
|
1538
|
+
:secondary_code: '[NMI_BR]'
|
1539
|
+
:scale:
|
1540
|
+
:value: 6080.0
|
1541
|
+
:unit_code: '[ft_br]'
|
1542
|
+
:classification: brit-length
|
1543
|
+
:property: length
|
1544
|
+
:metric: false
|
1545
|
+
:special: false
|
1546
|
+
:arbitrary: false
|
1547
|
+
- :names: knot
|
1548
|
+
:primary_code: '[kn_br]'
|
1549
|
+
:secondary_code: '[KN_BR]'
|
1550
|
+
:scale:
|
1551
|
+
:value: 1.0
|
1552
|
+
:unit_code: '[nmi_br]/h'
|
1553
|
+
:classification: brit-length
|
1554
|
+
:property: velocity
|
1555
|
+
:metric: false
|
1556
|
+
:special: false
|
1557
|
+
:arbitrary: false
|
1558
|
+
- :names: acre
|
1559
|
+
:primary_code: '[acr_br]'
|
1560
|
+
:secondary_code: '[ACR_BR]'
|
1561
|
+
:scale:
|
1562
|
+
:value: 4840.0
|
1563
|
+
:unit_code: '[yd_br]2'
|
1564
|
+
:classification: brit-length
|
1565
|
+
:property: area
|
1566
|
+
:metric: false
|
1567
|
+
:special: false
|
1568
|
+
:arbitrary: false
|
1569
|
+
- :names: Queen Anne's wine gallon
|
1570
|
+
:primary_code: '[gal_us]'
|
1571
|
+
:secondary_code: '[GAL_US]'
|
1572
|
+
:scale:
|
1573
|
+
:value: 231.0
|
1574
|
+
:unit_code: '[in_i]3'
|
1575
|
+
:classification: us-volumes
|
1576
|
+
:property: fluid volume
|
1577
|
+
:metric: false
|
1578
|
+
:special: false
|
1579
|
+
:arbitrary: false
|
1580
|
+
- :names: barrel
|
1581
|
+
:primary_code: '[bbl_us]'
|
1582
|
+
:secondary_code: '[BBL_US]'
|
1583
|
+
:scale:
|
1584
|
+
:value: 42.0
|
1585
|
+
:unit_code: '[gal_us]'
|
1586
|
+
:classification: us-volumes
|
1587
|
+
:property: fluid volume
|
1588
|
+
:metric: false
|
1589
|
+
:special: false
|
1590
|
+
:arbitrary: false
|
1591
|
+
- :names: quart
|
1592
|
+
:primary_code: '[qt_us]'
|
1593
|
+
:secondary_code: '[QT_US]'
|
1594
|
+
:scale:
|
1595
|
+
:value: 1.0
|
1596
|
+
:unit_code: '[gal_us]/4'
|
1597
|
+
:classification: us-volumes
|
1598
|
+
:property: fluid volume
|
1599
|
+
:metric: false
|
1600
|
+
:special: false
|
1601
|
+
:arbitrary: false
|
1602
|
+
- :names: pint
|
1603
|
+
:primary_code: '[pt_us]'
|
1604
|
+
:secondary_code: '[PT_US]'
|
1605
|
+
:scale:
|
1606
|
+
:value: 1.0
|
1607
|
+
:unit_code: '[qt_us]/2'
|
1608
|
+
:classification: us-volumes
|
1609
|
+
:property: fluid volume
|
1610
|
+
:metric: false
|
1611
|
+
:special: false
|
1612
|
+
:arbitrary: false
|
1613
|
+
- :names: gill
|
1614
|
+
:primary_code: '[gil_us]'
|
1615
|
+
:secondary_code: '[GIL_US]'
|
1616
|
+
:scale:
|
1617
|
+
:value: 1.0
|
1618
|
+
:unit_code: '[pt_us]/4'
|
1619
|
+
:classification: us-volumes
|
1620
|
+
:property: fluid volume
|
1621
|
+
:metric: false
|
1622
|
+
:special: false
|
1623
|
+
:arbitrary: false
|
1624
|
+
- :names: fluid ounce
|
1625
|
+
:symbol: oz fl
|
1626
|
+
:primary_code: '[foz_us]'
|
1627
|
+
:secondary_code: '[FOZ_US]'
|
1628
|
+
:scale:
|
1629
|
+
:value: 1.0
|
1630
|
+
:unit_code: '[gil_us]/4'
|
1631
|
+
:classification: us-volumes
|
1632
|
+
:property: fluid volume
|
1633
|
+
:metric: false
|
1634
|
+
:special: false
|
1635
|
+
:arbitrary: false
|
1636
|
+
- :names: fluid dram
|
1637
|
+
:primary_code: '[fdr_us]'
|
1638
|
+
:secondary_code: '[FDR_US]'
|
1639
|
+
:scale:
|
1640
|
+
:value: 1.0
|
1641
|
+
:unit_code: '[foz_us]/8'
|
1642
|
+
:classification: us-volumes
|
1643
|
+
:property: fluid volume
|
1644
|
+
:metric: false
|
1645
|
+
:special: false
|
1646
|
+
:arbitrary: false
|
1647
|
+
- :names: minim
|
1648
|
+
:primary_code: '[min_us]'
|
1649
|
+
:secondary_code: '[MIN_US]'
|
1650
|
+
:scale:
|
1651
|
+
:value: 1.0
|
1652
|
+
:unit_code: '[fdr_us]/60'
|
1653
|
+
:classification: us-volumes
|
1654
|
+
:property: fluid volume
|
1655
|
+
:metric: false
|
1656
|
+
:special: false
|
1657
|
+
:arbitrary: false
|
1658
|
+
- :names: cord
|
1659
|
+
:primary_code: '[crd_us]'
|
1660
|
+
:secondary_code: '[CRD_US]'
|
1661
|
+
:scale:
|
1662
|
+
:value: 128.0
|
1663
|
+
:unit_code: '[ft_i]3'
|
1664
|
+
:classification: us-volumes
|
1665
|
+
:property: fluid volume
|
1666
|
+
:metric: false
|
1667
|
+
:special: false
|
1668
|
+
:arbitrary: false
|
1669
|
+
- :names: bushel
|
1670
|
+
:primary_code: '[bu_us]'
|
1671
|
+
:secondary_code: '[BU_US]'
|
1672
|
+
:scale:
|
1673
|
+
:value: 2150.42
|
1674
|
+
:unit_code: '[in_i]3'
|
1675
|
+
:classification: us-volumes
|
1676
|
+
:property: dry volume
|
1677
|
+
:metric: false
|
1678
|
+
:special: false
|
1679
|
+
:arbitrary: false
|
1680
|
+
- :names: historical winchester gallon
|
1681
|
+
:primary_code: '[gal_wi]'
|
1682
|
+
:secondary_code: '[GAL_WI]'
|
1683
|
+
:scale:
|
1684
|
+
:value: 1.0
|
1685
|
+
:unit_code: '[bu_us]/8'
|
1686
|
+
:classification: us-volumes
|
1687
|
+
:property: dry volume
|
1688
|
+
:metric: false
|
1689
|
+
:special: false
|
1690
|
+
:arbitrary: false
|
1691
|
+
- :names: peck
|
1692
|
+
:primary_code: '[pk_us]'
|
1693
|
+
:secondary_code: '[PK_US]'
|
1694
|
+
:scale:
|
1695
|
+
:value: 1.0
|
1696
|
+
:unit_code: '[bu_us]/4'
|
1697
|
+
:classification: us-volumes
|
1698
|
+
:property: dry volume
|
1699
|
+
:metric: false
|
1700
|
+
:special: false
|
1701
|
+
:arbitrary: false
|
1702
|
+
- :names: dry quart
|
1703
|
+
:primary_code: '[dqt_us]'
|
1704
|
+
:secondary_code: '[DQT_US]'
|
1705
|
+
:scale:
|
1706
|
+
:value: 1.0
|
1707
|
+
:unit_code: '[pk_us]/8'
|
1708
|
+
:classification: us-volumes
|
1709
|
+
:property: dry volume
|
1710
|
+
:metric: false
|
1711
|
+
:special: false
|
1712
|
+
:arbitrary: false
|
1713
|
+
- :names: dry pint
|
1714
|
+
:primary_code: '[dpt_us]'
|
1715
|
+
:secondary_code: '[DPT_US]'
|
1716
|
+
:scale:
|
1717
|
+
:value: 1.0
|
1718
|
+
:unit_code: '[dqt_us]/2'
|
1719
|
+
:classification: us-volumes
|
1720
|
+
:property: dry volume
|
1721
|
+
:metric: false
|
1722
|
+
:special: false
|
1723
|
+
:arbitrary: false
|
1724
|
+
- :names: tablespoon
|
1725
|
+
:primary_code: '[tbs_us]'
|
1726
|
+
:secondary_code: '[TBS_US]'
|
1727
|
+
:scale:
|
1728
|
+
:value: 1.0
|
1729
|
+
:unit_code: '[foz_us]/2'
|
1730
|
+
:classification: us-volumes
|
1731
|
+
:property: volume
|
1732
|
+
:metric: false
|
1733
|
+
:special: false
|
1734
|
+
:arbitrary: false
|
1735
|
+
- :names: teaspoon
|
1736
|
+
:primary_code: '[tsp_us]'
|
1737
|
+
:secondary_code: '[TSP_US]'
|
1738
|
+
:scale:
|
1739
|
+
:value: 1.0
|
1740
|
+
:unit_code: '[tbs_us]/3'
|
1741
|
+
:classification: us-volumes
|
1742
|
+
:property: volume
|
1743
|
+
:metric: false
|
1744
|
+
:special: false
|
1745
|
+
:arbitrary: false
|
1746
|
+
- :names: cup
|
1747
|
+
:primary_code: '[cup_us]'
|
1748
|
+
:secondary_code: '[CUP_US]'
|
1749
|
+
:scale:
|
1750
|
+
:value: 16.0
|
1751
|
+
:unit_code: '[tbs_us]'
|
1752
|
+
:classification: us-volumes
|
1753
|
+
:property: volume
|
1754
|
+
:metric: false
|
1755
|
+
:special: false
|
1756
|
+
:arbitrary: false
|
1757
|
+
- :names: gallon
|
1758
|
+
:primary_code: '[gal_br]'
|
1759
|
+
:secondary_code: '[GAL_BR]'
|
1760
|
+
:scale:
|
1761
|
+
:value: 4.54609
|
1762
|
+
:unit_code: l
|
1763
|
+
:classification: brit-volumes
|
1764
|
+
:property: volume
|
1765
|
+
:metric: false
|
1766
|
+
:special: false
|
1767
|
+
:arbitrary: false
|
1768
|
+
- :names: peck
|
1769
|
+
:primary_code: '[pk_br]'
|
1770
|
+
:secondary_code: '[PK_BR]'
|
1771
|
+
:scale:
|
1772
|
+
:value: 2.0
|
1773
|
+
:unit_code: '[gal_br]'
|
1774
|
+
:classification: brit-volumes
|
1775
|
+
:property: volume
|
1776
|
+
:metric: false
|
1777
|
+
:special: false
|
1778
|
+
:arbitrary: false
|
1779
|
+
- :names: bushel
|
1780
|
+
:primary_code: '[bu_br]'
|
1781
|
+
:secondary_code: '[BU_BR]'
|
1782
|
+
:scale:
|
1783
|
+
:value: 4.0
|
1784
|
+
:unit_code: '[pk_br]'
|
1785
|
+
:classification: brit-volumes
|
1786
|
+
:property: volume
|
1787
|
+
:metric: false
|
1788
|
+
:special: false
|
1789
|
+
:arbitrary: false
|
1790
|
+
- :names: quart
|
1791
|
+
:primary_code: '[qt_br]'
|
1792
|
+
:secondary_code: '[QT_BR]'
|
1793
|
+
:scale:
|
1794
|
+
:value: 1.0
|
1795
|
+
:unit_code: '[gal_br]/4'
|
1796
|
+
:classification: brit-volumes
|
1797
|
+
:property: volume
|
1798
|
+
:metric: false
|
1799
|
+
:special: false
|
1800
|
+
:arbitrary: false
|
1801
|
+
- :names: pint
|
1802
|
+
:primary_code: '[pt_br]'
|
1803
|
+
:secondary_code: '[PT_BR]'
|
1804
|
+
:scale:
|
1805
|
+
:value: 1.0
|
1806
|
+
:unit_code: '[qt_br]/2'
|
1807
|
+
:classification: brit-volumes
|
1808
|
+
:property: volume
|
1809
|
+
:metric: false
|
1810
|
+
:special: false
|
1811
|
+
:arbitrary: false
|
1812
|
+
- :names: gill
|
1813
|
+
:primary_code: '[gil_br]'
|
1814
|
+
:secondary_code: '[GIL_BR]'
|
1815
|
+
:scale:
|
1816
|
+
:value: 1.0
|
1817
|
+
:unit_code: '[pt_br]/4'
|
1818
|
+
:classification: brit-volumes
|
1819
|
+
:property: volume
|
1820
|
+
:metric: false
|
1821
|
+
:special: false
|
1822
|
+
:arbitrary: false
|
1823
|
+
- :names: fluid ounce
|
1824
|
+
:primary_code: '[foz_br]'
|
1825
|
+
:secondary_code: '[FOZ_BR]'
|
1826
|
+
:scale:
|
1827
|
+
:value: 1.0
|
1828
|
+
:unit_code: '[gil_br]/5'
|
1829
|
+
:classification: brit-volumes
|
1830
|
+
:property: volume
|
1831
|
+
:metric: false
|
1832
|
+
:special: false
|
1833
|
+
:arbitrary: false
|
1834
|
+
- :names: fluid dram
|
1835
|
+
:primary_code: '[fdr_br]'
|
1836
|
+
:secondary_code: '[FDR_BR]'
|
1837
|
+
:scale:
|
1838
|
+
:value: 1.0
|
1839
|
+
:unit_code: '[foz_br]/8'
|
1840
|
+
:classification: brit-volumes
|
1841
|
+
:property: volume
|
1842
|
+
:metric: false
|
1843
|
+
:special: false
|
1844
|
+
:arbitrary: false
|
1845
|
+
- :names: minim
|
1846
|
+
:primary_code: '[min_br]'
|
1847
|
+
:secondary_code: '[MIN_BR]'
|
1848
|
+
:scale:
|
1849
|
+
:value: 1.0
|
1850
|
+
:unit_code: '[fdr_br]/60'
|
1851
|
+
:classification: brit-volumes
|
1852
|
+
:property: volume
|
1853
|
+
:metric: false
|
1854
|
+
:special: false
|
1855
|
+
:arbitrary: false
|
1856
|
+
- :names: grain
|
1857
|
+
:primary_code: '[gr]'
|
1858
|
+
:secondary_code: '[GR]'
|
1859
|
+
:scale:
|
1860
|
+
:value: 64.79891
|
1861
|
+
:unit_code: mg
|
1862
|
+
:classification: avoirdupois
|
1863
|
+
:property: mass
|
1864
|
+
:metric: false
|
1865
|
+
:special: false
|
1866
|
+
:arbitrary: false
|
1867
|
+
- :names: pound
|
1868
|
+
:symbol: lb
|
1869
|
+
:primary_code: '[lb_av]'
|
1870
|
+
:secondary_code: '[LB_AV]'
|
1871
|
+
:scale:
|
1872
|
+
:value: 7000.0
|
1873
|
+
:unit_code: '[gr]'
|
1874
|
+
:classification: avoirdupois
|
1875
|
+
:property: mass
|
1876
|
+
:metric: false
|
1877
|
+
:special: false
|
1878
|
+
:arbitrary: false
|
1879
|
+
- :names: ounce
|
1880
|
+
:symbol: oz
|
1881
|
+
:primary_code: '[oz_av]'
|
1882
|
+
:secondary_code: '[OZ_AV]'
|
1883
|
+
:scale:
|
1884
|
+
:value: 1.0
|
1885
|
+
:unit_code: '[lb_av]/16'
|
1886
|
+
:classification: avoirdupois
|
1887
|
+
:property: mass
|
1888
|
+
:metric: false
|
1889
|
+
:special: false
|
1890
|
+
:arbitrary: false
|
1891
|
+
- :names: dram
|
1892
|
+
:primary_code: '[dr_av]'
|
1893
|
+
:secondary_code: '[DR_AV]'
|
1894
|
+
:scale:
|
1895
|
+
:value: 1.0
|
1896
|
+
:unit_code: '[oz_av]/16'
|
1897
|
+
:classification: avoirdupois
|
1898
|
+
:property: mass
|
1899
|
+
:metric: false
|
1900
|
+
:special: false
|
1901
|
+
:arbitrary: false
|
1902
|
+
- :names:
|
1903
|
+
- short hundredweight
|
1904
|
+
- U.S. hundredweight
|
1905
|
+
:primary_code: '[scwt_av]'
|
1906
|
+
:secondary_code: '[SCWT_AV]'
|
1907
|
+
:scale:
|
1908
|
+
:value: 100.0
|
1909
|
+
:unit_code: '[lb_av]'
|
1910
|
+
:classification: avoirdupois
|
1911
|
+
:property: mass
|
1912
|
+
:metric: false
|
1913
|
+
:special: false
|
1914
|
+
:arbitrary: false
|
1915
|
+
- :names:
|
1916
|
+
- long hunderdweight
|
1917
|
+
- British hundredweight
|
1918
|
+
:primary_code: '[lcwt_av]'
|
1919
|
+
:secondary_code: '[LCWT_AV]'
|
1920
|
+
:scale:
|
1921
|
+
:value: 112.0
|
1922
|
+
:unit_code: '[lb_av]'
|
1923
|
+
:classification: avoirdupois
|
1924
|
+
:property: mass
|
1925
|
+
:metric: false
|
1926
|
+
:special: false
|
1927
|
+
:arbitrary: false
|
1928
|
+
- :names:
|
1929
|
+
- short ton
|
1930
|
+
- U.S. ton
|
1931
|
+
:primary_code: '[ston_av]'
|
1932
|
+
:secondary_code: '[STON_AV]'
|
1933
|
+
:scale:
|
1934
|
+
:value: 20.0
|
1935
|
+
:unit_code: '[scwt_av]'
|
1936
|
+
:classification: avoirdupois
|
1937
|
+
:property: mass
|
1938
|
+
:metric: false
|
1939
|
+
:special: false
|
1940
|
+
:arbitrary: false
|
1941
|
+
- :names:
|
1942
|
+
- long ton
|
1943
|
+
- British ton
|
1944
|
+
:primary_code: '[lton_av]'
|
1945
|
+
:secondary_code: '[LTON_AV]'
|
1946
|
+
:scale:
|
1947
|
+
:value: 20.0
|
1948
|
+
:unit_code: '[lcwt_av]'
|
1949
|
+
:classification: avoirdupois
|
1950
|
+
:property: mass
|
1951
|
+
:metric: false
|
1952
|
+
:special: false
|
1953
|
+
:arbitrary: false
|
1954
|
+
- :names:
|
1955
|
+
- stone
|
1956
|
+
- British stone
|
1957
|
+
:primary_code: '[stone_av]'
|
1958
|
+
:secondary_code: '[STONE_AV]'
|
1959
|
+
:scale:
|
1960
|
+
:value: 14.0
|
1961
|
+
:unit_code: '[lb_av]'
|
1962
|
+
:classification: avoirdupois
|
1963
|
+
:property: mass
|
1964
|
+
:metric: false
|
1965
|
+
:special: false
|
1966
|
+
:arbitrary: false
|
1967
|
+
- :names: pennyweight
|
1968
|
+
:primary_code: '[pwt_tr]'
|
1969
|
+
:secondary_code: '[PWT_TR]'
|
1970
|
+
:scale:
|
1971
|
+
:value: 24.0
|
1972
|
+
:unit_code: '[gr]'
|
1973
|
+
:classification: troy
|
1974
|
+
:property: mass
|
1975
|
+
:metric: false
|
1976
|
+
:special: false
|
1977
|
+
:arbitrary: false
|
1978
|
+
- :names: ounce
|
1979
|
+
:primary_code: '[oz_tr]'
|
1980
|
+
:secondary_code: '[OZ_TR]'
|
1981
|
+
:scale:
|
1982
|
+
:value: 20.0
|
1983
|
+
:unit_code: '[pwt_tr]'
|
1984
|
+
:classification: troy
|
1985
|
+
:property: mass
|
1986
|
+
:metric: false
|
1987
|
+
:special: false
|
1988
|
+
:arbitrary: false
|
1989
|
+
- :names: pound
|
1990
|
+
:primary_code: '[lb_tr]'
|
1991
|
+
:secondary_code: '[LB_TR]'
|
1992
|
+
:scale:
|
1993
|
+
:value: 12.0
|
1994
|
+
:unit_code: '[oz_tr]'
|
1995
|
+
:classification: troy
|
1996
|
+
:property: mass
|
1997
|
+
:metric: false
|
1998
|
+
:special: false
|
1999
|
+
:arbitrary: false
|
2000
|
+
- :names: scruple
|
2001
|
+
:primary_code: '[sc_ap]'
|
2002
|
+
:secondary_code: '[SC_AP]'
|
2003
|
+
:scale:
|
2004
|
+
:value: 20.0
|
2005
|
+
:unit_code: '[gr]'
|
2006
|
+
:classification: apoth
|
2007
|
+
:property: mass
|
2008
|
+
:metric: false
|
2009
|
+
:special: false
|
2010
|
+
:arbitrary: false
|
2011
|
+
- :names:
|
2012
|
+
- dram
|
2013
|
+
- drachm
|
2014
|
+
:primary_code: '[dr_ap]'
|
2015
|
+
:secondary_code: '[DR_AP]'
|
2016
|
+
:scale:
|
2017
|
+
:value: 3.0
|
2018
|
+
:unit_code: '[sc_ap]'
|
2019
|
+
:classification: apoth
|
2020
|
+
:property: mass
|
2021
|
+
:metric: false
|
2022
|
+
:special: false
|
2023
|
+
:arbitrary: false
|
2024
|
+
- :names: ounce
|
2025
|
+
:primary_code: '[oz_ap]'
|
2026
|
+
:secondary_code: '[OZ_AP]'
|
2027
|
+
:scale:
|
2028
|
+
:value: 8.0
|
2029
|
+
:unit_code: '[dr_ap]'
|
2030
|
+
:classification: apoth
|
2031
|
+
:property: mass
|
2032
|
+
:metric: false
|
2033
|
+
:special: false
|
2034
|
+
:arbitrary: false
|
2035
|
+
- :names: pound
|
2036
|
+
:primary_code: '[lb_ap]'
|
2037
|
+
:secondary_code: '[LB_AP]'
|
2038
|
+
:scale:
|
2039
|
+
:value: 12.0
|
2040
|
+
:unit_code: '[oz_ap]'
|
2041
|
+
:classification: apoth
|
2042
|
+
:property: mass
|
2043
|
+
:metric: false
|
2044
|
+
:special: false
|
2045
|
+
:arbitrary: false
|
2046
|
+
- :names: line
|
2047
|
+
:primary_code: '[lne]'
|
2048
|
+
:secondary_code: '[LNE]'
|
2049
|
+
:scale:
|
2050
|
+
:value: 1.0
|
2051
|
+
:unit_code: '[in_i]/12'
|
2052
|
+
:classification: typeset
|
2053
|
+
:property: length
|
2054
|
+
:metric: false
|
2055
|
+
:special: false
|
2056
|
+
:arbitrary: false
|
2057
|
+
- :names: point
|
2058
|
+
:primary_code: '[pnt]'
|
2059
|
+
:secondary_code: '[PNT]'
|
2060
|
+
:scale:
|
2061
|
+
:value: 1.0
|
2062
|
+
:unit_code: '[lne]/6'
|
2063
|
+
:classification: typeset
|
2064
|
+
:property: length
|
2065
|
+
:metric: false
|
2066
|
+
:special: false
|
2067
|
+
:arbitrary: false
|
2068
|
+
- :names: pica
|
2069
|
+
:primary_code: '[pca]'
|
2070
|
+
:secondary_code: '[PCA]'
|
2071
|
+
:scale:
|
2072
|
+
:value: 12.0
|
2073
|
+
:unit_code: '[pnt]'
|
2074
|
+
:classification: typeset
|
2075
|
+
:property: length
|
2076
|
+
:metric: false
|
2077
|
+
:special: false
|
2078
|
+
:arbitrary: false
|
2079
|
+
- :names: Printer's point
|
2080
|
+
:primary_code: '[pnt_pr]'
|
2081
|
+
:secondary_code: '[PNT_PR]'
|
2082
|
+
:scale:
|
2083
|
+
:value: 0.013837
|
2084
|
+
:unit_code: '[in_i]'
|
2085
|
+
:classification: typeset
|
2086
|
+
:property: length
|
2087
|
+
:metric: false
|
2088
|
+
:special: false
|
2089
|
+
:arbitrary: false
|
2090
|
+
- :names: Printer's pica
|
2091
|
+
:primary_code: '[pca_pr]'
|
2092
|
+
:secondary_code: '[PCA_PR]'
|
2093
|
+
:scale:
|
2094
|
+
:value: 12.0
|
2095
|
+
:unit_code: '[pnt_pr]'
|
2096
|
+
:classification: typeset
|
2097
|
+
:property: length
|
2098
|
+
:metric: false
|
2099
|
+
:special: false
|
2100
|
+
:arbitrary: false
|
2101
|
+
- :names:
|
2102
|
+
- pied
|
2103
|
+
- French foot
|
2104
|
+
:primary_code: '[pied]'
|
2105
|
+
:secondary_code: '[PIED]'
|
2106
|
+
:scale:
|
2107
|
+
:value: 32.48
|
2108
|
+
:unit_code: cm
|
2109
|
+
:classification: typeset
|
2110
|
+
:property: length
|
2111
|
+
:metric: false
|
2112
|
+
:special: false
|
2113
|
+
:arbitrary: false
|
2114
|
+
- :names:
|
2115
|
+
- pouce
|
2116
|
+
- French inch
|
2117
|
+
:primary_code: '[pouce]'
|
2118
|
+
:secondary_code: '[POUCE]'
|
2119
|
+
:scale:
|
2120
|
+
:value: 1.0
|
2121
|
+
:unit_code: '[pied]/12'
|
2122
|
+
:classification: typeset
|
2123
|
+
:property: length
|
2124
|
+
:metric: false
|
2125
|
+
:special: false
|
2126
|
+
:arbitrary: false
|
2127
|
+
- :names:
|
2128
|
+
- ligne
|
2129
|
+
- French line
|
2130
|
+
:primary_code: '[ligne]'
|
2131
|
+
:secondary_code: '[LIGNE]'
|
2132
|
+
:scale:
|
2133
|
+
:value: 1.0
|
2134
|
+
:unit_code: '[pouce]/12'
|
2135
|
+
:classification: typeset
|
2136
|
+
:property: length
|
2137
|
+
:metric: false
|
2138
|
+
:special: false
|
2139
|
+
:arbitrary: false
|
2140
|
+
- :names:
|
2141
|
+
- didot
|
2142
|
+
- Didot's point
|
2143
|
+
:primary_code: '[didot]'
|
2144
|
+
:secondary_code: '[DIDOT]'
|
2145
|
+
:scale:
|
2146
|
+
:value: 1.0
|
2147
|
+
:unit_code: '[ligne]/6'
|
2148
|
+
:classification: typeset
|
2149
|
+
:property: length
|
2150
|
+
:metric: false
|
2151
|
+
:special: false
|
2152
|
+
:arbitrary: false
|
2153
|
+
- :names:
|
2154
|
+
- cicero
|
2155
|
+
- Didot's pica
|
2156
|
+
:primary_code: '[cicero]'
|
2157
|
+
:secondary_code: '[CICERO]'
|
2158
|
+
:scale:
|
2159
|
+
:value: 12.0
|
2160
|
+
:unit_code: '[didot]'
|
2161
|
+
:classification: typeset
|
2162
|
+
:property: length
|
2163
|
+
:metric: false
|
2164
|
+
:special: false
|
2165
|
+
:arbitrary: false
|
2166
|
+
- :names: degree Fahrenheit
|
2167
|
+
:symbol: °F
|
2168
|
+
:primary_code: '[degF]'
|
2169
|
+
:secondary_code: '[DEGF]'
|
2170
|
+
:scale:
|
2171
|
+
:function_code: degf
|
2172
|
+
:value: 5.0
|
2173
|
+
:unit_code: K/9
|
2174
|
+
:classification: heat
|
2175
|
+
:property: temperature
|
2176
|
+
:metric: false
|
2177
|
+
:special: true
|
2178
|
+
:arbitrary: false
|
2179
|
+
- :names: calorie at 15 °C
|
2180
|
+
:symbol: cal<sub>15°C</sub>
|
2181
|
+
:primary_code: cal_[15]
|
2182
|
+
:secondary_code: CAL_[15]
|
2183
|
+
:scale:
|
2184
|
+
:value: 4.1858
|
2185
|
+
:unit_code: J
|
2186
|
+
:classification: heat
|
2187
|
+
:property: energy
|
2188
|
+
:metric: true
|
2189
|
+
:special: false
|
2190
|
+
:arbitrary: false
|
2191
|
+
- :names: calorie at 20 °C
|
2192
|
+
:symbol: cal<sub>20°C</sub>
|
2193
|
+
:primary_code: cal_[20]
|
2194
|
+
:secondary_code: CAL_[20]
|
2195
|
+
:scale:
|
2196
|
+
:value: 4.1819
|
2197
|
+
:unit_code: J
|
2198
|
+
:classification: heat
|
2199
|
+
:property: energy
|
2200
|
+
:metric: true
|
2201
|
+
:special: false
|
2202
|
+
:arbitrary: false
|
2203
|
+
- :names: mean calorie
|
2204
|
+
:symbol: cal<sub>m</sub>
|
2205
|
+
:primary_code: cal_m
|
2206
|
+
:secondary_code: CAL_M
|
2207
|
+
:scale:
|
2208
|
+
:value: 4.19002
|
2209
|
+
:unit_code: J
|
2210
|
+
:classification: heat
|
2211
|
+
:property: energy
|
2212
|
+
:metric: true
|
2213
|
+
:special: false
|
2214
|
+
:arbitrary: false
|
2215
|
+
- :names: international table calorie
|
2216
|
+
:symbol: cal<sub>IT</sub>
|
2217
|
+
:primary_code: cal_IT
|
2218
|
+
:secondary_code: CAL_IT
|
2219
|
+
:scale:
|
2220
|
+
:value: 4.1868
|
2221
|
+
:unit_code: J
|
2222
|
+
:classification: heat
|
2223
|
+
:property: energy
|
2224
|
+
:metric: true
|
2225
|
+
:special: false
|
2226
|
+
:arbitrary: false
|
2227
|
+
- :names: thermochemical calorie
|
2228
|
+
:symbol: cal<sub>th</sub>
|
2229
|
+
:primary_code: cal_th
|
2230
|
+
:secondary_code: CAL_TH
|
2231
|
+
:scale:
|
2232
|
+
:value: 4.184
|
2233
|
+
:unit_code: J
|
2234
|
+
:classification: heat
|
2235
|
+
:property: energy
|
2236
|
+
:metric: true
|
2237
|
+
:special: false
|
2238
|
+
:arbitrary: false
|
2239
|
+
- :names: calorie
|
2240
|
+
:symbol: cal
|
2241
|
+
:primary_code: cal
|
2242
|
+
:secondary_code: CAL
|
2243
|
+
:scale:
|
2244
|
+
:value: 1.0
|
2245
|
+
:unit_code: cal_th
|
2246
|
+
:classification: heat
|
2247
|
+
:property: energy
|
2248
|
+
:metric: true
|
2249
|
+
:special: false
|
2250
|
+
:arbitrary: false
|
2251
|
+
- :names: nutrition label Calories
|
2252
|
+
:symbol: Cal
|
2253
|
+
:primary_code: '[Cal]'
|
2254
|
+
:secondary_code: '[CAL]'
|
2255
|
+
:scale:
|
2256
|
+
:value: 1.0
|
2257
|
+
:unit_code: kcal_th
|
2258
|
+
:classification: heat
|
2259
|
+
:property: energy
|
2260
|
+
:metric: false
|
2261
|
+
:special: false
|
2262
|
+
:arbitrary: false
|
2263
|
+
- :names: British thermal unit at 39 °F
|
2264
|
+
:symbol: Btu<sub>39°F</sub>
|
2265
|
+
:primary_code: '[Btu_39]'
|
2266
|
+
:secondary_code: '[BTU_39]'
|
2267
|
+
:scale:
|
2268
|
+
:value: 1.05967
|
2269
|
+
:unit_code: kJ
|
2270
|
+
:classification: heat
|
2271
|
+
:property: energy
|
2272
|
+
:metric: false
|
2273
|
+
:special: false
|
2274
|
+
:arbitrary: false
|
2275
|
+
- :names: British thermal unit at 59 °F
|
2276
|
+
:symbol: Btu<sub>59°F</sub>
|
2277
|
+
:primary_code: '[Btu_59]'
|
2278
|
+
:secondary_code: '[BTU_59]'
|
2279
|
+
:scale:
|
2280
|
+
:value: 1.0548
|
2281
|
+
:unit_code: kJ
|
2282
|
+
:classification: heat
|
2283
|
+
:property: energy
|
2284
|
+
:metric: false
|
2285
|
+
:special: false
|
2286
|
+
:arbitrary: false
|
2287
|
+
- :names: British thermal unit at 60 °F
|
2288
|
+
:symbol: Btu<sub>60°F</sub>
|
2289
|
+
:primary_code: '[Btu_60]'
|
2290
|
+
:secondary_code: '[BTU_60]'
|
2291
|
+
:scale:
|
2292
|
+
:value: 1.05468
|
2293
|
+
:unit_code: kJ
|
2294
|
+
:classification: heat
|
2295
|
+
:property: energy
|
2296
|
+
:metric: false
|
2297
|
+
:special: false
|
2298
|
+
:arbitrary: false
|
2299
|
+
- :names: mean British thermal unit
|
2300
|
+
:symbol: Btu<sub>m</sub>
|
2301
|
+
:primary_code: '[Btu_m]'
|
2302
|
+
:secondary_code: '[BTU_M]'
|
2303
|
+
:scale:
|
2304
|
+
:value: 1.05587
|
2305
|
+
:unit_code: kJ
|
2306
|
+
:classification: heat
|
2307
|
+
:property: energy
|
2308
|
+
:metric: false
|
2309
|
+
:special: false
|
2310
|
+
:arbitrary: false
|
2311
|
+
- :names: international table British thermal unit
|
2312
|
+
:symbol: Btu<sub>IT</sub>
|
2313
|
+
:primary_code: '[Btu_IT]'
|
2314
|
+
:secondary_code: '[BTU_IT]'
|
2315
|
+
:scale:
|
2316
|
+
:value: 1.05505585262
|
2317
|
+
:unit_code: kJ
|
2318
|
+
:classification: heat
|
2319
|
+
:property: energy
|
2320
|
+
:metric: false
|
2321
|
+
:special: false
|
2322
|
+
:arbitrary: false
|
2323
|
+
- :names: thermochemical British thermal unit
|
2324
|
+
:symbol: Btu<sub>th</sub>
|
2325
|
+
:primary_code: '[Btu_th]'
|
2326
|
+
:secondary_code: '[BTU_TH]'
|
2327
|
+
:scale:
|
2328
|
+
:value: 1.05435
|
2329
|
+
:unit_code: kJ
|
2330
|
+
:classification: heat
|
2331
|
+
:property: energy
|
2332
|
+
:metric: false
|
2333
|
+
:special: false
|
2334
|
+
:arbitrary: false
|
2335
|
+
- :names: British thermal unit
|
2336
|
+
:symbol: btu
|
2337
|
+
:primary_code: '[Btu]'
|
2338
|
+
:secondary_code: '[BTU]'
|
2339
|
+
:scale:
|
2340
|
+
:value: 1.0
|
2341
|
+
:unit_code: '[Btu_th]'
|
2342
|
+
:classification: heat
|
2343
|
+
:property: energy
|
2344
|
+
:metric: false
|
2345
|
+
:special: false
|
2346
|
+
:arbitrary: false
|
2347
|
+
- :names: horsepower
|
2348
|
+
:primary_code: '[HP]'
|
2349
|
+
:secondary_code: '[HP]'
|
2350
|
+
:scale:
|
2351
|
+
:value: 550.0
|
2352
|
+
:unit_code: '[ft_i].[lbf_av]/s'
|
2353
|
+
:classification: heat
|
2354
|
+
:property: power
|
2355
|
+
:metric: false
|
2356
|
+
:special: false
|
2357
|
+
:arbitrary: false
|
2358
|
+
- :names: meter of water column
|
2359
|
+
:symbol: m H<sub><r>2</r></sub>O
|
2360
|
+
:primary_code: m[H2O]
|
2361
|
+
:secondary_code: M[H2O]
|
2362
|
+
:scale:
|
2363
|
+
:value: 9.80665
|
2364
|
+
:unit_code: kPa
|
2365
|
+
:classification: clinical
|
2366
|
+
:property: pressure
|
2367
|
+
:metric: true
|
2368
|
+
:special: false
|
2369
|
+
:arbitrary: false
|
2370
|
+
- :names: meter of mercury column
|
2371
|
+
:symbol: m Hg
|
2372
|
+
:primary_code: m[Hg]
|
2373
|
+
:secondary_code: M[HG]
|
2374
|
+
:scale:
|
2375
|
+
:value: 133.322
|
2376
|
+
:unit_code: kPa
|
2377
|
+
:classification: clinical
|
2378
|
+
:property: pressure
|
2379
|
+
:metric: true
|
2380
|
+
:special: false
|
2381
|
+
:arbitrary: false
|
2382
|
+
- :names: inch of water column
|
2383
|
+
:symbol: in H<sub><r>2</r></sub>O
|
2384
|
+
:primary_code: '[in_i''H2O]'
|
2385
|
+
:secondary_code: '[IN_I''H2O]'
|
2386
|
+
:scale:
|
2387
|
+
:value: 1.0
|
2388
|
+
:unit_code: m[H2O].[in_i]/m
|
2389
|
+
:classification: clinical
|
2390
|
+
:property: pressure
|
2391
|
+
:metric: false
|
2392
|
+
:special: false
|
2393
|
+
:arbitrary: false
|
2394
|
+
- :names: inch of mercury column
|
2395
|
+
:symbol: in Hg
|
2396
|
+
:primary_code: '[in_i''Hg]'
|
2397
|
+
:secondary_code: '[IN_i''HG]'
|
2398
|
+
:scale:
|
2399
|
+
:value: 1.0
|
2400
|
+
:unit_code: m[Hg].[in_i]/m
|
2401
|
+
:classification: clinical
|
2402
|
+
:property: pressure
|
2403
|
+
:metric: false
|
2404
|
+
:special: false
|
2405
|
+
:arbitrary: false
|
2406
|
+
- :names: peripheral vascular resistance unit
|
2407
|
+
:symbol: P.R.U.
|
2408
|
+
:primary_code: '[PRU]'
|
2409
|
+
:secondary_code: '[PRU]'
|
2410
|
+
:scale:
|
2411
|
+
:value: 1.0
|
2412
|
+
:unit_code: mm[Hg].s/ml
|
2413
|
+
:classification: clinical
|
2414
|
+
:property: fluid resistance
|
2415
|
+
:metric: false
|
2416
|
+
:special: false
|
2417
|
+
:arbitrary: false
|
2418
|
+
- :names: Wood unit
|
2419
|
+
:symbol: Wood U.
|
2420
|
+
:primary_code: '[wood''U]'
|
2421
|
+
:secondary_code: '[WOOD''U]'
|
2422
|
+
:scale:
|
2423
|
+
:value: 1.0
|
2424
|
+
:unit_code: mm[Hg].min/L
|
2425
|
+
:classification: clinical
|
2426
|
+
:property: fluid resistance
|
2427
|
+
:metric: false
|
2428
|
+
:special: false
|
2429
|
+
:arbitrary: false
|
2430
|
+
- :names: diopter
|
2431
|
+
:symbol: dpt
|
2432
|
+
:primary_code: '[diop]'
|
2433
|
+
:secondary_code: '[DIOP]'
|
2434
|
+
:scale:
|
2435
|
+
:value: 1.0
|
2436
|
+
:unit_code: /m
|
2437
|
+
:classification: clinical
|
2438
|
+
:property: refraction of a lens
|
2439
|
+
:metric: false
|
2440
|
+
:special: false
|
2441
|
+
:arbitrary: false
|
2442
|
+
- :names: prism diopter
|
2443
|
+
:symbol: PD
|
2444
|
+
:primary_code: '[p''diop]'
|
2445
|
+
:secondary_code: '[P''DIOP]'
|
2446
|
+
:scale:
|
2447
|
+
:function_code: 100tan
|
2448
|
+
:value: 1.0
|
2449
|
+
:unit_code: deg
|
2450
|
+
:classification: clinical
|
2451
|
+
:property: refraction of a prism
|
2452
|
+
:metric: false
|
2453
|
+
:special: true
|
2454
|
+
:arbitrary: false
|
2455
|
+
- :names: percent of slope
|
2456
|
+
:symbol: '%'
|
2457
|
+
:primary_code: '%[slope]'
|
2458
|
+
:secondary_code: '%[SLOPE]'
|
2459
|
+
:scale:
|
2460
|
+
:function_code: 100tan
|
2461
|
+
:value: 1.0
|
2462
|
+
:unit_code: deg
|
2463
|
+
:classification: clinical
|
2464
|
+
:property: slope
|
2465
|
+
:metric: false
|
2466
|
+
:special: true
|
2467
|
+
:arbitrary: false
|
2468
|
+
- :names: mesh
|
2469
|
+
:primary_code: '[mesh_i]'
|
2470
|
+
:secondary_code: '[MESH_I]'
|
2471
|
+
:scale:
|
2472
|
+
:value: 1.0
|
2473
|
+
:unit_code: /[in_i]
|
2474
|
+
:classification: clinical
|
2475
|
+
:property: lineic number
|
2476
|
+
:metric: false
|
2477
|
+
:special: false
|
2478
|
+
:arbitrary: false
|
2479
|
+
- :names:
|
2480
|
+
- Charrière
|
2481
|
+
- french
|
2482
|
+
:symbol: Ch
|
2483
|
+
:primary_code: '[Ch]'
|
2484
|
+
:secondary_code: '[CH]'
|
2485
|
+
:scale:
|
2486
|
+
:value: 1.0
|
2487
|
+
:unit_code: mm/[pi]
|
2488
|
+
:classification: clinical
|
2489
|
+
:property: gauge of catheters
|
2490
|
+
:metric: false
|
2491
|
+
:special: false
|
2492
|
+
:arbitrary: false
|
2493
|
+
- :names: drop
|
2494
|
+
:symbol: drp
|
2495
|
+
:primary_code: '[drp]'
|
2496
|
+
:secondary_code: '[DRP]'
|
2497
|
+
:scale:
|
2498
|
+
:value: 1.0
|
2499
|
+
:unit_code: ml/12
|
2500
|
+
:classification: clinical
|
2501
|
+
:property: volume
|
2502
|
+
:metric: false
|
2503
|
+
:special: false
|
2504
|
+
:arbitrary: false
|
2505
|
+
- :names: Hounsfield unit
|
2506
|
+
:symbol: HF
|
2507
|
+
:primary_code: '[hnsf''U]'
|
2508
|
+
:secondary_code: '[HNSF''U]'
|
2509
|
+
:scale:
|
2510
|
+
:value: 1.0
|
2511
|
+
:unit_code: '1'
|
2512
|
+
:classification: clinical
|
2513
|
+
:property: x-ray attenuation
|
2514
|
+
:metric: false
|
2515
|
+
:special: false
|
2516
|
+
:arbitrary: false
|
2517
|
+
- :names: metabolic equivalent
|
2518
|
+
:symbol: MET
|
2519
|
+
:primary_code: '[MET]'
|
2520
|
+
:secondary_code: '[MET]'
|
2521
|
+
:scale:
|
2522
|
+
:value: 3.5
|
2523
|
+
:unit_code: mL/min/kg
|
2524
|
+
:classification: clinical
|
2525
|
+
:property: metabolic cost of physical activity
|
2526
|
+
:metric: false
|
2527
|
+
:special: false
|
2528
|
+
:arbitrary: false
|
2529
|
+
- :names: homeopathic potency of decimal series (retired)
|
2530
|
+
:symbol: X
|
2531
|
+
:primary_code: '[hp''_X]'
|
2532
|
+
:secondary_code: '[HP''_X]'
|
2533
|
+
:scale:
|
2534
|
+
:function_code: hpX
|
2535
|
+
:value: 1.0
|
2536
|
+
:unit_code: '1'
|
2537
|
+
:classification: clinical
|
2538
|
+
:property: homeopathic potency (retired)
|
2539
|
+
:metric: false
|
2540
|
+
:special: true
|
2541
|
+
:arbitrary: false
|
2542
|
+
- :names: homeopathic potency of centesimal series (retired)
|
2543
|
+
:symbol: C
|
2544
|
+
:primary_code: '[hp''_C]'
|
2545
|
+
:secondary_code: '[HP''_C]'
|
2546
|
+
:scale:
|
2547
|
+
:function_code: hpC
|
2548
|
+
:value: 1.0
|
2549
|
+
:unit_code: '1'
|
2550
|
+
:classification: clinical
|
2551
|
+
:property: homeopathic potency (retired)
|
2552
|
+
:metric: false
|
2553
|
+
:special: true
|
2554
|
+
:arbitrary: false
|
2555
|
+
- :names: homeopathic potency of millesimal series (retired)
|
2556
|
+
:symbol: M
|
2557
|
+
:primary_code: '[hp''_M]'
|
2558
|
+
:secondary_code: '[HP''_M]'
|
2559
|
+
:scale:
|
2560
|
+
:function_code: hpM
|
2561
|
+
:value: 1.0
|
2562
|
+
:unit_code: '1'
|
2563
|
+
:classification: clinical
|
2564
|
+
:property: homeopathic potency (retired)
|
2565
|
+
:metric: false
|
2566
|
+
:special: true
|
2567
|
+
:arbitrary: false
|
2568
|
+
- :names: homeopathic potency of quintamillesimal series (retired)
|
2569
|
+
:symbol: Q
|
2570
|
+
:primary_code: '[hp''_Q]'
|
2571
|
+
:secondary_code: '[HP''_Q]'
|
2572
|
+
:scale:
|
2573
|
+
:function_code: hpQ
|
2574
|
+
:value: 1.0
|
2575
|
+
:unit_code: '1'
|
2576
|
+
:classification: clinical
|
2577
|
+
:property: homeopathic potency (retired)
|
2578
|
+
:metric: false
|
2579
|
+
:special: true
|
2580
|
+
:arbitrary: false
|
2581
|
+
- :names: homeopathic potency of decimal hahnemannian series
|
2582
|
+
:symbol: X
|
2583
|
+
:primary_code: '[hp_X]'
|
2584
|
+
:secondary_code: '[HP_X]'
|
2585
|
+
:scale:
|
2586
|
+
:value: 1.0
|
2587
|
+
:unit_code: '1'
|
2588
|
+
:classification: clinical
|
2589
|
+
:property: homeopathic potency (Hahnemann)
|
2590
|
+
:metric: false
|
2591
|
+
:special: false
|
2592
|
+
:arbitrary: true
|
2593
|
+
- :names: homeopathic potency of centesimal hahnemannian series
|
2594
|
+
:symbol: C
|
2595
|
+
:primary_code: '[hp_C]'
|
2596
|
+
:secondary_code: '[HP_C]'
|
2597
|
+
:scale:
|
2598
|
+
:value: 1.0
|
2599
|
+
:unit_code: '1'
|
2600
|
+
:classification: clinical
|
2601
|
+
:property: homeopathic potency (Hahnemann)
|
2602
|
+
:metric: false
|
2603
|
+
:special: false
|
2604
|
+
:arbitrary: true
|
2605
|
+
- :names: homeopathic potency of millesimal hahnemannian series
|
2606
|
+
:symbol: M
|
2607
|
+
:primary_code: '[hp_M]'
|
2608
|
+
:secondary_code: '[HP_M]'
|
2609
|
+
:scale:
|
2610
|
+
:value: 1.0
|
2611
|
+
:unit_code: '1'
|
2612
|
+
:classification: clinical
|
2613
|
+
:property: homeopathic potency (Hahnemann)
|
2614
|
+
:metric: false
|
2615
|
+
:special: false
|
2616
|
+
:arbitrary: true
|
2617
|
+
- :names: homeopathic potency of quintamillesimal hahnemannian series
|
2618
|
+
:symbol: Q
|
2619
|
+
:primary_code: '[hp_Q]'
|
2620
|
+
:secondary_code: '[HP_Q]'
|
2621
|
+
:scale:
|
2622
|
+
:value: 1.0
|
2623
|
+
:unit_code: '1'
|
2624
|
+
:classification: clinical
|
2625
|
+
:property: homeopathic potency (Hahnemann)
|
2626
|
+
:metric: false
|
2627
|
+
:special: false
|
2628
|
+
:arbitrary: true
|
2629
|
+
- :names: homeopathic potency of decimal korsakovian series
|
2630
|
+
:symbol: X
|
2631
|
+
:primary_code: '[kp_X]'
|
2632
|
+
:secondary_code: '[KP_X]'
|
2633
|
+
:scale:
|
2634
|
+
:value: 1.0
|
2635
|
+
:unit_code: '1'
|
2636
|
+
:classification: clinical
|
2637
|
+
:property: homeopathic potency (Korsakov)
|
2638
|
+
:metric: false
|
2639
|
+
:special: false
|
2640
|
+
:arbitrary: true
|
2641
|
+
- :names: homeopathic potency of centesimal korsakovian series
|
2642
|
+
:symbol: C
|
2643
|
+
:primary_code: '[kp_C]'
|
2644
|
+
:secondary_code: '[KP_C]'
|
2645
|
+
:scale:
|
2646
|
+
:value: 1.0
|
2647
|
+
:unit_code: '1'
|
2648
|
+
:classification: clinical
|
2649
|
+
:property: homeopathic potency (Korsakov)
|
2650
|
+
:metric: false
|
2651
|
+
:special: false
|
2652
|
+
:arbitrary: true
|
2653
|
+
- :names: homeopathic potency of millesimal korsakovian series
|
2654
|
+
:symbol: M
|
2655
|
+
:primary_code: '[kp_M]'
|
2656
|
+
:secondary_code: '[KP_M]'
|
2657
|
+
:scale:
|
2658
|
+
:value: 1.0
|
2659
|
+
:unit_code: '1'
|
2660
|
+
:classification: clinical
|
2661
|
+
:property: homeopathic potency (Korsakov)
|
2662
|
+
:metric: false
|
2663
|
+
:special: false
|
2664
|
+
:arbitrary: true
|
2665
|
+
- :names: homeopathic potency of quintamillesimal korsakovian series
|
2666
|
+
:symbol: Q
|
2667
|
+
:primary_code: '[kp_Q]'
|
2668
|
+
:secondary_code: '[KP_Q]'
|
2669
|
+
:scale:
|
2670
|
+
:value: 1.0
|
2671
|
+
:unit_code: '1'
|
2672
|
+
:classification: clinical
|
2673
|
+
:property: homeopathic potency (Korsakov)
|
2674
|
+
:metric: false
|
2675
|
+
:special: false
|
2676
|
+
:arbitrary: true
|
2677
|
+
- :names: equivalents
|
2678
|
+
:symbol: eq
|
2679
|
+
:primary_code: eq
|
2680
|
+
:secondary_code: EQ
|
2681
|
+
:scale:
|
2682
|
+
:value: 1.0
|
2683
|
+
:unit_code: mol
|
2684
|
+
:classification: chemical
|
2685
|
+
:property: amount of substance
|
2686
|
+
:metric: true
|
2687
|
+
:special: false
|
2688
|
+
:arbitrary: false
|
2689
|
+
- :names: osmole
|
2690
|
+
:symbol: osm
|
2691
|
+
:primary_code: osm
|
2692
|
+
:secondary_code: OSM
|
2693
|
+
:scale:
|
2694
|
+
:value: 1.0
|
2695
|
+
:unit_code: mol
|
2696
|
+
:classification: chemical
|
2697
|
+
:property: amount of substance (dissolved particles)
|
2698
|
+
:metric: true
|
2699
|
+
:special: false
|
2700
|
+
:arbitrary: false
|
2701
|
+
- :names: pH
|
2702
|
+
:symbol: pH
|
2703
|
+
:primary_code: '[pH]'
|
2704
|
+
:secondary_code: '[PH]'
|
2705
|
+
:scale:
|
2706
|
+
:function_code: pH
|
2707
|
+
:value: 1.0
|
2708
|
+
:unit_code: mol/l
|
2709
|
+
:classification: chemical
|
2710
|
+
:property: acidity
|
2711
|
+
:metric: false
|
2712
|
+
:special: true
|
2713
|
+
:arbitrary: false
|
2714
|
+
- :names: gram percent
|
2715
|
+
:symbol: g%
|
2716
|
+
:primary_code: g%
|
2717
|
+
:secondary_code: G%
|
2718
|
+
:scale:
|
2719
|
+
:value: 1.0
|
2720
|
+
:unit_code: g/dl
|
2721
|
+
:classification: chemical
|
2722
|
+
:property: mass concentration
|
2723
|
+
:metric: true
|
2724
|
+
:special: false
|
2725
|
+
:arbitrary: false
|
2726
|
+
- :names: Svedberg unit
|
2727
|
+
:symbol: S
|
2728
|
+
:primary_code: '[S]'
|
2729
|
+
:secondary_code: '[S]'
|
2730
|
+
:scale:
|
2731
|
+
:value: 1.0
|
2732
|
+
:unit_code: 10*-13.s
|
2733
|
+
:classification: chemical
|
2734
|
+
:property: sedimentation coefficient
|
2735
|
+
:metric: false
|
2736
|
+
:special: false
|
2737
|
+
:arbitrary: false
|
2738
|
+
- :names: high power field
|
2739
|
+
:symbol: HPF
|
2740
|
+
:primary_code: '[HPF]'
|
2741
|
+
:secondary_code: '[HPF]'
|
2742
|
+
:scale:
|
2743
|
+
:value: 1.0
|
2744
|
+
:unit_code: '1'
|
2745
|
+
:classification: chemical
|
2746
|
+
:property: view area in microscope
|
2747
|
+
:metric: false
|
2748
|
+
:special: false
|
2749
|
+
:arbitrary: false
|
2750
|
+
- :names: low power field
|
2751
|
+
:symbol: LPF
|
2752
|
+
:primary_code: '[LPF]'
|
2753
|
+
:secondary_code: '[LPF]'
|
2754
|
+
:scale:
|
2755
|
+
:value: 100.0
|
2756
|
+
:unit_code: '1'
|
2757
|
+
:classification: chemical
|
2758
|
+
:property: view area in microscope
|
2759
|
+
:metric: false
|
2760
|
+
:special: false
|
2761
|
+
:arbitrary: false
|
2762
|
+
- :names: katal
|
2763
|
+
:symbol: kat
|
2764
|
+
:primary_code: kat
|
2765
|
+
:secondary_code: KAT
|
2766
|
+
:scale:
|
2767
|
+
:value: 1.0
|
2768
|
+
:unit_code: mol/s
|
2769
|
+
:classification: chemical
|
2770
|
+
:property: catalytic activity
|
2771
|
+
:metric: true
|
2772
|
+
:special: false
|
2773
|
+
:arbitrary: false
|
2774
|
+
- :names: Unit
|
2775
|
+
:symbol: U
|
2776
|
+
:primary_code: U
|
2777
|
+
:secondary_code: U
|
2778
|
+
:scale:
|
2779
|
+
:value: 1.0
|
2780
|
+
:unit_code: umol/min
|
2781
|
+
:classification: chemical
|
2782
|
+
:property: catalytic activity
|
2783
|
+
:metric: true
|
2784
|
+
:special: false
|
2785
|
+
:arbitrary: false
|
2786
|
+
- :names: international unit
|
2787
|
+
:symbol: IU
|
2788
|
+
:primary_code: '[iU]'
|
2789
|
+
:secondary_code: '[IU]'
|
2790
|
+
:scale:
|
2791
|
+
:value: 1.0
|
2792
|
+
:unit_code: '1'
|
2793
|
+
:classification: chemical
|
2794
|
+
:property: arbitrary
|
2795
|
+
:metric: true
|
2796
|
+
:special: false
|
2797
|
+
:arbitrary: true
|
2798
|
+
- :names: international unit
|
2799
|
+
:symbol: i.U.
|
2800
|
+
:primary_code: '[IU]'
|
2801
|
+
:secondary_code: '[IU]'
|
2802
|
+
:scale:
|
2803
|
+
:value: 1.0
|
2804
|
+
:unit_code: '[iU]'
|
2805
|
+
:classification: chemical
|
2806
|
+
:property: arbitrary
|
2807
|
+
:metric: true
|
2808
|
+
:special: false
|
2809
|
+
:arbitrary: true
|
2810
|
+
- :names: arbitary unit
|
2811
|
+
:symbol: arb. U
|
2812
|
+
:primary_code: '[arb''U]'
|
2813
|
+
:secondary_code: '[ARB''U]'
|
2814
|
+
:scale:
|
2815
|
+
:value: 1.0
|
2816
|
+
:unit_code: '1'
|
2817
|
+
:classification: chemical
|
2818
|
+
:property: arbitrary
|
2819
|
+
:metric: false
|
2820
|
+
:special: false
|
2821
|
+
:arbitrary: true
|
2822
|
+
- :names: United States Pharmacopeia unit
|
2823
|
+
:symbol: U.S.P.
|
2824
|
+
:primary_code: '[USP''U]'
|
2825
|
+
:secondary_code: '[USP''U]'
|
2826
|
+
:scale:
|
2827
|
+
:value: 1.0
|
2828
|
+
:unit_code: '1'
|
2829
|
+
:classification: chemical
|
2830
|
+
:property: arbitrary
|
2831
|
+
:metric: false
|
2832
|
+
:special: false
|
2833
|
+
:arbitrary: true
|
2834
|
+
- :names: GPL unit
|
2835
|
+
:primary_code: '[GPL''U]'
|
2836
|
+
:secondary_code: '[GPL''U]'
|
2837
|
+
:scale:
|
2838
|
+
:value: 1.0
|
2839
|
+
:unit_code: '1'
|
2840
|
+
:classification: chemical
|
2841
|
+
:property: biologic activity of anticardiolipin IgG
|
2842
|
+
:metric: false
|
2843
|
+
:special: false
|
2844
|
+
:arbitrary: true
|
2845
|
+
- :names: MPL unit
|
2846
|
+
:primary_code: '[MPL''U]'
|
2847
|
+
:secondary_code: '[MPL''U]'
|
2848
|
+
:scale:
|
2849
|
+
:value: 1.0
|
2850
|
+
:unit_code: '1'
|
2851
|
+
:classification: chemical
|
2852
|
+
:property: biologic activity of anticardiolipin IgM
|
2853
|
+
:metric: false
|
2854
|
+
:special: false
|
2855
|
+
:arbitrary: true
|
2856
|
+
- :names: APL unit
|
2857
|
+
:primary_code: '[APL''U]'
|
2858
|
+
:secondary_code: '[APL''U]'
|
2859
|
+
:scale:
|
2860
|
+
:value: 1.0
|
2861
|
+
:unit_code: '1'
|
2862
|
+
:classification: chemical
|
2863
|
+
:property: biologic activity of anticardiolipin IgA
|
2864
|
+
:metric: false
|
2865
|
+
:special: false
|
2866
|
+
:arbitrary: true
|
2867
|
+
- :names: Bethesda unit
|
2868
|
+
:primary_code: '[beth''U]'
|
2869
|
+
:secondary_code: '[BETH''U]'
|
2870
|
+
:scale:
|
2871
|
+
:value: 1.0
|
2872
|
+
:unit_code: '1'
|
2873
|
+
:classification: chemical
|
2874
|
+
:property: biologic activity of factor VIII inhibitor
|
2875
|
+
:metric: false
|
2876
|
+
:special: false
|
2877
|
+
:arbitrary: true
|
2878
|
+
- :names: Todd unit
|
2879
|
+
:primary_code: '[todd''U]'
|
2880
|
+
:secondary_code: '[TODD''U]'
|
2881
|
+
:scale:
|
2882
|
+
:value: 1.0
|
2883
|
+
:unit_code: '1'
|
2884
|
+
:classification: chemical
|
2885
|
+
:property: biologic activity antistreptolysin O
|
2886
|
+
:metric: false
|
2887
|
+
:special: false
|
2888
|
+
:arbitrary: true
|
2889
|
+
- :names: Dye unit
|
2890
|
+
:primary_code: '[dye''U]'
|
2891
|
+
:secondary_code: '[DYE''U]'
|
2892
|
+
:scale:
|
2893
|
+
:value: 1.0
|
2894
|
+
:unit_code: '1'
|
2895
|
+
:classification: chemical
|
2896
|
+
:property: biologic activity of amylase
|
2897
|
+
:metric: false
|
2898
|
+
:special: false
|
2899
|
+
:arbitrary: true
|
2900
|
+
- :names: Somogyi unit
|
2901
|
+
:primary_code: '[smgy''U]'
|
2902
|
+
:secondary_code: '[SMGY''U]'
|
2903
|
+
:scale:
|
2904
|
+
:value: 1.0
|
2905
|
+
:unit_code: '1'
|
2906
|
+
:classification: chemical
|
2907
|
+
:property: biologic activity of amylase
|
2908
|
+
:metric: false
|
2909
|
+
:special: false
|
2910
|
+
:arbitrary: true
|
2911
|
+
- :names: Bodansky unit
|
2912
|
+
:primary_code: '[bdsk''U]'
|
2913
|
+
:secondary_code: '[BDSK''U]'
|
2914
|
+
:scale:
|
2915
|
+
:value: 1.0
|
2916
|
+
:unit_code: '1'
|
2917
|
+
:classification: chemical
|
2918
|
+
:property: biologic activity of phosphatase
|
2919
|
+
:metric: false
|
2920
|
+
:special: false
|
2921
|
+
:arbitrary: true
|
2922
|
+
- :names: King-Armstrong unit
|
2923
|
+
:primary_code: '[ka''U]'
|
2924
|
+
:secondary_code: '[KA''U]'
|
2925
|
+
:scale:
|
2926
|
+
:value: 1.0
|
2927
|
+
:unit_code: '1'
|
2928
|
+
:classification: chemical
|
2929
|
+
:property: biologic activity of phosphatase
|
2930
|
+
:metric: false
|
2931
|
+
:special: false
|
2932
|
+
:arbitrary: true
|
2933
|
+
- :names: Kunkel unit
|
2934
|
+
:primary_code: '[knk''U]'
|
2935
|
+
:secondary_code: '[KNK''U]'
|
2936
|
+
:scale:
|
2937
|
+
:value: 1.0
|
2938
|
+
:unit_code: '1'
|
2939
|
+
:classification: chemical
|
2940
|
+
:property: arbitrary biologic activity
|
2941
|
+
:metric: false
|
2942
|
+
:special: false
|
2943
|
+
:arbitrary: true
|
2944
|
+
- :names: Mac Lagan unit
|
2945
|
+
:primary_code: '[mclg''U]'
|
2946
|
+
:secondary_code: '[MCLG''U]'
|
2947
|
+
:scale:
|
2948
|
+
:value: 1.0
|
2949
|
+
:unit_code: '1'
|
2950
|
+
:classification: chemical
|
2951
|
+
:property: arbitrary biologic activity
|
2952
|
+
:metric: false
|
2953
|
+
:special: false
|
2954
|
+
:arbitrary: true
|
2955
|
+
- :names: tuberculin unit
|
2956
|
+
:primary_code: '[tb''U]'
|
2957
|
+
:secondary_code: '[TB''U]'
|
2958
|
+
:scale:
|
2959
|
+
:value: 1.0
|
2960
|
+
:unit_code: '1'
|
2961
|
+
:classification: chemical
|
2962
|
+
:property: biologic activity of tuberculin
|
2963
|
+
:metric: false
|
2964
|
+
:special: false
|
2965
|
+
:arbitrary: true
|
2966
|
+
- :names: 50% cell culture infectious dose
|
2967
|
+
:symbol: CCID<sub>50</sub>
|
2968
|
+
:primary_code: '[CCID_50]'
|
2969
|
+
:secondary_code: '[CCID_50]'
|
2970
|
+
:scale:
|
2971
|
+
:value: 1.0
|
2972
|
+
:unit_code: '1'
|
2973
|
+
:classification: chemical
|
2974
|
+
:property: biologic activity (infectivity) of an infectious agent preparation
|
2975
|
+
:metric: false
|
2976
|
+
:special: false
|
2977
|
+
:arbitrary: true
|
2978
|
+
- :names: 50% tissue culture infectious dose
|
2979
|
+
:symbol: TCID<sub>50</sub>
|
2980
|
+
:primary_code: '[TCID_50]'
|
2981
|
+
:secondary_code: '[TCID_50]'
|
2982
|
+
:scale:
|
2983
|
+
:value: 1.0
|
2984
|
+
:unit_code: '1'
|
2985
|
+
:classification: chemical
|
2986
|
+
:property: biologic activity (infectivity) of an infectious agent preparation
|
2987
|
+
:metric: false
|
2988
|
+
:special: false
|
2989
|
+
:arbitrary: true
|
2990
|
+
- :names: plaque forming units
|
2991
|
+
:symbol: PFU
|
2992
|
+
:primary_code: '[PFU]'
|
2993
|
+
:secondary_code: '[PFU]'
|
2994
|
+
:scale:
|
2995
|
+
:value: 1.0
|
2996
|
+
:unit_code: '1'
|
2997
|
+
:classification: chemical
|
2998
|
+
:property: amount of an infectious agent
|
2999
|
+
:metric: false
|
3000
|
+
:special: false
|
3001
|
+
:arbitrary: true
|
3002
|
+
- :names: focus forming units
|
3003
|
+
:symbol: FFU
|
3004
|
+
:primary_code: '[FFU]'
|
3005
|
+
:secondary_code: '[FFU]'
|
3006
|
+
:scale:
|
3007
|
+
:value: 1.0
|
3008
|
+
:unit_code: '1'
|
3009
|
+
:classification: chemical
|
3010
|
+
:property: amount of an infectious agent
|
3011
|
+
:metric: false
|
3012
|
+
:special: false
|
3013
|
+
:arbitrary: true
|
3014
|
+
- :names: colony forming units
|
3015
|
+
:symbol: CFU
|
3016
|
+
:primary_code: '[CFU]'
|
3017
|
+
:secondary_code: '[CFU]'
|
3018
|
+
:scale:
|
3019
|
+
:value: 1.0
|
3020
|
+
:unit_code: '1'
|
3021
|
+
:classification: chemical
|
3022
|
+
:property: amount of a proliferating organism
|
3023
|
+
:metric: false
|
3024
|
+
:special: false
|
3025
|
+
:arbitrary: true
|
3026
|
+
- :names: bioequivalent allergen unit
|
3027
|
+
:symbol: BAU
|
3028
|
+
:primary_code: '[BAU]'
|
3029
|
+
:secondary_code: '[BAU]'
|
3030
|
+
:scale:
|
3031
|
+
:value: 1.0
|
3032
|
+
:unit_code: '1'
|
3033
|
+
:classification: chemical
|
3034
|
+
:property: amount of an allergen callibrated through in-vivo testing based on the
|
3035
|
+
ID50EAL method of (intradermal dilution for 50mm sum of erythema diameters
|
3036
|
+
:metric: false
|
3037
|
+
:special: false
|
3038
|
+
:arbitrary: true
|
3039
|
+
- :names: allergen unit
|
3040
|
+
:symbol: AU
|
3041
|
+
:primary_code: '[AU]'
|
3042
|
+
:secondary_code: '[AU]'
|
3043
|
+
:scale:
|
3044
|
+
:value: 1.0
|
3045
|
+
:unit_code: '1'
|
3046
|
+
:classification: chemical
|
3047
|
+
:property: procedure defined amount of an allergen using some reference standard
|
3048
|
+
:metric: false
|
3049
|
+
:special: false
|
3050
|
+
:arbitrary: true
|
3051
|
+
- :names: allergen unit for Ambrosia artemisiifolia
|
3052
|
+
:symbol: Amb a 1 U
|
3053
|
+
:primary_code: '[Amb''a''1''U]'
|
3054
|
+
:secondary_code: '[AMB''A''1''U]'
|
3055
|
+
:scale:
|
3056
|
+
:value: 1.0
|
3057
|
+
:unit_code: '1'
|
3058
|
+
:classification: chemical
|
3059
|
+
:property: procedure defined amount of the major allergen of ragweed.
|
3060
|
+
:metric: false
|
3061
|
+
:special: false
|
3062
|
+
:arbitrary: true
|
3063
|
+
- :names: protein nitrogen unit
|
3064
|
+
:symbol: PNU
|
3065
|
+
:primary_code: '[PNU]'
|
3066
|
+
:secondary_code: '[PNU]'
|
3067
|
+
:scale:
|
3068
|
+
:value: 1.0
|
3069
|
+
:unit_code: '1'
|
3070
|
+
:classification: chemical
|
3071
|
+
:property: procedure defined amount of a protein substance
|
3072
|
+
:metric: false
|
3073
|
+
:special: false
|
3074
|
+
:arbitrary: true
|
3075
|
+
- :names: Limit of flocculation
|
3076
|
+
:symbol: Lf
|
3077
|
+
:primary_code: '[Lf]'
|
3078
|
+
:secondary_code: '[LF]'
|
3079
|
+
:scale:
|
3080
|
+
:value: 1.0
|
3081
|
+
:unit_code: '1'
|
3082
|
+
:classification: chemical
|
3083
|
+
:property: procedure defined amount of an antigen substance
|
3084
|
+
:metric: false
|
3085
|
+
:special: false
|
3086
|
+
:arbitrary: true
|
3087
|
+
- :names: D-antigen unit
|
3088
|
+
:primary_code: '[D''ag''U]'
|
3089
|
+
:secondary_code: '[D''AG''U]'
|
3090
|
+
:scale:
|
3091
|
+
:value: 1.0
|
3092
|
+
:unit_code: '1'
|
3093
|
+
:classification: chemical
|
3094
|
+
:property: procedure defined amount of an antigen substance
|
3095
|
+
:metric: false
|
3096
|
+
:special: false
|
3097
|
+
:arbitrary: true
|
3098
|
+
- :names: neper
|
3099
|
+
:symbol: Np
|
3100
|
+
:primary_code: Np
|
3101
|
+
:secondary_code: NEP
|
3102
|
+
:scale:
|
3103
|
+
:function_code: ln
|
3104
|
+
:value: 1.0
|
3105
|
+
:unit_code: '1'
|
3106
|
+
:classification: levels
|
3107
|
+
:property: level
|
3108
|
+
:metric: true
|
3109
|
+
:special: true
|
3110
|
+
:arbitrary: false
|
3111
|
+
- :names: bel
|
3112
|
+
:symbol: B
|
3113
|
+
:primary_code: B
|
3114
|
+
:secondary_code: B
|
3115
|
+
:scale:
|
3116
|
+
:function_code: lg
|
3117
|
+
:value: 1.0
|
3118
|
+
:unit_code: '1'
|
3119
|
+
:classification: levels
|
3120
|
+
:property: level
|
3121
|
+
:metric: true
|
3122
|
+
:special: true
|
3123
|
+
:arbitrary: false
|
3124
|
+
- :names: bel sound pressure
|
3125
|
+
:symbol: B(SPL)
|
3126
|
+
:primary_code: B[SPL]
|
3127
|
+
:secondary_code: B[SPL]
|
3128
|
+
:scale:
|
3129
|
+
:function_code: 2lg
|
3130
|
+
:value: 2.0
|
3131
|
+
:unit_code: 10*-5.Pa
|
3132
|
+
:classification: levels
|
3133
|
+
:property: pressure level
|
3134
|
+
:metric: true
|
3135
|
+
:special: true
|
3136
|
+
:arbitrary: false
|
3137
|
+
- :names: bel volt
|
3138
|
+
:symbol: B(V)
|
3139
|
+
:primary_code: B[V]
|
3140
|
+
:secondary_code: B[V]
|
3141
|
+
:scale:
|
3142
|
+
:function_code: 2lg
|
3143
|
+
:value: 1.0
|
3144
|
+
:unit_code: V
|
3145
|
+
:classification: levels
|
3146
|
+
:property: electric potential level
|
3147
|
+
:metric: true
|
3148
|
+
:special: true
|
3149
|
+
:arbitrary: false
|
3150
|
+
- :names: bel millivolt
|
3151
|
+
:symbol: B(mV)
|
3152
|
+
:primary_code: B[mV]
|
3153
|
+
:secondary_code: B[MV]
|
3154
|
+
:scale:
|
3155
|
+
:function_code: 2lg
|
3156
|
+
:value: 1.0
|
3157
|
+
:unit_code: mV
|
3158
|
+
:classification: levels
|
3159
|
+
:property: electric potential level
|
3160
|
+
:metric: true
|
3161
|
+
:special: true
|
3162
|
+
:arbitrary: false
|
3163
|
+
- :names: bel microvolt
|
3164
|
+
:symbol: B(μV)
|
3165
|
+
:primary_code: B[uV]
|
3166
|
+
:secondary_code: B[UV]
|
3167
|
+
:scale:
|
3168
|
+
:function_code: 2lg
|
3169
|
+
:value: 1.0
|
3170
|
+
:unit_code: uV
|
3171
|
+
:classification: levels
|
3172
|
+
:property: electric potential level
|
3173
|
+
:metric: true
|
3174
|
+
:special: true
|
3175
|
+
:arbitrary: false
|
3176
|
+
- :names: bel 10 nanovolt
|
3177
|
+
:symbol: B(10 nV)
|
3178
|
+
:primary_code: B[10.nV]
|
3179
|
+
:secondary_code: B[10.NV]
|
3180
|
+
:scale:
|
3181
|
+
:function_code: 2lg
|
3182
|
+
:value: 10.0
|
3183
|
+
:unit_code: nV
|
3184
|
+
:classification: levels
|
3185
|
+
:property: electric potential level
|
3186
|
+
:metric: true
|
3187
|
+
:special: true
|
3188
|
+
:arbitrary: false
|
3189
|
+
- :names: bel watt
|
3190
|
+
:symbol: B(W)
|
3191
|
+
:primary_code: B[W]
|
3192
|
+
:secondary_code: B[W]
|
3193
|
+
:scale:
|
3194
|
+
:function_code: lg
|
3195
|
+
:value: 1.0
|
3196
|
+
:unit_code: W
|
3197
|
+
:classification: levels
|
3198
|
+
:property: power level
|
3199
|
+
:metric: true
|
3200
|
+
:special: true
|
3201
|
+
:arbitrary: false
|
3202
|
+
- :names: bel kilowatt
|
3203
|
+
:symbol: B(kW)
|
3204
|
+
:primary_code: B[kW]
|
3205
|
+
:secondary_code: B[KW]
|
3206
|
+
:scale:
|
3207
|
+
:function_code: lg
|
3208
|
+
:value: 1.0
|
3209
|
+
:unit_code: kW
|
3210
|
+
:classification: levels
|
3211
|
+
:property: power level
|
3212
|
+
:metric: true
|
3213
|
+
:special: true
|
3214
|
+
:arbitrary: false
|
3215
|
+
- :names: stere
|
3216
|
+
:symbol: st
|
3217
|
+
:primary_code: st
|
3218
|
+
:secondary_code: STR
|
3219
|
+
:scale:
|
3220
|
+
:value: 1.0
|
3221
|
+
:unit_code: m3
|
3222
|
+
:classification: misc
|
3223
|
+
:property: volume
|
3224
|
+
:metric: true
|
3225
|
+
:special: false
|
3226
|
+
:arbitrary: false
|
3227
|
+
- :names: Ångström
|
3228
|
+
:symbol: Å
|
3229
|
+
:primary_code: Ao
|
3230
|
+
:secondary_code: AO
|
3231
|
+
:scale:
|
3232
|
+
:value: 0.1
|
3233
|
+
:unit_code: nm
|
3234
|
+
:classification: misc
|
3235
|
+
:property: length
|
3236
|
+
:metric: false
|
3237
|
+
:special: false
|
3238
|
+
:arbitrary: false
|
3239
|
+
- :names: barn
|
3240
|
+
:symbol: b
|
3241
|
+
:primary_code: b
|
3242
|
+
:secondary_code: BRN
|
3243
|
+
:scale:
|
3244
|
+
:value: 100.0
|
3245
|
+
:unit_code: fm2
|
3246
|
+
:classification: misc
|
3247
|
+
:property: action area
|
3248
|
+
:metric: false
|
3249
|
+
:special: false
|
3250
|
+
:arbitrary: false
|
3251
|
+
- :names: technical atmosphere
|
3252
|
+
:symbol: at
|
3253
|
+
:primary_code: att
|
3254
|
+
:secondary_code: ATT
|
3255
|
+
:scale:
|
3256
|
+
:value: 1.0
|
3257
|
+
:unit_code: kgf/cm2
|
3258
|
+
:classification: misc
|
3259
|
+
:property: pressure
|
3260
|
+
:metric: false
|
3261
|
+
:special: false
|
3262
|
+
:arbitrary: false
|
3263
|
+
- :names: mho
|
3264
|
+
:symbol: mho
|
3265
|
+
:primary_code: mho
|
3266
|
+
:secondary_code: MHO
|
3267
|
+
:scale:
|
3268
|
+
:value: 1.0
|
3269
|
+
:unit_code: S
|
3270
|
+
:classification: misc
|
3271
|
+
:property: electric conductance
|
3272
|
+
:metric: true
|
3273
|
+
:special: false
|
3274
|
+
:arbitrary: false
|
3275
|
+
- :names: pound per sqare inch
|
3276
|
+
:symbol: psi
|
3277
|
+
:primary_code: '[psi]'
|
3278
|
+
:secondary_code: '[PSI]'
|
3279
|
+
:scale:
|
3280
|
+
:value: 1.0
|
3281
|
+
:unit_code: '[lbf_av]/[in_i]2'
|
3282
|
+
:classification: misc
|
3283
|
+
:property: pressure
|
3284
|
+
:metric: false
|
3285
|
+
:special: false
|
3286
|
+
:arbitrary: false
|
3287
|
+
- :names: circle
|
3288
|
+
:symbol: circ
|
3289
|
+
:primary_code: circ
|
3290
|
+
:secondary_code: CIRC
|
3291
|
+
:scale:
|
3292
|
+
:value: 2.0
|
3293
|
+
:unit_code: '[pi].rad'
|
3294
|
+
:classification: misc
|
3295
|
+
:property: plane angle
|
3296
|
+
:metric: false
|
3297
|
+
:special: false
|
3298
|
+
:arbitrary: false
|
3299
|
+
- :names: spere
|
3300
|
+
:symbol: sph
|
3301
|
+
:primary_code: sph
|
3302
|
+
:secondary_code: SPH
|
3303
|
+
:scale:
|
3304
|
+
:value: 4.0
|
3305
|
+
:unit_code: '[pi].sr'
|
3306
|
+
:classification: misc
|
3307
|
+
:property: solid angle
|
3308
|
+
:metric: false
|
3309
|
+
:special: false
|
3310
|
+
:arbitrary: false
|
3311
|
+
- :names: metric carat
|
3312
|
+
:symbol: ct<sub>m</sub>
|
3313
|
+
:primary_code: '[car_m]'
|
3314
|
+
:secondary_code: '[CAR_M]'
|
3315
|
+
:scale:
|
3316
|
+
:value: 0.2
|
3317
|
+
:unit_code: g
|
3318
|
+
:classification: misc
|
3319
|
+
:property: mass
|
3320
|
+
:metric: false
|
3321
|
+
:special: false
|
3322
|
+
:arbitrary: false
|
3323
|
+
- :names: carat of gold alloys
|
3324
|
+
:symbol: ct<sub><r>Au</r></sub>
|
3325
|
+
:primary_code: '[car_Au]'
|
3326
|
+
:secondary_code: '[CAR_AU]'
|
3327
|
+
:scale:
|
3328
|
+
:value: 1.0
|
3329
|
+
:unit_code: /24
|
3330
|
+
:classification: misc
|
3331
|
+
:property: mass fraction
|
3332
|
+
:metric: false
|
3333
|
+
:special: false
|
3334
|
+
:arbitrary: false
|
3335
|
+
- :names: Smoot
|
3336
|
+
:primary_code: '[smoot]'
|
3337
|
+
:secondary_code: '[SMOOT]'
|
3338
|
+
:scale:
|
3339
|
+
:value: 67.0
|
3340
|
+
:unit_code: '[in_i]'
|
3341
|
+
:classification: misc
|
3342
|
+
:property: length
|
3343
|
+
:metric: false
|
3344
|
+
:special: false
|
3345
|
+
:arbitrary: false
|
3346
|
+
- :names: bit
|
3347
|
+
:symbol: bit<sub>s</sub>
|
3348
|
+
:primary_code: bit_s
|
3349
|
+
:secondary_code: BIT_S
|
3350
|
+
:scale:
|
3351
|
+
:function_code: ld
|
3352
|
+
:value: 1.0
|
3353
|
+
:unit_code: '1'
|
3354
|
+
:classification: infotech
|
3355
|
+
:property: amount of information
|
3356
|
+
:metric: false
|
3357
|
+
:special: true
|
3358
|
+
:arbitrary: false
|
3359
|
+
- :names: bit
|
3360
|
+
:symbol: bit
|
3361
|
+
:primary_code: bit
|
3362
|
+
:secondary_code: BIT
|
3363
|
+
:scale:
|
3364
|
+
:value: 1.0
|
3365
|
+
:unit_code: '1'
|
3366
|
+
:classification: infotech
|
3367
|
+
:property: amount of information
|
3368
|
+
:metric: true
|
3369
|
+
:special: false
|
3370
|
+
:arbitrary: false
|
3371
|
+
- :names: byte
|
3372
|
+
:symbol: B
|
3373
|
+
:primary_code: By
|
3374
|
+
:secondary_code: BY
|
3375
|
+
:scale:
|
3376
|
+
:value: 8.0
|
3377
|
+
:unit_code: bit
|
3378
|
+
:classification: infotech
|
3379
|
+
:property: amount of information
|
3380
|
+
:metric: true
|
3381
|
+
:special: false
|
3382
|
+
:arbitrary: false
|
3383
|
+
- :names: baud
|
3384
|
+
:symbol: Bd
|
3385
|
+
:primary_code: Bd
|
3386
|
+
:secondary_code: Bd
|
3387
|
+
:scale:
|
3388
|
+
:value: 1.0
|
3389
|
+
:unit_code: /s
|
3390
|
+
:classification: infotech
|
3391
|
+
:property: signal transmission rate
|
3392
|
+
:metric: true
|
3393
|
+
:special: false
|
3394
|
+
:arbitrary: false
|