unitsml 0.5.1 → 0.6.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.
Files changed (75) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/rake.yml +8 -0
  3. data/.github/workflows/release.yml +7 -1
  4. data/.gitmodules +0 -3
  5. data/.rubocop.yml +18 -0
  6. data/.rubocop_todo.yml +495 -0
  7. data/Gemfile +8 -3
  8. data/Rakefile +3 -1
  9. data/bin/console +1 -0
  10. data/docs/README.adoc +2 -2
  11. data/lib/unitsml/dimension.rb +48 -34
  12. data/lib/unitsml/errors/base_error.rb +8 -0
  13. data/lib/unitsml/errors/plurimath_load_error.rb +1 -1
  14. data/lib/unitsml/errors.rb +8 -0
  15. data/lib/unitsml/extender.rb +16 -11
  16. data/lib/unitsml/fenced.rb +28 -8
  17. data/lib/unitsml/fenced_numeric.rb +13 -0
  18. data/lib/unitsml/formula.rb +35 -26
  19. data/lib/unitsml/intermediate_exp_rules.rb +68 -17
  20. data/lib/unitsml/model/dimension.rb +4 -14
  21. data/lib/unitsml/model/dimension_quantities/quantity.rb +2 -0
  22. data/lib/unitsml/model/dimension_quantities.rb +21 -0
  23. data/lib/unitsml/model/prefix.rb +4 -8
  24. data/lib/unitsml/model/prefixes/name.rb +5 -4
  25. data/lib/unitsml/model/prefixes/symbol.rb +3 -2
  26. data/lib/unitsml/model/prefixes.rb +10 -0
  27. data/lib/unitsml/model/quantities/name.rb +4 -3
  28. data/lib/unitsml/model/quantities.rb +9 -0
  29. data/lib/unitsml/model/quantity.rb +4 -6
  30. data/lib/unitsml/model/unit.rb +4 -9
  31. data/lib/unitsml/model/units/enumerated_root_unit.rb +1 -0
  32. data/lib/unitsml/model/units/name.rb +4 -3
  33. data/lib/unitsml/model/units/root_units.rb +3 -2
  34. data/lib/unitsml/model/units/symbol.rb +5 -2
  35. data/lib/unitsml/model/units/system.rb +4 -3
  36. data/lib/unitsml/model/units.rb +13 -0
  37. data/lib/unitsml/model.rb +15 -0
  38. data/lib/unitsml/namespace.rb +8 -0
  39. data/lib/unitsml/number.rb +79 -0
  40. data/lib/unitsml/parse.rb +31 -19
  41. data/lib/unitsml/parser.rb +5 -6
  42. data/lib/unitsml/prefix.rb +11 -9
  43. data/lib/unitsml/sqrt.rb +3 -3
  44. data/lib/unitsml/transform.rb +117 -55
  45. data/lib/unitsml/unit.rb +43 -33
  46. data/lib/unitsml/unitsdb/dimension.rb +5 -3
  47. data/lib/unitsml/unitsdb/dimensions.rb +6 -4
  48. data/lib/unitsml/unitsdb/prefixes.rb +0 -2
  49. data/lib/unitsml/unitsdb/quantities.rb +0 -2
  50. data/lib/unitsml/unitsdb/units.rb +6 -4
  51. data/lib/unitsml/unitsdb.rb +17 -23
  52. data/lib/unitsml/utility.rb +91 -42
  53. data/lib/unitsml/version.rb +3 -1
  54. data/lib/unitsml.rb +56 -38
  55. data/unitsml.gemspec +24 -19
  56. metadata +29 -35
  57. data/lib/unitsml/error.rb +0 -8
  58. data/unitsdb/LICENSE.md +0 -53
  59. data/unitsdb/README.adoc +0 -1071
  60. data/unitsdb/RELEASE-NOTES.adoc +0 -269
  61. data/unitsdb/dimensions.yaml +0 -1512
  62. data/unitsdb/prefixes.yaml +0 -774
  63. data/unitsdb/quantities.yaml +0 -3113
  64. data/unitsdb/scales.yaml +0 -97
  65. data/unitsdb/schemas/README.md +0 -159
  66. data/unitsdb/schemas/dimensions-schema.yaml +0 -157
  67. data/unitsdb/schemas/prefixes-schema.yaml +0 -159
  68. data/unitsdb/schemas/quantities-schema.yaml +0 -120
  69. data/unitsdb/schemas/scales-schema.yaml +0 -109
  70. data/unitsdb/schemas/unit_systems-schema.yaml +0 -120
  71. data/unitsdb/schemas/units-schema.yaml +0 -219
  72. data/unitsdb/spec/units_spec.rb +0 -20
  73. data/unitsdb/unit_systems.yaml +0 -74
  74. data/unitsdb/units.yaml +0 -13101
  75. data/unitsdb/validate_schemas.rb +0 -208
@@ -1,1512 +0,0 @@
1
- # yaml-language-server: $schema=schemas/dimensions-schema.yaml
2
- ---
3
- schema_version: 2.0.0
4
- dimensions:
5
- - identifiers:
6
- - type: nist
7
- id: NISTd1
8
- - type: unitsml
9
- id: d:length
10
- length:
11
- power: 1
12
- symbol: L
13
- symbols:
14
- - latex: "\\ensuremath{\\mathsf{L}}"
15
- unicode: "\U0001D5AB"
16
- ascii: L
17
- html: "𝖫"
18
- id: dim_L
19
- mathml: "<mi mathvariant='sans-serif'>L</mi>"
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
29
- length:
30
- power: 3
31
- symbol: L
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
73
- length:
74
- power: 1
75
- symbol: L
76
- names:
77
- - value: velocity
78
- lang: en
79
- time:
80
- power: -1
81
- symbol: T
82
- short: velocity
83
- - identifiers:
84
- - type: nist
85
- id: NISTd12
86
- - type: unitsml
87
- id: d:force
88
- length:
89
- power: 1
90
- symbol: L
91
- names:
92
- - value: force
93
- lang: en
94
- time:
95
- power: -2
96
- symbol: T
97
- mass:
98
- power: 1
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
112
- time:
113
- power: -2
114
- symbol: T
115
- mass:
116
- power: 1
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
130
- time:
131
- power: -2
132
- symbol: T
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
142
- length:
143
- power: 2
144
- symbol: L
145
- names:
146
- - value: energy
147
- lang: en
148
- time:
149
- power: -2
150
- symbol: T
151
- mass:
152
- power: 1
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
166
- time:
167
- power: -3
168
- symbol: T
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
184
- time:
185
- power: 1
186
- symbol: T
187
- short: electric_charge
188
- - electric_current:
189
- power: -1
190
- symbol: I
191
- identifiers:
192
- - type: nist
193
- id: NISTd18
194
- - type: unitsml
195
- id: d:electric_potential_difference
196
- length:
197
- power: 2
198
- symbol: L
199
- names:
200
- - value: electric potential difference
201
- lang: en
202
- time:
203
- power: -3
204
- symbol: T
205
- mass:
206
- power: 1
207
- symbol: M
208
- short: electric_potential_difference
209
- - electric_current:
210
- power: 2
211
- symbol: I
212
- identifiers:
213
- - type: nist
214
- id: NISTd19
215
- - type: unitsml
216
- id: d:capacitance
217
- length:
218
- power: -2
219
- symbol: L
220
- names:
221
- - value: capacitance
222
- lang: en
223
- time:
224
- power: 4
225
- symbol: T
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: "&#x1D5AC;"
246
- id: dim_M
247
- mathml: "<mi mathvariant='sans-serif'>M</mi>"
248
- short: mass
249
- - electric_current:
250
- power: -2
251
- symbol: I
252
- identifiers:
253
- - type: nist
254
- id: NISTd20
255
- - type: unitsml
256
- id: d:electric_resistance
257
- length:
258
- power: 2
259
- symbol: L
260
- names:
261
- - value: electric resistance
262
- lang: en
263
- time:
264
- power: -3
265
- symbol: T
266
- mass:
267
- power: 1
268
- symbol: M
269
- short: electric_resistance
270
- - electric_current:
271
- power: 2
272
- symbol: I
273
- identifiers:
274
- - type: nist
275
- id: NISTd21
276
- - type: unitsml
277
- id: d:electric_conductance
278
- length:
279
- power: -2
280
- symbol: L
281
- names:
282
- - value: electric conductance
283
- lang: en
284
- time:
285
- power: 3
286
- symbol: T
287
- mass:
288
- power: -1
289
- symbol: M
290
- short: electric_conductance
291
- - electric_current:
292
- power: -1
293
- symbol: I
294
- identifiers:
295
- - type: nist
296
- id: NISTd22
297
- - type: unitsml
298
- id: d:magnetic_flux
299
- length:
300
- power: 2
301
- symbol: L
302
- names:
303
- - value: magnetic flux
304
- lang: en
305
- time:
306
- power: -2
307
- symbol: T
308
- mass:
309
- power: 1
310
- symbol: M
311
- short: magnetic_flux
312
- - electric_current:
313
- power: -2
314
- symbol: I
315
- identifiers:
316
- - type: nist
317
- id: NISTd23
318
- - type: unitsml
319
- id: d:inductance
320
- length:
321
- power: 2
322
- symbol: L
323
- names:
324
- - value: inductance
325
- lang: en
326
- time:
327
- power: -2
328
- symbol: T
329
- mass:
330
- power: 1
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
341
- time:
342
- power: -1
343
- symbol: T
344
- short: frequency
345
- - identifiers:
346
- - type: nist
347
- id: NISTd25
348
- - type: unitsml
349
- id: d:absorbed_dose
350
- length:
351
- power: 2
352
- symbol: L
353
- names:
354
- - value: absorbed dose
355
- lang: en
356
- time:
357
- power: -2
358
- symbol: T
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
371
- time:
372
- power: -1
373
- symbol: T
374
- short: catalytic_activity
375
- - identifiers:
376
- - type: nist
377
- id: NISTd27
378
- - type: unitsml
379
- id: d:illuminance
380
- length:
381
- power: -2
382
- symbol: L
383
- luminous_intensity:
384
- power: 1
385
- symbol: J
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
395
- length:
396
- power: 1
397
- symbol: L
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
410
- length:
411
- power: -1
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
425
- time:
426
- power: 1
427
- symbol: T
428
- symbols:
429
- - latex: "\\ensuremath{\\mathsf{T}}"
430
- unicode: "\U0001D5B3"
431
- ascii: T
432
- html: "&#x1D5B3;"
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
441
- length:
442
- power: -3
443
- symbol: L
444
- names:
445
- - value: mass density
446
- lang: en
447
- mass:
448
- power: 1
449
- symbol: M
450
- short: mass_density
451
- - identifiers:
452
- - type: nist
453
- id: NISTd31
454
- - type: unitsml
455
- id: d:specific_volume
456
- length:
457
- power: 3
458
- symbol: L
459
- names:
460
- - value: specific volume
461
- lang: en
462
- mass:
463
- power: -1
464
- symbol: M
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
474
- length:
475
- power: -2
476
- symbol: L
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
489
- length:
490
- power: -1
491
- symbol: L
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
504
- length:
505
- power: -3
506
- symbol: L
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
519
- time:
520
- power: -2
521
- symbol: T
522
- short: angular_acceleration
523
- - identifiers:
524
- - type: nist
525
- id: NISTd36
526
- - type: unitsml
527
- id: d:dynamic_viscosity
528
- length:
529
- power: -1
530
- symbol: L
531
- names:
532
- - value: dynamic viscosity
533
- lang: en
534
- time:
535
- power: -1
536
- symbol: T
537
- mass:
538
- power: 1
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
549
- time:
550
- power: -2
551
- symbol: T
552
- mass:
553
- power: 1
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
564
- time:
565
- power: -3
566
- symbol: T
567
- mass:
568
- power: 1
569
- symbol: M
570
- short: heat_flux_density
571
- - identifiers:
572
- - type: nist
573
- id: NISTd39
574
- - type: unitsml
575
- id: d:heat_capacity
576
- length:
577
- power: 2
578
- symbol: L
579
- names:
580
- - value: heat capacity
581
- lang: en
582
- thermodynamic_temperature:
583
- power: -1
584
- symbol: Theta
585
- time:
586
- power: -2
587
- symbol: T
588
- mass:
589
- power: 1
590
- symbol: M
591
- short: heat_capacity
592
- - electric_current:
593
- power: 1
594
- symbol: I
595
- symbols:
596
- - latex: "\\ensuremath{\\mathsf{I}}"
597
- unicode: "\U0001D5A8"
598
- ascii: I
599
- html: "&#x1D5A8;"
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
616
- length:
617
- power: 2
618
- symbol: L
619
- names:
620
- - value: specific heat capacity
621
- lang: en
622
- thermodynamic_temperature:
623
- power: -1
624
- symbol: Theta
625
- time:
626
- power: -2
627
- symbol: T
628
- short: specific_heat_capacity
629
- - identifiers:
630
- - type: nist
631
- id: NISTd41
632
- - type: unitsml
633
- id: d:thermal_conductivity
634
- length:
635
- power: 1
636
- symbol: L
637
- names:
638
- - value: thermal conductivity
639
- lang: en
640
- thermodynamic_temperature:
641
- power: -1
642
- symbol: Theta
643
- time:
644
- power: -3
645
- symbol: T
646
- mass:
647
- power: 1
648
- symbol: M
649
- short: thermal_conductivity
650
- - electric_current:
651
- power: -1
652
- symbol: I
653
- identifiers:
654
- - type: nist
655
- id: NISTd42
656
- - type: unitsml
657
- id: d:electric_field_strength
658
- length:
659
- power: 1
660
- symbol: L
661
- names:
662
- - value: electric field strength
663
- lang: en
664
- time:
665
- power: -3
666
- symbol: T
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
679
- length:
680
- power: -3
681
- symbol: L
682
- names:
683
- - value: electric charge density
684
- lang: en
685
- time:
686
- power: 1
687
- symbol: T
688
- short: electric_charge_density
689
- - electric_current:
690
- power: 1
691
- symbol: I
692
- identifiers:
693
- - type: nist
694
- id: NISTd44
695
- - type: unitsml
696
- id: d:electric_flux_density
697
- length:
698
- power: -2
699
- symbol: L
700
- names:
701
- - value: electric flux density
702
- lang: en
703
- time:
704
- power: 1
705
- symbol: T
706
- short: electric_flux_density
707
- - electric_current:
708
- power: 2
709
- symbol: I
710
- identifiers:
711
- - type: nist
712
- id: NISTd45
713
- - type: unitsml
714
- id: d:permittivity
715
- length:
716
- power: -3
717
- symbol: L
718
- names:
719
- - value: permittivity
720
- lang: en
721
- time:
722
- power: 4
723
- symbol: T
724
- mass:
725
- power: -1
726
- symbol: M
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
736
- length:
737
- power: 1
738
- symbol: L
739
- names:
740
- - value: permeability
741
- lang: en
742
- time:
743
- power: -2
744
- symbol: T
745
- mass:
746
- power: 1
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
763
- time:
764
- power: -2
765
- symbol: T
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
778
- length:
779
- power: 2
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
790
- mass:
791
- power: 1
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
805
- time:
806
- power: 1
807
- symbol: T
808
- mass:
809
- power: -1
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: "&#x1D760;"
828
- id: dim_Theta
829
- mathml: "<mi mathvariant='sans-serif'>&#x398;</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
842
- time:
843
- power: -3
844
- symbol: T
845
- short: absorbed_dose_rate
846
- - identifiers:
847
- - type: nist
848
- id: NISTd51
849
- - type: unitsml
850
- id: d:surface_density
851
- length:
852
- power: -2
853
- symbol: L
854
- names:
855
- - value: surface density
856
- lang: en
857
- mass:
858
- power: 1
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
872
- time:
873
- power: 1
874
- symbol: T
875
- mass:
876
- power: -1
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
890
- time:
891
- power: 1
892
- symbol: T
893
- mass:
894
- power: -2
895
- symbol: M
896
- short: surface_charge_density
897
- - electric_current:
898
- power: 2
899
- symbol: I
900
- identifiers:
901
- - type: nist
902
- id: NISTd54
903
- - type: unitsml
904
- id: d:magnetizability
905
- length:
906
- power: 2
907
- symbol: L
908
- names:
909
- - value: magnetizability
910
- lang: en
911
- time:
912
- power: 2
913
- symbol: T
914
- mass:
915
- power: 1
916
- symbol: M
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
932
- mass:
933
- power: -3
934
- symbol: M
935
- short: catalytic_activity_concentration
936
- - identifiers:
937
- - type: nist
938
- id: NISTd56
939
- - type: unitsml
940
- id: d:kinematic_viscosity
941
- length:
942
- power: 2
943
- symbol: L
944
- names:
945
- - value: kinematic viscosity
946
- lang: en
947
- time:
948
- power: -1
949
- symbol: T
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
968
- length:
969
- power: -1
970
- symbol: L
971
- names:
972
- - value: linear density
973
- lang: en
974
- mass:
975
- power: 1
976
- symbol: M
977
- short: linear_density
978
- - identifiers:
979
- - type: nist
980
- id: NISTd59
981
- - type: unitsml
982
- id: d:mass_moment_of_inertia
983
- length:
984
- power: 2
985
- symbol: L
986
- names:
987
- - value: mass moment of inertia
988
- lang: en
989
- mass:
990
- power: 1
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: "&#x1D5AD;"
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
1023
- time:
1024
- power: -1
1025
- symbol: T
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
1035
- length:
1036
- power: 1
1037
- symbol: L
1038
- names:
1039
- - value: momentum
1040
- lang: en
1041
- time:
1042
- power: -1
1043
- symbol: T
1044
- mass:
1045
- power: 1
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
1059
- time:
1060
- power: -2
1061
- symbol: T
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
1071
- length:
1072
- power: 1
1073
- symbol: L
1074
- names:
1075
- - value: compressibility
1076
- lang: en
1077
- time:
1078
- power: 2
1079
- symbol: T
1080
- mass:
1081
- power: -1
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
1105
- time:
1106
- power: -1
1107
- symbol: T
1108
- mass:
1109
- power: 1
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
1123
- time:
1124
- power: -1
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
1145
- thermodynamic_temperature:
1146
- power: -1
1147
- symbol: Theta
1148
- short: linear_expansion_coefficient
1149
- - identifiers:
1150
- - type: nist
1151
- id: NISTd69
1152
- - type: unitsml
1153
- id: d:pressure_coefficient
1154
- length:
1155
- power: -1
1156
- symbol: L
1157
- names:
1158
- - value: pressure coefficient
1159
- lang: en
1160
- thermodynamic_temperature:
1161
- power: -1
1162
- symbol: Theta
1163
- time:
1164
- power: -2
1165
- symbol: T
1166
- mass:
1167
- power: 1
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: "&#x1D5A9;"
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
1200
- time:
1201
- power: 2
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
1215
- thermodynamic_temperature:
1216
- power: -1
1217
- symbol: Theta
1218
- time:
1219
- power: -3
1220
- symbol: T
1221
- mass:
1222
- power: 1
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
1239
- time:
1240
- power: 1
1241
- symbol: T
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
1251
- length:
1252
- power: 2
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
1269
- time:
1270
- power: -3
1271
- symbol: T
1272
- mass:
1273
- power: 1
1274
- symbol: M
1275
- short: electric_field_gradient
1276
- - electric_current:
1277
- power: 1
1278
- symbol: I
1279
- identifiers:
1280
- - type: nist
1281
- id: NISTd75
1282
- - type: unitsml
1283
- id: d:electric_quadrupole_moment
1284
- length:
1285
- power: 2
1286
- symbol: L
1287
- names:
1288
- - value: electric quadrupole moment
1289
- lang: en
1290
- time:
1291
- power: 1
1292
- symbol: T
1293
- short: electric_quadrupole_moment
1294
- - electric_current:
1295
- power: 2
1296
- symbol: I
1297
- identifiers:
1298
- - type: nist
1299
- id: NISTd76
1300
- - type: unitsml
1301
- id: d:polarizability
1302
- names:
1303
- - value: polarizability
1304
- lang: en
1305
- time:
1306
- power: 4
1307
- symbol: T
1308
- mass:
1309
- power: 1
1310
- symbol: M
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
1320
- length:
1321
- power: -1
1322
- symbol: L
1323
- names:
1324
- - value: hyperpolarizability 1st
1325
- lang: en
1326
- time:
1327
- power: 7
1328
- symbol: T
1329
- mass:
1330
- power: -2
1331
- symbol: M
1332
- short: hyperpolarizability_1st
1333
- - electric_current:
1334
- power: 4
1335
- symbol: I
1336
- identifiers:
1337
- - type: nist
1338
- id: NISTd78
1339
- - type: unitsml
1340
- id: d:hyperpolarizability_2nd
1341
- length:
1342
- power: -2
1343
- symbol: L
1344
- names:
1345
- - value: hyperpolarizability 2nd
1346
- lang: en
1347
- time:
1348
- power: 10
1349
- symbol: T
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: "&#x1D785;"
1438
- id: dim_phi
1439
- mathml: "<mi mathvariant='sans-serif'>&#x3c6;</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
1466
- length:
1467
- power: -2
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
1484
- time:
1485
- power: -1
1486
- symbol: T
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