unitsml 0.4.7 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/docs/README.adoc +104 -2
- data/lib/unitsml/dimension.rb +1 -1
- data/lib/unitsml/fenced.rb +77 -0
- data/lib/unitsml/formula.rb +21 -8
- data/lib/unitsml/intermediate_exp_rules.rb +35 -0
- data/lib/unitsml/parse.rb +16 -25
- data/lib/unitsml/parser.rb +19 -4
- data/lib/unitsml/prefix.rb +10 -10
- data/lib/unitsml/transform.rb +31 -0
- data/lib/unitsml/unit.rb +29 -7
- data/lib/unitsml/unitsdb/dimension.rb +12 -18
- data/lib/unitsml/unitsdb/dimension_quantity.rb +2 -6
- data/lib/unitsml/unitsdb/dimensions.rb +4 -8
- data/lib/unitsml/unitsdb/prefix_reference.rb +23 -0
- data/lib/unitsml/unitsdb/prefixes.rb +19 -5
- data/lib/unitsml/unitsdb/quantities.rb +6 -4
- data/lib/unitsml/unitsdb/unit.rb +21 -0
- data/lib/unitsml/unitsdb/units.rb +20 -17
- data/lib/unitsml/unitsdb.rb +8 -4
- data/lib/unitsml/utility.rb +36 -44
- data/lib/unitsml/version.rb +1 -1
- data/lib/unitsml.rb +34 -16
- data/unitsdb/LICENSE.md +53 -0
- data/unitsdb/README.adoc +1071 -0
- data/unitsdb/RELEASE-NOTES.adoc +269 -0
- data/unitsdb/dimensions.yaml +1255 -602
- data/unitsdb/prefixes.yaml +742 -301
- data/unitsdb/quantities.yaml +3104 -2458
- data/unitsdb/scales.yaml +97 -0
- data/unitsdb/schemas/README.md +159 -0
- data/unitsdb/schemas/dimensions-schema.yaml +157 -0
- data/unitsdb/schemas/prefixes-schema.yaml +159 -0
- data/unitsdb/schemas/quantities-schema.yaml +120 -0
- data/unitsdb/schemas/scales-schema.yaml +109 -0
- data/unitsdb/schemas/unit_systems-schema.yaml +120 -0
- data/unitsdb/schemas/units-schema.yaml +219 -0
- data/unitsdb/spec/units_spec.rb +11 -10
- data/unitsdb/unit_systems.yaml +73 -15
- data/unitsdb/units.yaml +12566 -9974
- data/unitsdb/validate_schemas.rb +208 -0
- data/unitsml.gemspec +2 -1
- metadata +34 -6
- data/unitsdb/docs/README.adoc +0 -12
- data/unitsdb/docs/navigation.adoc +0 -7
data/unitsdb/dimensions.yaml
CHANGED
@@ -1,859 +1,1512 @@
|
|
1
|
+
# yaml-language-server: $schema=schemas/dimensions-schema.yaml
|
1
2
|
---
|
2
|
-
|
3
|
+
schema_version: 2.0.0
|
4
|
+
dimensions:
|
5
|
+
- identifiers:
|
6
|
+
- type: nist
|
7
|
+
id: NISTd1
|
8
|
+
- type: unitsml
|
9
|
+
id: d:length
|
3
10
|
length:
|
4
|
-
|
11
|
+
power: 1
|
5
12
|
symbol: L
|
6
|
-
|
7
|
-
-
|
8
|
-
|
13
|
+
symbols:
|
14
|
+
- latex: "\\ensuremath{\\mathsf{L}}"
|
15
|
+
unicode: "\U0001D5AB"
|
16
|
+
ascii: L
|
9
17
|
html: "𝖫"
|
18
|
+
id: dim_L
|
10
19
|
mathml: "<mi mathvariant='sans-serif'>L</mi>"
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
- id: "dim_M"
|
21
|
-
ascii: "M"
|
22
|
-
html: "𝖬"
|
23
|
-
mathml: "<mi mathvariant='sans-serif'>M</mi>"
|
24
|
-
latex: \ensuremath{\mathsf{M}}
|
25
|
-
unicode: "𝖬"
|
26
|
-
|
27
|
-
NISTd3:
|
28
|
-
time:
|
29
|
-
powerNumerator: 1
|
30
|
-
symbol: T
|
31
|
-
dim_symbols:
|
32
|
-
- id: "dim_T"
|
33
|
-
ascii: "T"
|
34
|
-
html: "𝖳"
|
35
|
-
mathml: "<mi mathvariant='sans-serif'>T</mi>"
|
36
|
-
latex: \ensuremath{\mathsf{T}}
|
37
|
-
unicode: "𝖳"
|
38
|
-
|
39
|
-
NISTd4:
|
40
|
-
electric_current:
|
41
|
-
powerNumerator: 1
|
42
|
-
symbol: I
|
43
|
-
dim_symbols:
|
44
|
-
- id: "dim_T"
|
45
|
-
ascii: "T"
|
46
|
-
html: "𝖨"
|
47
|
-
mathml: "<mi mathvariant='sans-serif'>T</mi>"
|
48
|
-
latex: \ensuremath{\mathsf{T}}
|
49
|
-
unicode: "𝖨"
|
50
|
-
|
51
|
-
NISTd5:
|
52
|
-
thermodynamic_temperature:
|
53
|
-
powerNumerator: 1
|
54
|
-
symbol: Theta
|
55
|
-
dim_symbols:
|
56
|
-
- id: "dim_Theta"
|
57
|
-
ascii: "Theta"
|
58
|
-
html: "𝝠"
|
59
|
-
mathml: "<mi mathvariant='sans-serif'>Θ</mi>"
|
60
|
-
latex: \ensuremath{\mathsf{\Theta}}
|
61
|
-
unicode: "𝝧"
|
62
|
-
|
63
|
-
NISTd6:
|
64
|
-
amount_of_substance:
|
65
|
-
powerNumerator: 1
|
66
|
-
symbol: N
|
67
|
-
dim_symbols:
|
68
|
-
- id: "dim_N"
|
69
|
-
ascii: "N"
|
70
|
-
html: "𝖭"
|
71
|
-
mathml: "<mi mathvariant='sans-serif'>N</mi>"
|
72
|
-
latex: \ensuremath{\mathsf{N}}
|
73
|
-
unicode: "𝖭"
|
74
|
-
|
75
|
-
NISTd7:
|
76
|
-
luminous_intensity:
|
77
|
-
powerNumerator: 1
|
78
|
-
symbol: J
|
79
|
-
dim_symbols:
|
80
|
-
- id: "dim_J"
|
81
|
-
ascii: "J"
|
82
|
-
html: "𝖩"
|
83
|
-
mathml: "<mi mathvariant='sans-serif'>J</mi>"
|
84
|
-
latex: \ensuremath{\mathsf{J}}
|
85
|
-
unicode: "𝖩"
|
86
|
-
|
87
|
-
NISTd8:
|
20
|
+
names:
|
21
|
+
- value: length
|
22
|
+
lang: en
|
23
|
+
short: length
|
24
|
+
- identifiers:
|
25
|
+
- type: nist
|
26
|
+
id: NISTd10
|
27
|
+
- type: unitsml
|
28
|
+
id: d:volume
|
88
29
|
length:
|
89
|
-
|
30
|
+
power: 3
|
90
31
|
symbol: L
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
32
|
+
names:
|
33
|
+
- value: volume
|
34
|
+
lang: en
|
35
|
+
short: volume
|
36
|
+
- dimensionless: true
|
37
|
+
identifiers:
|
38
|
+
- type: nist
|
39
|
+
id: NISTd100
|
40
|
+
- type: unitsml
|
41
|
+
id: d:traffic_intensity
|
42
|
+
names:
|
43
|
+
- value: traffic intensity
|
44
|
+
lang: en
|
45
|
+
short: traffic_intensity
|
46
|
+
- identifiers:
|
47
|
+
- type: nist
|
48
|
+
id: NISTd101
|
49
|
+
- type: unitsml
|
50
|
+
id: d:symbol_rate
|
51
|
+
names:
|
52
|
+
- value: symbol rate
|
53
|
+
lang: en
|
54
|
+
time:
|
55
|
+
power: -1
|
56
|
+
symbol: T
|
57
|
+
short: symbol_rate
|
58
|
+
- dimensionless: true
|
59
|
+
identifiers:
|
60
|
+
- type: nist
|
61
|
+
id: NISTd102
|
62
|
+
- type: unitsml
|
63
|
+
id: d:information_content
|
64
|
+
names:
|
65
|
+
- value: information content
|
66
|
+
lang: en
|
67
|
+
short: information_content
|
68
|
+
- identifiers:
|
69
|
+
- type: nist
|
70
|
+
id: NISTd11
|
71
|
+
- type: unitsml
|
72
|
+
id: d:velocity
|
111
73
|
length:
|
112
|
-
|
74
|
+
power: 1
|
113
75
|
symbol: L
|
76
|
+
names:
|
77
|
+
- value: velocity
|
78
|
+
lang: en
|
114
79
|
time:
|
115
|
-
|
80
|
+
power: -1
|
116
81
|
symbol: T
|
117
|
-
|
118
|
-
|
82
|
+
short: velocity
|
83
|
+
- identifiers:
|
84
|
+
- type: nist
|
85
|
+
id: NISTd12
|
86
|
+
- type: unitsml
|
87
|
+
id: d:force
|
119
88
|
length:
|
120
|
-
|
89
|
+
power: 1
|
121
90
|
symbol: L
|
122
|
-
|
123
|
-
|
124
|
-
|
91
|
+
names:
|
92
|
+
- value: force
|
93
|
+
lang: en
|
125
94
|
time:
|
126
|
-
|
95
|
+
power: -2
|
127
96
|
symbol: T
|
128
|
-
|
129
|
-
NISTd13:
|
130
97
|
mass:
|
131
|
-
|
98
|
+
power: 1
|
132
99
|
symbol: M
|
100
|
+
short: force
|
101
|
+
- electric_current:
|
102
|
+
power: -1
|
103
|
+
symbol: I
|
104
|
+
identifiers:
|
105
|
+
- type: nist
|
106
|
+
id: NISTd13
|
107
|
+
- type: unitsml
|
108
|
+
id: d:magnetic_flux_density
|
109
|
+
names:
|
110
|
+
- value: magnetic flux density
|
111
|
+
lang: en
|
133
112
|
time:
|
134
|
-
|
113
|
+
power: -2
|
135
114
|
symbol: T
|
136
|
-
electric_current:
|
137
|
-
powerNumerator: -1
|
138
|
-
symbol: I
|
139
|
-
|
140
|
-
NISTd14:
|
141
|
-
length:
|
142
|
-
powerNumerator: -1
|
143
|
-
symbol: L
|
144
115
|
mass:
|
145
|
-
|
116
|
+
power: 1
|
146
117
|
symbol: M
|
118
|
+
short: magnetic_flux_density
|
119
|
+
- identifiers:
|
120
|
+
- type: nist
|
121
|
+
id: NISTd14
|
122
|
+
- type: unitsml
|
123
|
+
id: d:pressure
|
124
|
+
length:
|
125
|
+
power: -1
|
126
|
+
symbol: L
|
127
|
+
names:
|
128
|
+
- value: pressure
|
129
|
+
lang: en
|
147
130
|
time:
|
148
|
-
|
131
|
+
power: -2
|
149
132
|
symbol: T
|
150
|
-
|
151
|
-
|
133
|
+
mass:
|
134
|
+
power: 1
|
135
|
+
symbol: M
|
136
|
+
short: pressure
|
137
|
+
- identifiers:
|
138
|
+
- type: nist
|
139
|
+
id: NISTd15
|
140
|
+
- type: unitsml
|
141
|
+
id: d:energy
|
152
142
|
length:
|
153
|
-
|
143
|
+
power: 2
|
154
144
|
symbol: L
|
145
|
+
names:
|
146
|
+
- value: energy
|
147
|
+
lang: en
|
148
|
+
time:
|
149
|
+
power: -2
|
150
|
+
symbol: T
|
155
151
|
mass:
|
156
|
-
|
152
|
+
power: 1
|
157
153
|
symbol: M
|
154
|
+
short: energy
|
155
|
+
- identifiers:
|
156
|
+
- type: nist
|
157
|
+
id: NISTd16
|
158
|
+
- type: unitsml
|
159
|
+
id: d:power
|
160
|
+
length:
|
161
|
+
power: 2
|
162
|
+
symbol: L
|
163
|
+
names:
|
164
|
+
- value: power
|
165
|
+
lang: en
|
158
166
|
time:
|
159
|
-
|
167
|
+
power: -3
|
160
168
|
symbol: T
|
161
|
-
|
162
|
-
|
169
|
+
mass:
|
170
|
+
power: 1
|
171
|
+
symbol: M
|
172
|
+
short: power
|
173
|
+
- electric_current:
|
174
|
+
power: 1
|
175
|
+
symbol: I
|
176
|
+
identifiers:
|
177
|
+
- type: nist
|
178
|
+
id: NISTd17
|
179
|
+
- type: unitsml
|
180
|
+
id: d:electric_charge
|
181
|
+
names:
|
182
|
+
- value: electric charge
|
183
|
+
lang: en
|
163
184
|
time:
|
164
|
-
|
185
|
+
power: 1
|
165
186
|
symbol: T
|
166
|
-
|
167
|
-
|
187
|
+
short: electric_charge
|
188
|
+
- electric_current:
|
189
|
+
power: -1
|
168
190
|
symbol: I
|
169
|
-
|
170
|
-
|
191
|
+
identifiers:
|
192
|
+
- type: nist
|
193
|
+
id: NISTd18
|
194
|
+
- type: unitsml
|
195
|
+
id: d:electric_potential_difference
|
171
196
|
length:
|
172
|
-
|
197
|
+
power: 2
|
173
198
|
symbol: L
|
174
|
-
|
175
|
-
|
176
|
-
|
199
|
+
names:
|
200
|
+
- value: electric potential difference
|
201
|
+
lang: en
|
177
202
|
time:
|
178
|
-
|
203
|
+
power: -3
|
179
204
|
symbol: T
|
180
|
-
|
181
|
-
NISTd19:
|
182
|
-
length:
|
183
|
-
powerNumerator: -2
|
184
|
-
symbol: L
|
185
205
|
mass:
|
186
|
-
|
206
|
+
power: 1
|
187
207
|
symbol: M
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
electric_current:
|
192
|
-
powerNumerator: 2
|
208
|
+
short: electric_potential_difference
|
209
|
+
- electric_current:
|
210
|
+
power: 2
|
193
211
|
symbol: I
|
194
|
-
|
195
|
-
|
212
|
+
identifiers:
|
213
|
+
- type: nist
|
214
|
+
id: NISTd19
|
215
|
+
- type: unitsml
|
216
|
+
id: d:capacitance
|
196
217
|
length:
|
197
|
-
|
218
|
+
power: -2
|
198
219
|
symbol: L
|
199
|
-
|
200
|
-
|
201
|
-
|
220
|
+
names:
|
221
|
+
- value: capacitance
|
222
|
+
lang: en
|
202
223
|
time:
|
203
|
-
|
224
|
+
power: 4
|
204
225
|
symbol: T
|
205
|
-
|
206
|
-
|
226
|
+
mass:
|
227
|
+
power: -1
|
228
|
+
symbol: M
|
229
|
+
short: capacitance
|
230
|
+
- identifiers:
|
231
|
+
- type: nist
|
232
|
+
id: NISTd2
|
233
|
+
- type: unitsml
|
234
|
+
id: d:mass
|
235
|
+
names:
|
236
|
+
- value: mass
|
237
|
+
lang: en
|
238
|
+
mass:
|
239
|
+
power: 1
|
240
|
+
symbol: M
|
241
|
+
symbols:
|
242
|
+
- latex: "\\ensuremath{\\mathsf{M}}"
|
243
|
+
unicode: "\U0001D5AC"
|
244
|
+
ascii: M
|
245
|
+
html: "𝖬"
|
246
|
+
id: dim_M
|
247
|
+
mathml: "<mi mathvariant='sans-serif'>M</mi>"
|
248
|
+
short: mass
|
249
|
+
- electric_current:
|
250
|
+
power: -2
|
207
251
|
symbol: I
|
208
|
-
|
209
|
-
|
252
|
+
identifiers:
|
253
|
+
- type: nist
|
254
|
+
id: NISTd20
|
255
|
+
- type: unitsml
|
256
|
+
id: d:electric_resistance
|
210
257
|
length:
|
211
|
-
|
258
|
+
power: 2
|
212
259
|
symbol: L
|
213
|
-
|
214
|
-
|
215
|
-
|
260
|
+
names:
|
261
|
+
- value: electric resistance
|
262
|
+
lang: en
|
216
263
|
time:
|
217
|
-
|
264
|
+
power: -3
|
218
265
|
symbol: T
|
219
|
-
|
220
|
-
|
266
|
+
mass:
|
267
|
+
power: 1
|
268
|
+
symbol: M
|
269
|
+
short: electric_resistance
|
270
|
+
- electric_current:
|
271
|
+
power: 2
|
221
272
|
symbol: I
|
222
|
-
|
223
|
-
|
273
|
+
identifiers:
|
274
|
+
- type: nist
|
275
|
+
id: NISTd21
|
276
|
+
- type: unitsml
|
277
|
+
id: d:electric_conductance
|
224
278
|
length:
|
225
|
-
|
279
|
+
power: -2
|
226
280
|
symbol: L
|
227
|
-
|
228
|
-
|
229
|
-
|
281
|
+
names:
|
282
|
+
- value: electric conductance
|
283
|
+
lang: en
|
230
284
|
time:
|
231
|
-
|
285
|
+
power: 3
|
232
286
|
symbol: T
|
233
|
-
|
234
|
-
|
287
|
+
mass:
|
288
|
+
power: -1
|
289
|
+
symbol: M
|
290
|
+
short: electric_conductance
|
291
|
+
- electric_current:
|
292
|
+
power: -1
|
235
293
|
symbol: I
|
236
|
-
|
237
|
-
|
294
|
+
identifiers:
|
295
|
+
- type: nist
|
296
|
+
id: NISTd22
|
297
|
+
- type: unitsml
|
298
|
+
id: d:magnetic_flux
|
238
299
|
length:
|
239
|
-
|
300
|
+
power: 2
|
240
301
|
symbol: L
|
241
|
-
|
242
|
-
|
243
|
-
|
302
|
+
names:
|
303
|
+
- value: magnetic flux
|
304
|
+
lang: en
|
244
305
|
time:
|
245
|
-
|
306
|
+
power: -2
|
246
307
|
symbol: T
|
247
|
-
|
248
|
-
|
308
|
+
mass:
|
309
|
+
power: 1
|
310
|
+
symbol: M
|
311
|
+
short: magnetic_flux
|
312
|
+
- electric_current:
|
313
|
+
power: -2
|
249
314
|
symbol: I
|
250
|
-
|
251
|
-
|
315
|
+
identifiers:
|
316
|
+
- type: nist
|
317
|
+
id: NISTd23
|
318
|
+
- type: unitsml
|
319
|
+
id: d:inductance
|
252
320
|
length:
|
253
|
-
|
321
|
+
power: 2
|
254
322
|
symbol: L
|
323
|
+
names:
|
324
|
+
- value: inductance
|
325
|
+
lang: en
|
326
|
+
time:
|
327
|
+
power: -2
|
328
|
+
symbol: T
|
255
329
|
mass:
|
256
|
-
|
330
|
+
power: 1
|
257
331
|
symbol: M
|
332
|
+
short: inductance
|
333
|
+
- identifiers:
|
334
|
+
- type: nist
|
335
|
+
id: NISTd24
|
336
|
+
- type: unitsml
|
337
|
+
id: d:frequency
|
338
|
+
names:
|
339
|
+
- value: frequency
|
340
|
+
lang: en
|
258
341
|
time:
|
259
|
-
|
342
|
+
power: -1
|
260
343
|
symbol: T
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
344
|
+
short: frequency
|
345
|
+
- identifiers:
|
346
|
+
- type: nist
|
347
|
+
id: NISTd25
|
348
|
+
- type: unitsml
|
349
|
+
id: d:absorbed_dose
|
266
350
|
length:
|
267
|
-
|
351
|
+
power: 2
|
268
352
|
symbol: L
|
353
|
+
names:
|
354
|
+
- value: absorbed dose
|
355
|
+
lang: en
|
269
356
|
time:
|
270
|
-
|
357
|
+
power: -2
|
271
358
|
symbol: T
|
272
|
-
|
273
|
-
|
359
|
+
short: absorbed_dose
|
360
|
+
- amount_of_substance:
|
361
|
+
power: 1
|
362
|
+
symbol: "N"
|
363
|
+
identifiers:
|
364
|
+
- type: nist
|
365
|
+
id: NISTd26
|
366
|
+
- type: unitsml
|
367
|
+
id: d:catalytic_activity
|
368
|
+
names:
|
369
|
+
- value: catalytic activity
|
370
|
+
lang: en
|
274
371
|
time:
|
275
|
-
|
372
|
+
power: -1
|
276
373
|
symbol: T
|
277
|
-
|
278
|
-
|
374
|
+
short: catalytic_activity
|
375
|
+
- identifiers:
|
376
|
+
- type: nist
|
377
|
+
id: NISTd27
|
378
|
+
- type: unitsml
|
379
|
+
id: d:illuminance
|
279
380
|
length:
|
280
|
-
|
381
|
+
power: -2
|
281
382
|
symbol: L
|
282
383
|
luminous_intensity:
|
283
|
-
|
384
|
+
power: 1
|
284
385
|
symbol: J
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
NISTd29:
|
386
|
+
names:
|
387
|
+
- value: illuminance
|
388
|
+
lang: en
|
389
|
+
short: illuminance
|
390
|
+
- identifiers:
|
391
|
+
- type: nist
|
392
|
+
id: NISTd28
|
393
|
+
- type: unitsml
|
394
|
+
id: d:acceleration
|
295
395
|
length:
|
296
|
-
|
396
|
+
power: 1
|
297
397
|
symbol: L
|
298
|
-
|
299
|
-
|
398
|
+
names:
|
399
|
+
- value: acceleration
|
400
|
+
lang: en
|
401
|
+
time:
|
402
|
+
power: -2
|
403
|
+
symbol: T
|
404
|
+
short: acceleration
|
405
|
+
- identifiers:
|
406
|
+
- type: nist
|
407
|
+
id: NISTd29
|
408
|
+
- type: unitsml
|
409
|
+
id: d:wavenumber
|
300
410
|
length:
|
301
|
-
|
411
|
+
power: -1
|
302
412
|
symbol: L
|
413
|
+
names:
|
414
|
+
- value: wavenumber
|
415
|
+
lang: en
|
416
|
+
short: wavenumber
|
417
|
+
- identifiers:
|
418
|
+
- type: nist
|
419
|
+
id: NISTd3
|
420
|
+
- type: unitsml
|
421
|
+
id: d:time
|
422
|
+
names:
|
423
|
+
- value: time
|
424
|
+
lang: en
|
303
425
|
time:
|
304
|
-
|
426
|
+
power: 1
|
305
427
|
symbol: T
|
306
|
-
|
307
|
-
|
428
|
+
symbols:
|
429
|
+
- latex: "\\ensuremath{\\mathsf{T}}"
|
430
|
+
unicode: "\U0001D5B3"
|
431
|
+
ascii: T
|
432
|
+
html: "𝖳"
|
433
|
+
id: dim_T
|
434
|
+
mathml: "<mi mathvariant='sans-serif'>T</mi>"
|
435
|
+
short: time
|
436
|
+
- identifiers:
|
437
|
+
- type: nist
|
438
|
+
id: NISTd30
|
439
|
+
- type: unitsml
|
440
|
+
id: d:mass_density
|
308
441
|
length:
|
309
|
-
|
442
|
+
power: -3
|
310
443
|
symbol: L
|
444
|
+
names:
|
445
|
+
- value: mass density
|
446
|
+
lang: en
|
311
447
|
mass:
|
312
|
-
|
448
|
+
power: 1
|
313
449
|
symbol: M
|
314
|
-
|
315
|
-
|
450
|
+
short: mass_density
|
451
|
+
- identifiers:
|
452
|
+
- type: nist
|
453
|
+
id: NISTd31
|
454
|
+
- type: unitsml
|
455
|
+
id: d:specific_volume
|
316
456
|
length:
|
317
|
-
|
457
|
+
power: 3
|
318
458
|
symbol: L
|
459
|
+
names:
|
460
|
+
- value: specific volume
|
461
|
+
lang: en
|
319
462
|
mass:
|
320
|
-
|
463
|
+
power: -1
|
321
464
|
symbol: M
|
322
|
-
|
323
|
-
|
465
|
+
short: specific_volume
|
466
|
+
- electric_current:
|
467
|
+
power: 1
|
468
|
+
symbol: I
|
469
|
+
identifiers:
|
470
|
+
- type: nist
|
471
|
+
id: NISTd32
|
472
|
+
- type: unitsml
|
473
|
+
id: d:current_density
|
324
474
|
length:
|
325
|
-
|
475
|
+
power: -2
|
326
476
|
symbol: L
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
477
|
+
names:
|
478
|
+
- value: current density
|
479
|
+
lang: en
|
480
|
+
short: current_density
|
481
|
+
- electric_current:
|
482
|
+
power: 1
|
483
|
+
symbol: I
|
484
|
+
identifiers:
|
485
|
+
- type: nist
|
486
|
+
id: NISTd33
|
487
|
+
- type: unitsml
|
488
|
+
id: d:magnetic_field_strength
|
337
489
|
length:
|
338
|
-
|
490
|
+
power: -1
|
339
491
|
symbol: L
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
492
|
+
names:
|
493
|
+
- value: magnetic field strength
|
494
|
+
lang: en
|
495
|
+
short: magnetic_field_strength
|
496
|
+
- amount_of_substance:
|
497
|
+
power: 1
|
498
|
+
symbol: "N"
|
499
|
+
identifiers:
|
500
|
+
- type: nist
|
501
|
+
id: NISTd34
|
502
|
+
- type: unitsml
|
503
|
+
id: d:concentration
|
345
504
|
length:
|
346
|
-
|
505
|
+
power: -3
|
347
506
|
symbol: L
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
507
|
+
names:
|
508
|
+
- value: concentration
|
509
|
+
lang: en
|
510
|
+
short: concentration
|
511
|
+
- identifiers:
|
512
|
+
- type: nist
|
513
|
+
id: NISTd35
|
514
|
+
- type: unitsml
|
515
|
+
id: d:angular_acceleration
|
516
|
+
names:
|
517
|
+
- value: angular acceleration
|
518
|
+
lang: en
|
356
519
|
time:
|
357
|
-
|
520
|
+
power: -2
|
358
521
|
symbol: T
|
359
|
-
|
360
|
-
|
522
|
+
short: angular_acceleration
|
523
|
+
- identifiers:
|
524
|
+
- type: nist
|
525
|
+
id: NISTd36
|
526
|
+
- type: unitsml
|
527
|
+
id: d:dynamic_viscosity
|
361
528
|
length:
|
362
|
-
|
529
|
+
power: -1
|
363
530
|
symbol: L
|
364
|
-
|
365
|
-
|
366
|
-
|
531
|
+
names:
|
532
|
+
- value: dynamic viscosity
|
533
|
+
lang: en
|
367
534
|
time:
|
368
|
-
|
535
|
+
power: -1
|
369
536
|
symbol: T
|
370
|
-
thermodynamic_temperature:
|
371
|
-
powerNumerator: -1
|
372
|
-
symbol: Theta
|
373
|
-
|
374
|
-
NISTd36:
|
375
|
-
length:
|
376
|
-
powerNumerator: -1
|
377
|
-
symbol: L
|
378
537
|
mass:
|
379
|
-
|
538
|
+
power: 1
|
380
539
|
symbol: M
|
540
|
+
short: dynamic_viscosity
|
541
|
+
- identifiers:
|
542
|
+
- type: nist
|
543
|
+
id: NISTd37
|
544
|
+
- type: unitsml
|
545
|
+
id: d:surface_tension
|
546
|
+
names:
|
547
|
+
- value: surface tension
|
548
|
+
lang: en
|
381
549
|
time:
|
382
|
-
|
550
|
+
power: -2
|
383
551
|
symbol: T
|
384
|
-
|
385
|
-
NISTd37:
|
386
552
|
mass:
|
387
|
-
|
553
|
+
power: 1
|
388
554
|
symbol: M
|
555
|
+
short: surface_tension
|
556
|
+
- identifiers:
|
557
|
+
- type: nist
|
558
|
+
id: NISTd38
|
559
|
+
- type: unitsml
|
560
|
+
id: d:heat_flux_density
|
561
|
+
names:
|
562
|
+
- value: heat flux density
|
563
|
+
lang: en
|
389
564
|
time:
|
390
|
-
|
565
|
+
power: -3
|
391
566
|
symbol: T
|
392
|
-
|
393
|
-
NISTd42:
|
394
|
-
length:
|
395
|
-
powerNumerator: 1
|
396
|
-
symbol: L
|
397
567
|
mass:
|
398
|
-
|
568
|
+
power: 1
|
399
569
|
symbol: M
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
NISTd43:
|
570
|
+
short: heat_flux_density
|
571
|
+
- identifiers:
|
572
|
+
- type: nist
|
573
|
+
id: NISTd39
|
574
|
+
- type: unitsml
|
575
|
+
id: d:heat_capacity
|
408
576
|
length:
|
409
|
-
|
577
|
+
power: 2
|
410
578
|
symbol: L
|
579
|
+
names:
|
580
|
+
- value: heat capacity
|
581
|
+
lang: en
|
582
|
+
thermodynamic_temperature:
|
583
|
+
power: -1
|
584
|
+
symbol: Theta
|
411
585
|
time:
|
412
|
-
|
586
|
+
power: -2
|
413
587
|
symbol: T
|
414
|
-
|
415
|
-
|
588
|
+
mass:
|
589
|
+
power: 1
|
590
|
+
symbol: M
|
591
|
+
short: heat_capacity
|
592
|
+
- electric_current:
|
593
|
+
power: 1
|
416
594
|
symbol: I
|
417
|
-
|
418
|
-
|
595
|
+
symbols:
|
596
|
+
- latex: "\\ensuremath{\\mathsf{I}}"
|
597
|
+
unicode: "\U0001D5A8"
|
598
|
+
ascii: I
|
599
|
+
html: "𝖨"
|
600
|
+
id: dim_I
|
601
|
+
mathml: "<mi mathvariant='sans-serif'>I</mi>"
|
602
|
+
identifiers:
|
603
|
+
- type: nist
|
604
|
+
id: NISTd4
|
605
|
+
- type: unitsml
|
606
|
+
id: d:electric_current
|
607
|
+
names:
|
608
|
+
- value: electric current
|
609
|
+
lang: en
|
610
|
+
short: electric_current
|
611
|
+
- identifiers:
|
612
|
+
- type: nist
|
613
|
+
id: NISTd40
|
614
|
+
- type: unitsml
|
615
|
+
id: d:specific_heat_capacity
|
419
616
|
length:
|
420
|
-
|
617
|
+
power: 2
|
421
618
|
symbol: L
|
422
|
-
|
423
|
-
|
424
|
-
|
619
|
+
names:
|
620
|
+
- value: specific heat capacity
|
621
|
+
lang: en
|
425
622
|
thermodynamic_temperature:
|
426
|
-
|
623
|
+
power: -1
|
427
624
|
symbol: Theta
|
428
|
-
|
429
|
-
NISTd41:
|
430
|
-
length:
|
431
|
-
powerNumerator: 1
|
432
|
-
symbol: L
|
433
|
-
mass:
|
434
|
-
powerNumerator: 1
|
435
|
-
symbol: M
|
436
625
|
time:
|
437
|
-
|
626
|
+
power: -2
|
438
627
|
symbol: T
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
628
|
+
short: specific_heat_capacity
|
629
|
+
- identifiers:
|
630
|
+
- type: nist
|
631
|
+
id: NISTd41
|
632
|
+
- type: unitsml
|
633
|
+
id: d:thermal_conductivity
|
444
634
|
length:
|
445
|
-
|
635
|
+
power: 1
|
446
636
|
symbol: L
|
447
|
-
|
448
|
-
|
449
|
-
|
637
|
+
names:
|
638
|
+
- value: thermal conductivity
|
639
|
+
lang: en
|
640
|
+
thermodynamic_temperature:
|
641
|
+
power: -1
|
642
|
+
symbol: Theta
|
450
643
|
time:
|
451
|
-
|
644
|
+
power: -3
|
452
645
|
symbol: T
|
453
|
-
|
454
|
-
|
646
|
+
mass:
|
647
|
+
power: 1
|
648
|
+
symbol: M
|
649
|
+
short: thermal_conductivity
|
650
|
+
- electric_current:
|
651
|
+
power: -1
|
455
652
|
symbol: I
|
456
|
-
|
457
|
-
|
653
|
+
identifiers:
|
654
|
+
- type: nist
|
655
|
+
id: NISTd42
|
656
|
+
- type: unitsml
|
657
|
+
id: d:electric_field_strength
|
458
658
|
length:
|
459
|
-
|
659
|
+
power: 1
|
460
660
|
symbol: L
|
461
|
-
|
462
|
-
|
463
|
-
|
661
|
+
names:
|
662
|
+
- value: electric field strength
|
663
|
+
lang: en
|
464
664
|
time:
|
465
|
-
|
665
|
+
power: -3
|
466
666
|
symbol: T
|
467
|
-
|
468
|
-
|
469
|
-
symbol:
|
470
|
-
|
471
|
-
|
667
|
+
mass:
|
668
|
+
power: 1
|
669
|
+
symbol: M
|
670
|
+
short: electric_field_strength
|
671
|
+
- electric_current:
|
672
|
+
power: 1
|
673
|
+
symbol: I
|
674
|
+
identifiers:
|
675
|
+
- type: nist
|
676
|
+
id: NISTd43
|
677
|
+
- type: unitsml
|
678
|
+
id: d:electric_charge_density
|
472
679
|
length:
|
473
|
-
|
680
|
+
power: -3
|
474
681
|
symbol: L
|
682
|
+
names:
|
683
|
+
- value: electric charge density
|
684
|
+
lang: en
|
475
685
|
time:
|
476
|
-
|
686
|
+
power: 1
|
477
687
|
symbol: T
|
478
|
-
|
479
|
-
|
688
|
+
short: electric_charge_density
|
689
|
+
- electric_current:
|
690
|
+
power: 1
|
480
691
|
symbol: I
|
481
|
-
|
482
|
-
|
692
|
+
identifiers:
|
693
|
+
- type: nist
|
694
|
+
id: NISTd44
|
695
|
+
- type: unitsml
|
696
|
+
id: d:electric_flux_density
|
483
697
|
length:
|
484
|
-
|
698
|
+
power: -2
|
485
699
|
symbol: L
|
486
|
-
|
487
|
-
|
488
|
-
|
700
|
+
names:
|
701
|
+
- value: electric flux density
|
702
|
+
lang: en
|
489
703
|
time:
|
490
|
-
|
704
|
+
power: 1
|
491
705
|
symbol: T
|
492
|
-
|
493
|
-
|
706
|
+
short: electric_flux_density
|
707
|
+
- electric_current:
|
708
|
+
power: 2
|
494
709
|
symbol: I
|
495
|
-
|
496
|
-
|
710
|
+
identifiers:
|
711
|
+
- type: nist
|
712
|
+
id: NISTd45
|
713
|
+
- type: unitsml
|
714
|
+
id: d:permittivity
|
497
715
|
length:
|
498
|
-
|
716
|
+
power: -3
|
499
717
|
symbol: L
|
718
|
+
names:
|
719
|
+
- value: permittivity
|
720
|
+
lang: en
|
721
|
+
time:
|
722
|
+
power: 4
|
723
|
+
symbol: T
|
500
724
|
mass:
|
501
|
-
|
725
|
+
power: -1
|
502
726
|
symbol: M
|
503
|
-
|
504
|
-
|
727
|
+
short: permittivity
|
728
|
+
- electric_current:
|
729
|
+
power: -2
|
730
|
+
symbol: I
|
731
|
+
identifiers:
|
732
|
+
- type: nist
|
733
|
+
id: NISTd46
|
734
|
+
- type: unitsml
|
735
|
+
id: d:permeability
|
505
736
|
length:
|
506
|
-
|
737
|
+
power: 1
|
507
738
|
symbol: L
|
739
|
+
names:
|
740
|
+
- value: permeability
|
741
|
+
lang: en
|
508
742
|
time:
|
509
|
-
|
743
|
+
power: -2
|
510
744
|
symbol: T
|
511
|
-
|
512
|
-
NISTd49:
|
513
745
|
mass:
|
514
|
-
|
746
|
+
power: 1
|
515
747
|
symbol: M
|
748
|
+
short: permeability
|
749
|
+
- amount_of_substance:
|
750
|
+
power: -1
|
751
|
+
symbol: "N"
|
752
|
+
identifiers:
|
753
|
+
- type: nist
|
754
|
+
id: NISTd47
|
755
|
+
- type: unitsml
|
756
|
+
id: d:molar_energy
|
757
|
+
length:
|
758
|
+
power: 2
|
759
|
+
symbol: L
|
760
|
+
names:
|
761
|
+
- value: molar energy
|
762
|
+
lang: en
|
516
763
|
time:
|
517
|
-
|
764
|
+
power: -2
|
518
765
|
symbol: T
|
519
|
-
|
520
|
-
|
521
|
-
symbol:
|
522
|
-
|
523
|
-
|
766
|
+
mass:
|
767
|
+
power: 1
|
768
|
+
symbol: M
|
769
|
+
short: molar_energy
|
770
|
+
- amount_of_substance:
|
771
|
+
power: -1
|
772
|
+
symbol: "N"
|
773
|
+
identifiers:
|
774
|
+
- type: nist
|
775
|
+
id: NISTd48
|
776
|
+
- type: unitsml
|
777
|
+
id: d:molar_entropy
|
524
778
|
length:
|
525
|
-
|
779
|
+
power: 2
|
526
780
|
symbol: L
|
781
|
+
names:
|
782
|
+
- value: molar entropy
|
783
|
+
lang: en
|
784
|
+
thermodynamic_temperature:
|
785
|
+
power: -1
|
786
|
+
symbol: Theta
|
787
|
+
time:
|
788
|
+
power: -2
|
789
|
+
symbol: T
|
527
790
|
mass:
|
528
|
-
|
791
|
+
power: 1
|
529
792
|
symbol: M
|
793
|
+
short: molar_entropy
|
794
|
+
- electric_current:
|
795
|
+
power: 1
|
796
|
+
symbol: I
|
797
|
+
identifiers:
|
798
|
+
- type: nist
|
799
|
+
id: NISTd49
|
800
|
+
- type: unitsml
|
801
|
+
id: d:exposure
|
802
|
+
names:
|
803
|
+
- value: exposure
|
804
|
+
lang: en
|
530
805
|
time:
|
531
|
-
|
806
|
+
power: 1
|
532
807
|
symbol: T
|
533
|
-
thermodynamic_temperature:
|
534
|
-
powerNumerator: -1
|
535
|
-
symbol: Theta
|
536
|
-
amount_of_substance:
|
537
|
-
powerNumerator: -1
|
538
|
-
symbol: N
|
539
|
-
|
540
|
-
NISTd55:
|
541
808
|
mass:
|
542
|
-
|
809
|
+
power: -1
|
543
810
|
symbol: M
|
811
|
+
short: exposure
|
812
|
+
- identifiers:
|
813
|
+
- type: nist
|
814
|
+
id: NISTd5
|
815
|
+
- type: unitsml
|
816
|
+
id: d:temperature
|
817
|
+
names:
|
818
|
+
- value: temperature
|
819
|
+
lang: en
|
820
|
+
thermodynamic_temperature:
|
821
|
+
power: 1
|
822
|
+
symbol: Theta
|
823
|
+
symbols:
|
824
|
+
- latex: "\\ensuremath{\\mathsf{\\Theta}}"
|
825
|
+
unicode: "\U0001D767"
|
826
|
+
ascii: Theta
|
827
|
+
html: "𝝠"
|
828
|
+
id: dim_Theta
|
829
|
+
mathml: "<mi mathvariant='sans-serif'>Θ</mi>"
|
830
|
+
short: temperature
|
831
|
+
- identifiers:
|
832
|
+
- type: nist
|
833
|
+
id: NISTd50
|
834
|
+
- type: unitsml
|
835
|
+
id: d:absorbed_dose_rate
|
836
|
+
length:
|
837
|
+
power: 2
|
838
|
+
symbol: L
|
839
|
+
names:
|
840
|
+
- value: absorbed dose rate
|
841
|
+
lang: en
|
544
842
|
time:
|
545
|
-
|
843
|
+
power: -3
|
546
844
|
symbol: T
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
|
845
|
+
short: absorbed_dose_rate
|
846
|
+
- identifiers:
|
847
|
+
- type: nist
|
848
|
+
id: NISTd51
|
849
|
+
- type: unitsml
|
850
|
+
id: d:surface_density
|
552
851
|
length:
|
553
|
-
|
852
|
+
power: -2
|
554
853
|
symbol: L
|
854
|
+
names:
|
855
|
+
- value: surface density
|
856
|
+
lang: en
|
555
857
|
mass:
|
556
|
-
|
858
|
+
power: 1
|
557
859
|
symbol: M
|
860
|
+
short: surface_density
|
861
|
+
- identifiers:
|
862
|
+
- type: nist
|
863
|
+
id: NISTd52
|
864
|
+
- type: unitsml
|
865
|
+
id: d:fluidity
|
866
|
+
length:
|
867
|
+
power: 1
|
868
|
+
symbol: L
|
869
|
+
names:
|
870
|
+
- value: fluidity
|
871
|
+
lang: en
|
558
872
|
time:
|
559
|
-
|
873
|
+
power: 1
|
560
874
|
symbol: T
|
561
|
-
electric_current:
|
562
|
-
powerNumerator: 2
|
563
|
-
symbol: I
|
564
|
-
|
565
|
-
NISTd53:
|
566
875
|
mass:
|
567
|
-
|
876
|
+
power: -1
|
568
877
|
symbol: M
|
878
|
+
short: fluidity
|
879
|
+
- electric_current:
|
880
|
+
power: 1
|
881
|
+
symbol: I
|
882
|
+
identifiers:
|
883
|
+
- type: nist
|
884
|
+
id: NISTd53
|
885
|
+
- type: unitsml
|
886
|
+
id: d:surface_charge_density
|
887
|
+
names:
|
888
|
+
- value: surface charge density
|
889
|
+
lang: en
|
569
890
|
time:
|
570
|
-
|
891
|
+
power: 1
|
571
892
|
symbol: T
|
572
|
-
|
573
|
-
|
893
|
+
mass:
|
894
|
+
power: -2
|
895
|
+
symbol: M
|
896
|
+
short: surface_charge_density
|
897
|
+
- electric_current:
|
898
|
+
power: 2
|
574
899
|
symbol: I
|
575
|
-
|
576
|
-
|
900
|
+
identifiers:
|
901
|
+
- type: nist
|
902
|
+
id: NISTd54
|
903
|
+
- type: unitsml
|
904
|
+
id: d:magnetizability
|
577
905
|
length:
|
578
|
-
|
906
|
+
power: 2
|
579
907
|
symbol: L
|
580
|
-
|
581
|
-
|
582
|
-
|
908
|
+
names:
|
909
|
+
- value: magnetizability
|
910
|
+
lang: en
|
583
911
|
time:
|
584
|
-
|
912
|
+
power: 2
|
585
913
|
symbol: T
|
586
|
-
|
587
|
-
NISTd59:
|
588
|
-
length:
|
589
|
-
powerNumerator: 2
|
590
|
-
symbol: L
|
591
914
|
mass:
|
592
|
-
|
915
|
+
power: 1
|
593
916
|
symbol: M
|
594
|
-
|
595
|
-
|
596
|
-
|
597
|
-
|
598
|
-
|
917
|
+
short: magnetizability
|
918
|
+
- amount_of_substance:
|
919
|
+
power: 1
|
920
|
+
symbol: "N"
|
921
|
+
identifiers:
|
922
|
+
- type: nist
|
923
|
+
id: NISTd55
|
924
|
+
- type: unitsml
|
925
|
+
id: d:catalytic_activity_concentration
|
926
|
+
names:
|
927
|
+
- value: catalytic activity concentration
|
928
|
+
lang: en
|
929
|
+
time:
|
930
|
+
power: -1
|
931
|
+
symbol: T
|
599
932
|
mass:
|
600
|
-
|
933
|
+
power: -3
|
601
934
|
symbol: M
|
602
|
-
|
603
|
-
|
935
|
+
short: catalytic_activity_concentration
|
936
|
+
- identifiers:
|
937
|
+
- type: nist
|
938
|
+
id: NISTd56
|
939
|
+
- type: unitsml
|
940
|
+
id: d:kinematic_viscosity
|
604
941
|
length:
|
605
|
-
|
606
|
-
symbol: L
|
607
|
-
|
608
|
-
NISTd56:
|
609
|
-
length:
|
610
|
-
powerNumerator: 2
|
942
|
+
power: 2
|
611
943
|
symbol: L
|
944
|
+
names:
|
945
|
+
- value: kinematic viscosity
|
946
|
+
lang: en
|
612
947
|
time:
|
613
|
-
|
948
|
+
power: -1
|
614
949
|
symbol: T
|
615
|
-
|
616
|
-
|
950
|
+
short: kinematic_viscosity
|
951
|
+
- identifiers:
|
952
|
+
- type: nist
|
953
|
+
id: NISTd57
|
954
|
+
- type: unitsml
|
955
|
+
id: d:area_moment_of_inertia
|
956
|
+
length:
|
957
|
+
power: 4
|
958
|
+
symbol: L
|
959
|
+
names:
|
960
|
+
- value: area moment of inertia
|
961
|
+
lang: en
|
962
|
+
short: area_moment_of_inertia
|
963
|
+
- identifiers:
|
964
|
+
- type: nist
|
965
|
+
id: NISTd58
|
966
|
+
- type: unitsml
|
967
|
+
id: d:linear_density
|
617
968
|
length:
|
618
|
-
|
969
|
+
power: -1
|
619
970
|
symbol: L
|
971
|
+
names:
|
972
|
+
- value: linear density
|
973
|
+
lang: en
|
620
974
|
mass:
|
621
|
-
|
975
|
+
power: 1
|
622
976
|
symbol: M
|
623
|
-
|
624
|
-
|
625
|
-
|
626
|
-
|
627
|
-
|
977
|
+
short: linear_density
|
978
|
+
- identifiers:
|
979
|
+
- type: nist
|
980
|
+
id: NISTd59
|
981
|
+
- type: unitsml
|
982
|
+
id: d:mass_moment_of_inertia
|
628
983
|
length:
|
629
|
-
|
984
|
+
power: 2
|
630
985
|
symbol: L
|
986
|
+
names:
|
987
|
+
- value: mass moment of inertia
|
988
|
+
lang: en
|
631
989
|
mass:
|
632
|
-
|
990
|
+
power: 1
|
633
991
|
symbol: M
|
992
|
+
short: mass_moment_of_inertia
|
993
|
+
- amount_of_substance:
|
994
|
+
power: 1
|
995
|
+
symbol: "N"
|
996
|
+
symbols:
|
997
|
+
- latex: "\\ensuremath{\\mathsf{N}}"
|
998
|
+
unicode: "\U0001D5AD"
|
999
|
+
ascii: "N"
|
1000
|
+
html: "𝖭"
|
1001
|
+
id: dim_N
|
1002
|
+
mathml: "<mi mathvariant='sans-serif'>N</mi>"
|
1003
|
+
identifiers:
|
1004
|
+
- type: nist
|
1005
|
+
id: NISTd6
|
1006
|
+
- type: unitsml
|
1007
|
+
id: d:substance_amount
|
1008
|
+
names:
|
1009
|
+
- value: substance amount
|
1010
|
+
lang: en
|
1011
|
+
short: substance_amount
|
1012
|
+
- identifiers:
|
1013
|
+
- type: nist
|
1014
|
+
id: NISTd60
|
1015
|
+
- type: unitsml
|
1016
|
+
id: d:action
|
1017
|
+
length:
|
1018
|
+
power: 2
|
1019
|
+
symbol: L
|
1020
|
+
names:
|
1021
|
+
- value: action
|
1022
|
+
lang: en
|
634
1023
|
time:
|
635
|
-
|
1024
|
+
power: -1
|
636
1025
|
symbol: T
|
637
|
-
|
638
|
-
|
1026
|
+
mass:
|
1027
|
+
power: 1
|
1028
|
+
symbol: M
|
1029
|
+
short: action
|
1030
|
+
- identifiers:
|
1031
|
+
- type: nist
|
1032
|
+
id: NISTd61
|
1033
|
+
- type: unitsml
|
1034
|
+
id: d:momentum
|
639
1035
|
length:
|
640
|
-
|
1036
|
+
power: 1
|
641
1037
|
symbol: L
|
1038
|
+
names:
|
1039
|
+
- value: momentum
|
1040
|
+
lang: en
|
1041
|
+
time:
|
1042
|
+
power: -1
|
1043
|
+
symbol: T
|
642
1044
|
mass:
|
643
|
-
|
1045
|
+
power: 1
|
644
1046
|
symbol: M
|
1047
|
+
short: momentum
|
1048
|
+
- identifiers:
|
1049
|
+
- type: nist
|
1050
|
+
id: NISTd62
|
1051
|
+
- type: unitsml
|
1052
|
+
id: d:gravitational_constant
|
1053
|
+
length:
|
1054
|
+
power: 3
|
1055
|
+
symbol: L
|
1056
|
+
names:
|
1057
|
+
- value: gravitational constant
|
1058
|
+
lang: en
|
645
1059
|
time:
|
646
|
-
|
1060
|
+
power: -2
|
647
1061
|
symbol: T
|
648
|
-
|
649
|
-
|
1062
|
+
mass:
|
1063
|
+
power: -1
|
1064
|
+
symbol: M
|
1065
|
+
short: gravitational_constant
|
1066
|
+
- identifiers:
|
1067
|
+
- type: nist
|
1068
|
+
id: NISTd63
|
1069
|
+
- type: unitsml
|
1070
|
+
id: d:compressibility
|
650
1071
|
length:
|
651
|
-
|
1072
|
+
power: 1
|
652
1073
|
symbol: L
|
1074
|
+
names:
|
1075
|
+
- value: compressibility
|
1076
|
+
lang: en
|
1077
|
+
time:
|
1078
|
+
power: 2
|
1079
|
+
symbol: T
|
653
1080
|
mass:
|
654
|
-
|
1081
|
+
power: -1
|
655
1082
|
symbol: M
|
1083
|
+
short: compressibility
|
1084
|
+
- dimensionless: true
|
1085
|
+
identifiers:
|
1086
|
+
- type: nist
|
1087
|
+
id: NISTd64
|
1088
|
+
- type: unitsml
|
1089
|
+
id: d:solid_angle
|
1090
|
+
names:
|
1091
|
+
- value: solid angle
|
1092
|
+
lang: en
|
1093
|
+
plane_angle:
|
1094
|
+
power: 1
|
1095
|
+
symbol: phi
|
1096
|
+
short: solid_angle
|
1097
|
+
- identifiers:
|
1098
|
+
- type: nist
|
1099
|
+
id: NISTd65
|
1100
|
+
- type: unitsml
|
1101
|
+
id: d:mass_flow_rate
|
1102
|
+
names:
|
1103
|
+
- value: mass flow rate
|
1104
|
+
lang: en
|
656
1105
|
time:
|
657
|
-
|
1106
|
+
power: -1
|
658
1107
|
symbol: T
|
659
|
-
|
660
|
-
NISTd68:
|
661
|
-
thermodynamic_temperature:
|
662
|
-
powerNumerator: -1
|
663
|
-
symbol: Theta
|
664
|
-
|
665
|
-
NISTd69:
|
666
|
-
length:
|
667
|
-
powerNumerator: -1
|
668
|
-
symbol: L
|
669
1108
|
mass:
|
670
|
-
|
1109
|
+
power: 1
|
671
1110
|
symbol: M
|
1111
|
+
short: mass_flow_rate
|
1112
|
+
- identifiers:
|
1113
|
+
- type: nist
|
1114
|
+
id: NISTd66
|
1115
|
+
- type: unitsml
|
1116
|
+
id: d:volume_flow_rate
|
1117
|
+
length:
|
1118
|
+
power: 3
|
1119
|
+
symbol: L
|
1120
|
+
names:
|
1121
|
+
- value: volume flow rate
|
1122
|
+
lang: en
|
672
1123
|
time:
|
673
|
-
|
1124
|
+
power: -1
|
674
1125
|
symbol: T
|
1126
|
+
short: volume_flow_rate
|
1127
|
+
- dimensionless: true
|
1128
|
+
identifiers:
|
1129
|
+
- type: nist
|
1130
|
+
id: NISTd67
|
1131
|
+
- type: unitsml
|
1132
|
+
id: d:logarithmic_ratio
|
1133
|
+
names:
|
1134
|
+
- value: logarithmic ratio
|
1135
|
+
lang: en
|
1136
|
+
short: logarithmic_ratio
|
1137
|
+
- identifiers:
|
1138
|
+
- type: nist
|
1139
|
+
id: NISTd68
|
1140
|
+
- type: unitsml
|
1141
|
+
id: d:linear_expansion_coefficient
|
1142
|
+
names:
|
1143
|
+
- value: linear expansion coefficient
|
1144
|
+
lang: en
|
675
1145
|
thermodynamic_temperature:
|
676
|
-
|
1146
|
+
power: -1
|
677
1147
|
symbol: Theta
|
678
|
-
|
679
|
-
|
1148
|
+
short: linear_expansion_coefficient
|
1149
|
+
- identifiers:
|
1150
|
+
- type: nist
|
1151
|
+
id: NISTd69
|
1152
|
+
- type: unitsml
|
1153
|
+
id: d:pressure_coefficient
|
680
1154
|
length:
|
681
|
-
|
1155
|
+
power: -1
|
682
1156
|
symbol: L
|
683
|
-
|
684
|
-
|
685
|
-
|
1157
|
+
names:
|
1158
|
+
- value: pressure coefficient
|
1159
|
+
lang: en
|
1160
|
+
thermodynamic_temperature:
|
1161
|
+
power: -1
|
1162
|
+
symbol: Theta
|
686
1163
|
time:
|
687
|
-
|
1164
|
+
power: -2
|
688
1165
|
symbol: T
|
689
|
-
|
690
|
-
NISTd71:
|
691
1166
|
mass:
|
692
|
-
|
1167
|
+
power: 1
|
693
1168
|
symbol: M
|
1169
|
+
short: pressure_coefficient
|
1170
|
+
- identifiers:
|
1171
|
+
- type: nist
|
1172
|
+
id: NISTd7
|
1173
|
+
- type: unitsml
|
1174
|
+
id: d:luminous_intensity
|
1175
|
+
luminous_intensity:
|
1176
|
+
power: 1
|
1177
|
+
symbol: J
|
1178
|
+
symbols:
|
1179
|
+
- latex: "\\ensuremath{\\mathsf{J}}"
|
1180
|
+
unicode: "\U0001D5A9"
|
1181
|
+
ascii: J
|
1182
|
+
html: "𝖩"
|
1183
|
+
id: dim_J
|
1184
|
+
mathml: "<mi mathvariant='sans-serif'>J</mi>"
|
1185
|
+
names:
|
1186
|
+
- value: luminous intensity
|
1187
|
+
lang: en
|
1188
|
+
short: luminous_intensity
|
1189
|
+
- identifiers:
|
1190
|
+
- type: nist
|
1191
|
+
id: NISTd70
|
1192
|
+
- type: unitsml
|
1193
|
+
id: d:isothermal_compressibility
|
1194
|
+
length:
|
1195
|
+
power: 1
|
1196
|
+
symbol: L
|
1197
|
+
names:
|
1198
|
+
- value: isothermal compressibility
|
1199
|
+
lang: en
|
694
1200
|
time:
|
695
|
-
|
1201
|
+
power: 2
|
696
1202
|
symbol: T
|
1203
|
+
mass:
|
1204
|
+
power: -1
|
1205
|
+
symbol: M
|
1206
|
+
short: isothermal_compressibility
|
1207
|
+
- identifiers:
|
1208
|
+
- type: nist
|
1209
|
+
id: NISTd71
|
1210
|
+
- type: unitsml
|
1211
|
+
id: d:heat_transfer_coefficient
|
1212
|
+
names:
|
1213
|
+
- value: heat transfer coefficient
|
1214
|
+
lang: en
|
697
1215
|
thermodynamic_temperature:
|
698
|
-
|
1216
|
+
power: -1
|
699
1217
|
symbol: Theta
|
700
|
-
|
701
|
-
|
702
|
-
|
703
|
-
plane_angle:
|
704
|
-
powerNumerator: 1
|
705
|
-
symbol: phi
|
706
|
-
|
707
|
-
NISTd65:
|
1218
|
+
time:
|
1219
|
+
power: -3
|
1220
|
+
symbol: T
|
708
1221
|
mass:
|
709
|
-
|
1222
|
+
power: 1
|
710
1223
|
symbol: M
|
1224
|
+
short: heat_transfer_coefficient
|
1225
|
+
- electric_current:
|
1226
|
+
power: 1
|
1227
|
+
symbol: I
|
1228
|
+
identifiers:
|
1229
|
+
- type: nist
|
1230
|
+
id: NISTd72
|
1231
|
+
- type: unitsml
|
1232
|
+
id: d:electric_dipole_moment
|
1233
|
+
length:
|
1234
|
+
power: 1
|
1235
|
+
symbol: L
|
1236
|
+
names:
|
1237
|
+
- value: electric dipole moment
|
1238
|
+
lang: en
|
711
1239
|
time:
|
712
|
-
|
1240
|
+
power: 1
|
713
1241
|
symbol: T
|
714
|
-
|
715
|
-
|
1242
|
+
short: electric_dipole_moment
|
1243
|
+
- electric_current:
|
1244
|
+
power: 1
|
1245
|
+
symbol: I
|
1246
|
+
identifiers:
|
1247
|
+
- type: nist
|
1248
|
+
id: NISTd73
|
1249
|
+
- type: unitsml
|
1250
|
+
id: d:magnetic_dipole_moment
|
716
1251
|
length:
|
717
|
-
|
1252
|
+
power: 2
|
718
1253
|
symbol: L
|
1254
|
+
names:
|
1255
|
+
- value: magnetic dipole moment
|
1256
|
+
lang: en
|
1257
|
+
short: magnetic_dipole_moment
|
1258
|
+
- electric_current:
|
1259
|
+
power: -1
|
1260
|
+
symbol: I
|
1261
|
+
identifiers:
|
1262
|
+
- type: nist
|
1263
|
+
id: NISTd74
|
1264
|
+
- type: unitsml
|
1265
|
+
id: d:electric_field_gradient
|
1266
|
+
names:
|
1267
|
+
- value: electric field gradient
|
1268
|
+
lang: en
|
719
1269
|
time:
|
720
|
-
|
1270
|
+
power: -3
|
721
1271
|
symbol: T
|
722
|
-
|
723
|
-
NISTd67:
|
724
|
-
dimensionless: true
|
725
|
-
NISTd76:
|
726
1272
|
mass:
|
727
|
-
|
1273
|
+
power: 1
|
728
1274
|
symbol: M
|
729
|
-
|
730
|
-
|
731
|
-
|
732
|
-
electric_current:
|
733
|
-
powerNumerator: 2
|
1275
|
+
short: electric_field_gradient
|
1276
|
+
- electric_current:
|
1277
|
+
power: 1
|
734
1278
|
symbol: I
|
735
|
-
|
736
|
-
|
1279
|
+
identifiers:
|
1280
|
+
- type: nist
|
1281
|
+
id: NISTd75
|
1282
|
+
- type: unitsml
|
1283
|
+
id: d:electric_quadrupole_moment
|
737
1284
|
length:
|
738
|
-
|
1285
|
+
power: 2
|
739
1286
|
symbol: L
|
740
|
-
|
741
|
-
|
742
|
-
|
1287
|
+
names:
|
1288
|
+
- value: electric quadrupole moment
|
1289
|
+
lang: en
|
743
1290
|
time:
|
744
|
-
|
1291
|
+
power: 1
|
745
1292
|
symbol: T
|
746
|
-
|
747
|
-
|
1293
|
+
short: electric_quadrupole_moment
|
1294
|
+
- electric_current:
|
1295
|
+
power: 2
|
748
1296
|
symbol: I
|
749
|
-
|
750
|
-
|
751
|
-
|
752
|
-
|
753
|
-
|
754
|
-
|
755
|
-
|
756
|
-
|
1297
|
+
identifiers:
|
1298
|
+
- type: nist
|
1299
|
+
id: NISTd76
|
1300
|
+
- type: unitsml
|
1301
|
+
id: d:polarizability
|
1302
|
+
names:
|
1303
|
+
- value: polarizability
|
1304
|
+
lang: en
|
757
1305
|
time:
|
758
|
-
|
1306
|
+
power: 4
|
759
1307
|
symbol: T
|
760
|
-
electric_current:
|
761
|
-
powerNumerator: 4
|
762
|
-
symbol: I
|
763
|
-
|
764
|
-
NISTd79:
|
765
1308
|
mass:
|
766
|
-
|
1309
|
+
power: 1
|
767
1310
|
symbol: M
|
768
|
-
|
769
|
-
|
770
|
-
|
771
|
-
|
772
|
-
|
1311
|
+
short: polarizability
|
1312
|
+
- electric_current:
|
1313
|
+
power: 3
|
1314
|
+
symbol: I
|
1315
|
+
identifiers:
|
1316
|
+
- type: nist
|
1317
|
+
id: NISTd77
|
1318
|
+
- type: unitsml
|
1319
|
+
id: d:hyperpolarizability_1st
|
773
1320
|
length:
|
774
|
-
|
1321
|
+
power: -1
|
775
1322
|
symbol: L
|
1323
|
+
names:
|
1324
|
+
- value: hyperpolarizability 1st
|
1325
|
+
lang: en
|
776
1326
|
time:
|
777
|
-
|
1327
|
+
power: 7
|
778
1328
|
symbol: T
|
779
|
-
|
780
|
-
|
1329
|
+
mass:
|
1330
|
+
power: -2
|
1331
|
+
symbol: M
|
1332
|
+
short: hyperpolarizability_1st
|
1333
|
+
- electric_current:
|
1334
|
+
power: 4
|
781
1335
|
symbol: I
|
782
|
-
|
783
|
-
|
1336
|
+
identifiers:
|
1337
|
+
- type: nist
|
1338
|
+
id: NISTd78
|
1339
|
+
- type: unitsml
|
1340
|
+
id: d:hyperpolarizability_2nd
|
784
1341
|
length:
|
785
|
-
|
1342
|
+
power: -2
|
786
1343
|
symbol: L
|
787
|
-
|
788
|
-
|
789
|
-
|
790
|
-
|
791
|
-
NISTd74:
|
792
|
-
mass:
|
793
|
-
powerNumerator: 1
|
794
|
-
symbol: M
|
1344
|
+
names:
|
1345
|
+
- value: hyperpolarizability 2nd
|
1346
|
+
lang: en
|
795
1347
|
time:
|
796
|
-
|
1348
|
+
power: 10
|
797
1349
|
symbol: T
|
798
|
-
|
799
|
-
|
800
|
-
symbol:
|
801
|
-
|
802
|
-
|
1350
|
+
mass:
|
1351
|
+
power: -3
|
1352
|
+
symbol: M
|
1353
|
+
short: hyperpolarizability_2nd
|
1354
|
+
- amount_of_substance:
|
1355
|
+
power: 1
|
1356
|
+
symbol: "N"
|
1357
|
+
identifiers:
|
1358
|
+
- type: nist
|
1359
|
+
id: NISTd79
|
1360
|
+
- type: unitsml
|
1361
|
+
id: d:molality
|
1362
|
+
names:
|
1363
|
+
- value: molality
|
1364
|
+
lang: en
|
1365
|
+
mass:
|
1366
|
+
power: 1
|
1367
|
+
symbol: M
|
1368
|
+
short: molality
|
1369
|
+
- identifiers:
|
1370
|
+
- type: nist
|
1371
|
+
id: NISTd8
|
1372
|
+
- type: unitsml
|
1373
|
+
id: d:area
|
1374
|
+
length:
|
1375
|
+
power: 2
|
1376
|
+
symbol: L
|
1377
|
+
names:
|
1378
|
+
- value: area
|
1379
|
+
lang: en
|
1380
|
+
short: area
|
1381
|
+
- dimensionless: true
|
1382
|
+
identifiers:
|
1383
|
+
- type: nist
|
1384
|
+
id: NISTd80
|
1385
|
+
- type: unitsml
|
1386
|
+
id: d:ratio_quantity
|
1387
|
+
names:
|
1388
|
+
- value: ratio quantity
|
1389
|
+
lang: en
|
1390
|
+
short: ratio_quantity
|
1391
|
+
- dimensionless: true
|
1392
|
+
identifiers:
|
1393
|
+
- type: nist
|
1394
|
+
id: NISTd83
|
1395
|
+
- type: unitsml
|
1396
|
+
id: d:level_of_field_quantity
|
1397
|
+
names:
|
1398
|
+
- value: level of field quantity
|
1399
|
+
lang: en
|
1400
|
+
short: level_of_field_quantity
|
1401
|
+
- dimensionless: true
|
1402
|
+
identifiers:
|
1403
|
+
- type: nist
|
1404
|
+
id: NISTd84
|
1405
|
+
- type: unitsml
|
1406
|
+
id: d:field_power_level
|
1407
|
+
names:
|
1408
|
+
- value: field power level
|
1409
|
+
lang: en
|
1410
|
+
short: field_power_level
|
1411
|
+
- dimensionless: true
|
1412
|
+
identifiers:
|
1413
|
+
- type: nist
|
1414
|
+
id: NISTd85
|
1415
|
+
- type: unitsml
|
1416
|
+
id: d:mass_mole_fraction
|
1417
|
+
names:
|
1418
|
+
- value: mass mole fraction
|
1419
|
+
lang: en
|
1420
|
+
short: mass_mole_fraction
|
1421
|
+
- dimensionless: true
|
1422
|
+
identifiers:
|
1423
|
+
- type: nist
|
1424
|
+
id: NISTd9
|
1425
|
+
- type: unitsml
|
1426
|
+
id: d:plane_angle
|
1427
|
+
names:
|
1428
|
+
- value: plane angle
|
1429
|
+
lang: en
|
1430
|
+
plane_angle:
|
1431
|
+
power: 1
|
1432
|
+
symbol: phi
|
1433
|
+
symbols:
|
1434
|
+
- latex: "\\ensuremath{\\mathsf{\\phi}}"
|
1435
|
+
unicode: "\U0001D785"
|
1436
|
+
ascii: phi
|
1437
|
+
html: "𝞅"
|
1438
|
+
id: dim_phi
|
1439
|
+
mathml: "<mi mathvariant='sans-serif'>φ</mi>"
|
1440
|
+
short: plane_angle
|
1441
|
+
- dimensionless: true
|
1442
|
+
identifiers:
|
1443
|
+
- type: nist
|
1444
|
+
id: NISTd94
|
1445
|
+
- type: unitsml
|
1446
|
+
id: d:acidity_index
|
1447
|
+
names:
|
1448
|
+
- value: acidity index
|
1449
|
+
lang: en
|
1450
|
+
short: acidity_index
|
1451
|
+
- dimensionless: true
|
1452
|
+
identifiers:
|
1453
|
+
- type: nist
|
1454
|
+
id: NISTd95
|
1455
|
+
- type: unitsml
|
1456
|
+
id: d:storage_capacity
|
1457
|
+
names:
|
1458
|
+
- value: storage capacity
|
1459
|
+
lang: en
|
1460
|
+
short: storage_capacity
|
1461
|
+
- identifiers:
|
1462
|
+
- type: nist
|
1463
|
+
id: NISTd96
|
1464
|
+
- type: unitsml
|
1465
|
+
id: d:fluence
|
803
1466
|
length:
|
804
|
-
|
1467
|
+
power: -2
|
805
1468
|
symbol: L
|
1469
|
+
names:
|
1470
|
+
- value: fluence
|
1471
|
+
lang: en
|
1472
|
+
short: fluence
|
1473
|
+
- identifiers:
|
1474
|
+
- type: nist
|
1475
|
+
id: NISTd97
|
1476
|
+
- type: unitsml
|
1477
|
+
id: d:fluence_rate
|
1478
|
+
length:
|
1479
|
+
power: -2
|
1480
|
+
symbol: L
|
1481
|
+
names:
|
1482
|
+
- value: fluence_rate
|
1483
|
+
lang: en
|
806
1484
|
time:
|
807
|
-
|
1485
|
+
power: -1
|
808
1486
|
symbol: T
|
809
|
-
|
810
|
-
|
811
|
-
|
812
|
-
|
813
|
-
|
814
|
-
|
815
|
-
|
816
|
-
|
817
|
-
|
818
|
-
|
819
|
-
|
820
|
-
|
821
|
-
|
822
|
-
|
823
|
-
|
824
|
-
|
825
|
-
|
826
|
-
|
827
|
-
|
828
|
-
|
829
|
-
|
830
|
-
|
831
|
-
|
832
|
-
|
833
|
-
|
834
|
-
|
835
|
-
#dimensionless: true
|
836
|
-
|
837
|
-
#NISTd95:
|
838
|
-
#dimensionless: true
|
839
|
-
|
840
|
-
#NISTd94:
|
841
|
-
#dimensionless: true
|
842
|
-
|
843
|
-
#NISTd89:
|
844
|
-
#dimensionless: true
|
845
|
-
|
846
|
-
#NISTd88:
|
847
|
-
#dimensionless: true
|
848
|
-
|
849
|
-
#NISTd91:
|
850
|
-
#dimensionless: true
|
851
|
-
|
852
|
-
#NISTd90:
|
853
|
-
#dimensionless: true
|
854
|
-
|
855
|
-
#NISTd92:
|
856
|
-
#dimensionless: true
|
857
|
-
|
858
|
-
#NISTd93:
|
859
|
-
#dimensionless: true
|
1487
|
+
short: fluence_rate
|
1488
|
+
- dimensionless: true
|
1489
|
+
identifiers:
|
1490
|
+
- type: nist
|
1491
|
+
id: NISTd98
|
1492
|
+
- type: unitsml
|
1493
|
+
id: d:phase
|
1494
|
+
names:
|
1495
|
+
- value: phase
|
1496
|
+
lang: en
|
1497
|
+
plane_angle:
|
1498
|
+
power: 1
|
1499
|
+
symbol: phi
|
1500
|
+
short: phase
|
1501
|
+
- identifiers:
|
1502
|
+
- type: nist
|
1503
|
+
id: NISTd99
|
1504
|
+
- type: unitsml
|
1505
|
+
id: d:fuel_efficiency
|
1506
|
+
length:
|
1507
|
+
power: -2
|
1508
|
+
symbol: L
|
1509
|
+
names:
|
1510
|
+
- value: fuel efficiency
|
1511
|
+
lang: en
|
1512
|
+
short: fuel_efficiency
|