From 824194dc87bf5e86ef0aadb69e946a7b68a4a3d8 Mon Sep 17 00:00:00 2001 From: Ronald Tse Date: Sat, 27 Jun 2026 15:59:56 +0800 Subject: [PATCH 1/2] feat: Opal payload generator, boot file, and loader Under Opal, autoload declarations do not lazy-execute, so consumers (plurimath-js) need an explicit boot file that eager-requires every autoloaded entry point in dependency order. unitsml is unique among the moxml-dependent gems: it ships a large unitsdb YAML database that must be pre-serialized as a Ruby hash under Opal (no filesystem). This change adds the full Opal toolchain for unitsml: - lib/unitsml/opal.rb: boot file eager-requiring every autoloaded entry point. Requires upstream boot files (unitsdb/opal, mml/opal, omml/opal) and the payload file so Database.from_db can satisfy without a filesystem. - lib/unitsml/opal/payload_generator.rb: Unitsml::Opal::PayloadGenerator class that reads unitsdb-ruby YAML data on MRI and emits a Ruby source file defining Unitsml::Unitsdb::Database::DATABASE as a frozen hash. Invoked via rake unitsml:generate_opal_payload. - lib/unitsml/opal/database_payload.rb: AUTO-GENERATED output committed to the gem. Loaded by the boot file under Opal. - lib/unitsml/unitsdb/database.rb: adopts the loader mechanism from fix/opal-database-payload-loader (load_opal_payload, opal_payload, reset_opal_payload) so tests can inject small payloads and the committed DATABASE constant is found via const_defined?(:DATABASE, false). Supersedes PR #65. - lib/unitsml/unitsdb.rb, lib/unitsml/model.rb and the four nested model parent files: convert require_relative and __dir__-interpolated autoloads to plain load-path-relative autoload declarations, per the global rule. Removes a dangling autoload (Unitsml::Model:: Namespace) whose target file never existed; MRI never tripped on it because nothing referenced the constant, but Opal eager-loads every autoload and would have crashed. - Rakefile: adds the unitsml:generate_opal_payload task. - Gemfile: adds nokogiri and opal so the boot-file spec can compile the boot file end-to-end via Opal::Builder with native deps stubbed. - .rubocop.yml: excludes the generated payload file from lint. - spec/unitsml/opal_boot_spec.rb: verifies the boot file structure and that Opal::Builder compiles it end-to-end with stubs. - spec/unitsml/payload_sync_spec.rb: verifies the committed payload matches what the generator produces from the current unitsdb gem and that it round-trips through from_hash. - spec/unitsml/opal/payload_generator_spec.rb: verifies the generator produces evaluable Ruby that reproduces the source database. - spec/unitsml/unitsdb/database_spec.rb: extends coverage to the new loader mechanism (load_opal_payload, DATABASE fallback). - .github/workflows/opal.yml: GHA workflow running the opal specs on Ubuntu/Ruby 3.3/Node 18. --- .github/workflows/opal.yml | 42 ++++++++ .rubocop.yml | 1 + Gemfile | 2 + Rakefile | 10 ++ lib/unitsml/model.rb | 17 ++-- lib/unitsml/model/dimension_quantities.rb | 18 ++-- lib/unitsml/model/prefixes.rb | 4 +- lib/unitsml/model/quantities.rb | 2 +- lib/unitsml/opal.rb | 96 +++++++++++++++++++ lib/unitsml/opal/database_payload.rb | 7 ++ lib/unitsml/opal/payload_generator.rb | 57 +++++++++++ lib/unitsml/unitsdb.rb | 19 ++-- lib/unitsml/unitsdb/database.rb | 24 ++++- spec/unitsml/opal/payload_generator_spec.rb | 74 +++++++++++++++ spec/unitsml/opal_boot_spec.rb | 100 ++++++++++++++++++++ spec/unitsml/payload_sync_spec.rb | 49 ++++++++++ spec/unitsml/unitsdb/database_spec.rb | 32 +++++++ 17 files changed, 520 insertions(+), 34 deletions(-) create mode 100644 .github/workflows/opal.yml create mode 100644 lib/unitsml/opal.rb create mode 100644 lib/unitsml/opal/database_payload.rb create mode 100644 lib/unitsml/opal/payload_generator.rb create mode 100644 spec/unitsml/opal/payload_generator_spec.rb create mode 100644 spec/unitsml/opal_boot_spec.rb create mode 100644 spec/unitsml/payload_sync_spec.rb diff --git a/.github/workflows/opal.yml b/.github/workflows/opal.yml new file mode 100644 index 0000000..41712b5 --- /dev/null +++ b/.github/workflows/opal.yml @@ -0,0 +1,42 @@ +name: opal + +on: + push: + branches: [ main ] + pull_request: + +permissions: + contents: read + +jobs: + opal-verification: + name: Opal boot file and payload verification + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Set up Ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: '3.3' + bundler-cache: true + + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: '18' + + - name: Run Opal specs + # Verifies the Opal toolchain for unitsml: + # - the boot file (lib/unitsml/opal.rb) eager-requires every + # autoloaded entry point so Opal users see no NameError, + # - the committed database_payload.rb is in sync with the + # PayloadGenerator output for the current unitsdb gem, + # - the PayloadGenerator produces evaluable Ruby that round-trips + # through Unitsml::Unitsdb::Database.from_hash, + # - Opal::Builder can compile the boot file end-to-end with + # native-only deps stubbed (the consumer provides them). + run: | + bundle exec rspec spec/unitsml/opal_boot_spec.rb \ + spec/unitsml/payload_sync_spec.rb \ + spec/unitsml/opal/payload_generator_spec.rb diff --git a/.rubocop.yml b/.rubocop.yml index a8f6f72..c09e02f 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -16,3 +16,4 @@ AllCops: Exclude: - 'unitsdb/**/*' - 'vendor/**/*' + - 'lib/unitsml/opal/database_payload.rb' diff --git a/Gemfile b/Gemfile index 954f07e..3708561 100644 --- a/Gemfile +++ b/Gemfile @@ -7,7 +7,9 @@ gemspec gem "canon" gem "lutaml-model", github: "lutaml/lutaml-model", branch: "main" +gem "nokogiri" gem "oga" +gem "opal", "~> 1.8" gem "ox" gem "plurimath", github: "plurimath/plurimath", branch: "main" gem "pry" diff --git a/Rakefile b/Rakefile index b6ae734..2e27d36 100644 --- a/Rakefile +++ b/Rakefile @@ -5,4 +5,14 @@ require "rspec/core/rake_task" RSpec::Core::RakeTask.new(:spec) +namespace :unitsml do + desc "Regenerate lib/unitsml/opal/database_payload.rb from unitsdb YAML" + task :generate_opal_payload do + require "unitsml/opal/payload_generator" + path = Unitsml::Opal::PayloadGenerator::DEFAULT_OUTPUT_PATH + Unitsml::Opal::PayloadGenerator.new.write_to(path) + puts "Wrote #{path}" + end +end + task default: :spec diff --git a/lib/unitsml/model.rb b/lib/unitsml/model.rb index 85a9dec..89b1d74 100644 --- a/lib/unitsml/model.rb +++ b/lib/unitsml/model.rb @@ -2,14 +2,13 @@ module Unitsml module Model - autoload :Dimension, "#{__dir__}/model/dimension" - autoload :DimensionQuantities, "#{__dir__}/model/dimension_quantities" - autoload :Namespace, "#{__dir__}/model/namespace" - autoload :Prefix, "#{__dir__}/model/prefix" - autoload :Prefixes, "#{__dir__}/model/prefixes" - autoload :Quantities, "#{__dir__}/model/quantities" - autoload :Quantity, "#{__dir__}/model/quantity" - autoload :Unit, "#{__dir__}/model/unit" - autoload :Units, "#{__dir__}/model/units" + autoload :Dimension, "unitsml/model/dimension" + autoload :DimensionQuantities, "unitsml/model/dimension_quantities" + autoload :Prefix, "unitsml/model/prefix" + autoload :Prefixes, "unitsml/model/prefixes" + autoload :Quantities, "unitsml/model/quantities" + autoload :Quantity, "unitsml/model/quantity" + autoload :Unit, "unitsml/model/unit" + autoload :Units, "unitsml/model/units" end end diff --git a/lib/unitsml/model/dimension_quantities.rb b/lib/unitsml/model/dimension_quantities.rb index fdcd251..b8fe824 100644 --- a/lib/unitsml/model/dimension_quantities.rb +++ b/lib/unitsml/model/dimension_quantities.rb @@ -4,18 +4,18 @@ module Unitsml module Model module DimensionQuantities autoload :AmountOfSubstance, - "#{__dir__}/dimension_quantities/amount_of_substance" + "unitsml/model/dimension_quantities/amount_of_substance" autoload :ElectricCurrent, - "#{__dir__}/dimension_quantities/electric_current" - autoload :Length, "#{__dir__}/dimension_quantities/length" + "unitsml/model/dimension_quantities/electric_current" + autoload :Length, "unitsml/model/dimension_quantities/length" autoload :LuminousIntensity, - "#{__dir__}/dimension_quantities/luminous_intensity" - autoload :Mass, "#{__dir__}/dimension_quantities/mass" - autoload :PlaneAngle, "#{__dir__}/dimension_quantities/plane_angle" - autoload :Quantity, "#{__dir__}/dimension_quantities/quantity" + "unitsml/model/dimension_quantities/luminous_intensity" + autoload :Mass, "unitsml/model/dimension_quantities/mass" + autoload :PlaneAngle, "unitsml/model/dimension_quantities/plane_angle" + autoload :Quantity, "unitsml/model/dimension_quantities/quantity" autoload :ThermodynamicTemperature, - "#{__dir__}/dimension_quantities/thermodynamic_temperature" - autoload :Time, "#{__dir__}/dimension_quantities/time" + "unitsml/model/dimension_quantities/thermodynamic_temperature" + autoload :Time, "unitsml/model/dimension_quantities/time" end end end diff --git a/lib/unitsml/model/prefixes.rb b/lib/unitsml/model/prefixes.rb index d9b1cb7..1016ab1 100644 --- a/lib/unitsml/model/prefixes.rb +++ b/lib/unitsml/model/prefixes.rb @@ -3,8 +3,8 @@ module Unitsml module Model module Prefixes - autoload :Name, "#{__dir__}/prefixes/name" - autoload :Symbol, "#{__dir__}/prefixes/symbol" + autoload :Name, "unitsml/model/prefixes/name" + autoload :Symbol, "unitsml/model/prefixes/symbol" end end end diff --git a/lib/unitsml/model/quantities.rb b/lib/unitsml/model/quantities.rb index a06388c..5d4da62 100644 --- a/lib/unitsml/model/quantities.rb +++ b/lib/unitsml/model/quantities.rb @@ -3,7 +3,7 @@ module Unitsml module Model module Quantities - autoload :Name, "#{__dir__}/quantities/name" + autoload :Name, "unitsml/model/quantities/name" end end end diff --git a/lib/unitsml/opal.rb b/lib/unitsml/opal.rb new file mode 100644 index 0000000..a41ca61 --- /dev/null +++ b/lib/unitsml/opal.rb @@ -0,0 +1,96 @@ +# frozen_string_literal: true + +# Opal entry point for unitsml. +# +# Under MRI, lib/unitsml.rb uses autoload for lazy loading. Under Opal, +# autoload does not lazy-execute, so this boot file eager-requires every +# entry point. Consumers (e.g. plurimath-js) add `-r unitsml/opal` to +# their Opal compile command. +# +# Load order rationale: +# 1. Upstream boot files first — unitsml depends on lutaml-model, +# unitsdb, mml (and transitively omml via plurimath-js consumers). +# 2. unitsml.rb next — sets up top-level autoloads and Configuration. +# 3. Errors before everything else (low-level, no deps). +# 4. The Opal payload — defines Unitsml::Unitsdb::Database::DATABASE +# so Unitsml::Unitsdb::Database.from_db can satisfy without a +# filesystem under Opal. +# 5. Unitsdb sub-files — define classes that subclass ::Unitsdb::* +# and call Configuration.register_model side-effects. +# 6. Model tree — declares the Unitsml XML model classes. Each parent +# module (Prefixes, Quantities, DimensionQuantities, Units) is +# required first to set up its own autoloads, then its leaves. +# 7. Parser/Transform/Prefix/Unit/Dimension etc. — top-level domain +# classes that reference Model and Unitsdb. + +require "lutaml/model" +require "unitsdb/opal" +require "mml/opal" +require "omml/opal" + +require "unitsml" + +require "unitsml/version" +require "unitsml/errors" +require "unitsml/errors/base_error" +require "unitsml/errors/opal_payload_not_bundled_error" +require "unitsml/errors/plurimath_load_error" + +require "unitsml/opal/database_payload" + +require "unitsml/configuration" +require "unitsml/namespace" + +require "unitsml/unitsdb" +require "unitsml/unitsdb/database" +require "unitsml/unitsdb/dimension_details" +require "unitsml/unitsdb/prefix_reference" +require "unitsml/unitsdb/dimension" +require "unitsml/unitsdb/dimensions" +require "unitsml/unitsdb/unit" +require "unitsml/unitsdb/units" +require "unitsml/unitsdb/prefixes" +require "unitsml/unitsdb/quantities" + +require "unitsml/model" +require "unitsml/model/dimension" +require "unitsml/model/dimension_quantities" +require "unitsml/model/dimension_quantities/amount_of_substance" +require "unitsml/model/dimension_quantities/electric_current" +require "unitsml/model/dimension_quantities/length" +require "unitsml/model/dimension_quantities/luminous_intensity" +require "unitsml/model/dimension_quantities/mass" +require "unitsml/model/dimension_quantities/plane_angle" +require "unitsml/model/dimension_quantities/quantity" +require "unitsml/model/dimension_quantities/thermodynamic_temperature" +require "unitsml/model/dimension_quantities/time" +require "unitsml/model/prefix" +require "unitsml/model/prefixes" +require "unitsml/model/prefixes/name" +require "unitsml/model/prefixes/symbol" +require "unitsml/model/quantities" +require "unitsml/model/quantities/name" +require "unitsml/model/quantity" +require "unitsml/model/unit" +require "unitsml/model/units" +require "unitsml/model/units/enumerated_root_unit" +require "unitsml/model/units/name" +require "unitsml/model/units/root_units" +require "unitsml/model/units/symbol" +require "unitsml/model/units/system" + +require "unitsml/dimension" +require "unitsml/extender" +require "unitsml/fenced" +require "unitsml/fenced_numeric" +require "unitsml/formula" +require "unitsml/intermediate_exp_rules" +require "unitsml/mathml_helper" +require "unitsml/number" +require "unitsml/parse" +require "unitsml/parser" +require "unitsml/prefix" +require "unitsml/sqrt" +require "unitsml/transform" +require "unitsml/unit" +require "unitsml/utility" diff --git a/lib/unitsml/opal/database_payload.rb b/lib/unitsml/opal/database_payload.rb new file mode 100644 index 0000000..5da4d73 --- /dev/null +++ b/lib/unitsml/opal/database_payload.rb @@ -0,0 +1,7 @@ +# frozen_string_literal: true + +# AUTO-GENERATED by `bundle exec rake unitsml:generate_opal_payload`. +# Do not edit by hand. Edit the YAML in unitsdb-ruby/data/ and +# regenerate. This file is loaded by lib/unitsml/opal.rb under Opal +# to satisfy Unitsml::Unitsdb::Database.from_db without a filesystem. +Unitsml::Unitsdb::Database.const_set(:DATABASE, {"schema_version" => "2.0.0", "units" => [{"identifiers" => [{"id" => "NISTu1", "type" => "nist"}, {"id" => "u:meter", "type" => "unitsml"}], "short" => "meter", "root" => true, "unit_system_reference" => [{"id" => "si-base", "type" => "unitsml"}], "names" => [{"value" => "metre", "lang" => "en"}, {"value" => "meter", "lang" => "en"}, {"value" => "mètre", "lang" => "fr"}], "symbols" => [{"id" => "m", "ascii" => "m", "html" => "m", "latex" => "\\ensuremath{\\mathrm{m}}", "mathml" => "m", "unicode" => "m"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}, {"id" => "NISTq100", "type" => "nist"}, {"id" => "NISTq101", "type" => "nist"}, {"id" => "NISTq102", "type" => "nist"}, {"id" => "NISTq103", "type" => "nist"}, {"id" => "NISTq104", "type" => "nist"}, {"id" => "NISTq105", "type" => "nist"}, {"id" => "NISTq114", "type" => "nist"}, {"id" => "NISTq48", "type" => "nist"}, {"id" => "NISTq95", "type" => "nist"}, {"id" => "NISTq96", "type" => "nist"}, {"id" => "NISTq97", "type" => "nist"}, {"id" => "NISTq98", "type" => "nist"}, {"id" => "NISTq99", "type" => "nist"}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/metre", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:base-unit:code:m", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/M", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu1.u3e-1/1", "type" => "nist"}, {"id" => "u:meter_per_second", "type" => "unitsml"}], "short" => "meter_per_second", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "meter per second", "lang" => "en"}], "symbols" => [{"id" => "m*s^-1", "ascii" => "m*s^-1", "html" => "m/s", "latex" => "\\ensuremath{\\mathrm{m/s}}", "mathml" => "m/s", "unicode" => "m·s⁻¹"}], "quantity_references" => [{"id" => "NISTq107", "type" => "nist"}, {"id" => "NISTq116", "type" => "nist"}, {"id" => "NISTq117", "type" => "nist"}, {"id" => "NISTq12", "type" => "nist"}], "root_units" => [{"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu1.u3e-2/1", "type" => "nist"}, {"id" => "u:meter_per_second_squared", "type" => "unitsml"}], "short" => "meter_per_second_squared", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "meter per second squared", "lang" => "en"}], "symbols" => [{"id" => "m*s^-2", "ascii" => "m*s^-2", "html" => "m/s2", "latex" => "\\ensuremath{\\mathrm{m/s^2}}", "mathml" => "m/s2", "unicode" => "m·s⁻²"}], "quantity_references" => [{"id" => "NISTq108", "type" => "nist"}, {"id" => "NISTq49", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu10", "type" => "nist"}, {"id" => "u:steradian", "type" => "unitsml"}], "short" => "steradian", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "steradian", "lang" => "en"}, {"value" => "stéradian", "lang" => "fr"}], "symbols" => [{"id" => "sr", "ascii" => "sr", "html" => "sr", "latex" => "\\ensuremath{\\mathrm{sr}}", "mathml" => "sr", "unicode" => "sr"}], "quantity_references" => [{"id" => "NISTq11", "type" => "nist"}], "si_derived_bases" => [{"power" => 1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/steradian", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:sr", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/SR", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu100", "type" => "nist"}, {"id" => "u:rem", "type" => "unitsml"}], "short" => "rem", "root" => true, "unit_system_reference" => [{"id" => "non-SI_nist_acceptable", "type" => "nist"}, {"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "rem", "lang" => "en"}], "symbols" => [{"id" => "rem", "ascii" => "rem", "html" => "rem", "latex" => "\\ensuremath{\\mathrm{rem}}", "mathml" => "rem", "unicode" => "rem"}], "quantity_references" => [{"id" => "NISTq39", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/REM", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu106", "type" => "nist"}, {"id" => "u:year_365", "type" => "unitsml"}], "short" => "year_365", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "year (365 days)", "lang" => "en"}, {"value" => "year", "lang" => "en"}], "symbols" => [{"id" => "a_year", "ascii" => "a", "html" => "a", "latex" => "\\ensuremath{\\mathrm{a}}", "mathml" => "a", "unicode" => "a"}], "quantity_references" => [{"id" => "NISTq3", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:iso1000:code:a", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/YR", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu107", "type" => "nist"}, {"id" => "u:foot_per_minute", "type" => "unitsml"}], "short" => "foot_per_minute", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "foot per minute", "lang" => "en"}], "symbols" => [{"id" => "ft*min^-1", "ascii" => "ft*min^-1", "html" => "ft/min", "latex" => "\\ensuremath{\\mathrm{ft/min}}", "mathml" => "ft/min", "unicode" => "ft·min⁻¹"}], "quantity_references" => [{"id" => "NISTq12", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu78", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu36", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FT-PER-MIN", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu108", "type" => "nist"}, {"id" => "u:foot_per_second", "type" => "unitsml"}], "short" => "foot_per_second", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "foot per second", "lang" => "en"}], "symbols" => [{"id" => "ft*s^-1", "ascii" => "ft*s^-1", "html" => "ft/s", "latex" => "\\ensuremath{\\mathrm{ft/s}}", "mathml" => "ft/s", "unicode" => "ft·s⁻¹"}], "quantity_references" => [{"id" => "NISTq12", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu78", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FT-PER-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu109", "type" => "nist"}, {"id" => "u:inch_per_second", "type" => "unitsml"}], "short" => "inch_per_second", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "inch per second", "lang" => "en"}], "symbols" => [{"id" => "in*s^-1", "ascii" => "in*s^-1", "html" => "in/s", "latex" => "\\ensuremath{\\mathrm{in/s}}", "mathml" => "in/s", "unicode" => "in·s⁻¹"}], "quantity_references" => [{"id" => "NISTq12", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu8", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/IN-PER-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu11", "type" => "nist"}, {"id" => "u:newton", "type" => "unitsml"}], "short" => "newton", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "newton", "lang" => "en"}, {"value" => "newton", "lang" => "fr"}], "symbols" => [{"id" => "N", "ascii" => "N", "html" => "N", "latex" => "\\ensuremath{\\mathrm{N}}", "mathml" => "N", "unicode" => "N"}], "quantity_references" => [{"id" => "NISTq13", "type" => "nist"}], "si_derived_bases" => [{"power" => 1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/newton", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:N", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/N", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu11.u1", "type" => "nist"}, {"id" => "u:newton_meter", "type" => "unitsml"}], "short" => "newton_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "newton meter", "lang" => "en"}], "symbols" => [{"id" => "N*m", "ascii" => "N*m", "html" => "N · m", "latex" => "\\ensuremath{\\mathrm{N\\cdot m}}", "mathml" => "N·m", "unicode" => "N·m"}], "quantity_references" => [{"id" => "NISTq184", "type" => "nist"}, {"id" => "NISTq185", "type" => "nist"}, {"id" => "NISTq60", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu11", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/N-M", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu11.u1.u3", "type" => "nist"}, {"id" => "u:newton_meter_second", "type" => "unitsml"}], "short" => "newton_meter_second", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "newton meter second", "lang" => "en"}], "symbols" => [{"id" => "N*m*s", "ascii" => "N*m*s", "html" => "N · m · s", "latex" => "\\ensuremath{\\mathrm{N\\cdot m\\cdot s}}", "mathml" => "N·m·s", "unicode" => "N·m·s"}], "quantity_references" => [{"id" => "NISTq133", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu11", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/N-M-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu11.u1e-1/1", "type" => "nist"}, {"id" => "u:newton_per_meter", "type" => "unitsml"}], "short" => "newton_per_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "newton per meter", "lang" => "en"}], "symbols" => [{"id" => "N*m^-1", "ascii" => "N*m^-1", "html" => "N/m", "latex" => "\\ensuremath{\\mathrm{N/m}}", "mathml" => "N/m", "unicode" => "N/m"}], "quantity_references" => [{"id" => "NISTq61", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu11", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/N-PER-M", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu11.u1e2/1.u27p10'3e-2/1", "type" => "nist"}, {"id" => "u:newton_meter_squared_per_kilogram_squared", "type" => "unitsml"}], "short" => "newton_meter_squared_per_kilogram_squared", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "newton meter squared per kilogram squared", "lang" => "en"}], "symbols" => [{"id" => "N*m^2*kg^-2", "ascii" => "N*m^2*kg^-2", "html" => "N · m2/kg 2", "latex" => "\\ensuremath{\\mathrm{N\\cdot m^2/kg^2}}", "mathml" => "N·m2/kg2", "unicode" => "N·m²/kg²"}], "quantity_references" => [{"id" => "NISTq130", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu11", "type" => "nist"}}, {"power" => 2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/N-M2-PER-KiloGM2", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu11.u3", "type" => "nist"}, {"id" => "u:newton_second", "type" => "unitsml"}], "short" => "newton_second", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "newton second", "lang" => "en"}], "symbols" => [{"id" => "N*s", "ascii" => "N*s", "html" => "N · s", "latex" => "\\ensuremath{\\mathrm{N\\cdot s}}", "mathml" => "N·s", "unicode" => "N·s"}], "quantity_references" => [{"id" => "NISTq129", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu11", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/N-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu110", "type" => "nist"}, {"id" => "u:mile_per_hour", "type" => "unitsml"}], "short" => "mile_per_hour", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "mile per hour", "lang" => "en"}], "symbols" => [{"id" => "mi*h^-1", "ascii" => "mi*h^-1", "html" => "mi/h", "latex" => "\\ensuremath{\\mathrm{mi/h}}", "mathml" => "mi/h", "unicode" => "mi·h⁻¹"}], "quantity_references" => [{"id" => "NISTq12", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu83", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu37", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MI-PER-HR", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu111", "type" => "nist"}, {"id" => "u:mile_per_minute", "type" => "unitsml"}], "short" => "mile_per_minute", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "mile per minute", "lang" => "en"}], "symbols" => [{"id" => "mi*min^-1", "ascii" => "mi*min^-1", "html" => "mi/min", "latex" => "\\ensuremath{\\mathrm{mi/min}}", "mathml" => "mi/min", "unicode" => "mi·min⁻¹"}], "quantity_references" => [{"id" => "NISTq12", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu83", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu36", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MI-PER-MIN", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu112", "type" => "nist"}, {"id" => "u:mile_per_second", "type" => "unitsml"}], "short" => "mile_per_second", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "mile per second", "lang" => "en"}], "symbols" => [{"id" => "mi*s^-1", "ascii" => "mi*s^-1", "html" => "mi/s", "latex" => "\\ensuremath{\\mathrm{mi/s}}", "mathml" => "mi/s", "unicode" => "mi·s⁻¹"}], "quantity_references" => [{"id" => "NISTq12", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu83", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MI-PER-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu115", "type" => "nist"}, {"id" => "u:stere", "type" => "unitsml"}], "short" => "stere", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "stere", "lang" => "en"}], "symbols" => [{"id" => "st", "ascii" => "st", "html" => "st", "latex" => "\\ensuremath{\\mathrm{st}}", "mathml" => "st", "unicode" => "st"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "root_units" => [{"power" => 3, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "ucum:unit:misc:code:st", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/STR", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu116", "type" => "nist"}, {"id" => "u:gamma", "type" => "unitsml"}], "short" => "gamma", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "gamma", "lang" => "en"}], "symbols" => [{"id" => "gamma", "ascii" => "gamma", "html" => "γ", "latex" => "\\ensuremath{\\gamma}}", "mathml" => "γ", "unicode" => "γ"}], "quantity_references" => [{"id" => "NISTq14", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu21", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_-9", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/GAMMA", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu117", "type" => "nist"}, {"id" => "u:ec_therm", "type" => "unitsml"}], "short" => "ec_therm", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "therm (EC)", "lang" => "en"}], "symbols" => [{"id" => "thm (EC)", "ascii" => "thm (EC)", "html" => "thm (EC)", "latex" => "\\ensuremath{\\mathrm{thm (EC)}}", "mathml" => "thm (EC)", "unicode" => "thm (EC)"}], "quantity_references" => [{"id" => "NISTq17", "type" => "nist"}, {"id" => "NISTq18", "type" => "nist"}, {"id" => "NISTq182", "type" => "nist"}, {"id" => "NISTq183", "type" => "nist"}, {"id" => "NISTq19", "type" => "nist"}, {"id" => "NISTq77", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/THERM_EC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu118", "type" => "nist"}, {"id" => "u:roentgen", "type" => "unitsml"}], "short" => "roentgen", "root" => true, "unit_system_reference" => [{"id" => "non-SI_nist_acceptable", "type" => "nist"}, {"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "roentgen", "lang" => "en"}], "symbols" => [{"id" => "R", "ascii" => "R", "html" => "R", "latex" => "\\ensuremath{\\mathrm{R}}", "mathml" => "R", "unicode" => "R"}], "quantity_references" => [{"id" => "NISTq75", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:cgs:code:R", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/R", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu119", "type" => "nist"}, {"id" => "u:gauss", "type" => "unitsml"}], "short" => "gauss", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "gauss", "lang" => "en"}], "symbols" => [{"id" => "Gs", "ascii" => "Gs", "html" => "Gs", "latex" => "\\ensuremath{\\mathrm{Gs}}", "mathml" => "Gs", "unicode" => "Gs"}, {"id" => "G", "ascii" => "G", "html" => "G", "latex" => "\\ensuremath{\\mathrm{G}}", "mathml" => "G", "unicode" => "G"}], "quantity_references" => [{"id" => "NISTq14", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:cgs:code:G", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/GAUSS", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu12", "type" => "nist"}, {"id" => "u:pascal", "type" => "unitsml"}], "short" => "pascal", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "pascal", "lang" => "en"}, {"value" => "pascal", "lang" => "fr"}], "symbols" => [{"id" => "Pa", "ascii" => "Pa", "html" => "Pa", "latex" => "\\ensuremath{\\mathrm{Pa}}", "mathml" => "Pa", "unicode" => "Pa"}], "quantity_references" => [{"id" => "NISTq134", "type" => "nist"}, {"id" => "NISTq135", "type" => "nist"}, {"id" => "NISTq141", "type" => "nist"}, {"id" => "NISTq142", "type" => "nist"}, {"id" => "NISTq143", "type" => "nist"}, {"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "si_derived_bases" => [{"power" => -1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/pascal", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:Pa", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/PA", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu12.u3", "type" => "nist"}, {"id" => "u:pascal_second", "type" => "unitsml"}], "short" => "pascal_second", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "pascal second", "lang" => "en"}], "symbols" => [{"id" => "Pa*s", "ascii" => "Pa*s", "html" => "Pa · s", "latex" => "\\ensuremath{\\mathrm{Pa\\cdot s}}", "mathml" => "Pa·s", "unicode" => "Pa·s"}], "quantity_references" => [{"id" => "NISTq59", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu12", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/PA-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu12.u5e-1/1", "type" => "nist"}, {"id" => "u:pascal_per_kelvin", "type" => "unitsml"}], "short" => "pascal_per_kelvin", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "pascal per kelvin", "lang" => "en"}], "symbols" => [{"id" => "Pa*K^-1", "ascii" => "Pa*K^-1", "html" => "Pa/K", "latex" => "\\ensuremath{\\mathrm{Pa/K}}", "mathml" => "Pa/K", "unicode" => "Pa/K"}], "quantity_references" => [{"id" => "NISTq159", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu12", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu5", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/PA-PER-K", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu120", "type" => "nist"}, {"id" => "u:kayser", "type" => "unitsml"}], "short" => "kayser", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "kayser", "lang" => "en"}], "symbols" => [{"id" => "kayser", "ascii" => "K", "html" => "K", "latex" => "\\ensuremath{\\mathrm{K}}", "mathml" => "K", "unicode" => "K"}], "quantity_references" => [{"id" => "NISTq50", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:cgs:code:Ky", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/KY", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu121", "type" => "nist"}, {"id" => "u:centistokes", "type" => "unitsml"}], "short" => "centistokes", "root" => false, "prefixed" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "centistokes", "lang" => "en"}], "symbols" => [{"id" => "cSt", "ascii" => "cSt", "html" => "cSt", "latex" => "\\ensuremath{\\mathrm{cSt}}", "mathml" => "cSt", "unicode" => "cSt"}], "quantity_references" => [{"id" => "NISTq85", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu142", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_-2", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/CentiST", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu122", "type" => "nist"}, {"id" => "u:micron", "type" => "unitsml"}], "short" => "micron", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "micron", "lang" => "en"}], "symbols" => [{"id" => "micron", "ascii" => "micron", "html" => "μ", "latex" => "\\ensuremath{\\mathrm{mu}}", "mathml" => "μ", "unicode" => "μ"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}, {"id" => "NISTq48", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_-6", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu123", "type" => "nist"}, {"id" => "u:mil (length)", "type" => "unitsml"}], "short" => "mil (length)", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "mil (length)", "lang" => "en"}, {"value" => "mil", "lang" => "en"}, {"value" => "thou", "lang" => "en"}], "symbols" => [{"id" => "mil", "ascii" => "mil", "html" => "mil", "latex" => "\\ensuremath{\\mathrm{mil}}", "mathml" => "mil", "unicode" => "mil"}, {"id" => "thou", "ascii" => "thou", "html" => "thou", "latex" => "\\ensuremath{\\mathrm{thou}}", "mathml" => "thou", "unicode" => "thou"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}, {"id" => "NISTq48", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu8", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_-3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[mil_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MilLength", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu124", "type" => "nist"}, {"id" => "u:stilb", "type" => "unitsml"}], "short" => "stilb", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "stilb", "lang" => "en"}], "symbols" => [{"id" => "sb", "ascii" => "sb", "html" => "sb", "latex" => "\\ensuremath{\\mathrm{sb}}", "mathml" => "sb", "unicode" => "sb"}], "quantity_references" => [{"id" => "NISTq56", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:cgs:code:sb", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/STILB", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu125", "type" => "nist"}, {"id" => "u:kilogram_force_second_squared_per_meter", "type" => "unitsml"}], "short" => "kilogram_force_second_squared_per_meter", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "kilogram-force second squared per meter", "lang" => "en"}], "symbols" => [{"id" => "kgf*s^2/m", "ascii" => "kgf*s^2/m", "html" => "kgf · s2/m", "latex" => "\\ensuremath{\\mathrm{kgf\\cdot s^2/m}}", "mathml" => "kgf·s", "unicode" => "kgf·s²m⁻¹"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu196", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => 2, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu126", "type" => "nist"}, {"id" => "u:kilogram_force_meter", "type" => "unitsml"}], "short" => "kilogram_force_meter", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "kilogram-force meter", "lang" => "en"}], "symbols" => [{"id" => "kgf*m", "ascii" => "kgf*m", "html" => "kgf · m", "latex" => "\\ensuremath{\\mathrm{kgf\\cdot m}}", "mathml" => "kgf·m", "unicode" => "kgf·m"}], "quantity_references" => [{"id" => "NISTq17", "type" => "nist"}, {"id" => "NISTq18", "type" => "nist"}, {"id" => "NISTq184", "type" => "nist"}, {"id" => "NISTq185", "type" => "nist"}, {"id" => "NISTq60", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu196", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/KiloGM_F-M", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu127", "type" => "nist"}, {"id" => "u:electric_horsepower", "type" => "unitsml"}], "short" => "electric_horsepower", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "horsepower, electric", "lang" => "en"}, {"value" => "electric horsepower", "lang" => "en"}], "symbols" => [{"id" => "hp_electric", "ascii" => "hp", "html" => "hp", "latex" => "\\ensuremath{\\mathrm{hp}}", "mathml" => "hp", "unicode" => "hp"}], "quantity_references" => [{"id" => "NISTq20", "type" => "nist"}, {"id" => "NISTq21", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/HP_Electric", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu128", "type" => "nist"}, {"id" => "u:poise", "type" => "unitsml"}], "short" => "poise", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "poise", "lang" => "en"}], "symbols" => [{"id" => "P", "ascii" => "P", "html" => "P", "latex" => "\\ensuremath{\\mathrm{P}}", "mathml" => "P", "unicode" => "P"}], "quantity_references" => [{"id" => "NISTq59", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:cgs:code:P", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/POISE", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu129", "type" => "nist"}, {"id" => "u:rhe", "type" => "unitsml"}], "short" => "rhe", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "rhe", "lang" => "en"}], "symbols" => [{"id" => "rhe", "ascii" => "rhe", "html" => "rhe", "latex" => "\\ensuremath{\\mathrm{rhe}}", "mathml" => "rhe", "unicode" => "rhe"}], "quantity_references" => [{"id" => "NISTq91", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/RHE", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu12e-1/1", "type" => "nist"}, {"id" => "u:pascal_to_the_power_minus_one", "type" => "unitsml"}], "short" => "pascal_to_the_power_minus_one", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "pascal to the power minus one", "lang" => "en"}], "symbols" => [{"id" => "Pa^-1", "ascii" => "Pa^-1", "html" => "Pa-1", "latex" => "\\ensuremath{\\mathrm{Pa^{-1}}}", "mathml" => "Pa1", "unicode" => "Pa⁻¹"}], "quantity_references" => [{"id" => "NISTq139", "type" => "nist"}, {"id" => "NISTq160", "type" => "nist"}], "root_units" => [{"power" => -1, "unit_reference" => {"id" => "NISTu12", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu13", "type" => "nist"}, {"id" => "u:joule", "type" => "unitsml"}], "short" => "joule", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "joule", "lang" => "en"}, {"value" => "joule", "lang" => "fr"}], "symbols" => [{"id" => "J", "ascii" => "J", "html" => "J", "latex" => "\\ensuremath{\\mathrm{J}}", "mathml" => "J", "unicode" => "J"}], "quantity_references" => [{"id" => "NISTq152", "type" => "nist"}, {"id" => "NISTq153", "type" => "nist"}, {"id" => "NISTq17", "type" => "nist"}, {"id" => "NISTq18", "type" => "nist"}, {"id" => "NISTq182", "type" => "nist"}, {"id" => "NISTq183", "type" => "nist"}, {"id" => "NISTq19", "type" => "nist"}, {"id" => "NISTq77", "type" => "nist"}], "si_derived_bases" => [{"power" => 2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/joule", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:J", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/J", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu13.u1e-3/1", "type" => "nist"}, {"id" => "u:joule_per_cubic_meter", "type" => "unitsml"}], "short" => "joule_per_cubic_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "joule per cubic meter", "lang" => "en"}], "symbols" => [{"id" => "J*m^-3", "ascii" => "J*m^-3", "html" => "J/m3", "latex" => "\\ensuremath{\\mathrm{J/m^3}}", "mathml" => "J/m3", "unicode" => "J/m³"}], "quantity_references" => [{"id" => "NISTq67", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu13", "type" => "nist"}}, {"power" => -3, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/J-PER-M3", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu13.u27p10'3e-1/1", "type" => "nist"}, {"id" => "u:joule_per_kilogram", "type" => "unitsml"}], "short" => "joule_per_kilogram", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "joule per kilogram", "lang" => "en"}], "symbols" => [{"id" => "J*kg^-1", "ascii" => "J*kg^-1", "html" => "J/kg", "latex" => "\\ensuremath{\\mathrm{J/kg}}", "mathml" => "J/kg", "unicode" => "J/kg"}], "quantity_references" => [{"id" => "NISTq65", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu13", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/J-PER-KiloGM", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu13.u27p10'3e-1/1.u5e-1/1", "type" => "nist"}, {"id" => "u:joule_per_kilogram_kelvin", "type" => "unitsml"}], "short" => "joule_per_kilogram_kelvin", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "joule per kilogram kelvin", "lang" => "en"}], "symbols" => [{"id" => "J*kg^-1*K^-1", "ascii" => "J*kg^-1*K^-1", "html" => "J/(kg · K)", "latex" => "\\ensuremath{\\mathrm{J/(kg\\cdot K)}}", "mathml" => "J/(kg·K)", "unicode" => "J/(kg·K)"}], "quantity_references" => [{"id" => "NISTq64", "type" => "nist"}, {"id" => "NISTq80", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu13", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu5", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/J-PER-KiloGM-K", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu13.u3", "type" => "nist"}, {"id" => "u:joule_second", "type" => "unitsml"}], "short" => "joule_second", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "joule second", "lang" => "en"}], "symbols" => [{"id" => "J*s", "ascii" => "J*s", "html" => "J · s", "latex" => "\\ensuremath{\\mathrm{J\\cdot s}}", "mathml" => "J·s", "unicode" => "J·s"}], "quantity_references" => [{"id" => "NISTq154", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu13", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/J-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu13.u5e-1/1", "type" => "nist"}, {"id" => "u:joule_per_kelvin", "type" => "unitsml"}], "short" => "joule_per_kelvin", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "joule per kelvin", "lang" => "en"}], "symbols" => [{"id" => "J*K^-1", "ascii" => "J*K^-1", "html" => "J/K", "latex" => "\\ensuremath{\\mathrm{J/K}}", "mathml" => "J/K", "unicode" => "J/K"}], "quantity_references" => [{"id" => "NISTq63", "type" => "nist"}, {"id" => "NISTq79", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu13", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu5", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/J-PER-K", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu13.u6e-1/1", "type" => "nist"}, {"id" => "u:joule_per_mole", "type" => "unitsml"}], "short" => "joule_per_mole", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "joule per mole", "lang" => "en"}], "symbols" => [{"id" => "J*mol^-1", "ascii" => "J*mol^-1", "html" => "J/mol", "latex" => "\\ensuremath{\\mathrm{J/mol}}", "mathml" => "J/mol", "unicode" => "J/mol"}], "quantity_references" => [{"id" => "NISTq73", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu13", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu6", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/J-PER-MOL", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu13.u6e-1/1.u5e-1/1", "type" => "nist"}, {"id" => "u:joule_per_mole_kelvin", "type" => "unitsml"}], "short" => "joule_per_mole_kelvin", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "joule per mole kelvin", "lang" => "en"}], "symbols" => [{"id" => "J*mol^-1*K^-1", "ascii" => "J*mol^-1*K^-1", "html" => "J/(mol · K)", "latex" => "\\ensuremath{\\mathrm{J/(mol\\cdot K)}}", "mathml" => "J/(mol·K)", "unicode" => "J/(mol·K)"}], "quantity_references" => [{"id" => "NISTq74", "type" => "nist"}, {"id" => "NISTq83", "type" => "nist"}], "root_units" => [{"power" => -1, "unit_reference" => {"id" => "NISTu5", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/J-PER-MOL-K", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu130", "type" => "nist"}, {"id" => "u:liter", "type" => "unitsml"}], "short" => "liter", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "litre", "lang" => "en"}, {"value" => "liter", "lang" => "en"}, {"value" => "litre", "lang" => "fr"}], "symbols" => [{"id" => "l", "ascii" => "l", "html" => "l", "latex" => "\\ensuremath{\\mathrm{l}}", "mathml" => "l", "unicode" => "l"}, {"id" => "L", "ascii" => "L", "html" => "L", "latex" => "\\ensuremath{\\mathrm{L}}", "mathml" => "L", "unicode" => "L"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/litre", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:iso1000:code:l", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/L", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu131", "type" => "nist"}, {"id" => "u:nautical_mile", "type" => "unitsml"}], "short" => "nautical_mile", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "nautical mile", "lang" => "en"}], "symbols" => [{"id" => "M", "ascii" => "M", "html" => "M", "latex" => "\\ensuremath{\\mathrm{M}}", "mathml" => "M", "unicode" => "M"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}, {"id" => "NISTq48", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[nmi_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MI_N", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu133", "type" => "nist"}, {"id" => "u:degree_Fahrenheit", "type" => "unitsml"}], "short" => "degree_Fahrenheit", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "degree Fahrenheit", "lang" => "en"}], "symbols" => [{"id" => "degF", "ascii" => "degF", "html" => "°F", "latex" => "\\ensuremath{\\mathrm{^{\\circ}F}}", "mathml" => "°F", "unicode" => "°F"}], "quantity_references" => [{"id" => "NISTq175", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:heat:code:[degF]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/DEG_F", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_interval", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu134", "type" => "nist"}, {"id" => "u:standard_atmosphere", "type" => "unitsml"}], "short" => "standard_atmosphere", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "standard atmosphere", "lang" => "en"}], "symbols" => [{"id" => "atm", "ascii" => "atm", "html" => "atm", "latex" => "\\ensuremath{\\mathrm{atm}}", "mathml" => "atm", "unicode" => "atm"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:const:code:atm", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/ATM", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu135", "type" => "nist"}, {"id" => "u:technical_atmosphere", "type" => "unitsml"}], "short" => "technical_atmosphere", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "technical atmosphere", "lang" => "en"}], "symbols" => [{"id" => "at", "ascii" => "at", "html" => "at", "latex" => "\\ensuremath{\\mathrm{at}}", "mathml" => "at", "unicode" => "at"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:misc:code:att", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/ATM_T", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu14", "type" => "nist"}, {"id" => "u:watt", "type" => "unitsml"}], "short" => "watt", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "watt", "lang" => "en"}, {"value" => "watt", "lang" => "fr"}], "symbols" => [{"id" => "W", "ascii" => "W", "html" => "W", "latex" => "\\ensuremath{\\mathrm{W}}", "mathml" => "W", "unicode" => "W"}], "quantity_references" => [{"id" => "NISTq20", "type" => "nist"}, {"id" => "NISTq21", "type" => "nist"}], "si_derived_bases" => [{"power" => 2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -3, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/watt", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:W", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/W", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu14.u10e-1/1", "type" => "nist"}, {"id" => "u:watt_per_steradian", "type" => "unitsml"}], "short" => "watt_per_steradian", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "watt per steradian", "lang" => "en"}], "symbols" => [{"id" => "W*sr^-1", "ascii" => "W*sr^-1", "html" => "W/sr", "latex" => "\\ensuremath{\\mathrm{W/sr}}", "mathml" => "W/sr", "unicode" => "W/sr"}], "quantity_references" => [{"id" => "NISTq88", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu14", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu10", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/W-PER-SR", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu14.u1e-1/1.u5e-1/1", "type" => "nist"}, {"id" => "u:watt_per_meter_kelvin", "type" => "unitsml"}], "short" => "watt_per_meter_kelvin", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "watt per meter kelvin", "lang" => "en"}], "symbols" => [{"id" => "W*m^-1*K^-1", "ascii" => "W*m^-1*K^-1", "html" => "W/(m · K)", "latex" => "\\ensuremath{\\mathrm{W/(m\\cdot K)}}", "mathml" => "W/(m·K)", "unicode" => "W/(m·K)"}], "quantity_references" => [{"id" => "NISTq66", "type" => "nist"}], "root_units" => [{"power" => -1, "unit_reference" => {"id" => "NISTu5", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/W-PER-M-K", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu14.u1e-2/1", "type" => "nist"}, {"id" => "u:watt_per_square_meter", "type" => "unitsml"}], "short" => "watt_per_square_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "watt per square meter", "lang" => "en"}], "symbols" => [{"id" => "W*m^-2", "ascii" => "W*m^-2", "html" => "W/m2", "latex" => "\\ensuremath{\\mathrm{W/m^2}}", "mathml" => "W/m2", "unicode" => "W/m²"}], "quantity_references" => [{"id" => "NISTq62", "type" => "nist"}, {"id" => "NISTq78", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu14", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/W-PER-M2", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu14.u1e-2/1.u10e-1/1", "type" => "nist"}, {"id" => "u:watt_per_square_meter_steradian", "type" => "unitsml"}], "short" => "watt_per_square_meter_steradian", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "watt per square meter steradian", "lang" => "en"}], "symbols" => [{"id" => "W*m^-2*sr^-1", "ascii" => "W*m^-2*sr^-1", "html" => "W/(m^2 · sr)", "latex" => "\\ensuremath{\\mathrm{W/(m^2\\cdot sr)}}", "mathml" => "W/(m2·sr)", "unicode" => "W/(m²·sr)"}], "quantity_references" => [{"id" => "NISTq89", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu14", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu10", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/W-PER-M2-SR", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu14.u3", "type" => "nist"}, {"id" => "u:watt_second", "type" => "unitsml"}], "short" => "watt_second", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "watt second", "lang" => "en"}], "symbols" => [{"id" => "W*s", "ascii" => "W*s", "html" => "W · s", "latex" => "\\ensuremath{\\mathrm{W\\cdot s}}", "mathml" => "W·s", "unicode" => "W·s"}], "quantity_references" => [{"id" => "NISTq17", "type" => "nist"}, {"id" => "NISTq18", "type" => "nist"}, {"id" => "NISTq182", "type" => "nist"}, {"id" => "NISTq183", "type" => "nist"}, {"id" => "NISTq19", "type" => "nist"}, {"id" => "NISTq77", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu14", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/W-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu142", "type" => "nist"}, {"id" => "u:stokes", "type" => "unitsml"}], "short" => "stokes", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "stokes", "lang" => "en"}], "symbols" => [{"id" => "St", "ascii" => "St", "html" => "St", "latex" => "\\ensuremath{\\mathrm{St}}", "mathml" => "St", "unicode" => "St"}], "quantity_references" => [{"id" => "NISTq85", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:cgs:code:St", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/ST", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu143", "type" => "nist"}, {"id" => "u:gal", "type" => "unitsml"}], "short" => "gal", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "gal", "lang" => "en"}], "symbols" => [{"id" => "Gal", "ascii" => "Gal", "html" => "Gal", "latex" => "\\ensuremath{\\mathrm{Gal}}", "mathml" => "Gal", "unicode" => "Gal"}], "quantity_references" => [{"id" => "NISTq49", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:cgs:code:Gal", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/GALILEO", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu144", "type" => "nist"}, {"id" => "u:oersted", "type" => "unitsml"}], "short" => "oersted", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "oersted", "lang" => "en"}], "symbols" => [{"id" => "Oe", "ascii" => "Oe", "html" => "Oe", "latex" => "\\ensuremath{\\mathrm{Oe}}", "mathml" => "Oe", "unicode" => "Oe"}], "quantity_references" => [{"id" => "NISTq87", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:cgs:code:Oe", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/OERSTED", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu147", "type" => "nist"}, {"id" => "u:arc_minute", "type" => "unitsml"}], "short" => "arc_minute", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "arcminute", "lang" => "en"}, {"value" => "minute (minute of arc)", "lang" => "en"}, {"value" => "arcminute", "lang" => "fr"}], "symbols" => [{"id" => "'", "ascii" => "'", "html" => "′", "latex" => "\\ensuremath{\\mathrm{'}}", "mathml" => "", "unicode" => "′"}, {"id" => "prime", "ascii" => "'", "html" => "′", "latex" => "\\ensuremath{\\mathrm{'}}", "mathml" => "", "unicode" => "′"}], "quantity_references" => [{"id" => "NISTq9", "type" => "nist"}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/arcminute", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:iso1000:code:'", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/ARCMIN", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu148", "type" => "nist"}, {"id" => "u:arc_second", "type" => "unitsml"}], "short" => "arc_second", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "arcsecond", "lang" => "en"}, {"value" => "second (second of arc)", "lang" => "en"}, {"value" => "arcseconde", "lang" => "fr"}], "symbols" => [{"id" => "\"", "ascii" => "\"", "html" => "″", "latex" => "\\ensuremath{\\mathrm{''}}", "mathml" => "", "unicode" => "″"}, {"id" => "dprime", "ascii" => "\"", "html" => "″", "latex" => "\\ensuremath{\\mathrm{''}}", "mathml" => "", "unicode" => "″"}, {"id" => "as", "ascii" => "as", "html" => "as", "latex" => "\\ensuremath{\\mathrm{as}}", "mathml" => "as", "unicode" => "as"}], "quantity_references" => [{"id" => "NISTq9", "type" => "nist"}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/arcsecond", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/ARCSEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu149", "type" => "nist"}, {"id" => "u:arc_degree", "type" => "unitsml"}], "short" => "arc_degree", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "degree (degree of arc)", "lang" => "en"}, {"value" => "degré", "lang" => "fr"}], "symbols" => [{"id" => "deg", "ascii" => "deg", "html" => "°", "latex" => "\\ensuremath{\\mathrm{^{\\circ}}}", "mathml" => "°", "unicode" => "º"}], "quantity_references" => [{"id" => "NISTq9", "type" => "nist"}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/degree", "authority" => "si-digital-framework"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu15", "type" => "nist"}, {"id" => "u:coulomb", "type" => "unitsml"}], "short" => "coulomb", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "coulomb", "lang" => "en"}, {"value" => "coulomb", "lang" => "fr"}], "symbols" => [{"id" => "C", "ascii" => "C", "html" => "C", "latex" => "\\ensuremath{\\mathrm{C}}", "mathml" => "C", "unicode" => "C"}], "quantity_references" => [{"id" => "NISTq22", "type" => "nist"}, {"id" => "NISTq23", "type" => "nist"}], "si_derived_bases" => [{"power" => 1, "unit_reference" => {"id" => "NISTu2", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu4", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/coulomb", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:base-unit:code:C", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/C", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu15.u1e-2/1", "type" => "nist"}, {"id" => "u:coulomb_per_square_meter", "type" => "unitsml"}], "short" => "coulomb_per_square_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "coulomb per square meter", "lang" => "en"}], "symbols" => [{"id" => "C*m^-2", "ascii" => "C*m^-2", "html" => "C/m2", "latex" => "\\ensuremath{\\mathrm{C/m^2}}", "mathml" => "C/m2", "unicode" => "C/m²"}], "quantity_references" => [{"id" => "NISTq81", "type" => "nist"}, {"id" => "NISTq82", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu15", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/C-PER-M2", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu15.u1e-3/1", "type" => "nist"}, {"id" => "u:coulomb_per_cubic_meter", "type" => "unitsml"}], "short" => "coulomb_per_cubic_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "coulomb per cubic meter", "lang" => "en"}], "symbols" => [{"id" => "C*m^-3", "ascii" => "C*m^-3", "html" => "C/m3", "latex" => "\\ensuremath{\\mathrm{C/m^3}}", "mathml" => "C/m3", "unicode" => "C/m³"}], "quantity_references" => [{"id" => "NISTq69", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu15", "type" => "nist"}}, {"power" => -3, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/C-PER-M3", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu15.u27p10'3e-1/1", "type" => "nist"}, {"id" => "u:coulomb_per_kilogram", "type" => "unitsml"}], "short" => "coulomb_per_kilogram", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "coulomb per kilogram", "lang" => "en"}], "symbols" => [{"id" => "C*kg^-1", "ascii" => "C*kg^-1", "html" => "C/kg", "latex" => "\\ensuremath{\\mathrm{C/kg}}", "mathml" => "C/kg", "unicode" => "C/kg"}], "quantity_references" => [{"id" => "NISTq197", "type" => "nist"}, {"id" => "NISTq75", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu15", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/C-PER-KiloGM", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu152", "type" => "nist"}, {"id" => "u:knot", "type" => "unitsml"}], "short" => "knot", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "nautical mile per hour", "lang" => "en"}, {"value" => "knot", "lang" => "en"}], "symbols" => [{"id" => "kn", "ascii" => "kn", "html" => "kn", "latex" => "\\ensuremath{\\mathrm{kn}}", "mathml" => "kn", "unicode" => "kn"}], "quantity_references" => [{"id" => "NISTq12", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[kn_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/KN", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu153", "type" => "nist"}, {"id" => "u:neper", "type" => "unitsml"}], "short" => "neper", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "neper", "lang" => "en"}, {"value" => "néper", "lang" => "fr"}], "symbols" => [{"id" => "Np", "ascii" => "Np", "html" => "Np", "latex" => "\\ensuremath{\\mathrm{Np}}", "mathml" => "Np", "unicode" => "Np"}], "quantity_references" => [{"id" => "NISTq118", "type" => "nist"}, {"id" => "NISTq119", "type" => "nist"}, {"id" => "NISTq121", "type" => "nist"}, {"id" => "NISTq90", "type" => "nist"}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/neper", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:levels:code:Np", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/NP", "authority" => "qudt"}], "scale_reference" => {"id" => "logarithmic_field", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu154", "type" => "nist"}, {"id" => "u:bel", "type" => "unitsml"}], "short" => "bel", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "bel", "lang" => "en"}, {"value" => "bel", "lang" => "fr"}], "symbols" => [{"id" => "bel_B", "ascii" => "B", "html" => "B", "latex" => "\\ensuremath{\\mathrm{B}}", "mathml" => "B", "unicode" => "B"}], "quantity_references" => [{"id" => "NISTq118", "type" => "nist"}, {"id" => "NISTq119", "type" => "nist"}, {"id" => "NISTq90", "type" => "nist"}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/bel", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:levels:code:B", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/B", "authority" => "qudt"}], "scale_reference" => {"id" => "logarithmic_field", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu155", "type" => "nist"}, {"id" => "u:decibel", "type" => "unitsml"}], "short" => "decibel", "root" => false, "prefixed" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "decibel", "lang" => "en"}], "symbols" => [{"id" => "dB", "ascii" => "dB", "html" => "dB", "latex" => "\\ensuremath{\\mathrm{dB}}", "mathml" => "dB", "unicode" => "dB"}], "quantity_references" => [{"id" => "NISTq90", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu154", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_-1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/DeciB", "authority" => "qudt"}], "scale_reference" => {"id" => "logarithmic_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu156", "type" => "nist"}, {"id" => "u:mm_Hg", "type" => "unitsml"}], "short" => "mm_Hg", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "conventional millimeter of mercury", "lang" => "en"}, {"value" => "millimeter of mercury, conventional", "lang" => "en"}, {"value" => "millimeter of mercury", "lang" => "en"}], "symbols" => [{"id" => "mmHg", "ascii" => "mmHg", "html" => "mmHg", "latex" => "\\ensuremath{\\mathrm{mmHg}}", "mathml" => "mmHg", "unicode" => "mmHg"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MilliM_HG", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu157", "type" => "nist"}, {"id" => "u:darcy", "type" => "unitsml"}], "short" => "darcy", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "darcy", "lang" => "en"}], "symbols" => [{"id" => "darcy", "ascii" => "d", "html" => "d", "latex" => "\\ensuremath{\\mathrm{d}}", "mathml" => "d", "unicode" => "d"}, {"id" => "Darcy", "ascii" => "D", "html" => "D", "latex" => "\\ensuremath{\\mathrm{D}}", "mathml" => "D", "unicode" => "D"}], "quantity_references" => [{"id" => "NISTq72", "type" => "nist"}, {"id" => "NISTq92", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:iso1000:code:d", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/DARCY", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu159", "type" => "nist"}, {"id" => "u:gon", "type" => "unitsml"}], "short" => "gon", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "gon", "lang" => "en"}], "symbols" => [{"id" => "gon", "ascii" => "gon", "html" => "gon", "latex" => "\\ensuremath{\\mathrm{gon}}", "mathml" => "gon", "unicode" => "gon"}], "quantity_references" => [{"id" => "NISTq9", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:iso1000:code:gon", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/GON", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu16", "type" => "nist"}, {"id" => "u:volt", "type" => "unitsml"}], "short" => "volt", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "volt", "lang" => "en"}, {"value" => "volt", "lang" => "fr"}], "symbols" => [{"id" => "V", "ascii" => "V", "html" => "V", "latex" => "\\ensuremath{\\mathrm{V}}", "mathml" => "V", "unicode" => "V"}], "quantity_references" => [{"id" => "NISTq24", "type" => "nist"}, {"id" => "NISTq25", "type" => "nist"}, {"id" => "NISTq26", "type" => "nist"}], "si_derived_bases" => [{"power" => 2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -3, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu4", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/volt", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:V", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/V", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu16.u1e-1/1", "type" => "nist"}, {"id" => "u:volt_per_meter", "type" => "unitsml"}], "short" => "volt_per_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "volt per meter", "lang" => "en"}], "symbols" => [{"id" => "V*m^-1", "ascii" => "V*m^-1", "html" => "V/m", "latex" => "\\ensuremath{\\mathrm{V/m}}", "mathml" => "V/m", "unicode" => "V/m"}], "quantity_references" => [{"id" => "NISTq68", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu16", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/V-PER-M", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu160", "type" => "nist"}, {"id" => "u:kilometer_per_hour", "type" => "unitsml"}], "short" => "kilometer_per_hour", "root" => false, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "kilometer per hour", "lang" => "en"}], "symbols" => [{"id" => "km/h", "ascii" => "km/h", "html" => "kh/h", "latex" => "\\ensuremath{\\mathrm{kh/h}}", "mathml" => "kh/h", "unicode" => "km/h"}], "quantity_references" => [{"id" => "NISTq107", "type" => "nist"}, {"id" => "NISTq12", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu37", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/KiloM-PER-HR", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu163", "type" => "nist"}, {"id" => "u:neper_per_second", "type" => "unitsml"}], "short" => "neper_per_second", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "neper per second", "lang" => "en"}], "symbols" => [{"id" => "Np*s^-1", "ascii" => "Np*s^-1", "html" => "Np/s", "latex" => "\\ensuremath{\\mathrm{Np/s}}", "mathml" => "Np/s", "unicode" => "Np/s"}], "quantity_references" => [{"id" => "NISTq120", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu153", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/NP-PER-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu164", "type" => "nist"}, {"id" => "u:square_yard", "type" => "unitsml"}], "short" => "square_yard", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "square yard", "lang" => "en"}], "symbols" => [{"id" => "yd^2", "ascii" => "yd^2", "html" => "yd2", "latex" => "\\ensuremath{\\mathrm{yd^2}}", "mathml" => "yd2", "unicode" => "yd²"}], "quantity_references" => [{"id" => "NISTq8", "type" => "nist"}], "root_units" => [{"power" => 2, "unit_reference" => {"id" => "NISTu84", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[syd_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/YD2", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu165", "type" => "nist"}, {"id" => "u:square_mile", "type" => "unitsml"}], "short" => "square_mile", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "square mile", "lang" => "en"}], "symbols" => [{"id" => "mi^2", "ascii" => "mi^2", "html" => "mi2", "latex" => "\\ensuremath{\\mathrm{mi^2}}", "mathml" => "mi2", "unicode" => "mi²"}], "quantity_references" => [{"id" => "NISTq8", "type" => "nist"}], "root_units" => [{"power" => 2, "unit_reference" => {"id" => "NISTu83", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-lengths:code:[smi_us]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MI2", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu166", "type" => "nist"}, {"id" => "u:tons_of_tnt", "type" => "unitsml"}], "short" => "tons_of_tnt", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "ton of TNT (energy equivalent)", "lang" => "en"}, {"value" => "ton", "lang" => "en"}], "symbols" => [{"id" => "ton_TNT", "ascii" => "ton", "html" => "ton", "latex" => "\\ensuremath{\\mathrm{ton}}", "mathml" => "ton", "unicode" => "ton"}], "quantity_references" => [{"id" => "NISTq17", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/TonEnergy", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu167", "type" => "nist"}, {"id" => "u:foot_per_second_squared", "type" => "unitsml"}], "short" => "foot_per_second_squared", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "foot per second squared", "lang" => "en"}], "symbols" => [{"id" => "ft*s^-2", "ascii" => "ft*s^-2", "html" => "ft/s2", "latex" => "\\ensuremath{\\mathrm{ft/s^2}}", "mathml" => "ft/s2", "unicode" => "ft/s²"}], "quantity_references" => [{"id" => "NISTq49", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu78", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FT-PER-SEC2", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu168", "type" => "nist"}, {"id" => "u:cubic_inch", "type" => "unitsml"}], "short" => "cubic_inch", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "cubic inch", "lang" => "en"}], "symbols" => [{"id" => "in^3", "ascii" => "in^3", "html" => "in3", "latex" => "\\ensuremath{\\mathrm{in^3}}", "mathml" => "in3", "unicode" => "in³"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "root_units" => [{"power" => 3, "unit_reference" => {"id" => "NISTu8", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[cin_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/IN3", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu169", "type" => "nist"}, {"id" => "u:cubic_foot", "type" => "unitsml"}], "short" => "cubic_foot", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "cubic foot", "lang" => "en"}], "symbols" => [{"id" => "ft^3", "ascii" => "ft^3", "html" => "ft3", "latex" => "\\ensuremath{\\mathrm{ft^3}}", "mathml" => "ft3", "unicode" => "ft³"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "root_units" => [{"power" => 3, "unit_reference" => {"id" => "NISTu78", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[cft_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FT3", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu17", "type" => "nist"}, {"id" => "u:farad", "type" => "unitsml"}], "short" => "farad", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "farad", "lang" => "en"}, {"value" => "farad", "lang" => "fr"}], "symbols" => [{"id" => "F", "ascii" => "F", "html" => "F", "latex" => "\\ensuremath{\\mathrm{F}}", "mathml" => "F", "unicode" => "F"}], "quantity_references" => [{"id" => "NISTq27", "type" => "nist"}], "si_derived_bases" => [{"power" => -2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => 4, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}, {"power" => 2, "unit_reference" => {"id" => "NISTu4", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/farad", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:F", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/F", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu17.u1e-1/1", "type" => "nist"}, {"id" => "u:farad_per_meter", "type" => "unitsml"}], "short" => "farad_per_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "farad per meter", "lang" => "en"}], "symbols" => [{"id" => "F*m^-1", "ascii" => "F*m^-1", "html" => "F/m", "latex" => "\\ensuremath{\\mathrm{F/m}}", "mathml" => "F/m", "unicode" => "F/m"}], "quantity_references" => [{"id" => "NISTq71", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu17", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FARAD-PER-M", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu170", "type" => "nist"}, {"id" => "u:cubic_yard", "type" => "unitsml"}], "short" => "cubic_yard", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "cubic yard", "lang" => "en"}], "symbols" => [{"id" => "yd^3", "ascii" => "yd^3", "html" => "yd3", "latex" => "\\ensuremath{\\mathrm{yd^3}}", "mathml" => "yd3", "unicode" => "yd³"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "root_units" => [{"power" => 3, "unit_reference" => {"id" => "NISTu84", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[cyd_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/YD3", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu171", "type" => "nist"}, {"id" => "u:imperial_gallon", "type" => "unitsml"}], "short" => "imperial_gallon", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "gallon (UK)", "lang" => "en"}, {"value" => "imperial gallon", "lang" => "en"}, {"value" => "gallon", "lang" => "en"}], "symbols" => [{"id" => "gal (UK)", "ascii" => "gal (UK)", "html" => "gal (UK)", "latex" => "\\ensuremath{\\mathrm{gal (UK)}}", "mathml" => "gal (UK)", "unicode" => "gal (UK)"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:brit-volumes:code:[gal_br]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/GAL_IMP", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu172", "type" => "nist"}, {"id" => "u:imperial_pint", "type" => "unitsml"}], "short" => "imperial_pint", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "pint (UK)", "lang" => "en"}, {"value" => "pint", "lang" => "en"}], "symbols" => [{"id" => "pt (UK)", "ascii" => "pt (UK)", "html" => "pt (UK)", "latex" => "\\ensuremath{\\mathrm{pint~{UK}}", "mathml" => "pt (UK)", "unicode" => "pt (UK)"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[pt_us]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/PINT_UK", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu173", "type" => "nist"}, {"id" => "u:imperial_ounce", "type" => "unitsml"}], "short" => "imperial_ounce", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "fluid ounce (UK)", "lang" => "en"}, {"value" => "fluid ounce", "lang" => "en"}, {"value" => "ounce", "lang" => "en"}], "symbols" => [{"id" => "fl oz (UK)", "ascii" => "fl oz (UK)", "html" => "fl oz (UK)", "latex" => "\\ensuremath{\\mathrm{fl oz (UK)}}", "mathml" => "fl oz (UK)", "unicode" => "fl oz (UK)"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[foz_us]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/OZ_VOL_UK", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu175", "type" => "nist"}, {"id" => "u:us_gallon", "type" => "unitsml"}], "short" => "us_gallon", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "gallon (US)", "lang" => "en"}, {"value" => "gallon", "lang" => "en"}], "symbols" => [{"id" => "gal (US)", "ascii" => "gal (US)", "html" => "gal (US)", "latex" => "\\ensuremath{\\mathrm{gal (US)}}", "mathml" => "gal (US)", "unicode" => "gal (US)"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:brit-volumes:code:[gal_br]", "authority" => "ucum"}], "scale_reference" => {"id" => "continuous_interval", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu176", "type" => "nist"}, {"id" => "u:us_pint", "type" => "unitsml"}], "short" => "us_pint", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "liquid pint (US)", "lang" => "en"}, {"value" => "pint", "lang" => "en"}], "symbols" => [{"id" => "liq pint (US)", "ascii" => "liq pint (US)", "html" => "liq pint (US)", "latex" => "\\ensuremath{\\mathrm{liq pint (US)}}", "mathml" => "liq pint (US)", "unicode" => "liq pint (US)"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[pt_us]", "authority" => "ucum"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu177", "type" => "nist"}, {"id" => "u:us_fluid_ounce", "type" => "unitsml"}], "short" => "us_fluid_ounce", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "fluid ounce (US)", "lang" => "en"}, {"value" => "fluid ounce", "lang" => "en"}, {"value" => "ounce", "lang" => "en"}], "symbols" => [{"id" => "fl oz (US)", "ascii" => "fl oz (US)", "html" => "fl oz (US)", "latex" => "\\ensuremath{\\mathrm{fl oz (US)}}", "mathml" => "fl oz (US)", "unicode" => "fl oz (US)"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[foz_us]", "authority" => "ucum"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu178", "type" => "nist"}, {"id" => "u:petro_barrel", "type" => "unitsml"}], "short" => "petro_barrel", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "barrel (US) for petroleum", "lang" => "en"}, {"value" => "barrel", "lang" => "en"}], "symbols" => [{"id" => "bbl (US)", "ascii" => "bbl (US)", "html" => "bbl (US)", "latex" => "\\ensuremath{\\mathrm{bbl (US)}}", "mathml" => "bbl (US)", "unicode" => "bbl (US)"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[bbl_us]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/BBL", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu179", "type" => "nist"}, {"id" => "u:us_bushel", "type" => "unitsml"}], "short" => "us_bushel", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "bushel (US)", "lang" => "en"}, {"value" => "bushel", "lang" => "en"}], "symbols" => [{"id" => "bu (US)", "ascii" => "bu (US)", "html" => "bu (US)", "latex" => "\\ensuremath{\\mathrm{bu (US)}}", "mathml" => "bu (US)", "unicode" => "bu (US)"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[bu_us]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/BU_US", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu18", "type" => "nist"}, {"id" => "u:ohm", "type" => "unitsml"}], "short" => "ohm", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "ohm", "lang" => "en"}, {"value" => "ohm", "lang" => "fr"}], "symbols" => [{"id" => "Ohm", "ascii" => "Ohm", "html" => "Ω", "latex" => "\\ensuremath{\\mathrm{\\Omega}}", "mathml" => "", "unicode" => "Ω"}], "quantity_references" => [{"id" => "NISTq28", "type" => "nist"}], "si_derived_bases" => [{"power" => 2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => 4, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}, {"power" => 2, "unit_reference" => {"id" => "NISTu4", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/ohm", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:Ohm", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/OHM", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu180", "type" => "nist"}, {"id" => "u:us_dry_pint", "type" => "unitsml"}], "short" => "us_dry_pint", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "dry pint (US)", "lang" => "en"}, {"value" => "pint", "lang" => "en"}], "symbols" => [{"id" => "dry pt (US)", "ascii" => "dry pt (US)", "html" => "dry pt (US)", "latex" => "\\ensuremath{\\mathrm{dry pt (US)}}", "mathml" => "dry pt (US)", "unicode" => "dry pt (US)"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[pt_us]", "authority" => "ucum"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu182", "type" => "nist"}, {"id" => "u:light_year", "type" => "unitsml"}], "short" => "light_year", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "light year", "lang" => "en"}], "symbols" => [{"id" => "l.y.", "ascii" => "l.y.", "html" => "l.y.", "latex" => "\\ensuremath{\\mathrm{l.y.}}", "mathml" => "l.y.", "unicode" => "l.y."}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:const:code:[ly]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/LY", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu183", "type" => "nist"}, {"id" => "u:astronomical_unit", "type" => "unitsml"}], "short" => "astronomical_unit", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "astronomical unit", "lang" => "en"}, {"value" => "unité astronomique", "lang" => "fr"}], "symbols" => [{"id" => "ua", "ascii" => "ua", "html" => "ua", "latex" => "\\ensuremath{\\mathrm{ua}}", "mathml" => "ua", "unicode" => "ua"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/astronomicalunit", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/AU", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu184", "type" => "nist"}, {"id" => "u:parsec", "type" => "unitsml"}], "short" => "parsec", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "parsec", "lang" => "en"}], "symbols" => [{"id" => "pc", "ascii" => "pc", "html" => "pc", "latex" => "\\ensuremath{\\mathrm{pc}}", "mathml" => "pc", "unicode" => "pc"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:iso1000:code:pc", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/PARSEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu185", "type" => "nist"}, {"id" => "u:meter_to_the_power_four", "type" => "unitsml"}], "short" => "meter_to_the_power_four", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "meter to the power four", "lang" => "en"}], "symbols" => [{"id" => "m^4", "ascii" => "m^4", "html" => "m4", "latex" => "\\ensuremath{\\mathrm{m^4}}", "mathml" => "m4", "unicode" => "m⁴"}], "quantity_references" => [{"id" => "NISTq144", "type" => "nist"}, {"id" => "NISTq145", "type" => "nist"}], "root_units" => [{"power" => 4, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/M4", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu188", "type" => "nist"}, {"id" => "u:kilogram_per_liter", "type" => "unitsml"}], "short" => "kilogram_per_liter", "root" => false, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "kilogram per liter", "lang" => "en"}], "symbols" => [{"id" => "kg*l^-1", "ascii" => "kg*l^-1", "html" => "kg/l", "latex" => "\\ensuremath{\\mathrm{kg/l}}", "mathml" => "kg/l", "unicode" => "kg/l"}], "quantity_references" => [{"id" => "NISTq51", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu130", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/KiloGM-PER-L", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu189", "type" => "nist"}, {"id" => "u:metric_ton_per_cubic_meter", "type" => "unitsml"}], "short" => "metric_ton_per_cubic_meter", "root" => false, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "metric ton per cubic meter", "lang" => "en"}], "symbols" => [{"id" => "t*m^-3", "ascii" => "t*m^-3", "html" => "t/m3", "latex" => "\\ensuremath{\\mathrm{t/m^3}}", "mathml" => "t/m3", "unicode" => "t/m³"}], "quantity_references" => [{"id" => "NISTq51", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu88", "type" => "nist"}}, {"power" => -3, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/TONNE-PER-M3", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu19", "type" => "nist"}, {"id" => "u:siemens", "type" => "unitsml"}], "short" => "siemens", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "siemens", "lang" => "en"}, {"value" => "siemens", "lang" => "fr"}], "symbols" => [{"id" => "S", "ascii" => "S", "html" => "S", "latex" => "\\ensuremath{\\mathrm{S}}", "mathml" => "S", "unicode" => "S"}], "quantity_references" => [{"id" => "NISTq29", "type" => "nist"}], "si_derived_bases" => [{"power" => -2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => 3, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}, {"power" => 2, "unit_reference" => {"id" => "NISTu4", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/siemens", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:S", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/S", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu196", "type" => "nist"}, {"id" => "u:gram_force", "type" => "unitsml"}], "short" => "gram_force", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "gram-force", "lang" => "en"}], "symbols" => [{"id" => "gf", "ascii" => "gf", "html" => "gf", "latex" => "\\ensuremath{\\mathrm{gf}}", "mathml" => "gf", "unicode" => "gf"}], "quantity_references" => [{"id" => "NISTq13", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu196", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "ucum:unit:const:code:gf", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/GM_F", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu1e-1/1", "type" => "nist"}, {"id" => "u:meter_to_the_power_minus_one", "type" => "unitsml"}], "short" => "meter_to_the_power_minus_one", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "meter to the power minus one", "lang" => "en"}, {"value" => "reciprocal meter", "lang" => "en"}], "symbols" => [{"id" => "m^-1", "ascii" => "m^-1", "html" => "m-1", "latex" => "\\ensuremath{\\mathrm{m^{-1}}}", "mathml" => "m1", "unicode" => "m⁻¹"}], "quantity_references" => [{"id" => "NISTq106", "type" => "nist"}, {"id" => "NISTq115", "type" => "nist"}, {"id" => "NISTq122", "type" => "nist"}, {"id" => "NISTq123", "type" => "nist"}, {"id" => "NISTq124", "type" => "nist"}, {"id" => "NISTq50", "type" => "nist"}], "root_units" => [{"power" => -1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu1e-2/1", "type" => "nist"}, {"id" => "u:meter_to_the_power_minus_two", "type" => "unitsml"}], "short" => "meter_to_the_power_minus_two", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "meter to the power minus two", "lang" => "en"}, {"value" => "reciprocal square meter", "lang" => "en"}], "symbols" => [{"id" => "m^-2", "ascii" => "m^-2", "html" => "m-2", "latex" => "\\ensuremath{\\mathrm{m^{-2}}}", "mathml" => "m2", "unicode" => "m⁻²"}], "quantity_references" => [{"id" => "NISTq190", "type" => "nist"}], "root_units" => [{"power" => -2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu1e-2/1.u3e-1/1", "type" => "nist"}, {"id" => "u:meter_to_the_power_minus_two_per_second", "type" => "unitsml"}], "short" => "meter_to_the_power_minus_two_per_second", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "meter to the power minus two per second", "lang" => "en"}, {"value" => "reciprocal square meter per second", "lang" => "en"}], "symbols" => [{"id" => "m^-2*s^-1", "ascii" => "m^-2*s^-1", "html" => "m-2/s", "latex" => "\\ensuremath{\\mathrm{m^{-2}/s}}", "mathml" => "m2/s", "unicode" => "m⁻²·s⁻¹"}], "quantity_references" => [{"id" => "NISTq191", "type" => "nist"}], "root_units" => [{"power" => -2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu1e2/1", "type" => "nist"}, {"id" => "u:square_meter", "type" => "unitsml"}], "short" => "square_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "square meter", "lang" => "en"}], "symbols" => [{"id" => "m^2", "ascii" => "m^2", "html" => "m2", "latex" => "\\ensuremath{\\mathrm{m^2}}", "mathml" => "m2", "unicode" => "m²"}], "quantity_references" => [{"id" => "NISTq8", "type" => "nist"}], "root_units" => [{"power" => 2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/M2", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu1e2/1.u3e-1/1", "type" => "nist"}, {"id" => "u:meter_squared_per_second", "type" => "unitsml"}], "short" => "meter_squared_per_second", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "meter squared per second", "lang" => "en"}], "symbols" => [{"id" => "m^2*s^-1", "ascii" => "m^2*s^-1", "html" => "m2/s", "latex" => "\\ensuremath{\\mathrm{m^2/s}}", "mathml" => "m2/s", "unicode" => "m²/s"}], "quantity_references" => [{"id" => "NISTq85", "type" => "nist"}], "root_units" => [{"power" => 2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/M2-PER-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu1e3/1", "type" => "nist"}, {"id" => "u:cubic_meter", "type" => "unitsml"}], "short" => "cubic_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "cubic meter", "lang" => "en"}], "symbols" => [{"id" => "m^3", "ascii" => "m^3", "html" => "m3", "latex" => "\\ensuremath{\\mathrm{m^3}}", "mathml" => "m3", "unicode" => "m³"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}, {"id" => "NISTq146", "type" => "nist"}], "root_units" => [{"power" => 3, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/M3", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu1e3/1.u27p10'3", "type" => "nist"}, {"id" => "u:cubic_meter_per_kilogram", "type" => "unitsml"}], "short" => "cubic_meter_per_kilogram", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "cubic meter per kilogram", "lang" => "en"}], "symbols" => [{"id" => "m^3*kg", "ascii" => "m^3*kg", "html" => "m3/kg", "latex" => "\\ensuremath{\\mathrm{m^3/kg}}", "mathml" => "m3/kg", "unicode" => "m³·kg"}], "quantity_references" => [{"id" => "NISTq52", "type" => "nist"}], "root_units" => [{"power" => 3, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu1e3/1.u3e-1/1", "type" => "nist"}, {"id" => "u:cubic_meter_per_second", "type" => "unitsml"}], "short" => "cubic_meter_per_second", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "cubic meter per second", "lang" => "en"}], "symbols" => [{"id" => "m^3*s^-1", "ascii" => "m^3*s^-1", "html" => "m3/s", "latex" => "\\ensuremath{\\mathrm{m^3/s}}", "mathml" => "m3/s", "unicode" => "m³/s"}], "quantity_references" => [{"id" => "NISTq151", "type" => "nist"}], "root_units" => [{"power" => 3, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/M3-PER-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu2", "type" => "nist"}, {"id" => "u:kilogram", "type" => "unitsml"}], "short" => "kilogram", "root" => false, "prefixed" => true, "unit_system_reference" => [{"id" => "si-base", "type" => "unitsml"}], "names" => [{"value" => "kilogram", "lang" => "en"}, {"value" => "kilogramme", "lang" => "fr"}], "symbols" => [{"id" => "kg", "ascii" => "kg", "html" => "kg", "latex" => "\\ensuremath{\\mathrm{kg}}", "mathml" => "kg", "unicode" => "kg"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/kilogram", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/KiloGM", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu20", "type" => "nist"}, {"id" => "u:weber", "type" => "unitsml"}], "short" => "weber", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "weber", "lang" => "en"}, {"value" => "weber", "lang" => "fr"}], "symbols" => [{"id" => "Wb", "ascii" => "Wb", "html" => "Wb", "latex" => "\\ensuremath{\\mathrm{Wb}}", "mathml" => "Wb", "unicode" => "Wb"}], "quantity_references" => [{"id" => "NISTq30", "type" => "nist"}], "si_derived_bases" => [{"power" => 2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu4", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/weber", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:Wb", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/WB", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu201", "type" => "nist"}, {"id" => "u:av_pound", "type" => "unitsml"}], "short" => "av_pound", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "pound (avoirdupois)", "lang" => "en"}, {"value" => "avoirdupois pound", "lang" => "en"}, {"value" => "pound", "lang" => "en"}], "symbols" => [{"id" => "lb", "ascii" => "lb", "html" => "lb", "latex" => "\\ensuremath{\\mathrm{lb}}", "mathml" => "lb", "unicode" => "lb"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:avoirdupois:code:[lb_av]", "authority" => "ucum"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu202", "type" => "nist"}, {"id" => "u:av_ounce", "type" => "unitsml"}], "short" => "av_ounce", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "ounce (avoirdupois)", "lang" => "en"}, {"value" => "avoirdupois ounce", "lang" => "en"}, {"value" => "ounce", "lang" => "en"}], "symbols" => [{"id" => "oz", "ascii" => "oz", "html" => "oz", "latex" => "\\ensuremath{\\mathrm{oz}}", "mathml" => "oz", "unicode" => "oz"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:avoirdupois:code:[oz_av]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/OZ-FT", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu203", "type" => "nist"}, {"id" => "u:gross_hundredweight", "type" => "unitsml"}], "short" => "gross_hundredweight", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "hundredweight (long, 112 lb)", "lang" => "en"}, {"value" => "hundredweight", "lang" => "en"}], "symbols" => [{"id" => "cwt (UK)", "ascii" => "cwt (UK)", "html" => "cwt (UK)", "latex" => "\\ensuremath{\\mathrm{cwt (UK)}}", "mathml" => "cwt (UK)", "unicode" => "cwt (UK)"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu204", "type" => "nist"}, {"id" => "u:pound_per_cubic_foot", "type" => "unitsml"}], "short" => "pound_per_cubic_foot", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "pound per cubic foot", "lang" => "en"}], "symbols" => [{"id" => "lb*ft^-3", "ascii" => "lb*ft^-3", "html" => "lb/ft3", "latex" => "\\ensuremath{\\mathrm{lb/ft^3}}", "mathml" => "lb/ft3", "unicode" => "lb/ft³"}], "quantity_references" => [{"id" => "NISTq51", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu201", "type" => "nist"}}, {"power" => -3, "unit_reference" => {"id" => "NISTu78", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/LB-PER-FT3", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu205", "type" => "nist"}, {"id" => "u:pound_force", "type" => "unitsml"}], "short" => "pound_force", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "pound-force", "lang" => "en"}], "symbols" => [{"id" => "lbf", "ascii" => "lbf", "html" => "lbf", "latex" => "\\ensuremath{\\mathrm{lbf}}", "mathml" => "lbf", "unicode" => "lbf"}], "quantity_references" => [{"id" => "NISTq128", "type" => "nist"}, {"id" => "NISTq13", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:const:code:[lbf_av]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/LB_F", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu206", "type" => "nist"}, {"id" => "u:foot_pound_force", "type" => "unitsml"}], "short" => "foot_pound_force", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "foot pound-force", "lang" => "en"}], "symbols" => [{"id" => "ft*lbf", "ascii" => "ft*lbf", "html" => "ft · lbf", "latex" => "\\ensuremath{\\mathrm{ft\\cdot lbf}}", "mathml" => "ft·lbf", "unicode" => "ft·lbf"}], "quantity_references" => [{"id" => "NISTq17", "type" => "nist"}, {"id" => "NISTq18", "type" => "nist"}, {"id" => "NISTq182", "type" => "nist"}, {"id" => "NISTq183", "type" => "nist"}, {"id" => "NISTq184", "type" => "nist"}, {"id" => "NISTq185", "type" => "nist"}, {"id" => "NISTq60", "type" => "nist"}, {"id" => "NISTq77", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu78", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu205", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FT-LB_F", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu207", "type" => "nist"}, {"id" => "u:pound_force_per_square_inch", "type" => "unitsml"}], "short" => "pound_force_per_square_inch", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "pound-force per square inch", "lang" => "en"}], "symbols" => [{"id" => "lbf*in^-2", "ascii" => "lbf*in^-2", "html" => "lbf/in2", "latex" => "\\ensuremath{\\mathrm{lbf/in^2}}", "mathml" => "lbf/in2", "unicode" => "psi"}, {"id" => "psi", "ascii" => "psi", "html" => "psi", "latex" => "\\ensuremath{\\mathrm{psi}}", "mathml" => "psi", "unicode" => "lbf/in²"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu205", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu8", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "ucum:unit:misc:code:[psi]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/LB_F-PER-IN2", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu208", "type" => "nist"}, {"id" => "u:inch_to_the_fourth_power", "type" => "unitsml"}], "short" => "inch_to_the_fourth_power", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "inch to the fourth power", "lang" => "en"}], "symbols" => [{"id" => "in^4", "ascii" => "in^4", "html" => "in4", "latex" => "\\ensuremath{\\mathrm{in^4}}", "mathml" => "in4", "unicode" => "in⁴"}], "quantity_references" => [{"id" => "NISTq155", "type" => "nist"}], "root_units" => [{"power" => 4, "unit_reference" => {"id" => "NISTu8", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/IN4", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu209", "type" => "nist"}, {"id" => "u:inch_cubed", "type" => "unitsml"}], "short" => "inch_cubed", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "inch cubed", "lang" => "en"}], "symbols" => [{"id" => "in^3_section_modulus", "ascii" => "in^3", "html" => "in3", "latex" => "\\ensuremath{\\mathrm{in^3}}", "mathml" => "in3", "unicode" => "in³"}], "quantity_references" => [{"id" => "NISTq146", "type" => "nist"}], "root_units" => [{"power" => 3, "unit_reference" => {"id" => "NISTu8", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/IN3", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu21", "type" => "nist"}, {"id" => "u:tesla", "type" => "unitsml"}], "short" => "tesla", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "tesla", "lang" => "en"}, {"value" => "tesla", "lang" => "fr"}], "symbols" => [{"id" => "T", "ascii" => "T", "html" => "T", "latex" => "\\ensuremath{\\mathrm{T}}", "mathml" => "T", "unicode" => "T"}], "quantity_references" => [{"id" => "NISTq14", "type" => "nist"}], "si_derived_bases" => [{"power" => 1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu4", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/tesla", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:T", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/T", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu210", "type" => "nist"}, {"id" => "u:foot_squared_per_second", "type" => "unitsml"}], "short" => "foot_squared_per_second", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "foot squared per second", "lang" => "en"}], "symbols" => [{"id" => "ft^2*s^-1", "ascii" => "ft^2*s^-1", "html" => "ft2/s", "latex" => "\\ensuremath{\\mathrm{ft^2/s}}", "mathml" => "ft2/s", "unicode" => "ft²/s"}], "quantity_references" => [{"id" => "NISTq85", "type" => "nist"}], "root_units" => [{"power" => 2, "unit_reference" => {"id" => "NISTu78", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FT2-PER-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu211", "type" => "nist"}, {"id" => "u:foot_pound_force_per_second", "type" => "unitsml"}], "short" => "foot_pound_force_per_second", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "foot pound-force per second", "lang" => "en"}], "symbols" => [{"id" => "ft*lbf*s^-1", "ascii" => "ft*lbf*s^-1", "html" => "ft · lbf/s", "latex" => "\\ensuremath{\\mathrm{ft\\cdot lbf/s}}", "mathml" => "ft·lbf/s", "unicode" => "ft·lbf/2"}], "quantity_references" => [{"id" => "NISTq20", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu78", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu205", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FT-LB_F-PER-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu212", "type" => "nist"}, {"id" => "u:carat", "type" => "unitsml"}], "short" => "carat", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "carat", "lang" => "en"}, {"value" => "metric carat", "lang" => "en"}, {"value" => "carat, metric", "lang" => "en"}], "symbols" => [{"id" => "ct", "ascii" => "ct", "html" => "ct", "latex" => "\\ensuremath{\\mathrm{ct}}", "mathml" => "ct", "unicode" => "ct"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:misc:code:[car_m]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/CARAT", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu213", "type" => "nist"}, {"id" => "u:tex", "type" => "unitsml"}], "short" => "tex", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "tex", "lang" => "en"}], "symbols" => [{"id" => "tex", "ascii" => "tex", "html" => "tex", "latex" => "\\ensuremath{\\mathrm{tex}}", "mathml" => "tex", "unicode" => "tex"}], "quantity_references" => [{"id" => "NISTq126", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:heat:code:tex", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/TEX", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu214", "type" => "nist"}, {"id" => "u:torr", "type" => "unitsml"}], "short" => "torr", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "torr", "lang" => "en"}], "symbols" => [{"id" => "Torr", "ascii" => "Torr", "html" => "Torr", "latex" => "\\ensuremath{\\mathrm{torr}}", "mathml" => "Torr", "unicode" => "torr"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/TORR", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu215", "type" => "nist"}, {"id" => "u:mm_water", "type" => "unitsml"}], "short" => "mm_water", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "conventional millimeter of water", "lang" => "en"}, {"value" => "millimeter of water, conventional", "lang" => "en"}, {"value" => "millimeter of water", "lang" => "en"}], "symbols" => [{"id" => "mmH_2O", "ascii" => "mmH_2O", "html" => "mmH2O", "latex" => "\\ensuremath{\\mathrm{mmH_{2}O}}", "mathml" => "mmH2O", "unicode" => "mmH₂O"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu216", "type" => "nist"}, {"id" => "u:thermo_btu", "type" => "unitsml"}], "short" => "thermo_btu", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "British thermal unit_th", "lang" => "en"}, {"value" => "thermochemical Btu", "lang" => "en"}], "symbols" => [{"id" => "Btu_th", "ascii" => "Btu_th", "html" => "Btuth", "latex" => "\\ensuremath{\\mathrm{Btu_{th}}}", "mathml" => "Btuth", "unicode" => "Btu_th"}], "quantity_references" => [{"id" => "NISTq19", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu217", "type" => "nist"}, {"id" => "u:kilogram_force_meter_per_second", "type" => "unitsml"}], "short" => "kilogram_force_meter_per_second", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "kilogram-force meter per second", "lang" => "en"}], "symbols" => [{"id" => "kgf*m*s^-1", "ascii" => "kgf*m*s^-1", "html" => "kgf · m/s", "latex" => "\\ensuremath{\\mathrm{kgf\\cdot m/s}}", "mathml" => "kgf·m/s", "unicode" => "kgf·m/s"}], "quantity_references" => [{"id" => "NISTq20", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu196", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/KiloGM_F-M-PER-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu218", "type" => "nist"}, {"id" => "u:metric_horsepower", "type" => "unitsml"}], "short" => "metric_horsepower", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "horsepower, metric", "lang" => "en"}, {"value" => "metric horsepower", "lang" => "en"}], "symbols" => [{"id" => "hp_metric", "ascii" => "hp", "html" => "hp", "latex" => "\\ensuremath{\\mathrm{hp}}", "mathml" => "hp", "unicode" => "hp"}], "quantity_references" => [{"id" => "NISTq20", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/HP_Metric", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu22", "type" => "nist"}, {"id" => "u:henry", "type" => "unitsml"}], "short" => "henry", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "henry", "lang" => "en"}, {"value" => "henry", "lang" => "fr"}], "symbols" => [{"id" => "H", "ascii" => "H", "html" => "H", "latex" => "\\ensuremath{\\mathrm{H}}", "mathml" => "H", "unicode" => "H"}], "quantity_references" => [{"id" => "NISTq32", "type" => "nist"}], "si_derived_bases" => [{"power" => 2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu4", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/henry", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:H", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/H", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu22.u1e-1/1", "type" => "nist"}, {"id" => "u:henry_per_meter", "type" => "unitsml"}], "short" => "henry_per_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "henry per meter", "lang" => "en"}], "symbols" => [{"id" => "H*m^-1", "ascii" => "H*m^-1", "html" => "H/m", "latex" => "\\ensuremath{\\mathrm{H/m}}", "mathml" => "H/m", "unicode" => "H/m"}], "quantity_references" => [{"id" => "NISTq72", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu22", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/H-PER-M", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu221", "type" => "nist"}, {"id" => "u:watt_per_square_meter_kelvin", "type" => "unitsml"}], "short" => "watt_per_square_meter_kelvin", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "watt per square meter kelvin", "lang" => "en"}], "symbols" => [{"id" => "W*m^-2*K^-1", "ascii" => "W*m^-2*K^-1", "html" => "W/(m 2 · K)", "latex" => "\\ensuremath{\\mathrm{W/(m^2\\cdot K)}}", "mathml" => "W/(m2·K)", "unicode" => "W/(m²·K)"}], "quantity_references" => [{"id" => "NISTq180", "type" => "nist"}, {"id" => "NISTq181", "type" => "nist"}], "root_units" => [{"power" => -1, "unit_reference" => {"id" => "NISTu5", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/W-PER-M2-K", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu222", "type" => "nist"}, {"id" => "u:lambert", "type" => "unitsml"}], "short" => "lambert", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "lambert", "lang" => "en"}], "symbols" => [{"id" => "Lambert", "ascii" => "L", "html" => "L", "latex" => "\\ensuremath{\\mathrm{L}}", "mathml" => "L", "unicode" => "L"}], "quantity_references" => [{"id" => "NISTq56", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:cgs:code:Lmb", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/LA", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu223", "type" => "nist"}, {"id" => "u:gilbert", "type" => "unitsml"}], "short" => "gilbert", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "gilbert", "lang" => "en"}], "symbols" => [{"id" => "Gi", "ascii" => "Gi", "html" => "Gi", "latex" => "\\ensuremath{\\mathrm{Gi}}", "mathml" => "Gi", "unicode" => "Gi"}], "quantity_references" => [{"id" => "NISTq161", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:cgs:code:Gb", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/GI", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu224", "type" => "nist"}, {"id" => "u:debye", "type" => "unitsml"}], "short" => "debye", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "debye", "lang" => "en"}], "symbols" => [{"id" => "D", "ascii" => "D", "html" => "D", "latex" => "\\ensuremath{\\mathrm{D}}", "mathml" => "D", "unicode" => "D"}], "quantity_references" => [{"id" => "NISTq162", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/DEBYE", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu225", "type" => "nist"}, {"id" => "u:abwatt", "type" => "unitsml"}], "short" => "abwatt", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "abwatt", "lang" => "en"}], "symbols" => [{"id" => "aW (Cardelli)", "ascii" => "aW (Cardelli)", "html" => "aW", "latex" => "\\ensuremath{\\mathrm{aW}}", "mathml" => "aW", "unicode" => "aW"}], "quantity_references" => [{"id" => "NISTq20", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu226", "type" => "nist"}, {"id" => "u:slug", "type" => "unitsml"}], "short" => "slug", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "slug", "lang" => "en"}], "symbols" => [{"id" => "slug", "ascii" => "slug", "html" => "slug", "latex" => "\\ensuremath{\\mathrm{D}}", "mathml" => "slug", "unicode" => "slug"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/SLUG", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu227", "type" => "nist"}, {"id" => "u:thermo_calorie", "type" => "unitsml"}], "short" => "thermo_calorie", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "thermochemical calorie", "lang" => "en"}, {"value" => "calorie_th", "lang" => "en"}, {"value" => "calorie", "lang" => "en"}], "symbols" => [{"id" => "cal_th", "ascii" => "cal_th", "html" => "calth", "latex" => "\\ensuremath{\\mathrm{cal_th}}", "mathml" => "calth", "unicode" => "cal_th"}, {"id" => "cal", "ascii" => "cal", "html" => "cal", "latex" => "\\ensuremath{\\mathrm{cal}}", "mathml" => "cal", "unicode" => "cal"}], "quantity_references" => [{"id" => "NISTq17", "type" => "nist"}, {"id" => "NISTq18", "type" => "nist"}, {"id" => "NISTq182", "type" => "nist"}, {"id" => "NISTq183", "type" => "nist"}, {"id" => "NISTq19", "type" => "nist"}, {"id" => "NISTq77", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:heat:code:cal_th", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/CAL_TH", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu228", "type" => "nist"}, {"id" => "u:short_ton", "type" => "unitsml"}], "short" => "short_ton", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "short ton", "lang" => "en"}, {"value" => "ton", "lang" => "en"}], "symbols" => [{"id" => "ton_short", "ascii" => "ton", "html" => "t", "latex" => "\\ensuremath{\\mathrm{t}}", "mathml" => "t", "unicode" => "t"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:avoirdupois:code:[ston_av]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/TON_SHORT", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu229", "type" => "nist"}, {"id" => "u:long_ton", "type" => "unitsml"}], "short" => "long_ton", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "long ton", "lang" => "en"}, {"value" => "ton", "lang" => "en"}], "symbols" => [{"id" => "ton_long", "ascii" => "ton", "html" => "t", "latex" => "\\ensuremath{\\mathrm{t}}", "mathml" => "t", "unicode" => "t"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:avoirdupois:code:[lton_av]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/TON_LONG", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu23", "type" => "nist"}, {"id" => "u:degree_Celsius", "type" => "unitsml"}], "short" => "degree_Celsius", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "degree Celsius", "lang" => "en"}, {"value" => "degré Celsius", "lang" => "fr"}], "symbols" => [{"id" => "degC", "ascii" => "degC", "html" => "°C", "latex" => "\\ensuremath{\\mathrm{^{\\circ}C}}", "mathml" => "°C", "unicode" => "°C"}], "quantity_references" => [{"id" => "NISTq192", "type" => "nist"}, {"id" => "NISTq34", "type" => "nist"}], "si_derived_bases" => [{"power" => 1, "unit_reference" => {"id" => "NISTu5", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/degreeCelsius", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:Cel", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/DEG_C", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_interval", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu230", "type" => "nist"}, {"id" => "u:hundredweight", "type" => "unitsml"}], "short" => "hundredweight", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "hundredweight (short, 100 lb)", "lang" => "en"}, {"value" => "hundredweight", "lang" => "en"}], "symbols" => [{"id" => "cwt (US)", "ascii" => "cwt (US)", "html" => "cwt (US)", "latex" => "\\ensuremath{\\mathrm{cwt (US)}}", "mathml" => "cwt (US)", "unicode" => "cwt (US)"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu203", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu231", "type" => "nist"}, {"id" => "u:troy_ounce", "type" => "unitsml"}], "short" => "troy_ounce", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "ounce (troy or apothecary)", "lang" => "en"}, {"value" => "troy ounce", "lang" => "en"}, {"value" => "ounce", "lang" => "en"}], "symbols" => [{"id" => "oz_troy", "ascii" => "oz", "html" => "oz", "latex" => "\\ensuremath{\\mathrm{oz}}", "mathml" => "oz", "unicode" => "oz"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:avoirdupois:code:[oz_av]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/OZ", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu232", "type" => "nist"}, {"id" => "u:troy_pound", "type" => "unitsml"}], "short" => "troy_pound", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "pound (troy or apothecary)", "lang" => "en"}, {"value" => "troy pound", "lang" => "en"}, {"value" => "pound", "lang" => "en"}], "symbols" => [{"id" => "lb_troy", "ascii" => "lb", "html" => "lb", "latex" => "\\ensuremath{\\mathrm{lb}}", "mathml" => "lb", "unicode" => "lb"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:avoirdupois:code:[lb_av]", "authority" => "ucum"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu233", "type" => "nist"}, {"id" => "u:pennyweight", "type" => "unitsml"}], "short" => "pennyweight", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "pennyweight", "lang" => "en"}], "symbols" => [{"id" => "dwt (troy)", "ascii" => "dwt (troy)", "html" => "dwt (troy)", "latex" => "\\ensuremath{\\mathrm{dwt (troy)}}", "mathml" => "dwt (troy)", "unicode" => "dwt (troy)"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:troy:code:[pwt_tr]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/PENNYWEIGHT", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu234", "type" => "nist"}, {"id" => "u:apothecaries_dram", "type" => "unitsml"}], "short" => "apothecaries_dram", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "dram (apothecary)", "lang" => "en"}, {"value" => "apothecary dram", "lang" => "en"}, {"value" => "dram", "lang" => "en"}], "symbols" => [{"id" => "dr", "ascii" => "dr", "html" => "dr", "latex" => "\\ensuremath{\\mathrm{dr}}", "mathml" => "dr", "unicode" => "dr"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:avoirdupois:code:[dr_av]", "authority" => "ucum"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu235", "type" => "nist"}, {"id" => "u:scruple", "type" => "unitsml"}], "short" => "scruple", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "scruple", "lang" => "en"}, {"value" => "apothecary scruple", "lang" => "en"}], "symbols" => [{"id" => "scr (ap.)", "ascii" => "scr (ap.)", "html" => "scr (ap.)", "latex" => "\\ensuremath{\\mathrm{scr (ap.)}}", "mathml" => "scr (ap.)", "unicode" => "scr (ap.)"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:apoth:code:[sc_ap]", "authority" => "ucum"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu236", "type" => "nist"}, {"id" => "u:poundal", "type" => "unitsml"}], "short" => "poundal", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "poundal", "lang" => "en"}], "symbols" => [{"id" => "pdl", "ascii" => "pdl", "html" => "pdl", "latex" => "\\ensuremath{\\mathrm{pdl}}", "mathml" => "pdl", "unicode" => "pdl"}], "quantity_references" => [{"id" => "NISTq128", "type" => "nist"}, {"id" => "NISTq13", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/PDL", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu237", "type" => "nist"}, {"id" => "u:kip", "type" => "unitsml"}], "short" => "kip", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "kip", "lang" => "en"}], "symbols" => [{"id" => "kip", "ascii" => "kip", "html" => "kip", "latex" => "\\ensuremath{\\mathrm{kip}}", "mathml" => "kip", "unicode" => "kip"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/KIP_F", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu238", "type" => "nist"}, {"id" => "u:ton_force", "type" => "unitsml"}], "short" => "ton_force", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "ton-force (2000 lb)", "lang" => "en"}], "symbols" => [{"id" => "ton-force (2000 lb)", "ascii" => "ton-force (2000 lb)", "html" => "ton-force (2000 lb)", "latex" => "\\ensuremath{\\mathrm{ton-force (2000 lb)}}", "mathml" => "ton-force (2000 lb)", "unicode" => "ton-force (2000 lb)"}], "quantity_references" => [{"id" => "NISTq128", "type" => "nist"}, {"id" => "NISTq13", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu239", "type" => "nist"}, {"id" => "u:barye", "type" => "unitsml"}], "short" => "barye", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "barye", "lang" => "en"}], "symbols" => [{"id" => "barye", "ascii" => "barye", "html" => "barye", "latex" => "\\ensuremath{\\mathrm{barye}}", "mathml" => "barye", "unicode" => "barye"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/BARYE", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu240", "type" => "nist"}, {"id" => "u:electronvolt", "type" => "unitsml"}], "short" => "electronvolt", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "electronvolt", "lang" => "en"}, {"value" => "électronvolt", "lang" => "fr"}], "symbols" => [{"id" => "eV", "ascii" => "eV", "html" => "eV", "latex" => "\\ensuremath{\\mathrm{eV}}", "mathml" => "eV", "unicode" => "eV"}], "quantity_references" => [{"id" => "NISTq17", "type" => "nist"}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/electronvolt", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:iso1000:code:eV", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/EV", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu241", "type" => "nist"}, {"id" => "u:unified_atomic_mass_unit", "type" => "unitsml"}], "short" => "unified_atomic_mass_unit", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "unified atomic mass unit", "lang" => "en"}], "symbols" => [{"id" => "u", "ascii" => "u", "html" => "u", "latex" => "\\ensuremath{\\mathrm{u}}", "mathml" => "u", "unicode" => "u"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:iso1000:code:u", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/U", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu242", "type" => "nist"}, {"id" => "u:natural_unit_of_velocity", "type" => "unitsml"}], "short" => "natural_unit_of_velocity", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "natural unit of velocity", "lang" => "en"}], "symbols" => [{"id" => "c_0", "ascii" => "c_0", "html" => "c0", "latex" => "\\ensuremath{\\mathit{c}_{0}}", "mathml" => "c0", "unicode" => "𝑐₀"}, {"id" => "c", "ascii" => "c", "html" => "c", "latex" => "\\ensuremath{\\mathit{c}}", "mathml" => "c", "unicode" => "𝑐"}], "quantity_references" => [{"id" => "NISTq12", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/C", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu243", "type" => "nist"}, {"id" => "u:natural_unit_of_action", "type" => "unitsml"}], "short" => "natural_unit_of_action", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "natural unit of action", "lang" => "en"}], "symbols" => [{"id" => "h-bar", "ascii" => "h-bar", "html" => "ħ", "latex" => "\\ensuremath{\\mathit{\\hbar}}", "mathml" => "ħ", "unicode" => "ℏ"}], "quantity_references" => [{"id" => "NISTq154", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu244", "type" => "nist"}, {"id" => "u:natural_unit_of_mass", "type" => "unitsml"}], "short" => "natural_unit_of_mass", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "natural unit of mass", "lang" => "en"}], "symbols" => [{"id" => "m_e", "ascii" => "m_e", "html" => "me", "latex" => "\\ensuremath{\\mathit{m}_\\mathrm{e}}", "mathml" => "me", "unicode" => "𝑚ₑ"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu245", "type" => "nist"}, {"id" => "u:natural_unit_of_time", "type" => "unitsml"}], "short" => "natural_unit_of_time", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "natural unit of time", "lang" => "en"}], "symbols" => [{"id" => "h-bar*(m_e*c^2)", "ascii" => "h-bar*(m_e*c^2)", "html" => "ħ/mec2", "latex" => "\\ensuremath{\\mathit{\\hbar}/(\\mathit{m}_\\mathrm{e}\\mathit{c}^\\mathrm{2}})", "mathml" => "ħ/mec2", "unicode" => "ℏ/𝑚ₑ𝑐²"}], "quantity_references" => [{"id" => "NISTq3", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu246", "type" => "nist"}, {"id" => "u:atomic_unit_of_charge", "type" => "unitsml"}], "short" => "atomic_unit_of_charge", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of charge", "lang" => "en"}], "symbols" => [{"id" => "e", "ascii" => "e", "html" => "e", "latex" => "\\ensuremath{\\mathit{e}}", "mathml" => "e", "unicode" => "𝑒"}], "quantity_references" => [{"id" => "NISTq22", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/E", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu247", "type" => "nist"}, {"id" => "u:atomic_unit_of_mass", "type" => "unitsml"}], "short" => "atomic_unit_of_mass", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of mass", "lang" => "en"}], "symbols" => [{"id" => "m_e_atomic", "ascii" => "m_e", "html" => "me", "latex" => "\\ensuremath{\\mathit{m}_\\mathrm{e}}", "mathml" => "me", "unicode" => "𝑚ₑ"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu248", "type" => "nist"}, {"id" => "u:atomic_unit_of_action", "type" => "unitsml"}], "short" => "atomic_unit_of_action", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of action", "lang" => "en"}], "symbols" => [{"id" => "h-bar_atomic", "ascii" => "h-bar", "html" => "ħ", "latex" => "\\ensuremath{\\mathit{\\hbar}}", "mathml" => "ħ", "unicode" => "ℏ"}], "quantity_references" => [{"id" => "NISTq154", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu249", "type" => "nist"}, {"id" => "u:atomic_unit_of_length", "type" => "unitsml"}], "short" => "atomic_unit_of_length", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of length", "lang" => "en"}], "symbols" => [{"id" => "a_0", "ascii" => "a_0", "html" => "a0", "latex" => "\\ensuremath{\\mathit{a}_\\mathrm{0}}", "mathml" => "a0", "unicode" => "𝑎₀"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu25", "type" => "nist"}, {"id" => "u:becquerel", "type" => "unitsml"}], "short" => "becquerel", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "becquerel", "lang" => "en"}, {"value" => "becquerel", "lang" => "fr"}], "symbols" => [{"id" => "Bq", "ascii" => "Bq", "html" => "Bq", "latex" => "\\ensuremath{\\mathrm{Bq}}", "mathml" => "Bq", "unicode" => "Bq"}], "quantity_references" => [{"id" => "NISTq35", "type" => "nist"}], "si_derived_bases" => [{"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/becquerel", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:Bq", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/BQ", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu250", "type" => "nist"}, {"id" => "u:atomic_unit_of_energy", "type" => "unitsml"}], "short" => "atomic_unit_of_energy", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of energy", "lang" => "en"}], "symbols" => [{"id" => "E_h", "ascii" => "E_h", "html" => "Eh", "latex" => "\\ensuremath{\\mathit{E}_\\mathrm{h}}", "mathml" => "Eh", "unicode" => "𝐸ₕ"}], "quantity_references" => [{"id" => "NISTq17", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu251", "type" => "nist"}, {"id" => "u:atomic_unit_of_time", "type" => "unitsml"}], "short" => "atomic_unit_of_time", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of time", "lang" => "en"}], "symbols" => [{"id" => "h-bar/E_h", "ascii" => "h-bar/E_h", "html" => "ħ/Eh", "latex" => "\\ensuremath{\\mathit{\\hbar}/\\mathit{E}_\\mathrm{h}}", "mathml" => "ħ/Eh", "unicode" => "ℏ/𝐸ₕ"}], "quantity_references" => [{"id" => "NISTq3", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu252", "type" => "nist"}, {"id" => "u:atomic_unit_of_magnetizability", "type" => "unitsml"}], "short" => "atomic_unit_of_magnetizability", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of magnetizability", "lang" => "en"}], "symbols" => [{"id" => "e^2*a_0^2*m_e-1", "ascii" => "e^2*a_0^2*m_e-1", "html" => "e2a02/me", "latex" => "\\ensuremath{\\mathit{e}^2\\mathit{a}_0^2/\\mathit{m}_\\mathrm{e}}", "mathml" => "e2a02/me", "unicode" => "𝑒²𝑎₀²/𝑚ₑ"}], "quantity_references" => [{"id" => "NISTq163", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu253", "type" => "nist"}, {"id" => "u:atomic_unit_of_magnetic_flux_density", "type" => "unitsml"}], "short" => "atomic_unit_of_magnetic_flux_density", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of magnetic flux density", "lang" => "en"}], "symbols" => [{"id" => "h-bar*(e*a_0^2)-1", "ascii" => "h-bar*(e*a_0^2)-1", "html" => "ħ/ea02", "latex" => "\\ensuremath{\\mathit{\\hbar}/\\mathit{e}a_0^2}", "mathml" => "ħ/ea02", "unicode" => "ℏ/𝑒𝑎₀²"}], "quantity_references" => [{"id" => "NISTq14", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu254", "type" => "nist"}, {"id" => "u:atomic_unit_of_magnetic_dipole_moment", "type" => "unitsml"}], "short" => "atomic_unit_of_magnetic_dipole_moment", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of magnetic dipole moment", "lang" => "en"}], "symbols" => [{"id" => "h-bar*e*(m_e)-1", "ascii" => "h-bar*e*(m_e)-1", "html" => "ħe/me", "latex" => "\\ensuremath{\\mathit{\\hbar e}/\\mathit{m}_\\mathrm{e}}", "mathml" => "ħe/me", "unicode" => "ℏ𝑒/𝑚ₑ"}], "quantity_references" => [{"id" => "NISTq164", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu255", "type" => "nist"}, {"id" => "u:atomic_unit_of_momentum", "type" => "unitsml"}], "short" => "atomic_unit_of_momentum", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of momentum", "lang" => "en"}], "symbols" => [{"id" => "h-bar*(a_0)-1", "ascii" => "h-bar*(a_0)-1", "html" => "ħ/a0", "latex" => "\\ensuremath{\\mathit{\\hbar}/\\mathit{a}_0}", "mathml" => "ħ/a0", "unicode" => "ℏ/𝑎₀"}], "quantity_references" => [{"id" => "NISTq131", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu256", "type" => "nist"}, {"id" => "u:atomic_unit_of_charge_density", "type" => "unitsml"}], "short" => "atomic_unit_of_charge_density", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of charge density", "lang" => "en"}], "symbols" => [{"id" => "e*(a_0^3)", "ascii" => "e*(a_0^3)", "html" => "ea03", "latex" => "\\ensuremath{\\mathit{e}\\mathit{a}_0^{3}}", "mathml" => "ea03", "unicode" => "𝑒𝑎₀³"}], "quantity_references" => [{"id" => "NISTq69", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu257", "type" => "nist"}, {"id" => "u:atomic_unit_of_current", "type" => "unitsml"}], "short" => "atomic_unit_of_current", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of current", "lang" => "en"}], "symbols" => [{"id" => "eE_h*h-bar^-1", "ascii" => "eE_h*h-bar^-1", "html" => "eEh/ħ", "latex" => "\\ensuremath{\\mathit{e}E_{h}/\\mathit{\\hbar}}", "mathml" => "eEh/ħ", "unicode" => "𝑒𝐸ₕ/ℏ"}], "quantity_references" => [{"id" => "NISTq4", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu258", "type" => "nist"}, {"id" => "u:atomic_unit_of_electric_dipole_moment", "type" => "unitsml"}], "short" => "atomic_unit_of_electric_dipole_moment", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of electric dipole moment", "lang" => "en"}], "symbols" => [{"id" => "e*a_0", "ascii" => "e*a_0", "html" => "ea0", "latex" => "\\ensuremath{\\mathit{e}\\mathit{a}_0}", "mathml" => "ea0", "unicode" => "𝑒𝑎₀"}], "quantity_references" => [{"id" => "NISTq162", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu259", "type" => "nist"}, {"id" => "u:atomic_unit_of_electric_field", "type" => "unitsml"}], "short" => "atomic_unit_of_electric_field", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of electric field", "lang" => "en"}], "symbols" => [{"id" => "E_h*(e*a_0)", "ascii" => "E_h*(e*a_0)", "html" => "Eh/ea0", "latex" => "\\ensuremath{\\mathit{E}_{h}/\\mathit{\\e}\\mathit{a}_0}", "mathml" => "Eh/ea0", "unicode" => "𝐸ₕ/𝑒𝑎₀"}], "quantity_references" => [{"id" => "NISTq68", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu26", "type" => "nist"}, {"id" => "u:fermi", "type" => "unitsml"}], "short" => "fermi", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "fermi", "lang" => "en"}], "symbols" => [{"id" => "fermi", "ascii" => "fermi", "html" => "fermi", "latex" => "\\ensuremath{\\mathrm{fermi}}", "mathml" => "fermi", "unicode" => "fermi"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}, {"id" => "NISTq48", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_-15", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FM", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu260", "type" => "nist"}, {"id" => "u:atomic_unit_of_electric_field_gradient", "type" => "unitsml"}], "short" => "atomic_unit_of_electric_field_gradient", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of electric field gradient", "lang" => "en"}], "symbols" => [{"id" => "E_h*(e*a_0^2)", "ascii" => "E_h*(e*a_0^2)", "html" => "Eh/ea02", "latex" => "\\ensuremath{\\mathit{E}_{h}/\\mathit{\\e}\\mathit{a}_0^2}", "mathml" => "Eh/ea02", "unicode" => "𝐸ₕ/𝑒𝑎₀²"}], "quantity_references" => [{"id" => "NISTq165", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu261", "type" => "nist"}, {"id" => "u:atomic_unit_of_electric_potential", "type" => "unitsml"}], "short" => "atomic_unit_of_electric_potential", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of electric potential", "lang" => "en"}], "symbols" => [{"id" => "E_h*e-1", "ascii" => "E_h*e-1", "html" => "Eh/e", "latex" => "\\ensuremath{\\mathit{E}_{h}/\\mathit{\\e}}", "mathml" => "Eh/e", "unicode" => "𝐸ₕ/𝑒"}], "quantity_references" => [{"id" => "NISTq166", "type" => "nist"}, {"id" => "NISTq24", "type" => "nist"}, {"id" => "NISTq26", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu262", "type" => "nist"}, {"id" => "u:atomic_unit_of_force", "type" => "unitsml"}], "short" => "atomic_unit_of_force", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of force", "lang" => "en"}], "symbols" => [{"id" => "E_h*(a_0)-1", "ascii" => "E_h*(a_0)-1", "html" => "Eh/a0", "latex" => "\\ensuremath{\\mathit{E}_{h}/\\mathit{a}_0}", "mathml" => "Eh/a0", "unicode" => "𝐸ₕ/𝑎₀"}], "quantity_references" => [{"id" => "NISTq128", "type" => "nist"}, {"id" => "NISTq13", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu263", "type" => "nist"}, {"id" => "u:atomic_unit_of_electric_quadrupole_moment", "type" => "unitsml"}], "short" => "atomic_unit_of_electric_quadrupole_moment", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of electric quadrupole moment", "lang" => "en"}], "symbols" => [{"id" => "e*a_0^2", "ascii" => "e*a_0^2", "html" => "ea02", "latex" => "\\ensuremath{\\mathit{e}\\mathit{a}_0^2}", "mathml" => "ea0>2", "unicode" => "𝑒𝑎₀²"}], "quantity_references" => [{"id" => "NISTq167", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu264", "type" => "nist"}, {"id" => "u:atomic_unit_of_electric_polarizability", "type" => "unitsml"}], "short" => "atomic_unit_of_electric_polarizability", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of electric polarizability", "lang" => "en"}], "symbols" => [{"id" => "e^2*a_0^2*(E_h)^-1", "ascii" => "e^2*a_0^2*(E_h)^-1", "html" => "e2a02/Eh", "latex" => "\\ensuremath{\\mathit{e}\\mathit{a}_0^2/\\mathit{E}_h}", "mathml" => "e2a02/Eh", "unicode" => "𝑒²𝑎₀²/𝐸ₕ"}], "quantity_references" => [{"id" => "NISTq168", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu265", "type" => "nist"}, {"id" => "u:statohm", "type" => "unitsml"}], "short" => "statohm", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "statohm", "lang" => "en"}, {"value" => "ESU of resistance", "lang" => "en"}], "symbols" => [{"id" => "statohm", "ascii" => "statohm", "html" => "statohm", "latex" => "\\ensuremath{\\mathrm{statohm}}", "mathml" => "statohm", "unicode" => "statohm"}], "quantity_references" => [{"id" => "NISTq28", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/OHM_Stat", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu266", "type" => "nist"}, {"id" => "u:statfarad", "type" => "unitsml"}], "short" => "statfarad", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "statfarad", "lang" => "en"}, {"value" => "ESU of capacitance", "lang" => "en"}], "symbols" => [{"id" => "statF", "ascii" => "statF", "html" => "statF", "latex" => "\\ensuremath{\\mathrm{statF}}", "mathml" => "statF", "unicode" => "statF"}], "quantity_references" => [{"id" => "NISTq169", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FARAD_Stat", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu267", "type" => "nist"}, {"id" => "u:statampere", "type" => "unitsml"}], "short" => "statampere", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "statampere", "lang" => "en"}, {"value" => "ESU of current", "lang" => "en"}], "symbols" => [{"id" => "statA", "ascii" => "statA", "html" => "statA", "latex" => "\\ensuremath{\\mathrm{statA}}", "mathml" => "statA", "unicode" => "statA"}], "quantity_references" => [{"id" => "NISTq170", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/A_Stat", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu268", "type" => "nist"}, {"id" => "u:statvolt", "type" => "unitsml"}], "short" => "statvolt", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "statvolt", "lang" => "en"}, {"value" => "ESU of Electric potential", "lang" => "en"}], "symbols" => [{"id" => "statV", "ascii" => "statV", "html" => "statV", "latex" => "statV", "mathml" => "statV", "unicode" => "statV"}], "quantity_references" => [{"id" => "NISTq166", "type" => "nist"}, {"id" => "NISTq24", "type" => "nist"}, {"id" => "NISTq26", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/V_Stat", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu269", "type" => "nist"}, {"id" => "u:stathenry", "type" => "unitsml"}], "short" => "stathenry", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "stathenry", "lang" => "en"}, {"value" => "ESU of inductance", "lang" => "en"}], "symbols" => [{"id" => "statH", "ascii" => "statH", "html" => "statH", "latex" => "\\ensuremath{\\mathrm{statH}}", "mathml" => "statH", "unicode" => "statH"}], "quantity_references" => [{"id" => "NISTq171", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/H_Stat", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu27", "type" => "nist"}, {"id" => "u:gram", "type" => "unitsml"}], "short" => "gram", "root" => true, "unit_system_reference" => [{"id" => "si-base", "type" => "unitsml"}], "names" => [{"value" => "gram", "lang" => "en"}, {"value" => "gramme", "lang" => "fr"}], "symbols" => [{"id" => "g", "ascii" => "g", "html" => "g", "latex" => "\\ensuremath{\\mathrm{g}}", "mathml" => "g", "unicode" => "g"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "si_derived_bases" => [{"power" => -3, "unit_reference" => {"id" => "NISTu2", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/gram", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:base-unit:code:g", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/GM", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu270", "type" => "nist"}, {"id" => "u:statmho", "type" => "unitsml"}], "short" => "statmho", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "statmho", "lang" => "en"}, {"value" => "ESU of conductance", "lang" => "en"}], "symbols" => [{"id" => "statmho", "ascii" => "statmho", "html" => "statmho", "latex" => "\\ensuremath{\\mathrm{statmho}}", "mathml" => "statmho", "unicode" => "statmho"}], "quantity_references" => [{"id" => "NISTq29", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MHO_Stat", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu271", "type" => "nist"}, {"id" => "u:statcoulomb", "type" => "unitsml"}], "short" => "statcoulomb", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "statcoulomb", "lang" => "en"}, {"value" => "ESU of charge", "lang" => "en"}], "symbols" => [{"id" => "statcoulomb", "ascii" => "statcoulomb", "html" => "statcoulomb", "latex" => "\\ensuremath{\\mathrm{statcoulomb}}", "mathml" => "statcoulomb", "unicode" => "statcoulomb"}], "quantity_references" => [{"id" => "NISTq22", "type" => "nist"}, {"id" => "NISTq23", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/C_Stat", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu272", "type" => "nist"}, {"id" => "u:statweber", "type" => "unitsml"}], "short" => "statweber", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "statweber", "lang" => "en"}], "symbols" => [{"id" => "statWb", "ascii" => "statWb", "html" => "statWb", "latex" => "\\ensuremath{\\mathrm{statWb}}", "mathml" => "statWb", "unicode" => "statWb"}], "quantity_references" => [{"id" => "NISTq30", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu273", "type" => "nist"}, {"id" => "u:stattesla", "type" => "unitsml"}], "short" => "stattesla", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "stattesla", "lang" => "en"}], "symbols" => [{"id" => "statT", "ascii" => "statT", "html" => "statT", "latex" => "\\ensuremath{\\mathrm{statT}}", "mathml" => "statT", "unicode" => "statT"}], "quantity_references" => [{"id" => "NISTq14", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu274", "type" => "nist"}, {"id" => "u:statwatt", "type" => "unitsml"}], "short" => "statwatt", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "statwatt", "lang" => "en"}], "symbols" => [{"id" => "statwatt", "ascii" => "statwatt", "html" => "statwatt", "latex" => "\\ensuremath{\\mathrm{statwatt}}", "mathml" => "statwatt", "unicode" => "statwatt"}], "quantity_references" => [{"id" => "NISTq20", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu275", "type" => "nist"}, {"id" => "u:av_dram", "type" => "unitsml"}], "short" => "av_dram", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "dram (avoirdupois)", "lang" => "en"}, {"value" => "dram", "lang" => "en"}], "symbols" => [{"id" => "dr (avdp)", "ascii" => "dr (avdp)", "html" => "dr (avdp)", "latex" => "\\ensuremath{\\mathrm{dr~(avdp)}}", "mathml" => "dr (avdp)", "unicode" => "dr (avdp)"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:avoirdupois:code:[dr_av]", "authority" => "ucum"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu276", "type" => "nist"}, {"id" => "u:footcandle", "type" => "unitsml"}], "short" => "footcandle", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "footcandle", "lang" => "en"}], "symbols" => [{"id" => "ft.c", "ascii" => "ft.c", "html" => "ft.c", "latex" => "\\ensuremath{\\mathrm{ft.c}}", "mathml" => "ft.c", "unicode" => "ft.c"}], "quantity_references" => [{"id" => "NISTq47", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu277", "type" => "nist"}, {"id" => "u:footlambert", "type" => "unitsml"}], "short" => "footlambert", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "footlambert", "lang" => "en"}], "symbols" => [{"id" => "ft.L", "ascii" => "ft.L", "html" => "ft.L", "latex" => "\\ensuremath{\\mathrm{ft.L}}", "mathml" => "ft.L", "unicode" => "ft.L"}], "quantity_references" => [{"id" => "NISTq56", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu278", "type" => "nist"}, {"id" => "u:computer_pica", "type" => "unitsml"}], "short" => "computer_pica", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "pica (computer)", "lang" => "en"}], "symbols" => [{"id" => "pica_computer", "ascii" => "pc", "html" => "pc", "latex" => "\\ensuremath{\\mathrm{pc}}", "mathml" => "pc", "unicode" => "pc"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}, {"id" => "NISTq48", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:iso1000:code:pc", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/PARSEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu279", "type" => "nist"}, {"id" => "u:printers_pica", "type" => "unitsml"}], "short" => "printers_pica", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "pica (printer's)", "lang" => "en"}], "symbols" => [{"id" => "pica_printer", "ascii" => "pc", "html" => "pc", "latex" => "\\ensuremath{\\mathrm{pc}}", "mathml" => "pc", "unicode" => "pc"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:iso1000:code:pc", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/PARSEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu27p10'3.u1.u3e-1/1", "type" => "nist"}, {"id" => "u:kilogram_meter_per_second", "type" => "unitsml"}], "short" => "kilogram_meter_per_second", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "kilogram meter per second", "lang" => "en"}], "symbols" => [{"id" => "kg*m*s^-1", "ascii" => "kg*m*s^-1", "html" => "kg · m/s", "latex" => "\\ensuremath{\\mathrm{kg\\cdot m/s}}", "mathml" => "kg·m/s", "unicode" => "N·m/s"}], "quantity_references" => [{"id" => "NISTq131", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu27p10'3.u1e-1/1", "type" => "nist"}, {"id" => "u:kilogram_per_meter", "type" => "unitsml"}], "short" => "kilogram_per_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "kilogram per meter", "lang" => "en"}], "symbols" => [{"id" => "kg*m^-1", "ascii" => "kg*m^-1", "html" => "kg/m", "latex" => "\\ensuremath{\\mathrm{kg/m}}", "mathml" => "kg/m", "unicode" => "kg/m"}], "quantity_references" => [{"id" => "NISTq126", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/KiloGM-PER-M", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu27p10'3.u1e-2/1", "type" => "nist"}, {"id" => "u:kilogram_per_square_meter", "type" => "unitsml"}], "short" => "kilogram_per_square_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "kilogram per square meter", "lang" => "en"}], "symbols" => [{"id" => "kg*m^-2", "ascii" => "kg*m^-2", "html" => "kg/m2", "latex" => "\\ensuremath{\\mathrm{kg/m^2}}", "mathml" => "kg/m2", "unicode" => "kg/m²"}], "quantity_references" => [{"id" => "NISTq31", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/KiloGM-PER-M2", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu27p10'3.u1e-3/1", "type" => "nist"}, {"id" => "u:kilogram_per_cubic_meter", "type" => "unitsml"}], "short" => "kilogram_per_cubic_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "kilogram per cubic meter", "lang" => "en"}], "symbols" => [{"id" => "kg*m^-3", "ascii" => "kg*m^-3", "html" => "kg/m3", "latex" => "\\ensuremath{\\mathrm{kg/m^3}}", "mathml" => "kg/m3", "unicode" => "kg·m⁻³"}], "quantity_references" => [{"id" => "NISTq33", "type" => "nist"}, {"id" => "NISTq51", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -3, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu27p10'3.u1e2/1", "type" => "nist"}, {"id" => "u:kilogram_meter_squared", "type" => "unitsml"}], "short" => "kilogram_meter_squared", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "kilogram meter squared", "lang" => "en"}], "symbols" => [{"id" => "kg*m^2", "ascii" => "kg*m^2", "html" => "kg · m2", "latex" => "\\ensuremath{\\mathrm{kg\\cdot m^2}}", "mathml" => "kg·m2", "unicode" => "kg·m²"}], "quantity_references" => [{"id" => "NISTq127", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/KiloGM-M2", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu27p10'3.u1e2/1.u3e-1/1", "type" => "nist"}, {"id" => "u:kilogram_meter_squared_per_second", "type" => "unitsml"}], "short" => "kilogram_meter_squared_per_second", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "kilogram meter squared per second", "lang" => "en"}], "symbols" => [{"id" => "kg*m^2*s^-1", "ascii" => "kg*m^2*s^-1", "html" => "kg · m2/s", "latex" => "\\ensuremath{\\mathrm{kg\\cdot m^2/s}}", "mathml" => "kg·m2/s", "unicode" => "kg·m²/s"}], "quantity_references" => [{"id" => "NISTq132", "type" => "nist"}, {"id" => "NISTq132", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => 2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/KiloGM-M2-PER-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu27p10'3.u3e-1/1", "type" => "nist"}, {"id" => "u:kilogram_per_second", "type" => "unitsml"}], "short" => "kilogram_per_second", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "kilogram per second", "lang" => "en"}], "symbols" => [{"id" => "kg*s^-1", "ascii" => "kg*s^-1", "html" => "kg/s", "latex" => "\\ensuremath{\\mathrm{kg/s}}", "mathml" => "kg/s", "unicode" => "kg/s"}], "quantity_references" => [{"id" => "NISTq150", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/KiloGM-PER-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu28", "type" => "nist"}, {"id" => "u:gray", "type" => "unitsml"}], "short" => "gray", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "gray", "lang" => "en"}, {"value" => "gray", "lang" => "fr"}], "symbols" => [{"id" => "Gy", "ascii" => "Gy", "html" => "Gy", "latex" => "\\ensuremath{\\mathrm{Gy}}", "mathml" => "Gy", "unicode" => "Gy"}], "quantity_references" => [{"id" => "NISTq36", "type" => "nist"}, {"id" => "NISTq37", "type" => "nist"}, {"id" => "NISTq38", "type" => "nist"}], "si_derived_bases" => [{"power" => -2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu7", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/gray", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:Gy", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/GRAY", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu28.u3e-1/1", "type" => "nist"}, {"id" => "u:gray_per_second", "type" => "unitsml"}], "short" => "gray_per_second", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "gray per second", "lang" => "en"}], "symbols" => [{"id" => "Gy*s^-1", "ascii" => "Gy*s^-1", "html" => "Gy/s", "latex" => "\\ensuremath{\\mathrm{Gy/s}}", "mathml" => "Gy/s", "unicode" => "Gy/s"}], "quantity_references" => [{"id" => "NISTq194", "type" => "nist"}, {"id" => "NISTq76", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu28", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/GRAY-PER-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu280", "type" => "nist"}, {"id" => "u:computer_point", "type" => "unitsml"}], "short" => "computer_point", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "point (computer)", "lang" => "en"}], "symbols" => [{"id" => "pt_computer", "ascii" => "pt", "html" => "pt", "latex" => "\\ensuremath{\\mathrm{pt}}", "mathml" => "pt", "unicode" => "pt"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}, {"id" => "NISTq48", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/PT", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu281", "type" => "nist"}, {"id" => "u:us_survey_rod", "type" => "unitsml"}], "short" => "us_survey_rod", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "rod (based on US survey foot)", "lang" => "en"}, {"value" => "rod", "lang" => "en"}], "symbols" => [{"id" => "rd", "ascii" => "rd", "html" => "rd", "latex" => "rd", "mathml" => "rd", "unicode" => "rd"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-lengths:code:[rd_us]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/ROD", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu282", "type" => "nist"}, {"id" => "u:us_survey_fathom", "type" => "unitsml"}], "short" => "us_survey_fathom", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "fathom (based on US survey foot)", "lang" => "en"}, {"value" => "fathom", "lang" => "en"}], "symbols" => [{"id" => "fath", "ascii" => "fath", "html" => "fath", "latex" => "\\ensuremath{\\mathrm{fath}}", "mathml" => "fath", "unicode" => "fath"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[fth_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FATH", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu283", "type" => "nist"}, {"id" => "u:circular_mil", "type" => "unitsml"}], "short" => "circular_mil", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "circular mil", "lang" => "en"}], "symbols" => [{"id" => "cmil", "ascii" => "cmil", "html" => "cmil", "latex" => "\\ensuremath{\\mathrm{cmil}}", "mathml" => "cmil", "unicode" => "cmil"}], "quantity_references" => [{"id" => "NISTq8", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[cml_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MIL_Circ", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu284", "type" => "nist"}, {"id" => "u:horsepower", "type" => "unitsml"}], "short" => "horsepower", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "horsepower", "lang" => "en"}], "symbols" => [{"id" => "hp", "ascii" => "hp", "html" => "hp", "latex" => "\\ensuremath{\\mathrm{hp}}", "mathml" => "hp", "unicode" => "hp"}], "quantity_references" => [{"id" => "NISTq20", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:heat:code:[HP]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/HP", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu285", "type" => "nist"}, {"id" => "u:boiler_horsepower", "type" => "unitsml"}], "short" => "boiler_horsepower", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "horsepower, boiler", "lang" => "en"}, {"value" => "boiler horsepower", "lang" => "en"}], "symbols" => [{"id" => "hp_boiler", "ascii" => "hp", "html" => "hp", "latex" => "\\ensuremath{\\mathrm{hp}}", "mathml" => "hp", "unicode" => "hp"}], "quantity_references" => [{"id" => "NISTq20", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/HP_Boiler", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu286", "type" => "nist"}, {"id" => "u:water_horsepower", "type" => "unitsml"}], "short" => "water_horsepower", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "horsepower, water", "lang" => "en"}, {"value" => "water horsepower", "lang" => "en"}], "symbols" => [{"id" => "hp_water", "ascii" => "hp", "html" => "hp", "latex" => "\\ensuremath{\\mathrm{hp}}", "mathml" => "hp", "unicode" => "hp"}], "quantity_references" => [{"id" => "NISTq20", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/HP_H2O", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu287", "type" => "nist"}, {"id" => "u:uk_horsepower", "type" => "unitsml"}], "short" => "uk_horsepower", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "horsepower (UK)", "lang" => "en"}], "symbols" => [{"id" => "hp_UK", "ascii" => "hp", "html" => "hp", "latex" => "\\ensuremath{\\mathrm{hp}}", "mathml" => "hp", "unicode" => "hp"}], "quantity_references" => [{"id" => "NISTq20", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/HP", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu288", "type" => "nist"}, {"id" => "u:degree_Rankine", "type" => "unitsml"}], "short" => "degree_Rankine", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "degree Rankine", "lang" => "en"}], "symbols" => [{"id" => "degR", "ascii" => "degR", "html" => "°R", "latex" => "\\ensuremath{mathrm{^{\\circ}R}}", "mathml" => "°R", "unicode" => "°R"}], "quantity_references" => [{"id" => "NISTq5", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:heat:code:[degR]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/DEG_R", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu289", "type" => "nist"}, {"id" => "u:dalton", "type" => "unitsml"}], "short" => "dalton", "root" => false, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "dalton", "lang" => "en"}, {"value" => "dalton", "lang" => "fr"}], "symbols" => [{"id" => "Da", "ascii" => "Da", "html" => "Da", "latex" => "\\ensuremath{\\mathrm{Da}}", "mathml" => "Da", "unicode" => "Da"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu241", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/dalton", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/DA", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu29", "type" => "nist"}, {"id" => "u:sievert", "type" => "unitsml"}], "short" => "sievert", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "sievert", "lang" => "en"}, {"value" => "sievert", "lang" => "fr"}], "symbols" => [{"id" => "Sv", "ascii" => "Sv", "html" => "Sv", "latex" => "\\ensuremath{\\mathrm{Sv}}", "mathml" => "Sv", "unicode" => "Sv"}], "quantity_references" => [{"id" => "NISTq39", "type" => "nist"}], "si_derived_bases" => [{"power" => 2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/sievert", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:Sv", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/SV", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu290", "type" => "nist"}, {"id" => "u:natural_unit_of_length", "type" => "unitsml"}], "short" => "natural_unit_of_length", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "natural unit of length", "lang" => "en"}], "symbols" => [{"id" => "lambda-bar_C", "ascii" => "lambda-bar_C", "html" => "ƛC", "latex" => "\\ensuremath{\\lambdabar_C}", "mathml" => "ƛC", "unicode" => "ƛ_C"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu291", "type" => "nist"}, {"id" => "u:atomic_unit_of_1st_hyperpolarizability", "type" => "unitsml"}], "short" => "atomic_unit_of_1st_hyperpolarizability", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of 1st hyperpolarizability", "lang" => "en"}], "symbols" => [{"id" => "e^3a_0^3*(E_h^3)", "ascii" => "e^3a_0^3*(E_h^3)", "html" => "e3a03Eh3", "latex" => "\\ensuremath{\\mathit{e}^3/\\mathit(a}_0^3\\mathit{E}_h^3}", "mathml" => "e3a03Eh3", "unicode" => "𝑒³𝑎₀³𝐸ₕ³"}], "quantity_references" => [{"id" => "NISTq172", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu292", "type" => "nist"}, {"id" => "u:atomic_unit_of_2nd_hyperpolarizability", "type" => "unitsml"}], "short" => "atomic_unit_of_2nd_hyperpolarizability", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of 2nd hyperpolarizability", "lang" => "en"}], "symbols" => [{"id" => "e^4a_0^4*(E_h^3)", "ascii" => "e^4a_0^4*(E_h^3)", "html" => "e4a04Eh3", "latex" => "\\ensuremath{\\mathit{e}^4/\\mathit(a}_0^4\\mathit{E}_h^3}", "mathml" => "e4a04Eh3", "unicode" => "𝑒⁴𝑎₀⁴𝐸ₕ⁴"}], "quantity_references" => [{"id" => "NISTq173", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu293", "type" => "nist"}, {"id" => "u:atomic_unit_of_permittivity", "type" => "unitsml"}], "short" => "atomic_unit_of_permittivity", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of permittivity", "lang" => "en"}], "symbols" => [{"id" => "e^2*(a_0*E_h)-1", "ascii" => "e^2*(a_0*E_h)-1", "html" => "e2/a0Eh", "latex" => "\\ensuremath{\\mathit{e}^2/\\mathit(a}_0\\mathit{E}_h}", "mathml" => "e2/a0Eh", "unicode" => "𝑒²/𝑎₀𝐸ₕ"}], "quantity_references" => [{"id" => "NISTq71", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu294", "type" => "nist"}, {"id" => "u:atomic_unit_of_velocity", "type" => "unitsml"}], "short" => "atomic_unit_of_velocity", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of velocity", "lang" => "en"}], "symbols" => [{"id" => "a_0*E_h*h-bar-1", "ascii" => "a_0*E_h*h-bar-1", "html" => "a0Eh/ħ", "latex" => "\\ensuremath{\\mathit{a}_\\mathrm{0}\\mathit{E}_{h}/\\mathit{\\hbar}}", "mathml" => "a0Eh/ħ", "unicode" => "𝑎₀𝐸ₕ/ℏ"}], "quantity_references" => [{"id" => "NISTq12", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu295", "type" => "nist"}, {"id" => "u:natural_unit_of_energy", "type" => "unitsml"}], "short" => "natural_unit_of_energy", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "natural unit of energy", "lang" => "en"}], "symbols" => [{"id" => "m_e*c^2", "ascii" => "m_e*c^2", "html" => "mec2", "latex" => "\\ensuremath{\\mathit{m}_e\\mathit{c}^2}", "mathml" => "mec2", "unicode" => "𝑚ₑ𝑐²"}], "quantity_references" => [{"id" => "NISTq17", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu296", "type" => "nist"}, {"id" => "u:natural_unit_of_momentum", "type" => "unitsml"}], "short" => "natural_unit_of_momentum", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "natural unit of momentum", "lang" => "en"}], "symbols" => [{"id" => "m_e*c", "ascii" => "m_e*c", "html" => "mec", "latex" => "\\ensuremath{\\mathit{m}_e\\mathit{c}}", "mathml" => "mec", "unicode" => "𝑚ₑ𝑐"}], "quantity_references" => [{"id" => "NISTq131", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu297", "type" => "nist"}, {"id" => "u:natural_unit_of_action_in_eV_s", "type" => "unitsml"}], "short" => "natural_unit_of_action_in_eV_s", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "natural unit of action in eV s", "lang" => "en"}], "symbols" => [{"id" => "h-bar_eV_s", "ascii" => "h-bar", "html" => "ħ", "latex" => "\\ensuremath{mathrm{\\hbar}}", "mathml" => "ħ", "unicode" => "ℏ"}], "quantity_references" => [{"id" => "NISTq154", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu298", "type" => "nist"}, {"id" => "u:natural_unit_of_energy_in_MeV", "type" => "unitsml"}], "short" => "natural_unit_of_energy_in_MeV", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "natural unit of energy in MeV", "lang" => "en"}], "symbols" => [{"id" => "m_e*c^2_MeV", "ascii" => "m_e*c^2", "html" => "mec2", "latex" => "\\ensuremath{\\mathit{m}_e\\mathit{c}^2}", "mathml" => "mec2", "unicode" => "𝑚ₑ𝑐²"}], "quantity_references" => [{"id" => "NISTq17", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu299", "type" => "nist"}, {"id" => "u:natural_unit_of_momentum_in_MeV_per_c", "type" => "unitsml"}], "short" => "natural_unit_of_momentum_in_MeV_per_c", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "natural unit of momentum in MeV/c", "lang" => "en"}], "symbols" => [{"id" => "m_e*c_MeV/C", "ascii" => "m_e*c", "html" => "mec", "latex" => "\\ensuremath{\\mathit{m}_e\\mathit{c}}", "mathml" => "mec", "unicode" => "𝑚ₑ𝑐"}], "quantity_references" => [{"id" => "NISTq131", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu3", "type" => "nist"}, {"id" => "u:second", "type" => "unitsml"}], "short" => "second", "root" => true, "unit_system_reference" => [{"id" => "si-base", "type" => "unitsml"}], "names" => [{"value" => "second", "lang" => "en"}, {"value" => "seconde", "lang" => "fr"}], "symbols" => [{"id" => "s", "ascii" => "s", "html" => "s", "latex" => "\\ensuremath{\\mathrm{s}}", "mathml" => "s", "unicode" => "s"}, {"id" => "\"_s", "ascii" => "\"", "html" => "″", "latex" => "\\ensuremath{\\mathrm{''}}", "mathml" => "", "unicode" => "″"}, {"id" => "dprime_s", "ascii" => "\"", "html" => "″", "latex" => "\\ensuremath{\\mathrm{''}}", "mathml" => "", "unicode" => "″"}], "quantity_references" => [{"id" => "NISTq109", "type" => "nist"}, {"id" => "NISTq110", "type" => "nist"}, {"id" => "NISTq3", "type" => "nist"}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/second", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:base-unit:code:s", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu30", "type" => "nist"}, {"id" => "u:katal", "type" => "unitsml"}], "short" => "katal", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "katal", "lang" => "en"}, {"value" => "katal", "lang" => "fr"}], "symbols" => [{"id" => "kat", "ascii" => "kat", "html" => "kat", "latex" => "\\ensuremath{\\mathrm{kat}}", "mathml" => "kat", "unicode" => "kat"}], "quantity_references" => [{"id" => "NISTq44", "type" => "nist"}], "si_derived_bases" => [{"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu6", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/katal", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:chemical:code:kat", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/KAT", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu30.u1e-3/1", "type" => "nist"}, {"id" => "u:katal_per_cubic_meter", "type" => "unitsml"}], "short" => "katal_per_cubic_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "katal per cubic meter", "lang" => "en"}], "symbols" => [{"id" => "kat*m^-3", "ascii" => "kat*m^-3", "html" => "kat/m3", "latex" => "\\ensuremath{\\mathrm{kat/m^3}}", "mathml" => "kat/m3", "unicode" => "kat/m³"}], "quantity_references" => [{"id" => "NISTq84", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu30", "type" => "nist"}}, {"power" => -3, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/KAT-PER-M3", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu300", "type" => "nist"}, {"id" => "u:imperial_quart", "type" => "unitsml"}], "short" => "imperial_quart", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "quart (UK)", "lang" => "en"}, {"value" => "quart", "lang" => "en"}], "symbols" => [{"id" => "qt (UK)", "ascii" => "qt (UK)", "html" => "qt (UK)", "latex" => "\\ensuremath{\\mathrm{qt (UK)}}", "mathml" => "qt (UK)", "unicode" => "qt (UK)"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[qt_us]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/QT_UK", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu301", "type" => "nist"}, {"id" => "u:us_dry_quart", "type" => "unitsml"}], "short" => "us_dry_quart", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "dry quart (US)", "lang" => "en"}, {"value" => "quart", "lang" => "en"}], "symbols" => [{"id" => "dry qt (US)", "ascii" => "dry qt (US)", "html" => "dry qt (US)", "latex" => "\\ensuremath{\\mathrm{dry qt (US)}}", "mathml" => "dry qt (US)", "unicode" => "dry qt (US)"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[qt_us]", "authority" => "ucum"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu302", "type" => "nist"}, {"id" => "u:us_quart", "type" => "unitsml"}], "short" => "us_quart", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "liquid quart (US)", "lang" => "en"}, {"value" => "quart", "lang" => "en"}], "symbols" => [{"id" => "liq qt (US)", "ascii" => "liq qt (US)", "html" => "liq qt (US)", "latex" => "\\ensuremath{\\mathrm{liq qt (US)}}", "mathml" => "liq qt (US)", "unicode" => "liq qt (US)"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[qt_us]", "authority" => "ucum"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu303", "type" => "nist"}, {"id" => "u:us_teaspoon", "type" => "unitsml"}], "short" => "us_teaspoon", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "teaspoon", "lang" => "en"}], "symbols" => [{"id" => "tsp", "ascii" => "tsp", "html" => "tsp", "latex" => "\\ensuremath{\\mathrm{tsp}}", "mathml" => "tsp", "unicode" => "tsp"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[tsp_us]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/TSP", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu304", "type" => "nist"}, {"id" => "u:us_tablespoon", "type" => "unitsml"}], "short" => "us_tablespoon", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "tablespoon", "lang" => "en"}], "symbols" => [{"id" => "tbsp", "ascii" => "tbsp", "html" => "tbsp", "latex" => "\\ensuremath{\\mathrm{tbsp}}", "mathml" => "tbsp", "unicode" => "tbsp"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[tbs_us]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/TBSP", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu305", "type" => "nist"}, {"id" => "u:us_label_tablespoon", "type" => "unitsml"}], "short" => "us_label_tablespoon", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "tablespoon (FDA)", "lang" => "en"}, {"value" => "teaspoon", "lang" => "en"}], "symbols" => [{"id" => "tbsp_label", "ascii" => "tbsp", "html" => "tbsp", "latex" => "\\ensuremath{\\mathrm{tbsp}}", "mathml" => "tbsp", "unicode" => "tbsp"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[tsp_us]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/TBSP", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu306", "type" => "nist"}, {"id" => "u:us_label_teaspoon", "type" => "unitsml"}], "short" => "us_label_teaspoon", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "teaspoon (FDA)", "lang" => "en"}, {"value" => "teaspoon", "lang" => "en"}], "symbols" => [{"id" => "tsp_label", "ascii" => "tsp", "html" => "tsp", "latex" => "\\ensuremath{\\mathrm{tsp}}", "mathml" => "tsp", "unicode" => "tsp"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[tsp_us]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/TSP", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu307", "type" => "nist"}, {"id" => "u:us_label_cup", "type" => "unitsml"}], "short" => "us_label_cup", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "cup (FDA)", "lang" => "en"}, {"value" => "cup", "lang" => "en"}], "symbols" => [{"id" => "cup_label", "ascii" => "cup", "html" => "cup", "latex" => "\\ensuremath{\\mathrm{cup}}", "mathml" => "cup", "unicode" => "cup"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[cup_us]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/CUP", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu308", "type" => "nist"}, {"id" => "u:us_label_fluid_ounce", "type" => "unitsml"}], "short" => "us_label_fluid_ounce", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "fluid ounce (FDA)", "lang" => "en"}, {"value" => "fluid ounce", "lang" => "en"}, {"value" => "ounce", "lang" => "en"}], "symbols" => [{"id" => "fl oz (US label)", "ascii" => "fl oz (US label)", "html" => "fl oz (US label)", "latex" => "\\ensuremath{\\mathrm{fl oz (US label)}}", "mathml" => "fl oz (US label)", "unicode" => "fl oz (US label)"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[foz_us]", "authority" => "ucum"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu309", "type" => "nist"}, {"id" => "u:us_label_ounce", "type" => "unitsml"}], "short" => "us_label_ounce", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "ounce (FDA)", "lang" => "en"}, {"value" => "ounce", "lang" => "en"}], "symbols" => [{"id" => "oz (US label)", "ascii" => "oz (US label)", "html" => "oz (US label)", "latex" => "\\ensuremath{\\mathrm{oz (US label)}}", "mathml" => "oz (US label)", "unicode" => "oz (US label)"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:avoirdupois:code:[oz_av]", "authority" => "ucum"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu31", "type" => "nist"}, {"id" => "u:hertz", "type" => "unitsml"}], "short" => "hertz", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "hertz", "lang" => "en"}, {"value" => "hertz", "lang" => "fr"}], "symbols" => [{"id" => "Hz", "ascii" => "Hz", "html" => "Hz", "latex" => "\\ensuremath{\\mathrm{Hz}}", "mathml" => "Hz", "unicode" => "Hz"}], "quantity_references" => [{"id" => "NISTq45", "type" => "nist"}], "si_derived_bases" => [{"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/hertz", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:Hz", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/HZ", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu310", "type" => "nist"}, {"id" => "u:us_survey_chain", "type" => "unitsml"}], "short" => "us_survey_chain", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "chain (based on US survey foot)", "lang" => "en"}, {"value" => "surveyors chain", "lang" => "en"}, {"value" => "Gunter's chain", "lang" => "en"}, {"value" => "chain", "lang" => "en"}], "symbols" => [{"id" => "ch", "ascii" => "ch", "html" => "ch", "latex" => "\\ensuremath{\\mathrm{ch}}", "mathml" => "ch", "unicode" => "ch"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-lengths:code:[ch_us]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/CH", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu311", "type" => "nist"}, {"id" => "u:us_survey_link", "type" => "unitsml"}], "short" => "us_survey_link", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "link (based on US survey foot)", "lang" => "en"}, {"value" => "surveyors link", "lang" => "en"}, {"value" => "Gunter's link", "lang" => "en"}, {"value" => "link", "lang" => "en"}], "symbols" => [{"id" => "lnk", "ascii" => "lnk", "html" => "lnk", "latex" => "\\ensuremath{\\mathrm{lnk}}", "mathml" => "lnk", "unicode" => "lnk"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu312", "type" => "nist"}, {"id" => "u:us_survey_furlong", "type" => "unitsml"}], "short" => "us_survey_furlong", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "furlong (based on US survey foot)", "lang" => "en"}, {"value" => "furlong", "lang" => "en"}], "symbols" => [{"id" => "fur", "ascii" => "fur", "html" => "fur", "latex" => "\\ensuremath{\\mathrm{fur}}", "mathml" => "fur", "unicode" => "fur"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-lengths:code:[fur_us]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FUR", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu313", "type" => "nist"}, {"id" => "u:us_survey_mile", "type" => "unitsml"}], "short" => "us_survey_mile", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "mile (based on US survey foot)", "lang" => "en"}, {"value" => "survey mile", "lang" => "en"}, {"value" => "mile", "lang" => "en"}], "symbols" => [{"id" => "mi_US_survey", "ascii" => "mi", "html" => "mi", "latex" => "\\ensuremath{\\mathrm{mi}}", "mathml" => "mi", "unicode" => "mi"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[mi_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MI_US", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu314", "type" => "nist"}, {"id" => "u:us_survey_yard", "type" => "unitsml"}], "short" => "us_survey_yard", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "yard (based on US survey foot)", "lang" => "en"}, {"value" => "yard", "lang" => "en"}], "symbols" => [{"id" => "yd_US_survey", "ascii" => "yd", "html" => "yd", "latex" => "\\ensuremath{\\mathrm{yd}}", "mathml" => "yd", "unicode" => "yd"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[yd_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/YD", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu315", "type" => "nist"}, {"id" => "u:us_survey_foot", "type" => "unitsml"}], "short" => "us_survey_foot", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "foot (based on US survey foot)", "lang" => "en"}, {"value" => "survey foot", "lang" => "en"}, {"value" => "foot", "lang" => "en"}], "symbols" => [{"id" => "ft_US_survey", "ascii" => "ft", "html" => "ft", "latex" => "\\ensuremath{\\mathrm{ft}}", "mathml" => "ft", "unicode" => "ft"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[ft_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FT_US", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu316", "type" => "nist"}, {"id" => "u:us_survey_inch", "type" => "unitsml"}], "short" => "us_survey_inch", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "inch (based on US survey foot)", "lang" => "en"}, {"value" => "inch", "lang" => "en"}], "symbols" => [{"id" => "in_US_survey", "ascii" => "in", "html" => "in", "latex" => "\\ensuremath{\\mathrm{in}}", "mathml" => "in", "unicode" => "in"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[in_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/IN", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu317", "type" => "nist"}, {"id" => "u:us_acre", "type" => "unitsml"}], "short" => "us_acre", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "acre (based on US survey foot)", "lang" => "en"}, {"value" => "acre", "lang" => "en"}], "symbols" => [{"id" => "ac", "ascii" => "ac", "html" => "ac", "latex" => "\\ensuremath{\\mathrm{ac}}", "mathml" => "ac", "unicode" => "ac"}], "quantity_references" => [{"id" => "NISTq8", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-lengths:code:[acr_us]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/AC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu318", "type" => "nist"}, {"id" => "u:cm_Hg", "type" => "unitsml"}], "short" => "cm_Hg", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "conventional centimeter of mercury", "lang" => "en"}, {"value" => "centimeter of mercury, conventional", "lang" => "en"}, {"value" => "centimeter of mercury", "lang" => "en"}], "symbols" => [{"id" => "cmHg", "ascii" => "cmHg", "html" => "cmHg", "latex" => "\\ensuremath{\\mathrm{cmHg}}", "mathml" => "cmHg", "unicode" => "cmHg"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/CentiM_HG", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu319", "type" => "nist"}, {"id" => "u:0C_cm_Hg", "type" => "unitsml"}], "short" => "0C_cm_Hg", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "centimeter of mercury (0 degC)", "lang" => "en"}], "symbols" => [{"id" => "cmHg_0degC", "ascii" => "cmHg", "html" => "cmHg", "latex" => "\\ensuremath{\\mathrm{cmHg}}", "mathml" => "cmHg", "unicode" => "cmHg"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/CentiM_HG_0DEG_C", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu32", "type" => "nist"}, {"id" => "u:lumen", "type" => "unitsml"}], "short" => "lumen", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "lumen", "lang" => "en"}, {"value" => "lumen", "lang" => "fr"}], "symbols" => [{"id" => "lm", "ascii" => "lm", "html" => "lm", "latex" => "\\ensuremath{\\mathrm{lm}}", "mathml" => "lm", "unicode" => "lm"}], "quantity_references" => [{"id" => "NISTq46", "type" => "nist"}], "si_derived_bases" => [{"power" => 1, "unit_reference" => {"id" => "NISTu7", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/lumen", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:lm", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/LM", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu320", "type" => "nist"}, {"id" => "u:4C_cm_water", "type" => "unitsml"}], "short" => "4C_cm_water", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "centimeter of water (4 degC)", "lang" => "en"}], "symbols" => [{"id" => "cmH_2O_4degC", "ascii" => "cmH_2O", "html" => "cmH2O", "latex" => "\\ensuremath{\\mathrm{cmH_{2}O}}", "mathml" => "cmH2O", "unicode" => "cmH₂O"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu321", "type" => "nist"}, {"id" => "u:cm_water", "type" => "unitsml"}], "short" => "cm_water", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "conventional centimeter of water", "lang" => "en"}, {"value" => "centimeter of water, conventional", "lang" => "en"}, {"value" => "centimeter of water", "lang" => "en"}], "symbols" => [{"id" => "cmH_2O", "ascii" => "cmH_2O", "html" => "cmH2O", "latex" => "\\ensuremath{\\mathrm{cmH_{2}O}}", "mathml" => "cmH2O", "unicode" => "cmH₂O"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu322", "type" => "nist"}, {"id" => "u:in_water", "type" => "unitsml"}], "short" => "in_water", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "conventional inch of water", "lang" => "en"}, {"value" => "inch of water, conventional", "lang" => "en"}, {"value" => "inch of water", "lang" => "en"}], "symbols" => [{"id" => "inH_2O", "ascii" => "inH_2O", "html" => "inH2O", "latex" => "\\ensuremath{\\mathrm{inH_{2}O}}", "mathml" => "inH2O", "unicode" => "inH₂O"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/IN_H2O", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu323", "type" => "nist"}, {"id" => "u:39F_in_water", "type" => "unitsml"}], "short" => "39F_in_water", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "inch of water (39.2 degF)", "lang" => "en"}], "symbols" => [{"id" => "inH_2O_39degF", "ascii" => "inH_2O", "html" => "inH2O", "latex" => "\\ensuremath{\\mathrm{inH_{2}O}}", "mathml" => "inH2O", "unicode" => "inH₂O"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu324", "type" => "nist"}, {"id" => "u:60F_in_water", "type" => "unitsml"}], "short" => "60F_in_water", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "inch of water (60 degF)", "lang" => "en"}], "symbols" => [{"id" => "inH_2O_60degF", "ascii" => "inH_2O", "html" => "inH2O", "latex" => "\\ensuremath{\\mathrm{inH_{2}O}}", "mathml" => "inH2O", "unicode" => "inH₂O"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu325", "type" => "nist"}, {"id" => "u:ft_water", "type" => "unitsml"}], "short" => "ft_water", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "conventional foot of water", "lang" => "en"}, {"value" => "foot of water, conventional", "lang" => "en"}, {"value" => "foot of water", "lang" => "en"}], "symbols" => [{"id" => "ftH_2O", "ascii" => "ftH_2O", "html" => "ftH2O", "latex" => "\\ensuremath{\\mathrm{ftH_{2}O}}", "mathml" => "ftH2O", "unicode" => "ftH₂O"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FT_H2O", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu326", "type" => "nist"}, {"id" => "u:39F_ft_water", "type" => "unitsml"}], "short" => "39F_ft_water", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "foot of water (39.2 degF)", "lang" => "en"}], "symbols" => [{"id" => "ftH_2O_39degF", "ascii" => "ftH_2O", "html" => "ftH2O", "latex" => "\\ensuremath{\\mathrm{ftH_{2}O}}", "mathml" => "ftH2O", "unicode" => "ftH₂O"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu327", "type" => "nist"}, {"id" => "u:32F_in_Hg", "type" => "unitsml"}], "short" => "32F_in_Hg", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "inch of mercury (32 degF)", "lang" => "en"}], "symbols" => [{"id" => "inHg_32degF", "ascii" => "inHg", "html" => "inHg", "latex" => "\\ensuremath{\\mathrm{inHg}}", "mathml" => "inHg", "unicode" => "inHg"}, {"id" => "\"Hg_32degF", "ascii" => "\"Hg", "html" => "″Hg", "latex" => "\\ensuremath{\\mathrm{''Hg}}", "mathml" => "″Hg", "unicode" => "″Hg"}, {"id" => "dprime_Hg_32degF", "ascii" => "\"Hg", "html" => "″Hg", "latex" => "\\ensuremath{\\mathrm{''Hg}}", "mathml" => "″Hg", "unicode" => "″Hg"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/IN_HG_32DEG_F", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu328", "type" => "nist"}, {"id" => "u:60F_in_Hg", "type" => "unitsml"}], "short" => "60F_in_Hg", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "inch of mercury (60 degF)", "lang" => "en"}], "symbols" => [{"id" => "inHg_60degF", "ascii" => "inHg", "html" => "inHg", "latex" => "\\ensuremath{\\mathrm{inHg}}", "mathml" => "inHg", "unicode" => "inHg"}, {"id" => "\"Hg_60degF", "ascii" => "\"Hg", "html" => "″Hg", "latex" => "\\ensuremath{\\mathrm{''Hg}}", "mathml" => "″Hg", "unicode" => "″Hg"}, {"id" => "dprime_Hg_60degF", "ascii" => "\"Hg", "html" => "″Hg", "latex" => "\\ensuremath{\\mathrm{''Hg}}", "mathml" => "″Hg", "unicode" => "″Hg"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/IN_HG_60DEG_F", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu329", "type" => "nist"}, {"id" => "u:in_Hg", "type" => "unitsml"}], "short" => "in_Hg", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "conventional inch of mercury", "lang" => "en"}, {"value" => "inch of mercury, conventional", "lang" => "en"}, {"value" => "inch of mercury", "lang" => "en"}], "symbols" => [{"id" => "inHg", "ascii" => "inHg", "html" => "inHg", "latex" => "\\ensuremath{\\mathrm{inHg}}", "mathml" => "inHg", "unicode" => "inHg"}, {"id" => "\"Hg", "ascii" => "\"Hg", "html" => "″Hg", "latex" => "\\ensuremath{\\mathrm{''Hg}}", "mathml" => "″Hg", "unicode" => "″Hg"}, {"id" => "dprime_Hg", "ascii" => "\"Hg", "html" => "″Hg", "latex" => "\\ensuremath{\\mathrm{''Hg}}", "mathml" => "″Hg", "unicode" => "″Hg"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/IN_HG", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu33", "type" => "nist"}, {"id" => "u:lux", "type" => "unitsml"}], "short" => "lux", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "lux", "lang" => "en"}, {"value" => "lux", "lang" => "fr"}], "symbols" => [{"id" => "lx", "ascii" => "lx", "html" => "lx", "latex" => "\\ensuremath{\\mathrm{lx}}", "mathml" => "lx", "unicode" => "lx"}], "quantity_references" => [{"id" => "NISTq47", "type" => "nist"}], "si_derived_bases" => [{"power" => -2, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu7", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/lux", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:lx", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/LUX", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu330", "type" => "nist"}, {"id" => "u:ft_Hg", "type" => "unitsml"}], "short" => "ft_Hg", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "conventional foot of mercury", "lang" => "en"}, {"value" => "foot of mercury, conventional", "lang" => "en"}, {"value" => "foot of mercury", "lang" => "en"}], "symbols" => [{"id" => "ftHg", "ascii" => "ftHg", "html" => "ftHg", "latex" => "\\ensuremath{\\mathrm{ftnHg}}", "mathml" => "ftHg", "unicode" => "ftHg"}, {"id" => "'Hg", "ascii" => "'Hg", "html" => "′Hg", "latex" => "\\ensuremath{\\mathrm{'Hg}}", "mathml" => "′Hg", "unicode" => "′Hg"}, {"id" => "prime_Hg", "ascii" => "'Hg", "html" => "′Hg", "latex" => "\\ensuremath{\\mathrm{'Hg}}", "mathml" => "′Hg", "unicode" => "′Hg"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FT_HG", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu331", "type" => "nist"}, {"id" => "u:us_therm", "type" => "unitsml"}], "short" => "us_therm", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "therm (US)", "lang" => "en"}], "symbols" => [{"id" => "thm (US)", "ascii" => "thm (US)", "html" => "thm (US)", "latex" => "\\ensuremath{\\mathrm{thm (US)}}", "mathml" => "thm (US)", "unicode" => "thm (US)"}], "quantity_references" => [{"id" => "NISTq17", "type" => "nist"}, {"id" => "NISTq18", "type" => "nist"}, {"id" => "NISTq182", "type" => "nist"}, {"id" => "NISTq183", "type" => "nist"}, {"id" => "NISTq19", "type" => "nist"}, {"id" => "NISTq77", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/THM_US", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu332", "type" => "nist"}, {"id" => "u:pH", "type" => "unitsml"}], "short" => "pH", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "pH", "lang" => "en"}], "symbols" => [{"id" => "pH", "ascii" => "pH", "html" => "pH", "latex" => "\\ensuremath{\\mathrm{pH}}", "mathml" => "pH", "unicode" => "pH"}], "quantity_references" => [{"id" => "NISTq174", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:chemical:code:[pH]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/PH", "authority" => "qudt"}], "scale_reference" => {"id" => "logarithmic_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu333", "type" => "nist"}, {"id" => "u:table_btu", "type" => "unitsml"}], "short" => "table_btu", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "British thermal unit_IT", "lang" => "en"}, {"value" => "International Table Btu", "lang" => "en"}, {"value" => "British thermal unit", "lang" => "en"}], "symbols" => [{"id" => "Btu", "ascii" => "Btu", "html" => "Btu", "latex" => "\\ensuremath{\\mathrm{Btu}}", "mathml" => "Btu", "unicode" => "Btu"}], "quantity_references" => [{"id" => "NISTq19", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:heat:code:[Btu]", "authority" => "ucum"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu334", "type" => "nist"}, {"id" => "u:mean_btu", "type" => "unitsml"}], "short" => "mean_btu", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "British thermal unit (mean)", "lang" => "en"}], "symbols" => [{"id" => "Btu_mean", "ascii" => "Btu", "html" => "Btu", "latex" => "\\ensuremath{\\mathrm{Btu}}", "mathml" => "Btu", "unicode" => "Btu"}], "quantity_references" => [{"id" => "NISTq19", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/BTU_MEAN", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu335", "type" => "nist"}, {"id" => "u:39F_btu", "type" => "unitsml"}], "short" => "39F_btu", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "British thermal unit (39 degF)", "lang" => "en"}], "symbols" => [{"id" => "Btu_39degF", "ascii" => "Btu", "html" => "Btu", "latex" => "\\ensuremath{\\mathrm{Btu}}", "mathml" => "Btu", "unicode" => "Btu"}], "quantity_references" => [{"id" => "NISTq19", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu336", "type" => "nist"}, {"id" => "u:59F_btu", "type" => "unitsml"}], "short" => "59F_btu", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "British thermal unit (59 degF)", "lang" => "en"}], "symbols" => [{"id" => "Btu_59degF", "ascii" => "Btu", "html" => "Btu", "latex" => "\\ensuremath{\\mathrm{Btu}}", "mathml" => "Btu", "unicode" => "Btu"}], "quantity_references" => [{"id" => "NISTq19", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu337", "type" => "nist"}, {"id" => "u:60F_btu", "type" => "unitsml"}], "short" => "60F_btu", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "British thermal unit (60 degF)", "lang" => "en"}], "symbols" => [{"id" => "Btu_60degF", "ascii" => "Btu", "html" => "Btu", "latex" => "\\ensuremath{\\mathrm{Btu}}", "mathml" => "Btu", "unicode" => "Btu"}], "quantity_references" => [{"id" => "NISTq19", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu338", "type" => "nist"}, {"id" => "u:tropical_year", "type" => "unitsml"}], "short" => "tropical_year", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "year, tropical", "lang" => "en"}, {"value" => "tropical year", "lang" => "en"}, {"value" => "year", "lang" => "en"}], "symbols" => [{"id" => "a_tropical_year", "ascii" => "a", "html" => "a", "latex" => "\\ensuremath{\\mathrm{a}}", "mathml" => "a", "unicode" => "a"}], "quantity_references" => [{"id" => "NISTq3", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:iso1000:code:a_t", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/YR_TROPICAL", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu339", "type" => "nist"}, {"id" => "u:sidereal_year", "type" => "unitsml"}], "short" => "sidereal_year", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "year, sidereal", "lang" => "en"}, {"value" => "sidereal year", "lang" => "en"}, {"value" => "year", "lang" => "en"}], "symbols" => [{"id" => "a_sidereal_year", "ascii" => "a", "html" => "a", "latex" => "\\ensuremath{\\mathrm{a}}", "mathml" => "a", "unicode" => "a"}], "quantity_references" => [{"id" => "NISTq3", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:iso1000:code:a", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/YR_Sidereal", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu340", "type" => "nist"}, {"id" => "u:sidereal_day", "type" => "unitsml"}], "short" => "sidereal_day", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "day, sidereal", "lang" => "en"}, {"value" => "sidereal day", "lang" => "en"}, {"value" => "day", "lang" => "en"}], "symbols" => [{"id" => "d_sidereal", "ascii" => "d", "html" => "d", "latex" => "\\ensuremath{\\mathrm{d}}", "mathml" => "d", "unicode" => "d"}], "quantity_references" => [{"id" => "NISTq3", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:iso1000:code:d", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/DAY_Sidereal", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu341", "type" => "nist"}, {"id" => "u:sidereal_hour", "type" => "unitsml"}], "short" => "sidereal_hour", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "hour, sidereal", "lang" => "en"}, {"value" => "sidereal hour", "lang" => "en"}, {"value" => "hour", "lang" => "en"}], "symbols" => [{"id" => "h_sidereal", "ascii" => "h", "html" => "h", "latex" => "\\ensuremath{\\mathrm{h}}", "mathml" => "h", "unicode" => "h"}], "quantity_references" => [{"id" => "NISTq3", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:iso1000:code:h", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/HR_Sidereal", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu342", "type" => "nist"}, {"id" => "u:sidereal_minute", "type" => "unitsml"}], "short" => "sidereal_minute", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "minute, sidereal", "lang" => "en"}, {"value" => "sidereal minute", "lang" => "en"}, {"value" => "minute", "lang" => "en"}], "symbols" => [{"id" => "min_sidereal", "ascii" => "min", "html" => "min", "latex" => "\\ensuremath{\\mathrm{min}}", "mathml" => "min", "unicode" => "min"}], "quantity_references" => [{"id" => "NISTq3", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:iso1000:code:'", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MIN_Sidereal", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu343", "type" => "nist"}, {"id" => "u:sidereal_second", "type" => "unitsml"}], "short" => "sidereal_second", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "second, sidereal", "lang" => "en"}, {"value" => "sidereal second", "lang" => "en"}, {"value" => "second", "lang" => "en"}], "symbols" => [{"id" => "s_sidereal", "ascii" => "s", "html" => "s", "latex" => "\\ensuremath{\\mathrm{s}}", "mathml" => "s", "unicode" => "s"}], "quantity_references" => [{"id" => "NISTq3", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/S", "authority" => "qudt"}, {"type" => "informative", "uri" => "ucum:base-unit:code:s", "authority" => "ucum"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu344", "type" => "nist"}, {"id" => "u:printers_point", "type" => "unitsml"}], "short" => "printers_point", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "point (printer's)", "lang" => "en"}], "symbols" => [{"id" => "pt_printer", "ascii" => "pt", "html" => "pt", "latex" => "\\ensuremath{\\mathrm{pt}}", "mathml" => "pt", "unicode" => "pt"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/PT_BIG", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu345", "type" => "nist"}, {"id" => "u:shake", "type" => "unitsml"}], "short" => "shake", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "shake", "lang" => "en"}], "symbols" => [{"id" => "shake", "ascii" => "shake", "html" => "shake", "latex" => "\\ensuremath{\\mathrm{shake}}", "mathml" => "shake", "unicode" => "shake"}], "quantity_references" => [{"id" => "NISTq3", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/SH", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu346", "type" => "nist"}, {"id" => "u:denier", "type" => "unitsml"}], "short" => "denier", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "denier", "lang" => "en"}], "symbols" => [{"id" => "den", "ascii" => "den", "html" => "den", "latex" => "\\ensuremath{\\mathrm{den}}", "mathml" => "den", "unicode" => "den"}], "quantity_references" => [{"id" => "NISTq176", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:heat:code:[den]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/DENIER", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu347", "type" => "nist"}, {"id" => "u:nato_mil", "type" => "unitsml"}], "short" => "nato_mil", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "angular mil (NATO)", "lang" => "en"}, {"value" => "angular mil", "lang" => "en"}, {"value" => "mil", "lang" => "en"}], "symbols" => [{"id" => "mil_nato", "ascii" => "mil", "html" => "mil", "latex" => "\\ensuremath{\\mathrm{mil}}", "mathml" => "mil", "unicode" => "mil"}], "quantity_references" => [{"id" => "NISTq9", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[mil_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MilLength", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu348", "type" => "nist"}, {"id" => "u:pound_mole", "type" => "unitsml"}], "short" => "pound_mole", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "pound-mole", "lang" => "en"}, {"value" => "pound mole", "lang" => "en"}], "symbols" => [{"id" => "lbmol", "ascii" => "lbmol", "html" => "lbmol", "latex" => "\\ensuremath{\\mathrm{lbmol}}", "mathml" => "lbmol", "unicode" => "lbmol"}], "quantity_references" => [{"id" => "NISTq6", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MOL_LB", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu349", "type" => "nist"}, {"id" => "u:ton_refrigeration", "type" => "unitsml"}], "short" => "ton_refrigeration", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "ton of refrigeration (12 000 Btu_IT/h)", "lang" => "en"}, {"value" => "ton of refrigeration", "lang" => "en"}, {"value" => "ton", "lang" => "en"}], "symbols" => [{"id" => "ton_refrigeration", "ascii" => "ton", "html" => "ton", "latex" => "\\ensuremath{\\mathrm{ton}}", "mathml" => "ton", "unicode" => "ton"}], "quantity_references" => [{"id" => "NISTq20", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/TON_FG", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu350", "type" => "nist"}, {"id" => "u:bit", "type" => "unitsml"}], "short" => "bit", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "bit", "lang" => "en"}], "symbols" => [{"id" => "bit", "ascii" => "bit", "html" => "bit", "latex" => "\\ensuremath{\\mathrm{bit}}", "mathml" => "bit", "unicode" => "bit"}], "quantity_references" => [{"id" => "NISTq177", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:infotech:code:bit_s", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/BIT", "authority" => "qudt"}], "scale_reference" => {"id" => "discrete", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu351", "type" => "nist"}, {"id" => "u:byte", "type" => "unitsml"}], "short" => "byte", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "byte", "lang" => "en"}], "symbols" => [{"id" => "byte_B", "ascii" => "B", "html" => "B", "latex" => "\\ensuremath{\\mathrm{B}}", "mathml" => "B", "unicode" => "B"}], "quantity_references" => [{"id" => "NISTq177", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:infotech:code:By", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/BYTE", "authority" => "qudt"}], "scale_reference" => {"id" => "discrete", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu352", "type" => "nist"}, {"id" => "u:us_peck", "type" => "unitsml"}], "short" => "us_peck", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "peck", "lang" => "en"}], "symbols" => [{"id" => "pk", "ascii" => "pk", "html" => "pk", "latex" => "\\ensuremath{\\mathrm{pk}}", "mathml" => "pk", "unicode" => "pk"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[pk_us]", "authority" => "ucum"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu353", "type" => "nist"}, {"id" => "u:us_minim", "type" => "unitsml"}], "short" => "us_minim", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "minim", "lang" => "en"}], "symbols" => [{"id" => "minim", "ascii" => "min", "html" => "min", "latex" => "\\ensuremath{\\mathrm{min}}", "mathml" => "min", "unicode" => "min"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[min_us]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MIN", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu354", "type" => "nist"}, {"id" => "u:us_cup", "type" => "unitsml"}], "short" => "us_cup", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "cup (US)", "lang" => "en"}, {"value" => "cup", "lang" => "en"}], "symbols" => [{"id" => "cup", "ascii" => "cup", "html" => "cup", "latex" => "\\ensuremath{\\mathrm{cup}}", "mathml" => "cup", "unicode" => "cup"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[cup_us]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/CUP_US", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu355", "type" => "nist"}, {"id" => "u:us_fluid_dram", "type" => "unitsml"}], "short" => "us_fluid_dram", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "fluid dram", "lang" => "en"}, {"value" => "dram, fluid", "lang" => "en"}, {"value" => "dram", "lang" => "en"}], "symbols" => [{"id" => "fl dr", "ascii" => "fl dr", "html" => "fl dr", "latex" => "\\ensuremath{\\mathrm{fl dr}}", "mathml" => "fl dr", "unicode" => "fl dr"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[fdr_us]", "authority" => "ucum"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu356", "type" => "nist"}, {"id" => "u:us_gill", "type" => "unitsml"}], "short" => "us_gill", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "gill (US)", "lang" => "en"}, {"value" => "gill", "lang" => "en"}], "symbols" => [{"id" => "gi", "ascii" => "gi", "html" => "gi", "latex" => "\\ensuremath{\\mathrm{gi}}", "mathml" => "gi", "unicode" => "gi"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[gil_us]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/GI_US", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu357", "type" => "nist"}, {"id" => "u:imperial_gill", "type" => "unitsml"}], "short" => "imperial_gill", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "gill [Canadian and UK (Imperial)]", "lang" => "en"}, {"value" => "imperial gill", "lang" => "en"}, {"value" => "gill", "lang" => "en"}], "symbols" => [{"id" => "gi_imperial", "ascii" => "gi", "html" => "gi", "latex" => "\\ensuremath{\\mathrm{gi}}", "mathml" => "gi", "unicode" => "gi"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[gil_us]", "authority" => "ucum"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu358", "type" => "nist"}, {"id" => "u:cubic_foot_per_minute", "type" => "unitsml"}], "short" => "cubic_foot_per_minute", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "cubic foot per minute", "lang" => "en"}], "symbols" => [{"id" => "ft^3*min^-1", "ascii" => "ft^3*min^-1", "html" => "ft3/min", "latex" => "\\ensuremath{\\mathrm{ft^3/min}}", "mathml" => "ft3/min", "unicode" => "ft³min"}], "quantity_references" => [{"id" => "NISTq151", "type" => "nist"}], "root_units" => [{"power" => 3, "unit_reference" => {"id" => "NISTu78", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu36", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FT3-PER-MIN", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu359", "type" => "nist"}, {"id" => "u:cubic_foot_per_second", "type" => "unitsml"}], "short" => "cubic_foot_per_second", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "cubic foot per second", "lang" => "en"}], "symbols" => [{"id" => "ft^3*sec^-1", "ascii" => "ft^3*sec^-1", "html" => "ft3/sec", "latex" => "\\ensuremath{\\mathrm{ft^3/sec}}", "mathml" => "ft3/sec", "unicode" => "ft³sec"}], "quantity_references" => [{"id" => "NISTq151", "type" => "nist"}], "root_units" => [{"power" => 3, "unit_reference" => {"id" => "NISTu78", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FT3-PER-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu36", "type" => "nist"}, {"id" => "u:minute", "type" => "unitsml"}], "short" => "minute", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "minute", "lang" => "en"}, {"value" => "minute", "lang" => "fr"}], "symbols" => [{"id" => "min", "ascii" => "min", "html" => "min", "latex" => "\\ensuremath{\\mathrm{min}}", "mathml" => "min", "unicode" => "min"}, {"id" => "'_min", "ascii" => "'", "html" => "′", "latex" => "\\ensuremath{\\mathrm{'}}", "mathml" => "", "unicode" => "′"}, {"id" => "prime_min", "ascii" => "'", "html" => "′", "latex" => "\\ensuremath{\\mathrm{'}}", "mathml" => "", "unicode" => "′"}], "quantity_references" => [{"id" => "NISTq3", "type" => "nist"}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/minute", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:iso1000:code:'", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MIN", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu360", "type" => "nist"}, {"id" => "u:cubic_inch_per_minute", "type" => "unitsml"}], "short" => "cubic_inch_per_minute", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "cubic inch per minute", "lang" => "en"}], "symbols" => [{"id" => "in^3*min^-1", "ascii" => "in^3*min^-1", "html" => "in3/min", "latex" => "\\ensuremath{\\mathrm{in^3/min}}", "mathml" => "in3/min", "unicode" => "in³min"}], "quantity_references" => [{"id" => "NISTq151", "type" => "nist"}], "root_units" => [{"power" => 3, "unit_reference" => {"id" => "NISTu8", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu36", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/IN3-PER-MIN", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu361", "type" => "nist"}, {"id" => "u:microinch", "type" => "unitsml"}], "short" => "microinch", "root" => false, "prefixed" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "microinch", "lang" => "en"}], "symbols" => [{"id" => "uin", "ascii" => "uin", "html" => "μin", "latex" => "\\ensuremath{\\mathrm{mu}in}", "mathml" => "μin", "unicode" => "μin"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu8", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_-6", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MicroIN", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu362", "type" => "nist"}, {"id" => "u:millibar", "type" => "unitsml"}], "short" => "millibar", "root" => false, "prefixed" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "millibar", "lang" => "en"}], "symbols" => [{"id" => "mbar", "ascii" => "mbar", "html" => "mbar", "latex" => "\\ensuremath{\\mathrm{mbar}}", "mathml" => "mbar", "unicode" => "mbar"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu91", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_-3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MilliBAR", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu363", "type" => "nist"}, {"id" => "u:mile_per_gallon", "type" => "unitsml"}], "short" => "mile_per_gallon", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "mile per gallon (US)", "lang" => "en"}, {"value" => "mile per gallon", "lang" => "en"}], "symbols" => [{"id" => "mpg", "ascii" => "mpg", "html" => "mpg", "latex" => "\\ensuremath{\\mathrm{mpg}}", "mathml" => "mpg", "unicode" => "mpg"}, {"id" => "mi/gal", "ascii" => "mi/gal", "html" => "mi/gal", "latex" => "\\ensuremath{\\mathrm{mi/gal}}", "mathml" => "mi/gal", "unicode" => "mi/gal"}], "quantity_references" => [{"id" => "NISTq198", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu83", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu175", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu364", "type" => "nist"}, {"id" => "u:gallon_per_minute", "type" => "unitsml"}], "short" => "gallon_per_minute", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "gallon (US) per minute", "lang" => "en"}, {"value" => "gallon per minute", "lang" => "en"}], "symbols" => [{"id" => "gpm", "ascii" => "gpm", "html" => "gpm", "latex" => "\\ensurement{\\mathrm{gpm}}", "mathml" => "gpm", "unicode" => "gal/min"}, {"id" => "gal*min^-1", "ascii" => "gal*min^-1", "html" => "gal/min", "latex" => "\\ensurement{\\mathrm{gal/min}}", "mathml" => "gal/min", "unicode" => "gpm"}], "quantity_references" => [{"id" => "NISTq151", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu175", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu36", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu365", "type" => "nist"}, {"id" => "u:milliliter", "type" => "unitsml"}], "short" => "milliliter", "root" => false, "prefixed" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "milliliter", "lang" => "en"}], "symbols" => [{"id" => "mL", "ascii" => "mL", "html" => "mL", "latex" => "\\ensuremath{\\mathrm{mL}}", "mathml" => "mL", "unicode" => "mL"}, {"id" => "ml", "ascii" => "ml", "html" => "ml", "latex" => "\\ensuremath{\\mathrm{ml}}", "mathml" => "ml", "unicode" => "ml"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu130", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_-3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MilliL", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu366", "type" => "nist"}, {"id" => "u:mole_per_liter", "type" => "unitsml"}], "short" => "mole_per_liter", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "mole per liter", "lang" => "en"}], "symbols" => [{"id" => "mol*l^-1", "ascii" => "mol*l^-1", "html" => "mol/l", "latex" => "\\ensuremath{\\mathrm{mol/l}}", "mathml" => "mol/l", "unicode" => "mol/l"}, {"id" => "mol*L^-1", "ascii" => "mol*L^-1", "html" => "mol/L", "latex" => "\\ensuremath{\\mathrm{mol/L}}", "mathml" => "mol/L", "unicode" => "mol/L"}], "quantity_references" => [{"id" => "NISTq55", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu6", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu130", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MOL-PER-L", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu37", "type" => "nist"}, {"id" => "u:hour", "type" => "unitsml"}], "short" => "hour", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "hour", "lang" => "en"}, {"value" => "heure", "lang" => "fr"}], "symbols" => [{"id" => "h", "ascii" => "h", "html" => "h", "latex" => "\\ensuremath{\\mathrm{h}}", "mathml" => "h", "unicode" => "h"}], "quantity_references" => [{"id" => "NISTq3", "type" => "nist"}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/hour", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:iso1000:code:h", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/HR", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu376", "type" => "nist"}, {"id" => "u:light_week", "type" => "unitsml"}], "short" => "light_week", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "light week", "lang" => "en"}], "symbols" => [{"id" => "l.w.", "ascii" => "l.w.", "html" => "l.w.", "latex" => "\\ensuremath{\\mathrm{l.w.}}", "mathml" => "l.w.", "unicode" => "l.w."}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu377", "type" => "nist"}, {"id" => "u:light_hour", "type" => "unitsml"}], "short" => "light_hour", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "light hour", "lang" => "en"}], "symbols" => [{"id" => "l.h.", "ascii" => "l.h.", "html" => "l.h.", "latex" => "\\ensuremath{\\mathrm{l.h.}}", "mathml" => "l.h.", "unicode" => "l.h."}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu378", "type" => "nist"}, {"id" => "u:light_minute", "type" => "unitsml"}], "short" => "light_minute", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "light minute", "lang" => "en"}], "symbols" => [{"id" => "l.m.", "ascii" => "l.m.", "html" => "l.m.", "latex" => "\\ensuremath{\\mathrm{l.m.}}", "mathml" => "l.m.", "unicode" => "l.m."}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu379", "type" => "nist"}, {"id" => "u:light_second", "type" => "unitsml"}], "short" => "light_second", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "light second", "lang" => "en"}], "symbols" => [{"id" => "l.s.", "ascii" => "l.s.", "html" => "l.s.", "latex" => "\\ensuremath{\\mathrm{l.s.}}", "mathml" => "l.s.", "unicode" => "l.s."}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu38", "type" => "nist"}, {"id" => "u:day", "type" => "unitsml"}], "short" => "day", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "day", "lang" => "en"}, {"value" => "jour", "lang" => "fr"}], "symbols" => [{"id" => "d", "ascii" => "d", "html" => "d", "latex" => "\\ensuremath{\\mathrm{d}}", "mathml" => "d", "unicode" => "d"}], "quantity_references" => [{"id" => "NISTq3", "type" => "nist"}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/day", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:iso1000:code:d", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/DAY", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu380", "type" => "nist"}, {"id" => "u:kilometer_per_liter", "type" => "unitsml"}], "short" => "kilometer_per_liter", "root" => false, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "kilometer per liter", "lang" => "en"}], "symbols" => [{"id" => "km/l", "ascii" => "km/l", "html" => "km/l", "latex" => "\\ensuremath{\\mathrm{km/l}}", "mathml" => "km/l", "unicode" => "km/l"}, {"id" => "km/L", "ascii" => "km/L", "html" => "km/L", "latex" => "\\ensuremath{\\mathrm{km/L}}", "mathml" => "km/L", "unicode" => "km/L"}], "quantity_references" => [{"id" => "NISTq198", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu130", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu381", "type" => "nist"}, {"id" => "u:decibel_milliwatt", "type" => "unitsml"}], "short" => "decibel_milliwatt", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "dBm", "lang" => "en"}, {"value" => "decibel-milliwatt", "lang" => "en"}], "symbols" => [{"id" => "dBm", "ascii" => "dBm", "html" => "dBm", "latex" => "\\ensuremath{\\mathrm{dBm}}", "mathml" => "dBm", "unicode" => "dBm"}, {"id" => "dB_mW", "ascii" => "dB_mW", "html" => "dBmW", "latex" => "\\ensuremath{\\mathrm{dB_{mW}}}", "mathml" => "dBmW", "unicode" => "dB_mW"}], "quantity_references" => [{"id" => "NISTq90", "type" => "nist"}], "scale_reference" => {"id" => "logarithmic_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu382", "type" => "nist"}, {"id" => "u:relative_humidity", "type" => "unitsml"}], "short" => "relative_humidity", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "relative humidity", "lang" => "en"}, {"value" => "percent relative humidity", "lang" => "en"}], "symbols" => [{"id" => "rh", "ascii" => "RH", "html" => "RH", "latex" => "\\ensuremath{\\mathrm{RH}}", "mathml" => "RH", "unicode" => "RH"}, {"id" => "rh_percent", "ascii" => "%rh", "html" => "%rh", "latex" => "\\ensuremath{\\mathrm{\\%rh}}", "mathml" => "%rh", "unicode" => "%rh"}], "quantity_references" => [{"id" => "NISTq199", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/PERCENT_RH", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu383", "type" => "nist"}, {"id" => "u:octave", "type" => "unitsml"}], "short" => "octave", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "octave", "lang" => "en"}], "symbols" => [{"id" => "oct", "ascii" => "oct", "html" => "oct", "latex" => "\\ensuremath{\\mathrm{oct}}", "mathml" => "oct", "unicode" => "oct"}], "quantity_references" => [{"id" => "NISTq200", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu384", "type" => "nist"}, {"id" => "u:decade", "type" => "unitsml"}], "short" => "decade", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "decade", "lang" => "en"}], "symbols" => [{"id" => "dec", "ascii" => "dec", "html" => "dec", "latex" => "\\ensuremath{\\mathrm{dec}}", "mathml" => "dec", "unicode" => "dec"}], "quantity_references" => [{"id" => "NISTq200", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/DECADE", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu385", "type" => "nist"}, {"id" => "u:erlang", "type" => "unitsml"}], "short" => "erlang", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "erlang", "lang" => "en"}], "symbols" => [{"id" => "E_erlang", "ascii" => "E", "html" => "E", "latex" => "\\ensuremath{\\mathrm{E}}", "mathml" => "E", "unicode" => "E"}], "quantity_references" => [{"id" => "NISTq201", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/ERLANG", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu386", "type" => "nist"}, {"id" => "u:baud", "type" => "unitsml"}], "short" => "baud", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "baud", "lang" => "en"}], "symbols" => [{"id" => "Bd", "ascii" => "Bd", "html" => "Bd", "latex" => "\\ensuremath{\\mathrm{Bd}}", "mathml" => "Bd", "unicode" => "Bd"}], "quantity_references" => [{"id" => "NISTq202", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:infotech:code:Bd", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/BAUD", "authority" => "qudt"}], "scale_reference" => {"id" => "discrete", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu387", "type" => "nist"}, {"id" => "u:shannon", "type" => "unitsml"}], "short" => "shannon", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "shannon", "lang" => "en"}], "symbols" => [{"id" => "Sh", "ascii" => "Sh", "html" => "Sh", "latex" => "\\ensuremath{\\mathrm{Sh}}", "mathml" => "Sh", "unicode" => "Sh"}], "quantity_references" => [{"id" => "NISTq203", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/SHANNON", "authority" => "qudt"}], "scale_reference" => {"id" => "discrete", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu388", "type" => "nist"}, {"id" => "u:hartley", "type" => "unitsml"}], "short" => "hartley", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "hartley", "lang" => "en"}], "symbols" => [{"id" => "Hart", "ascii" => "Hart", "html" => "Hart", "latex" => "\\ensuremath{\\mathrm{Hart}}", "mathml" => "Hart", "unicode" => "Hart"}], "quantity_references" => [{"id" => "NISTq203", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/HART", "authority" => "qudt"}], "scale_reference" => {"id" => "discrete", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu39", "type" => "nist"}, {"id" => "u:angstrom", "type" => "unitsml"}], "short" => "angstrom", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "ångström", "lang" => "en"}], "symbols" => [{"id" => "Aring", "ascii" => "Aring", "html" => "Å", "latex" => "\\ensuremath{\\mathrm{\\AA}}", "mathml" => "Å", "unicode" => "Å"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}, {"id" => "NISTq48", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:misc:code:Ao", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/ANGSTROM", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu3e-1/1", "type" => "nist"}, {"id" => "u:second_to_the_power_minus_one", "type" => "unitsml"}], "short" => "second_to_the_power_minus_one", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "second to the power minus one", "lang" => "en"}], "symbols" => [{"id" => "s^-1", "ascii" => "s^-1", "html" => "s-1", "latex" => "\\ensuremath{\\mathrm{s^{-1}}}", "mathml" => "s1", "unicode" => "s⁻¹"}], "quantity_references" => [{"id" => "NISTq112", "type" => "nist"}, {"id" => "NISTq113", "type" => "nist"}, {"id" => "NISTq120", "type" => "nist"}, {"id" => "NISTq189", "type" => "nist"}], "root_units" => [{"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu4", "type" => "nist"}, {"id" => "u:ampere", "type" => "unitsml"}], "short" => "ampere", "root" => true, "unit_system_reference" => [{"id" => "si-base", "type" => "unitsml"}], "names" => [{"value" => "ampere", "lang" => "en"}, {"value" => "ampère", "lang" => "fr"}], "symbols" => [{"id" => "A", "ascii" => "A", "html" => "A", "latex" => "\\ensuremath{\\mathrm{A}}", "mathml" => "A", "unicode" => "A"}], "quantity_references" => [{"id" => "NISTq4", "type" => "nist"}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/ampere", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:A", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/A", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu4.u1e-1/1", "type" => "nist"}, {"id" => "u:ampere_per_meter", "type" => "unitsml"}], "short" => "ampere_per_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "ampere per meter", "lang" => "en"}], "symbols" => [{"id" => "A*m^-1", "ascii" => "A*m^-1", "html" => "A/m", "latex" => "\\ensuremath{\\mathrm{A/m}}", "mathml" => "A/m", "unicode" => "A·m⁻¹"}], "quantity_references" => [{"id" => "NISTq54", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu4", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu4.u1e-2/1", "type" => "nist"}, {"id" => "u:ampere_per_square_meter", "type" => "unitsml"}], "short" => "ampere_per_square_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "ampere per square meter", "lang" => "en"}], "symbols" => [{"id" => "A*m^-2", "ascii" => "A*m^-2", "html" => "A/m2", "latex" => "\\ensuremath{\\mathrm{A/m^2}}", "mathml" => "A/m2", "unicode" => "A·m⁻²"}], "quantity_references" => [{"id" => "NISTq53", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu4", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu400", "type" => "nist"}, {"id" => "u:parts_per_million", "type" => "unitsml"}], "short" => "parts_per_million", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "parts per million", "lang" => "en"}], "symbols" => [{"id" => "ppm", "ascii" => "ppm", "html" => "ppm", "latex" => "\\ensuremath{\\mathrm{ppm}}", "mathml" => "ppm", "unicode" => "ppm"}], "quantity_references" => [{"id" => "NISTq186", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:dimless:code:[ppm]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/PPM", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu401", "type" => "nist"}, {"id" => "u:var", "type" => "unitsml"}], "short" => "var", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "var", "lang" => "en"}], "symbols" => [{"id" => "var", "ascii" => "var", "html" => "var", "latex" => "\\ensuremath{\\mathrm{var}}", "mathml" => "var", "unicode" => "var"}], "quantity_references" => [{"id" => "NISTq187", "type" => "nist"}], "si_derived_bases" => [{"power" => 2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -3, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu16", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu4", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu42", "type" => "nist"}, {"id" => "u:are", "type" => "unitsml"}], "short" => "are", "root" => true, "unit_system_reference" => [{"id" => "non-SI_nist_acceptable", "type" => "nist"}, {"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "are", "lang" => "en"}], "symbols" => [{"id" => "a", "ascii" => "a", "html" => "a", "latex" => "\\ensuremath{\\mathrm{a}}", "mathml" => "a", "unicode" => "a"}], "quantity_references" => [{"id" => "NISTq8", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:iso1000:code:ar", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/ARE", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu43", "type" => "nist"}, {"id" => "u:barn", "type" => "unitsml"}], "short" => "barn", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "barn", "lang" => "en"}], "symbols" => [{"id" => "barn", "ascii" => "b", "html" => "b", "latex" => "\\ensuremath{\\mathrm{b}}", "mathml" => "b", "unicode" => "b"}], "quantity_references" => [{"id" => "NISTq8", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:misc:code:b", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/BARN", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu44", "type" => "nist"}, {"id" => "u:hectare", "type" => "unitsml"}], "short" => "hectare", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "hectare", "lang" => "en"}, {"value" => "hectare", "lang" => "fr"}], "symbols" => [{"id" => "ha", "ascii" => "ha", "html" => "ha", "latex" => "\\ensuremath{\\mathrm{ha}}", "mathml" => "ha", "unicode" => "ha"}], "quantity_references" => [{"id" => "NISTq8", "type" => "nist"}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/hectare", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/HA", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu45", "type" => "nist"}, {"id" => "u:square_foot", "type" => "unitsml"}], "short" => "square_foot", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "square foot", "lang" => "en"}], "symbols" => [{"id" => "ft^2", "ascii" => "ft^2", "html" => "ft2", "latex" => "\\ensuremath{\\mathrm{ft^2}}", "mathml" => "ft2", "unicode" => "ft²"}], "quantity_references" => [{"id" => "NISTq8", "type" => "nist"}], "root_units" => [{"power" => 2, "unit_reference" => {"id" => "NISTu78", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[sft_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FT2", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu46", "type" => "nist"}, {"id" => "u:square_inch", "type" => "unitsml"}], "short" => "square_inch", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "square inch", "lang" => "en"}], "symbols" => [{"id" => "in^2", "ascii" => "in^2", "html" => "in2", "latex" => "\\ensuremath{\\mathrm{in^2}}", "mathml" => "in2", "unicode" => "in²"}], "quantity_references" => [{"id" => "NISTq8", "type" => "nist"}], "root_units" => [{"power" => 2, "unit_reference" => {"id" => "NISTu8", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[sin_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/IN2", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu47", "type" => "nist"}, {"id" => "u:abampere", "type" => "unitsml"}], "short" => "abampere", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "abampere", "lang" => "en"}, {"value" => "EMU of current", "lang" => "en"}], "symbols" => [{"id" => "abA", "ascii" => "abA", "html" => "abA", "latex" => "\\ensuremath{\\mathrm{abA}}", "mathml" => "abA", "unicode" => "abA"}], "quantity_references" => [{"id" => "NISTq4", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/A_Ab", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu48", "type" => "nist"}, {"id" => "u:abcoulomb", "type" => "unitsml"}], "short" => "abcoulomb", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "abcoulomb", "lang" => "en"}], "symbols" => [{"id" => "abC", "ascii" => "abC", "html" => "abC", "latex" => "\\ensuremath{\\mathrm{abC}}", "mathml" => "abC", "unicode" => "abC"}], "quantity_references" => [{"id" => "NISTq22", "type" => "nist"}, {"id" => "NISTq23", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/C_Ab", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu49", "type" => "nist"}, {"id" => "u:abfarad", "type" => "unitsml"}], "short" => "abfarad", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "abfarad", "lang" => "en"}, {"value" => "EMU of capacitance", "lang" => "en"}], "symbols" => [{"id" => "abF", "ascii" => "abF", "html" => "abF", "latex" => "\\ensuremath{\\mathrm{abF}}", "mathml" => "abF", "unicode" => "abF"}], "quantity_references" => [{"id" => "NISTq27", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FARAD_Ab", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu5", "type" => "nist"}, {"id" => "u:kelvin", "type" => "unitsml"}], "short" => "kelvin", "root" => true, "unit_system_reference" => [{"id" => "si-base", "type" => "unitsml"}], "names" => [{"value" => "kelvin", "lang" => "en"}, {"value" => "kelvin", "lang" => "fr"}], "symbols" => [{"id" => "K", "ascii" => "K", "html" => "K", "latex" => "\\ensuremath{\\mathrm{K}}", "mathml" => "K", "unicode" => "K"}, {"id" => "degK", "ascii" => "degK", "html" => "°K", "latex" => "\\ensuremath{\\mathrm{^{\\circ}K}}", "mathml" => "°K", "unicode" => "°K"}], "quantity_references" => [{"id" => "NISTq193", "type" => "nist"}, {"id" => "NISTq196", "type" => "nist"}, {"id" => "NISTq5", "type" => "nist"}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/kelvin", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:base-unit:code:K", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/K", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu50", "type" => "nist"}, {"id" => "u:abhenry", "type" => "unitsml"}], "short" => "abhenry", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "abhenry", "lang" => "en"}, {"value" => "EMU of inductance", "lang" => "en"}], "symbols" => [{"id" => "abH", "ascii" => "abH", "html" => "abH", "latex" => "\\ensuremath{\\mathrm{abH}}", "mathml" => "abH", "unicode" => "abH"}], "quantity_references" => [{"id" => "NISTq32", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/H_Ab", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu51", "type" => "nist"}, {"id" => "u:abmho", "type" => "unitsml"}], "short" => "abmho", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "abmho", "lang" => "en"}], "symbols" => [{"id" => "abS", "ascii" => "abS", "html" => "(abΩ)-1", "latex" => "\\ensuremath{\\mathrm{(ab\\Omega)^{-1}}", "mathml" => "(abΩ)-1", "unicode" => "(abΩ)⁻¹"}], "quantity_references" => [{"id" => "NISTq29", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu52", "type" => "nist"}, {"id" => "u:abohm", "type" => "unitsml"}], "short" => "abohm", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "abohm", "lang" => "en"}, {"value" => "EMU of resistance", "lang" => "en"}], "symbols" => [{"id" => "abohm", "ascii" => "abohm", "html" => "abΩ", "latex" => "\\ensuremath{\\mathrm{ab\\Omega}}", "mathml" => "abΩ", "unicode" => "abΩ"}], "quantity_references" => [{"id" => "NISTq28", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/OHM_Ab", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu53", "type" => "nist"}, {"id" => "u:abvolt", "type" => "unitsml"}], "short" => "abvolt", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "abvolt", "lang" => "en"}, {"value" => "EMU of electric potential", "lang" => "en"}], "symbols" => [{"id" => "abV", "ascii" => "abV", "html" => "abV", "latex" => "\\ensuremath{\\mathrm{abV}}", "mathml" => "abV", "unicode" => "abV"}], "quantity_references" => [{"id" => "NISTq24", "type" => "nist"}, {"id" => "NISTq25", "type" => "nist"}, {"id" => "NISTq26", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/V_Ab", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu54", "type" => "nist"}, {"id" => "u:ampere_hour", "type" => "unitsml"}], "short" => "ampere_hour", "root" => false, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "ampere hour", "lang" => "en"}], "symbols" => [{"id" => "A*h", "ascii" => "A*h", "html" => "A · h", "latex" => "\\ensuremath{\\mathrm{A\\cdot h}}", "mathml" => "A·h", "unicode" => "A·h"}], "quantity_references" => [{"id" => "NISTq22", "type" => "nist"}, {"id" => "NISTq23", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu4", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu37", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/A-HR", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu55", "type" => "nist"}, {"id" => "u:biot", "type" => "unitsml"}], "short" => "biot", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "biot", "lang" => "en"}], "symbols" => [{"id" => "Bi", "ascii" => "Bi", "html" => "Bi", "latex" => "\\ensuremath{\\mathrm{Bi}}", "mathml" => "Bi", "unicode" => "Bi"}], "quantity_references" => [{"id" => "NISTq4", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu47", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "ucum:unit:cgs:code:Bi", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/BIOT", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu57", "type" => "nist"}, {"id" => "u:us_survey_acre_foot", "type" => "unitsml"}], "short" => "us_survey_acre_foot", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "acre-foot (based on US survey foot)", "lang" => "en"}, {"value" => "acre-foot", "lang" => "en"}], "symbols" => [{"id" => "ac*ft", "ascii" => "ac*ft", "html" => "ac · ft", "latex" => "\\ensuremath{\\mathrm{ac\\cdot ft}}", "mathml" => "ac·ft", "unicode" => "ac·ft"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu317", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu78", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/AC-FT", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu58", "type" => "nist"}, {"id" => "u:maxwell", "type" => "unitsml"}], "short" => "maxwell", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "maxwell", "lang" => "en"}], "symbols" => [{"id" => "Mx", "ascii" => "Mx", "html" => "Mx", "latex" => "\\ensuremath{\\mathrm{Mx}}", "mathml" => "Mx", "unicode" => "Mx"}], "quantity_references" => [{"id" => "NISTq30", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:cgs:code:Mx", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MX", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu5e-1/1", "type" => "nist"}, {"id" => "u:kelvin_to_the_power_minus_one", "type" => "unitsml"}], "short" => "kelvin_to_the_power_minus_one", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "kelvin to the power minus one", "lang" => "en"}], "symbols" => [{"id" => "K^-1", "ascii" => "K^-1", "html" => "K-1", "latex" => "\\ensuremath{\\mathrm{K^{-1}}}", "mathml" => "K1", "unicode" => "K⁻¹"}], "quantity_references" => [{"id" => "NISTq156", "type" => "nist"}, {"id" => "NISTq157", "type" => "nist"}, {"id" => "NISTq158", "type" => "nist"}], "root_units" => [{"power" => -1, "unit_reference" => {"id" => "NISTu5", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu6", "type" => "nist"}, {"id" => "u:mole", "type" => "unitsml"}], "short" => "mole", "root" => true, "unit_system_reference" => [{"id" => "si-base", "type" => "unitsml"}], "names" => [{"value" => "mole", "lang" => "en"}, {"value" => "mole", "lang" => "fr"}], "symbols" => [{"id" => "mol", "ascii" => "mol", "html" => "mol", "latex" => "\\ensuremath{\\mathrm{mol}}", "mathml" => "mol", "unicode" => "mol"}], "quantity_references" => [{"id" => "NISTq6", "type" => "nist"}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/mole", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:mol", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MOL", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu6.u1e-3/1", "type" => "nist"}, {"id" => "u:mole_per_cubic_meter", "type" => "unitsml"}], "short" => "mole_per_cubic_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "mole per cubic meter", "lang" => "en"}], "symbols" => [{"id" => "mol*m^-3", "ascii" => "mol*m^-3", "html" => "mol/m3", "latex" => "\\ensuremath{\\mathrm{mol/m^3}}", "mathml" => "mol/m3", "unicode" => "mol·m⁻³"}], "quantity_references" => [{"id" => "NISTq55", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu6", "type" => "nist"}}, {"power" => -3, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu6.u27p10'3e-1/1", "type" => "nist"}, {"id" => "u:mole_per_kilogram", "type" => "unitsml"}], "short" => "mole_per_kilogram", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "mole per kilogram", "lang" => "en"}], "symbols" => [{"id" => "mol*kg^-1", "ascii" => "mol*kg^-1", "html" => "mol/kg", "latex" => "\\ensuremath{\\mathrm{mol/kg}}", "mathml" => "mol/kg", "unicode" => "mol/kg"}], "quantity_references" => [{"id" => "NISTq179", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu6", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MOL-PER-KiloGM", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu60", "type" => "nist"}, {"id" => "u:table_calorie", "type" => "unitsml"}], "short" => "table_calorie", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "I.T. calorie", "lang" => "en"}, {"value" => "calorie_IT", "lang" => "en"}, {"value" => "calorie", "lang" => "en"}], "symbols" => [{"id" => "cal_IT", "ascii" => "cal_IT", "html" => "calIT", "latex" => "\\ensuremath{\\mathrm{cal_{IT}}}", "mathml" => "calIT", "unicode" => "cal_IT"}], "quantity_references" => [{"id" => "NISTq17", "type" => "nist"}, {"id" => "NISTq18", "type" => "nist"}, {"id" => "NISTq182", "type" => "nist"}, {"id" => "NISTq183", "type" => "nist"}, {"id" => "NISTq19", "type" => "nist"}, {"id" => "NISTq77", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:heat:code:cal", "authority" => "ucum"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu61", "type" => "nist"}, {"id" => "u:one", "type" => "unitsml"}], "short" => "one", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "one", "lang" => "en"}], "symbols" => [{"id" => "1", "ascii" => "1", "html" => "1", "latex" => "\\ensuremath{\\mathrm{1}}", "mathml" => "1", "unicode" => "1"}], "quantity_references" => [{"id" => "NISTq111", "type" => "nist"}, {"id" => "NISTq121", "type" => "nist"}, {"id" => "NISTq125", "type" => "nist"}, {"id" => "NISTq136", "type" => "nist"}, {"id" => "NISTq137", "type" => "nist"}, {"id" => "NISTq138", "type" => "nist"}, {"id" => "NISTq140", "type" => "nist"}, {"id" => "NISTq147", "type" => "nist"}, {"id" => "NISTq188", "type" => "nist"}, {"id" => "NISTq93", "type" => "nist"}, {"id" => "NISTq94", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/ONE", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu62", "type" => "nist"}, {"id" => "u:erg", "type" => "unitsml"}], "short" => "erg", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "erg", "lang" => "en"}], "symbols" => [{"id" => "erg", "ascii" => "erg", "html" => "erg", "latex" => "\\ensuremath{\\mathrm{erg}}", "mathml" => "erg", "unicode" => "erg"}], "quantity_references" => [{"id" => "NISTq17", "type" => "nist"}, {"id" => "NISTq18", "type" => "nist"}, {"id" => "NISTq182", "type" => "nist"}, {"id" => "NISTq183", "type" => "nist"}, {"id" => "NISTq19", "type" => "nist"}, {"id" => "NISTq77", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:cgs:code:erg", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/ERG", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu63", "type" => "nist"}, {"id" => "u:table_kg_calorie", "type" => "unitsml"}], "short" => "table_kg_calorie", "root" => true, "prefixed" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "kilocalorie_IT", "lang" => "en"}], "symbols" => [{"id" => "kcal_IT", "ascii" => "kcal_IT", "html" => "kcalIT", "latex" => "\\ensuremath{\\mathrm{kcal_{IT}}}", "mathml" => "kcalIT", "unicode" => "kcal_IT"}], "quantity_references" => [{"id" => "NISTq17", "type" => "nist"}, {"id" => "NISTq18", "type" => "nist"}, {"id" => "NISTq182", "type" => "nist"}, {"id" => "NISTq183", "type" => "nist"}, {"id" => "NISTq19", "type" => "nist"}, {"id" => "NISTq77", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu64", "type" => "nist"}, {"id" => "u:thermo_kg_calorie", "type" => "unitsml"}], "short" => "thermo_kg_calorie", "root" => true, "prefixed" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "kilocalorie_th", "lang" => "en"}], "symbols" => [{"id" => "kcal_th", "ascii" => "kcal_th", "html" => "kcalth", "latex" => "\\ensuremath{\\mathrm{kcal_{th}}}", "mathml" => "kcalth", "unicode" => "kcal_th"}], "quantity_references" => [{"id" => "NISTq17", "type" => "nist"}, {"id" => "NISTq18", "type" => "nist"}, {"id" => "NISTq182", "type" => "nist"}, {"id" => "NISTq183", "type" => "nist"}, {"id" => "NISTq19", "type" => "nist"}, {"id" => "NISTq77", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu65", "type" => "nist"}, {"id" => "u:kilowatt_hour", "type" => "unitsml"}], "short" => "kilowatt_hour", "root" => false, "prefixed" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "kilowatt hour", "lang" => "en"}], "symbols" => [{"id" => "kW*h", "ascii" => "kW*h", "html" => "kW · h", "latex" => "\\ensuremath{\\mathrm{kW\\cdot h}}", "mathml" => "kW·h", "unicode" => "kW·h"}], "quantity_references" => [{"id" => "NISTq17", "type" => "nist"}, {"id" => "NISTq18", "type" => "nist"}, {"id" => "NISTq182", "type" => "nist"}, {"id" => "NISTq183", "type" => "nist"}, {"id" => "NISTq19", "type" => "nist"}, {"id" => "NISTq77", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu14", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu37", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/KiloW-HR", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu69", "type" => "nist"}, {"id" => "u:watt_hour", "type" => "unitsml"}], "short" => "watt_hour", "root" => false, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "watt hour", "lang" => "en"}], "symbols" => [{"id" => "W*h", "ascii" => "W*h", "html" => "W · h", "latex" => "\\ensuremath{\\mathrm{W\\cdot h}}", "mathml" => "W·h", "unicode" => "W·h"}], "quantity_references" => [{"id" => "NISTq17", "type" => "nist"}, {"id" => "NISTq18", "type" => "nist"}, {"id" => "NISTq182", "type" => "nist"}, {"id" => "NISTq183", "type" => "nist"}, {"id" => "NISTq19", "type" => "nist"}, {"id" => "NISTq77", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu14", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu37", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/W-HR", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu7", "type" => "nist"}, {"id" => "u:candela", "type" => "unitsml"}], "short" => "candela", "root" => true, "unit_system_reference" => [{"id" => "si-base", "type" => "unitsml"}], "names" => [{"value" => "candela", "lang" => "en"}, {"value" => "candela", "lang" => "fr"}], "symbols" => [{"id" => "cd", "ascii" => "cd", "html" => "cd", "latex" => "\\ensuremath{\\mathrm{cd}}", "mathml" => "cd", "unicode" => "cd"}], "quantity_references" => [{"id" => "NISTq7", "type" => "nist"}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/candela", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:base-unit:code:cd", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/CD", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu7.u1e-2/1", "type" => "nist"}, {"id" => "u:candela_per_square_meter", "type" => "unitsml"}], "short" => "candela_per_square_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "candela per square meter", "lang" => "en"}], "symbols" => [{"id" => "cd*m^-2", "ascii" => "cd*m^-2", "html" => "cd/m2", "latex" => "\\ensuremath{\\mathrm{cd/m^2}}", "mathml" => "cd/m2", "unicode" => "cd·m⁻²"}], "quantity_references" => [{"id" => "NISTq56", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu7", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu71", "type" => "nist"}, {"id" => "u:dyne", "type" => "unitsml"}], "short" => "dyne", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "dyne", "lang" => "en"}], "symbols" => [{"id" => "dyn", "ascii" => "dyn", "html" => "dyn", "latex" => "\\ensuremath{\\mathrm{dyn}}", "mathml" => "dyn", "unicode" => "dyn"}], "quantity_references" => [{"id" => "NISTq13", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:cgs:code:dyn", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/DYN", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu72", "type" => "nist"}, {"id" => "u:kilogram_force", "type" => "unitsml"}], "short" => "kilogram_force", "root" => false, "prefixed" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "kilogram-force", "lang" => "en"}], "symbols" => [{"id" => "kgf", "ascii" => "kgf", "html" => "kgf", "latex" => "\\ensuremath{\\mathrm{kgf}}", "mathml" => "kgf", "unicode" => "kgf"}], "quantity_references" => [{"id" => "NISTq13", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu196", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/KiloGM_F", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu73", "type" => "nist"}, {"id" => "u:kilopond", "type" => "unitsml"}], "short" => "kilopond", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "kilopond", "lang" => "en"}], "symbols" => [{"id" => "kp", "ascii" => "kp", "html" => "kp", "latex" => "\\ensuremath{\\mathrm{kp}}", "mathml" => "kp", "unicode" => "kp"}], "quantity_references" => [{"id" => "NISTq13", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu196", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/KiloPOND", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu74", "type" => "nist"}, {"id" => "u:calorie_th_per_second", "type" => "unitsml"}], "short" => "calorie_th_per_second", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "calorie_th per second", "lang" => "en"}], "symbols" => [{"id" => "cal_th*s^-1", "ascii" => "cal_th*s^-1", "html" => "calth/s", "latex" => "\\ensuremath{\\mathrm{cal_{th}}}", "mathml" => "calth/s", "unicode" => "cal_th/s"}], "quantity_references" => [{"id" => "NISTq20", "type" => "nist"}, {"id" => "NISTq21", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu227", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu75", "type" => "nist"}, {"id" => "u:kilocalorie_th_per_second", "type" => "unitsml"}], "short" => "kilocalorie_th_per_second", "root" => false, "prefixed" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "kilocalorie_th per second", "lang" => "en"}], "symbols" => [{"id" => "kcal_th*s^-1", "ascii" => "kcal_th*s^-1", "html" => "kcalth/s", "latex" => "\\ensuremath{\\mathrm{kcal_{th}}}", "mathml" => "kcalth/s", "unicode" => "kcal_th/s"}], "quantity_references" => [{"id" => "NISTq20", "type" => "nist"}, {"id" => "NISTq21", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu227", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu78", "type" => "nist"}, {"id" => "u:foot", "type" => "unitsml"}], "short" => "foot", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "foot", "lang" => "en"}], "symbols" => [{"id" => "ft", "ascii" => "ft", "html" => "ft", "latex" => "\\ensuremath{\\mathrm{ft}}", "mathml" => "ft", "unicode" => "ft"}, {"id" => "'_ft", "ascii" => "'", "html" => "′", "latex" => "\\ensuremath{\\mathrm{'}}", "mathml" => "", "unicode" => "′"}, {"id" => "prime_ft", "ascii" => "'", "html" => "′", "latex" => "\\ensuremath{\\mathrm{'}}", "mathml" => "", "unicode" => "′"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}, {"id" => "NISTq48", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[ft_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FT", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu8", "type" => "nist"}, {"id" => "u:inch", "type" => "unitsml"}], "short" => "inch", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "inch", "lang" => "en"}], "symbols" => [{"id" => "in", "ascii" => "in", "html" => "in", "latex" => "\\ensuremath{\\mathrm{in}}", "mathml" => "in", "unicode" => "in"}, {"id" => "\"_in", "ascii" => "\"", "html" => "″", "latex" => "\\ensuremath{\\mathrm{''}}", "mathml" => "", "unicode" => "″"}, {"id" => "dprime_in", "ascii" => "\"", "html" => "″", "latex" => "\\ensuremath{\\mathrm{''}}", "mathml" => "", "unicode" => "″"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}, {"id" => "NISTq48", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[in_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/IN", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu83", "type" => "nist"}, {"id" => "u:mile", "type" => "unitsml"}], "short" => "mile", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "mile", "lang" => "en"}], "symbols" => [{"id" => "mi", "ascii" => "mi", "html" => "mi", "latex" => "\\ensuremath{\\mathrm{mi}}", "mathml" => "mi", "unicode" => "mi"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}, {"id" => "NISTq48", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[mi_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MI", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu84", "type" => "nist"}, {"id" => "u:yard", "type" => "unitsml"}], "short" => "yard", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "yard", "lang" => "en"}], "symbols" => [{"id" => "yd", "ascii" => "yd", "html" => "yd", "latex" => "\\ensuremath{\\mathrm{yd}}", "mathml" => "yd", "unicode" => "yd"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}, {"id" => "NISTq48", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[yd_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/YD", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu85", "type" => "nist"}, {"id" => "u:phot", "type" => "unitsml"}], "short" => "phot", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "phot", "lang" => "en"}], "symbols" => [{"id" => "ph", "ascii" => "ph", "html" => "ph", "latex" => "\\ensuremath{\\mathrm{ph}}", "mathml" => "ph", "unicode" => "ph"}], "quantity_references" => [{"id" => "NISTq47", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:cgs:code:ph", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/PHOT", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu86", "type" => "nist"}, {"id" => "u:grain", "type" => "unitsml"}], "short" => "grain", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "grain (troy or apothecary)", "lang" => "en"}, {"value" => "troy grain", "lang" => "en"}, {"value" => "apothecary grain", "lang" => "en"}, {"value" => "grain", "lang" => "en"}], "symbols" => [{"id" => "gr", "ascii" => "gr", "html" => "gr", "latex" => "\\ensuremath{\\mathrm{gr}}", "mathml" => "gr", "unicode" => "gr"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:avoirdupois:code:[gr]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/GRAIN", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu88", "type" => "nist"}, {"id" => "u:metric_ton", "type" => "unitsml"}], "short" => "metric_ton", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "tonne", "lang" => "en"}, {"value" => "metric ton", "lang" => "en"}, {"value" => "ton", "lang" => "en"}, {"value" => "tonne", "lang" => "fr"}], "symbols" => [{"id" => "t", "ascii" => "t", "html" => "t", "latex" => "\\ensuremath{\\mathrm{t}}", "mathml" => "t", "unicode" => "t"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/tonne", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:iso1000:code:t", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/TON_Metric", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu89", "type" => "nist"}, {"id" => "u:erg_per_second", "type" => "unitsml"}], "short" => "erg_per_second", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "erg per second", "lang" => "en"}], "symbols" => [{"id" => "erg*s^-1", "ascii" => "erg*s^-1", "html" => "erg/s", "latex" => "\\ensuremath{\\mathrm{erg/s}}", "mathml" => "erg/s", "unicode" => "erg·s⁻¹"}], "quantity_references" => [{"id" => "NISTq20", "type" => "nist"}, {"id" => "NISTq21", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu62", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/ERG-PER-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu9", "type" => "nist"}, {"id" => "u:radian", "type" => "unitsml"}], "short" => "radian", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "radian", "lang" => "en"}, {"value" => "radian", "lang" => "fr"}], "symbols" => [{"id" => "rad", "ascii" => "rad", "html" => "rad", "latex" => "\\ensuremath{\\mathrm{rad}}", "mathml" => "rad", "unicode" => "rad"}], "quantity_references" => [{"id" => "NISTq195", "type" => "nist"}, {"id" => "NISTq9", "type" => "nist"}], "si_derived_bases" => [{"power" => 2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/radian", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:base-unit:code:rad", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/RAD", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu9.u1e-1/1", "type" => "nist"}, {"id" => "u:radian_per_meter", "type" => "unitsml"}], "short" => "radian_per_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "radian per meter", "lang" => "en"}], "symbols" => [{"id" => "rad*m^-1", "ascii" => "rad*m^-1", "html" => "rad/m", "latex" => "\\ensuremath{\\mathrm{rad/m}}", "mathml" => "rad/m", "unicode" => "rad/m"}], "quantity_references" => [{"id" => "NISTq115", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu9", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/RAD-PER-M", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu9.u3e-1/1", "type" => "nist"}, {"id" => "u:radian_per_second", "type" => "unitsml"}], "short" => "radian_per_second", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "radian per second", "lang" => "en"}], "symbols" => [{"id" => "rad*s^-1", "ascii" => "rad*s^-1", "html" => "rad/s", "latex" => "\\ensuremath{\\mathrm{rad/s}}", "mathml" => "rad/s", "unicode" => "rad/s"}], "quantity_references" => [{"id" => "NISTq113", "type" => "nist"}, {"id" => "NISTq57", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu9", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/RAD-PER-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu9.u3e-2/1", "type" => "nist"}, {"id" => "u:radian_per_second_squared", "type" => "unitsml"}], "short" => "radian_per_second_squared", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "radian per second squared", "lang" => "en"}], "symbols" => [{"id" => "rad*s^-2", "ascii" => "rad*s^-2", "html" => "rad/s2", "latex" => "\\ensuremath{\\mathrm{rad/s^2}}", "mathml" => "rad/s2", "unicode" => "rad/s²"}], "quantity_references" => [{"id" => "NISTq58", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu9", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/RAD-PER-SEC2", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu91", "type" => "nist"}, {"id" => "u:bar", "type" => "unitsml"}], "short" => "bar", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "bar", "lang" => "en"}], "symbols" => [{"id" => "bar", "ascii" => "bar", "html" => "bar", "latex" => "\\ensuremath{\\mathrm{bar}}", "mathml" => "bar", "unicode" => "bar"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:iso1000:code:bar", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/BAR", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu92", "type" => "nist"}, {"id" => "u:dyne_per_square_centimeter", "type" => "unitsml"}], "short" => "dyne_per_square_centimeter", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "dyne per square centimeter", "lang" => "en"}], "symbols" => [{"id" => "dyn*cm^-2", "ascii" => "dyn*cm^-2", "html" => "dyn/cm2", "latex" => "\\ensuremath{\\mathrm{dyn/cm^2}}", "mathml" => "dyn/cm2", "unicode" => "dyn·cm⁻²"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu71", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_-2", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu93", "type" => "nist"}, {"id" => "u:gram_force_per_square_centimeter", "type" => "unitsml"}], "short" => "gram_force_per_square_centimeter", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "gram-force per square centimeter", "lang" => "en"}], "symbols" => [{"id" => "gf*cm^-2", "ascii" => "gf*cm^-2", "html" => "gf/cm2", "latex" => "\\ensuremath{\\mathrm{gf/cm^2}}", "mathml" => "gf/cm2", "unicode" => "gf·cm⁻²"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu196", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_-2", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu94", "type" => "nist"}, {"id" => "u:kilogram_force_per_square_centimeter", "type" => "unitsml"}], "short" => "kilogram_force_per_square_centimeter", "root" => false, "prefixed" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "kilogram-force per square centimeter", "lang" => "en"}], "symbols" => [{"id" => "kgf*cm^-2", "ascii" => "kgf*cm^-2", "html" => "kgf/cm2", "latex" => "\\ensuremath{\\mathrm{kgf/cm^2}}", "mathml" => "kgf/cm2", "unicode" => "kgf·cm⁻²"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu196", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_-2", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu95", "type" => "nist"}, {"id" => "u:kilogram_force_per_square_meter", "type" => "unitsml"}], "short" => "kilogram_force_per_square_meter", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "kilogram-force per square meter", "lang" => "en"}], "symbols" => [{"id" => "kgf*m^-2", "ascii" => "kgf*m^-2", "html" => "kgf/m2", "latex" => "\\ensuremath{\\mathrm{kgf/m^2}}", "mathml" => "kgf/m2", "unicode" => "kgf·m⁻²"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu196", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu96", "type" => "nist"}, {"id" => "u:kilogram_force_per_square_millimeter", "type" => "unitsml"}], "short" => "kilogram_force_per_square_millimeter", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "kilogram-force per square millimeter", "lang" => "en"}], "symbols" => [{"id" => "kgf*mm^-2", "ascii" => "kgf*mm^-2", "html" => "kgf/mm2", "latex" => "\\ensuremath{\\mathrm{kgf/mm^2}}", "mathml" => "kgf/mm2", "unicode" => "kgf·mm⁻²"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu196", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_-3", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu97", "type" => "nist"}, {"id" => "u:centipoise", "type" => "unitsml"}], "short" => "centipoise", "root" => false, "prefixed" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "centipoise", "lang" => "en"}], "symbols" => [{"id" => "cP", "ascii" => "cP", "html" => "cP", "latex" => "\\ensuremath{\\mathrm{cP}}", "mathml" => "cP", "unicode" => "cP"}], "quantity_references" => [{"id" => "NISTq59", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu128", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_-2", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/CentiPOISE", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu98", "type" => "nist"}, {"id" => "u:curie", "type" => "unitsml"}], "short" => "curie", "root" => true, "unit_system_reference" => [{"id" => "non-SI_nist_acceptable", "type" => "nist"}, {"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "curie", "lang" => "en"}], "symbols" => [{"id" => "Ci", "ascii" => "Ci", "html" => "Ci", "latex" => "\\ensuremath{\\mathrm{Ci}}", "mathml" => "Ci", "unicode" => "Ci"}], "quantity_references" => [{"id" => "NISTq35", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:cgs:code:Ci", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/CI", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu99", "type" => "nist"}, {"id" => "u:rad", "type" => "unitsml"}], "short" => "rad", "root" => true, "unit_system_reference" => [{"id" => "non-SI_nist_acceptable", "type" => "nist"}, {"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "rad (absorbed dose)", "lang" => "en"}], "symbols" => [{"id" => "rad_radiation", "ascii" => "rad", "html" => "rad", "latex" => "\\ensuremath{\\mathrm{rad}}", "mathml" => "rad", "unicode" => "rad"}], "quantity_references" => [{"id" => "NISTq36", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:base-unit:code:rad", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/RAD_R", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}], "prefixes" => [{"identifiers" => [{"id" => "NISTp10_-1", "type" => "nist"}, {"id" => "p:deci", "type" => "unitsml"}], "names" => [{"value" => "deci", "lang" => "en"}], "short" => "deci", "symbols" => [{"id" => "deci", "ascii" => "d", "html" => "d", "latex" => "d", "mathml" => "d", "unicode" => "d"}], "base" => 10, "power" => -1, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/deci", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:d", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Deci", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_-12", "type" => "nist"}, {"id" => "p:pico", "type" => "unitsml"}], "names" => [{"value" => "pico", "lang" => "en"}], "short" => "pico", "symbols" => [{"id" => "pico", "ascii" => "p", "html" => "p", "latex" => "p", "mathml" => "p", "unicode" => "p"}], "base" => 10, "power" => -12, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/pico", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:p", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Pico", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_-15", "type" => "nist"}, {"id" => "p:femto", "type" => "unitsml"}], "names" => [{"value" => "femto", "lang" => "en"}], "short" => "femto", "symbols" => [{"id" => "femto", "ascii" => "f", "html" => "f", "latex" => "f", "mathml" => "f", "unicode" => "f"}], "base" => 10, "power" => -15, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/femto", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:f", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Femto", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_-18", "type" => "nist"}, {"id" => "p:atto", "type" => "unitsml"}], "names" => [{"value" => "atto", "lang" => "en"}], "short" => "atto", "symbols" => [{"id" => "atto", "ascii" => "a", "html" => "a", "latex" => "a", "mathml" => "a", "unicode" => "a"}], "base" => 10, "power" => -18, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/atto", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:a", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Atto", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_-2", "type" => "nist"}, {"id" => "p:centi", "type" => "unitsml"}], "names" => [{"value" => "centi", "lang" => "en"}], "short" => "centi", "symbols" => [{"id" => "centi", "ascii" => "c", "html" => "c", "latex" => "c", "mathml" => "c", "unicode" => "c"}], "base" => 10, "power" => -2, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/centi", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:c", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Centi", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_-21", "type" => "nist"}, {"id" => "p:zepto", "type" => "unitsml"}], "names" => [{"value" => "zepto", "lang" => "en"}], "short" => "zepto", "symbols" => [{"id" => "zepto", "ascii" => "z", "html" => "z", "latex" => "z", "mathml" => "z", "unicode" => "z"}], "base" => 10, "power" => -21, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/zepto", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:z", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Zepto", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_-24", "type" => "nist"}, {"id" => "p:yocto", "type" => "unitsml"}], "names" => [{"value" => "yocto", "lang" => "en"}], "short" => "yocto", "symbols" => [{"id" => "yocto", "ascii" => "y", "html" => "y", "latex" => "y", "mathml" => "y", "unicode" => "y"}], "base" => 10, "power" => -24, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/yocto", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:y", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Yocto", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_-27", "type" => "nist"}, {"id" => "p:ronto", "type" => "unitsml"}], "names" => [{"value" => "ronto", "lang" => "en"}], "short" => "ronto", "symbols" => [{"id" => "ronto", "ascii" => "r", "html" => "r", "latex" => "r", "mathml" => "r", "unicode" => "r"}], "base" => 10, "power" => -27, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/ronto", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Ronto", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_-3", "type" => "nist"}, {"id" => "p:milli", "type" => "unitsml"}], "names" => [{"value" => "milli", "lang" => "en"}], "short" => "milli", "symbols" => [{"id" => "milli", "ascii" => "m", "html" => "m", "latex" => "m", "mathml" => "m", "unicode" => "m"}], "base" => 10, "power" => -3, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/milli", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:m", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Milli", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_-30", "type" => "nist"}, {"id" => "p:quecto", "type" => "unitsml"}], "names" => [{"value" => "quecto", "lang" => "en"}], "short" => "quecto", "symbols" => [{"id" => "quecto", "ascii" => "q", "html" => "q", "latex" => "q", "mathml" => "q", "unicode" => "q"}], "base" => 10, "power" => -30, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/quecto", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Quecto", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_-6", "type" => "nist"}, {"id" => "p:micro", "type" => "unitsml"}], "names" => [{"value" => "micro", "lang" => "en"}], "short" => "micro", "symbols" => [{"id" => "micro", "ascii" => "u", "html" => "µ", "latex" => "$mu$", "mathml" => "µ", "unicode" => "μ"}], "base" => 10, "power" => -6, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/micro", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:u", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Micro", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_-9", "type" => "nist"}, {"id" => "p:nano", "type" => "unitsml"}], "names" => [{"value" => "nano", "lang" => "en"}], "short" => "nano", "symbols" => [{"id" => "nano", "ascii" => "n", "html" => "n", "latex" => "n", "mathml" => "n", "unicode" => "n"}], "base" => 10, "power" => -9, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/nano", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:n", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Nano", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_0", "type" => "nist"}, {"id" => "p:none", "type" => "unitsml"}], "names" => [{"value" => "none", "lang" => "en"}], "short" => "none", "symbols" => [{"id" => "unity", "ascii" => "1", "html" => "1", "latex" => "1", "mathml" => "1", "unicode" => "1"}], "base" => 10, "power" => 0, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/none", "authority" => "si-digital-framework"}]}, {"identifiers" => [{"id" => "NISTp10_1", "type" => "nist"}, {"id" => "p:deka", "type" => "unitsml"}], "names" => [{"value" => "deka", "lang" => "en"}], "short" => "deka", "symbols" => [{"id" => "deka", "ascii" => "da", "html" => "da", "latex" => "da", "mathml" => "da", "unicode" => "da"}], "base" => 10, "power" => 1, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/deca", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:da", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Deca", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_12", "type" => "nist"}, {"id" => "p:tera", "type" => "unitsml"}], "names" => [{"value" => "tera", "lang" => "en"}], "short" => "tera", "symbols" => [{"id" => "tera", "ascii" => "T", "html" => "T", "latex" => "T", "mathml" => "T", "unicode" => "T"}], "base" => 10, "power" => 12, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/tera", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:T", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Tera", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_15", "type" => "nist"}, {"id" => "p:peta", "type" => "unitsml"}], "names" => [{"value" => "peta", "lang" => "en"}], "short" => "peta", "symbols" => [{"id" => "peta", "ascii" => "P", "html" => "P", "latex" => "P", "mathml" => "P", "unicode" => "P"}], "base" => 10, "power" => 15, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/peta", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:P", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Peta", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_18", "type" => "nist"}, {"id" => "p:exa", "type" => "unitsml"}], "names" => [{"value" => "exa", "lang" => "en"}], "short" => "exa", "symbols" => [{"id" => "exa", "ascii" => "E", "html" => "E", "latex" => "E", "mathml" => "E", "unicode" => "E"}], "base" => 10, "power" => 18, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/exa", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:E", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Exa", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_2", "type" => "nist"}, {"id" => "p:hecto", "type" => "unitsml"}], "names" => [{"value" => "hecto", "lang" => "en"}], "short" => "hecto", "symbols" => [{"id" => "hecto", "ascii" => "h", "html" => "h", "latex" => "h", "mathml" => "h", "unicode" => "h"}], "base" => 10, "power" => 2, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/hecto", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:h", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Hecto", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_21", "type" => "nist"}, {"id" => "p:zetta", "type" => "unitsml"}], "names" => [{"value" => "zetta", "lang" => "en"}], "short" => "zetta", "symbols" => [{"id" => "zetta", "ascii" => "Z", "html" => "Z", "latex" => "Z", "mathml" => "Z", "unicode" => "Z"}], "base" => 10, "power" => 21, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/zetta", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:Z", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Zetta", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_24", "type" => "nist"}, {"id" => "p:yotta", "type" => "unitsml"}], "names" => [{"value" => "yotta", "lang" => "en"}], "short" => "yotta", "symbols" => [{"id" => "yotta", "ascii" => "Y", "html" => "Y", "latex" => "Y", "mathml" => "Y", "unicode" => "Y"}], "base" => 10, "power" => 24, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/yotta", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:Y", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Yotta", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_27", "type" => "nist"}, {"id" => "p:ronna", "type" => "unitsml"}], "names" => [{"value" => "ronna", "lang" => "en"}], "short" => "ronna", "symbols" => [{"id" => "ronna", "ascii" => "R", "html" => "R", "latex" => "R", "mathml" => "R", "unicode" => "R"}], "base" => 10, "power" => 27, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/ronna", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Ronna", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_3", "type" => "nist"}, {"id" => "p:kilo", "type" => "unitsml"}], "names" => [{"value" => "kilo", "lang" => "en"}], "short" => "kilo", "symbols" => [{"id" => "kilo", "ascii" => "k", "html" => "k", "latex" => "k", "mathml" => "k", "unicode" => "k"}], "base" => 10, "power" => 3, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/kilo", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:k", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Kilo", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_30", "type" => "nist"}, {"id" => "p:quetta", "type" => "unitsml"}], "names" => [{"value" => "quetta", "lang" => "en"}], "short" => "quetta", "symbols" => [{"id" => "quetta", "ascii" => "Q", "html" => "Q", "latex" => "Q", "mathml" => "Q", "unicode" => "Q"}], "base" => 10, "power" => 30, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/quetta", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Quetta", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_6", "type" => "nist"}, {"id" => "p:mega", "type" => "unitsml"}], "names" => [{"value" => "mega", "lang" => "en"}], "short" => "mega", "symbols" => [{"id" => "mega", "ascii" => "M", "html" => "M", "latex" => "M", "mathml" => "M", "unicode" => "M"}], "base" => 10, "power" => 6, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/mega", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:M", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Mega", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_9", "type" => "nist"}, {"id" => "p:giga", "type" => "unitsml"}], "names" => [{"value" => "giga", "lang" => "en"}], "short" => "giga", "symbols" => [{"id" => "giga", "ascii" => "G", "html" => "G", "latex" => "G", "mathml" => "G", "unicode" => "G"}], "base" => 10, "power" => 9, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/giga", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:G", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Giga", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp2_10", "type" => "nist"}, {"id" => "p:kibi", "type" => "unitsml"}], "names" => [{"value" => "kibi", "lang" => "en"}], "short" => "kibi", "symbols" => [{"id" => "kibi", "ascii" => "Ki", "html" => "Ki", "latex" => "Ki", "mathml" => "Ki", "unicode" => "Ki"}], "base" => 2, "power" => 10, "references" => [{"type" => "informative", "uri" => "ucum:prefix:code:Ki", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/prefix/Kibi", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp2_20", "type" => "nist"}, {"id" => "p:mebi", "type" => "unitsml"}], "names" => [{"value" => "mebi", "lang" => "en"}], "short" => "mebi", "symbols" => [{"id" => "mebi", "ascii" => "Mi", "html" => "Mi", "latex" => "Mi", "mathml" => "Mi", "unicode" => "Mi"}], "base" => 2, "power" => 20, "references" => [{"type" => "informative", "uri" => "ucum:prefix:code:Mi", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/prefix/Mebi", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp2_30", "type" => "nist"}, {"id" => "p:gibi", "type" => "unitsml"}], "names" => [{"value" => "gibi", "lang" => "en"}], "short" => "gibi", "symbols" => [{"id" => "gibi", "ascii" => "Gi", "html" => "Gi", "latex" => "Gi", "mathml" => "Gi", "unicode" => "Gi"}], "base" => 2, "power" => 30, "references" => [{"type" => "informative", "uri" => "ucum:prefix:code:Gi", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/prefix/Gibi", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp2_40", "type" => "nist"}, {"id" => "p:tebi", "type" => "unitsml"}], "names" => [{"value" => "tebi", "lang" => "en"}], "short" => "tebi", "symbols" => [{"id" => "tebi", "ascii" => "Ti", "html" => "Ti", "latex" => "Ti", "mathml" => "Ti", "unicode" => "Ti"}], "base" => 2, "power" => 40, "references" => [{"type" => "informative", "uri" => "ucum:prefix:code:Ti", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/prefix/Tebi", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp2_50", "type" => "nist"}, {"id" => "p:pebi", "type" => "unitsml"}], "names" => [{"value" => "pebi", "lang" => "en"}], "short" => "pebi", "symbols" => [{"id" => "pebi", "ascii" => "Pi", "html" => "Pi", "latex" => "Pi", "mathml" => "Pi", "unicode" => "Pi"}], "base" => 2, "power" => 50, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/prefix/Pebi", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp2_60", "type" => "nist"}, {"id" => "p:exbi", "type" => "unitsml"}], "names" => [{"value" => "exbi", "lang" => "en"}], "short" => "exbi", "symbols" => [{"id" => "exbi", "ascii" => "Ei", "html" => "Ei", "latex" => "Ei", "mathml" => "Ei", "unicode" => "Ei"}], "base" => 2, "power" => 60, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/prefix/Exbi", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp2_70", "type" => "nist"}, {"id" => "p:zebi", "type" => "unitsml"}], "names" => [{"value" => "zebi", "lang" => "en"}], "short" => "zebi", "symbols" => [{"id" => "zebi", "ascii" => "Zi", "html" => "Zi", "latex" => "Zi", "mathml" => "Zi", "unicode" => "Zi"}], "base" => 2, "power" => 70, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/prefix/Zebi", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp2_80", "type" => "nist"}, {"id" => "p:yobi", "type" => "unitsml"}], "names" => [{"value" => "yobi", "lang" => "en"}], "short" => "yobi", "symbols" => [{"id" => "yobi", "ascii" => "Yi", "html" => "Yi", "latex" => "Yi", "mathml" => "Yi", "unicode" => "Yi"}], "base" => 2, "power" => 80, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/prefix/Yobi", "authority" => "qudt"}]}], "quantities" => [{"identifiers" => [{"id" => "NISTq1", "type" => "nist"}, {"id" => "q:length", "type" => "unitsml"}], "quantity_type" => "base", "names" => [{"value" => "length", "lang" => "en"}, {"value" => "longueur", "lang" => "fr"}], "short" => "length", "dimension_reference" => {"id" => "NISTd1", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/LENG", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Length", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq10", "type" => "nist"}, {"id" => "q:volume", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "volume", "lang" => "en"}, {"value" => "volume", "lang" => "fr"}], "short" => "volume", "dimension_reference" => {"id" => "NISTd10", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/VOLU", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Volume", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq100", "type" => "nist"}, {"id" => "q:diameter", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "diameter", "lang" => "en"}], "short" => "diameter", "dimension_reference" => {"id" => "NISTd1", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Diameter", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq101", "type" => "nist"}, {"id" => "q:length_of_path", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "length of path", "lang" => "en"}], "short" => "length_of_path", "dimension_reference" => {"id" => "NISTd1", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq102", "type" => "nist"}, {"id" => "q:cartesian_coordinates", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "cartesian coordinates", "lang" => "en"}], "short" => "cartesian_coordinates", "dimension_reference" => {"id" => "NISTd1", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/CartesianCoordinates", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq103", "type" => "nist"}, {"id" => "q:position_vector", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "position vector", "lang" => "en"}], "short" => "position_vector", "dimension_reference" => {"id" => "NISTd1", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/PositionVector", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq104", "type" => "nist"}, {"id" => "q:displacement", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "displacement", "lang" => "en"}], "short" => "displacement", "dimension_reference" => {"id" => "NISTd1", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Displacement", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq105", "type" => "nist"}, {"id" => "q:radius_of_curvature", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "radius of curvature", "lang" => "en"}], "short" => "radius_of_curvature", "dimension_reference" => {"id" => "NISTd1", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/RadiusOfCurvature", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq106", "type" => "nist"}, {"id" => "q:curvature", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "curvature", "lang" => "en"}], "short" => "curvature", "dimension_reference" => {"id" => "NISTd29", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Curvature", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq107", "type" => "nist"}, {"id" => "q:speed_of_propagation_of_waves", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "speed of propagation of waves", "lang" => "en"}], "short" => "speed_of_propagation_of_waves", "dimension_reference" => {"id" => "NISTd11", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq108", "type" => "nist"}, {"id" => "q:acceleration_of_free_fall", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "acceleration of free fall", "lang" => "en"}], "short" => "acceleration_of_free_fall", "dimension_reference" => {"id" => "NISTd28", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/AccelerationOfGravity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq109", "type" => "nist"}, {"id" => "q:period_duration", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "period duration", "lang" => "en"}, {"value" => "period", "lang" => "en"}], "short" => "period_duration", "dimension_reference" => {"id" => "NISTd3", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Period", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq11", "type" => "nist"}, {"id" => "q:solid_angle", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "solid angle", "lang" => "en"}, {"value" => "angle solide", "lang" => "fr"}], "short" => "solid_angle", "dimension_reference" => {"id" => "NISTd64", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ANGS", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/SolidAngle", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq110", "type" => "nist"}, {"id" => "q:time_constant", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "time constant", "lang" => "en"}], "short" => "time_constant", "dimension_reference" => {"id" => "NISTd3", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq111", "type" => "nist"}, {"id" => "q:rotation", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "rotation", "lang" => "en"}], "short" => "rotation", "dimension_reference" => {"id" => "NISTd80", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq112", "type" => "nist"}, {"id" => "q:rotational_frequency", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "rotational frequency", "lang" => "en"}], "short" => "rotational_frequency", "dimension_reference" => {"id" => "NISTd24", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/RotationalFrequency", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq113", "type" => "nist"}, {"id" => "q:angular_frequency", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "angular frequency", "lang" => "en"}], "short" => "angular_frequency", "dimension_reference" => {"id" => "NISTd24", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/AngularFrequency", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq114", "type" => "nist"}, {"id" => "q:wavelength", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "wavelength", "lang" => "en"}], "short" => "wavelength", "dimension_reference" => {"id" => "NISTd1", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Wavelength", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq115", "type" => "nist"}, {"id" => "q:angular_wavenumber", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "angular wavenumber", "lang" => "en"}, {"value" => "angular repetency", "lang" => "en"}], "short" => "angular_wavenumber", "dimension_reference" => {"id" => "NISTd29", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/AngularWavenumber", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq116", "type" => "nist"}, {"id" => "q:phase_velocity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "phase velocity", "lang" => "en"}, {"value" => "phase speed", "lang" => "en"}], "short" => "phase_velocity", "dimension_reference" => {"id" => "NISTd11", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq117", "type" => "nist"}, {"id" => "q:group_velocity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "group velocity", "lang" => "en"}, {"value" => "group speed", "lang" => "en"}], "short" => "group_velocity", "dimension_reference" => {"id" => "NISTd11", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq118", "type" => "nist"}, {"id" => "q:level_of_a_field_quantity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "level of a field quantity", "lang" => "en"}], "short" => "level_of_a_field_quantity", "dimension_reference" => {"id" => "NISTd83", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq119", "type" => "nist"}, {"id" => "q:level_of_a_power_quantity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "level of a power quantity", "lang" => "en"}], "short" => "level_of_a_power_quantity", "dimension_reference" => {"id" => "NISTd84", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq12", "type" => "nist"}, {"id" => "q:velocity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "velocity", "lang" => "en"}, {"value" => "speed", "lang" => "en"}, {"value" => "vitesse", "lang" => "fr"}], "short" => "velocity", "dimension_reference" => {"id" => "NISTd11", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/VELO", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Speed", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq120", "type" => "nist"}, {"id" => "q:damping_coefficient", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "damping coefficient", "lang" => "en"}], "short" => "damping_coefficient", "dimension_reference" => {"id" => "NISTd24", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq121", "type" => "nist"}, {"id" => "q:logarithmic_decrement", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "ratio logarithm (Np)", "lang" => "en"}, {"value" => "logarithmic decrement (field quantities using natural logarithms)", "lang" => "en"}, {"value" => "logarithme d'un rapport (Np)", "lang" => "fr"}], "short" => "logarithmic_decrement", "dimension_reference" => {"id" => "NISTd67", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/RLGN", "authority" => "si-digital-framework"}]}, {"identifiers" => [{"id" => "NISTq122", "type" => "nist"}, {"id" => "q:attenuation_coefficient", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "attenuation coefficient", "lang" => "en"}], "short" => "attenuation_coefficient", "dimension_reference" => {"id" => "NISTd29", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/AttenuationCoefficient", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq123", "type" => "nist"}, {"id" => "q:phase_coefficient", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "phase coefficient", "lang" => "en"}], "short" => "phase_coefficient", "dimension_reference" => {"id" => "NISTd29", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/PhaseCoefficient", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq124", "type" => "nist"}, {"id" => "q:propagation_coefficient", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "propagation coefficient", "lang" => "en"}], "short" => "propagation_coefficient", "dimension_reference" => {"id" => "NISTd29", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/PropagationCoefficient", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq125", "type" => "nist"}, {"id" => "q:relative_mass_density", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "relative mass density", "lang" => "en"}, {"value" => "relative density", "lang" => "en"}], "short" => "relative_mass_density", "dimension_reference" => {"id" => "NISTd80", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/RelativeMassDensity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq126", "type" => "nist"}, {"id" => "q:linear_density", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "linear density", "lang" => "en"}, {"value" => "lineic mass", "lang" => "en"}], "short" => "linear_density", "dimension_reference" => {"id" => "NISTd58", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/LinearDensity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq127", "type" => "nist"}, {"id" => "q:mass_moment_of_inertia", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "mass moment of inertia", "lang" => "en"}, {"value" => "moment of inertia", "lang" => "en"}], "short" => "mass_moment_of_inertia", "dimension_reference" => {"id" => "NISTd59", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/SecondAxialMomentOfArea", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq128", "type" => "nist"}, {"id" => "q:weight", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "weight", "lang" => "en"}], "short" => "weight", "dimension_reference" => {"id" => "NISTd12", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Weight", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq129", "type" => "nist"}, {"id" => "q:impulse", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "impulse", "lang" => "en"}], "short" => "impulse", "dimension_reference" => {"id" => "NISTd61", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Impulse", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq13", "type" => "nist"}, {"id" => "q:force", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "force", "lang" => "en"}, {"value" => "force", "lang" => "fr"}], "short" => "force", "dimension_reference" => {"id" => "NISTd12", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/FORC", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Force", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq130", "type" => "nist"}, {"id" => "q:gravitational_constant", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "gravitational constant", "lang" => "en"}], "short" => "gravitational_constant", "dimension_reference" => {"id" => "NISTd62", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/GravitationalAttraction", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq131", "type" => "nist"}, {"id" => "q:momentum", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "momentum", "lang" => "en"}], "short" => "momentum", "dimension_reference" => {"id" => "NISTd61", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Momentum", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq132", "type" => "nist"}, {"id" => "q:moment_of_momentum", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "moment of momentum", "lang" => "en"}, {"value" => "angular momentum", "lang" => "en"}], "short" => "moment_of_momentum", "dimension_reference" => {"id" => "NISTd60", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/AngularMomentum", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq133", "type" => "nist"}, {"id" => "q:angular_impulse", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "angular impulse", "lang" => "en"}], "short" => "angular_impulse", "dimension_reference" => {"id" => "NISTd60", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/AngularImpulse", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq134", "type" => "nist"}, {"id" => "q:normal_stress", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "normal stress", "lang" => "en"}], "short" => "normal_stress", "dimension_reference" => {"id" => "NISTd14", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/NormalStress", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq135", "type" => "nist"}, {"id" => "q:shear_stress", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "shear stress", "lang" => "en"}], "short" => "shear_stress", "dimension_reference" => {"id" => "NISTd14", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ShearStress", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq136", "type" => "nist"}, {"id" => "q:linear_strain", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "linear strain", "lang" => "en"}], "short" => "linear_strain", "dimension_reference" => {"id" => "NISTd80", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/LinearStrain", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq137", "type" => "nist"}, {"id" => "q:shear_strain", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "shear strain", "lang" => "en"}], "short" => "shear_strain", "dimension_reference" => {"id" => "NISTd80", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ShearStrain", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq138", "type" => "nist"}, {"id" => "q:volume_strain", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "volume strain", "lang" => "en"}], "short" => "volume_strain", "dimension_reference" => {"id" => "NISTd80", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/VolumeStrain", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq139", "type" => "nist"}, {"id" => "q:compressibility", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "compressibility", "lang" => "en"}], "short" => "compressibility", "dimension_reference" => {"id" => "NISTd63", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Compressibility", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq14", "type" => "nist"}, {"id" => "q:magnetic_flux_density", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "magnetic flux density", "lang" => "en"}, {"value" => "induction magnétique", "lang" => "fr"}], "short" => "magnetic_flux_density", "dimension_reference" => {"id" => "NISTd13", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/MGFD", "authority" => "si-digital-framework"}]}, {"identifiers" => [{"id" => "NISTq140", "type" => "nist"}, {"id" => "q:poisson_number", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "Poisson number", "lang" => "en"}], "short" => "poisson_number", "dimension_reference" => {"id" => "NISTd80", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/PoissonRatio", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq141", "type" => "nist"}, {"id" => "q:modulus_of_elasticity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "modulus of elasticity", "lang" => "en"}], "short" => "modulus_of_elasticity", "dimension_reference" => {"id" => "NISTd14", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ModulusOfElasticity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq142", "type" => "nist"}, {"id" => "q:modulus_of_rigidity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "modulus of rigidity", "lang" => "en"}, {"value" => "shear modulus", "lang" => "en"}], "short" => "modulus_of_rigidity", "dimension_reference" => {"id" => "NISTd14", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ShearModulus", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq143", "type" => "nist"}, {"id" => "q:modulus_of_compression", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "modulus of compression", "lang" => "en"}, {"value" => "bulk modulus", "lang" => "en"}], "short" => "modulus_of_compression", "dimension_reference" => {"id" => "NISTd14", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/BulkModulus", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq144", "type" => "nist"}, {"id" => "q:second_axial_moment_of_area", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "second axial moment of area", "lang" => "en"}], "short" => "second_axial_moment_of_area", "dimension_reference" => {"id" => "NISTd57", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/SecondAxialMomentOfArea", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq145", "type" => "nist"}, {"id" => "q:second_polar_moment_of_area", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "second polar moment of area", "lang" => "en"}], "short" => "second_polar_moment_of_area", "dimension_reference" => {"id" => "NISTd57", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/SecondPolarMomentOfArea", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq146", "type" => "nist"}, {"id" => "q:section_modulus", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "section modulus", "lang" => "en"}], "short" => "section_modulus", "dimension_reference" => {"id" => "NISTd10", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/SectionModulus", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq147", "type" => "nist"}, {"id" => "q:dynamic_friction_factor", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "dynamic friction factor", "lang" => "en"}], "short" => "dynamic_friction_factor", "dimension_reference" => {"id" => "NISTd80", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/DynamicFriction", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "q:pressure", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "pressure", "lang" => "en"}, {"value" => "pression, contrainte", "lang" => "fr"}], "short" => "pressure", "dimension_reference" => {"id" => "NISTd14", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/PRES", "authority" => "si-digital-framework"}]}, {"identifiers" => [{"id" => "NISTq150", "type" => "nist"}, {"id" => "q:mass_flow_rate", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "mass flow rate", "lang" => "en"}], "short" => "mass_flow_rate", "dimension_reference" => {"id" => "NISTd65", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/MassFlowRate", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq151", "type" => "nist"}, {"id" => "q:volume_flow_rate", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "volume flow rate", "lang" => "en"}], "short" => "volume_flow_rate", "dimension_reference" => {"id" => "NISTd66", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/VolumeFlowRate", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq152", "type" => "nist"}, {"id" => "q:lagrange_function", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "Lagrange function", "lang" => "en"}], "short" => "lagrange_function", "dimension_reference" => {"id" => "NISTd15", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/LagrangeFunction", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq153", "type" => "nist"}, {"id" => "q:hamilton_function", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "Hamilton function", "lang" => "en"}], "short" => "hamilton_function", "dimension_reference" => {"id" => "NISTd15", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/HamiltonFunction", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq154", "type" => "nist"}, {"id" => "q:action", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "action", "lang" => "en"}], "short" => "action", "dimension_reference" => {"id" => "NISTd60", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Action", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq155", "type" => "nist"}, {"id" => "q:area_moment_of_inertia", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "area moment of inertia", "lang" => "en"}, {"value" => "second moment of area", "lang" => "en"}], "short" => "area_moment_of_inertia", "dimension_reference" => {"id" => "NISTd57", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/PolarMomentOfInertia", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq156", "type" => "nist"}, {"id" => "q:linear_expansion_coefficient", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "linear expansion coefficient", "lang" => "en"}], "short" => "linear_expansion_coefficient", "dimension_reference" => {"id" => "NISTd68", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/LinearExpansionCoefficient", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq157", "type" => "nist"}, {"id" => "q:cubic_expansion_coefficient", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "cubic expansion coefficient", "lang" => "en"}], "short" => "cubic_expansion_coefficient", "dimension_reference" => {"id" => "NISTd68", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/CubicExpansionCoefficient", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq158", "type" => "nist"}, {"id" => "q:relative_pressure_coefficient", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "relative pressure coefficient", "lang" => "en"}], "short" => "relative_pressure_coefficient", "dimension_reference" => {"id" => "NISTd68", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/RelativePressureCoefficient", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq159", "type" => "nist"}, {"id" => "q:pressure_coefficient", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "pressure coefficient", "lang" => "en"}], "short" => "pressure_coefficient", "dimension_reference" => {"id" => "NISTd69", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/PressureCoefficient", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq16", "type" => "nist"}, {"id" => "q:stress", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "stress", "lang" => "en"}], "short" => "stress", "dimension_reference" => {"id" => "NISTd14", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Stress", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq160", "type" => "nist"}, {"id" => "q:isothermal_compressibility", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "isothermal compressibility", "lang" => "en"}], "short" => "isothermal_compressibility", "dimension_reference" => {"id" => "NISTd70", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/IsothermalCompressibility", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq161", "type" => "nist"}, {"id" => "q:magnetomotive_force", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "magnetomotive force (Cardelli) (-SP811)", "lang" => "en"}], "short" => "magnetomotive_force", "dimension_reference" => {"id" => "NISTd4", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/MagnetomotiveForce", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq162", "type" => "nist"}, {"id" => "q:electric_dipole_moment", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "electric dipole moment", "lang" => "en"}], "short" => "electric_dipole_moment", "dimension_reference" => {"id" => "NISTd72", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ElectricDipoleMoment", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq163", "type" => "nist"}, {"id" => "q:magnetizability", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "magnetizability", "lang" => "en"}], "short" => "magnetizability", "dimension_reference" => {"id" => "NISTd54", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Magnetization", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq164", "type" => "nist"}, {"id" => "q:magnetic_dipole_moment", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "magnetic dipole moment", "lang" => "en"}], "short" => "magnetic_dipole_moment", "dimension_reference" => {"id" => "NISTd73", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/MagneticDipoleMoment", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq165", "type" => "nist"}, {"id" => "q:electric_field_gradient", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "electric field gradient", "lang" => "en"}], "short" => "electric_field_gradient", "dimension_reference" => {"id" => "NISTd74", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ElectricField", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq166", "type" => "nist"}, {"id" => "q:electric_potential", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "electric potential", "lang" => "en"}], "short" => "electric_potential", "dimension_reference" => {"id" => "NISTd18", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ElectricPotential", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq167", "type" => "nist"}, {"id" => "q:electric_quadrupole_moment", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "electric quadrupole moment", "lang" => "en"}], "short" => "electric_quadrupole_moment", "dimension_reference" => {"id" => "NISTd75", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ElectricQuadrupoleMoment", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq168", "type" => "nist"}, {"id" => "q:polarizability", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "polarizability", "lang" => "en"}], "short" => "polarizability", "dimension_reference" => {"id" => "NISTd76", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Polarizability", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq169", "type" => "nist"}, {"id" => "q:electric_capacitance", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "electric capacitance", "lang" => "en"}], "short" => "electric_capacitance", "dimension_reference" => {"id" => "NISTd19", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Capacitance", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq17", "type" => "nist"}, {"id" => "q:energy", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "energy", "lang" => "en"}, {"value" => "énergie", "lang" => "fr"}], "short" => "energy", "dimension_reference" => {"id" => "NISTd15", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ENGY", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Energy", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq170", "type" => "nist"}, {"id" => "q:electric_current_intensity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "electric current intensity", "lang" => "en"}], "short" => "electric_current_intensity", "dimension_reference" => {"id" => "NISTd4", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ElectricCurrentIntensity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq171", "type" => "nist"}, {"id" => "q:electric_inductance", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "electric inductance", "lang" => "en"}], "short" => "electric_inductance", "dimension_reference" => {"id" => "NISTd23", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Inductance", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq172", "type" => "nist"}, {"id" => "q:first_hyperpolarizability", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "1st hyperpolarizability", "lang" => "en"}], "short" => "first_hyperpolarizability", "dimension_reference" => {"id" => "NISTd77", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq173", "type" => "nist"}, {"id" => "q:second_hyperpolarizability", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "2nd hyperpolarizability", "lang" => "en"}], "short" => "second_hyperpolarizability", "dimension_reference" => {"id" => "NISTd78", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq174", "type" => "nist"}, {"id" => "q:index_of_acidity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "index of acidity", "lang" => "en"}], "short" => "index_of_acidity", "dimension_reference" => {"id" => "NISTd94", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Acidity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq175", "type" => "nist"}, {"id" => "q:fahrenheit_temperature", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "Fahrenheit temperature", "lang" => "en"}], "short" => "fahrenheit_temperature", "dimension_reference" => {"id" => "NISTd5", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/FahrenheitTemperature", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq176", "type" => "nist"}, {"id" => "q:mass_divided_by_length", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "mass divided by length", "lang" => "en"}], "short" => "mass_divided_by_length", "dimension_reference" => {"id" => "NISTd58", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/LineicMass", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq177", "type" => "nist"}, {"id" => "q:storage_capacity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "storage capacity", "lang" => "en"}, {"value" => "storage size", "lang" => "en"}], "short" => "storage_capacity", "dimension_reference" => {"id" => "NISTd95", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq179", "type" => "nist"}, {"id" => "q:molality_of_solute_B", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "molality of solute B", "lang" => "en"}], "short" => "molality_of_solute_B", "dimension_reference" => {"id" => "NISTd79", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/MolalityOfSolute", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq18", "type" => "nist"}, {"id" => "q:work", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "work", "lang" => "en"}], "short" => "work", "dimension_reference" => {"id" => "NISTd15", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Work", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq180", "type" => "nist"}, {"id" => "q:coefficient_of_heat_transfer", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "coefficient of heat transfer", "lang" => "en"}], "short" => "coefficient_of_heat_transfer", "dimension_reference" => {"id" => "NISTd71", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/CoefficientOfHeatTransfer", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq181", "type" => "nist"}, {"id" => "q:surface_coefficient_of_heat_transfer", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "surface coefficient of heat transfer", "lang" => "en"}], "short" => "surface_coefficient_of_heat_transfer", "dimension_reference" => {"id" => "NISTd71", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/SurfaceCoefficientOfHeatTransfer", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq182", "type" => "nist"}, {"id" => "q:kinetic_energy", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "kinetic energy", "lang" => "en"}], "short" => "kinetic_energy", "dimension_reference" => {"id" => "NISTd15", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/KineticEnergy", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq183", "type" => "nist"}, {"id" => "q:mechanical_energy", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "mechanical energy", "lang" => "en"}], "short" => "mechanical_energy", "dimension_reference" => {"id" => "NISTd15", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/MechanicalEnergy", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq184", "type" => "nist"}, {"id" => "q:torque", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "torque", "lang" => "en"}], "short" => "torque", "dimension_reference" => {"id" => "NISTd15", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Torque", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq185", "type" => "nist"}, {"id" => "q:bending_moment_of_force", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "bending moment of force", "lang" => "en"}], "short" => "bending_moment_of_force", "dimension_reference" => {"id" => "NISTd15", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/BendingMomentOfForce", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq186", "type" => "nist"}, {"id" => "q:mass_fraction", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "mass fraction", "lang" => "en"}, {"value" => "mole fraction", "lang" => "en"}], "short" => "mass_fraction", "dimension_reference" => {"id" => "NISTd85", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/MassFraction", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq187", "type" => "nist"}, {"id" => "q:apparent_power", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "apparent power", "lang" => "en"}], "short" => "apparent_power", "dimension_reference" => {"id" => "NISTd16", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ApparentPower", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq188", "type" => "nist"}, {"id" => "q:nil", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "nil", "lang" => "en"}], "short" => "nil", "dimension_reference" => {"id" => "NISTd80", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq189", "type" => "nist"}, {"id" => "q:emission_rate", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "emission rate", "lang" => "en"}, {"value" => "taux d'émission", "lang" => "fr"}], "short" => "emission_rate", "dimension_reference" => {"id" => "NISTd24", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/EMIR", "authority" => "si-digital-framework"}]}, {"identifiers" => [{"id" => "NISTq19", "type" => "nist"}, {"id" => "q:amount_of_heat", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "amount of heat", "lang" => "en"}, {"value" => "heat", "lang" => "en"}], "short" => "amount_of_heat", "dimension_reference" => {"id" => "NISTd15", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Heat", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq190", "type" => "nist"}, {"id" => "q:fluence", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "fluence", "lang" => "en"}, {"value" => "fluence", "lang" => "fr"}], "short" => "fluence", "dimension_reference" => {"id" => "NISTd96", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/FLUE", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/EnergyFluence", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq191", "type" => "nist"}, {"id" => "q:fluence_rate", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "fluence rate", "lang" => "en"}, {"value" => "débit de fluence", "lang" => "fr"}], "short" => "fluence_rate", "dimension_reference" => {"id" => "NISTd97", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/FLUR", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/EnergyFluenceRate", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq192", "type" => "nist"}, {"id" => "q:ITS-90_temperature_celsius", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "ITS-90 temperature (°C)", "lang" => "en"}, {"value" => "température ITS-90 (℃)", "lang" => "fr"}], "short" => "ITS-90_temperature_celsius", "dimension_reference" => {"id" => "NISTd5", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ITSC", "authority" => "si-digital-framework"}]}, {"identifiers" => [{"id" => "NISTq193", "type" => "nist"}, {"id" => "q:ITS-90_temperature_kelvin", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "ITS-90 temperature (K)", "lang" => "en"}, {"value" => "température ITS-90 (K)", "lang" => "fr"}], "short" => "ITS-90_temperature_kelvin", "dimension_reference" => {"id" => "NISTd5", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ITSK", "authority" => "si-digital-framework"}]}, {"identifiers" => [{"id" => "NISTq194", "type" => "nist"}, {"id" => "q:kerma_rate", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "kerma rate", "lang" => "en"}, {"value" => "kerma rate", "lang" => "fr"}], "short" => "kerma_rate", "dimension_reference" => {"id" => "NISTd50", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/KRMR", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/KermaRate", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq195", "type" => "nist"}, {"id" => "q:phase", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "phase", "lang" => "en"}, {"value" => "phase", "lang" => "fr"}], "short" => "phase", "dimension_reference" => {"id" => "NISTd98", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/PHAS", "authority" => "si-digital-framework"}]}, {"identifiers" => [{"id" => "NISTq196", "type" => "nist"}, {"id" => "q:PLTS-2000_temperature", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "PLTS-2000 temperature (K)", "lang" => "en"}, {"value" => "température PLTS-2000 (K)", "lang" => "fr"}], "short" => "PLTS-2000_temperature", "dimension_reference" => {"id" => "NISTd5", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/PLTS", "authority" => "si-digital-framework"}]}, {"identifiers" => [{"id" => "NISTq197", "type" => "nist"}, {"id" => "q:exposure", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "exposure", "lang" => "en"}, {"value" => "exposition (rayons x et γ)", "lang" => "fr"}], "short" => "exposure", "dimension_reference" => {"id" => "NISTd49", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/XPOS", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Exposure", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq198", "type" => "nist"}, {"id" => "q:fuel_efficiency", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "fuel efficiency", "lang" => "en"}, {"value" => "fuel economy", "lang" => "en"}], "short" => "fuel_efficiency", "dimension_reference" => {"id" => "NISTd99", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq199", "type" => "nist"}, {"id" => "q:relative_humidity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "relative humidity", "lang" => "en"}], "short" => "relative_humidity", "dimension_reference" => {"id" => "NISTd80", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/RelativeHumidity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq2", "type" => "nist"}, {"id" => "q:mass", "type" => "unitsml"}], "quantity_type" => "base", "names" => [{"value" => "mass", "lang" => "en"}, {"value" => "masse", "lang" => "fr"}], "short" => "mass", "dimension_reference" => {"id" => "NISTd2", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/MASS", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Mass", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq20", "type" => "nist"}, {"id" => "q:power", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "power", "lang" => "en"}, {"value" => "puissance, flux énergétique", "lang" => "fr"}], "short" => "power", "dimension_reference" => {"id" => "NISTd16", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/POWR", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Power", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq200", "type" => "nist"}, {"id" => "q:logarithmic_frequency_range", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "logarithmic frequency range", "lang" => "en"}], "short" => "logarithmic_frequency_range", "dimension_reference" => {"id" => "NISTd67", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq201", "type" => "nist"}, {"id" => "q:traffic_intensity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "traffic intensity", "lang" => "en"}], "short" => "traffic_intensity", "dimension_reference" => {"id" => "NISTd100", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/TrafficIntensity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq202", "type" => "nist"}, {"id" => "q:symbol_rate", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "symbol rate", "lang" => "en"}], "short" => "symbol_rate", "dimension_reference" => {"id" => "NISTd101", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq203", "type" => "nist"}, {"id" => "q:information_content", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "information content", "lang" => "en"}, {"value" => "information entropy", "lang" => "en"}], "short" => "information_content", "dimension_reference" => {"id" => "NISTd102", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/InformationContent", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq21", "type" => "nist"}, {"id" => "q:radiant_flux", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "radiant flux", "lang" => "en"}], "short" => "radiant_flux", "dimension_reference" => {"id" => "NISTd16", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/RadiantFlux", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq22", "type" => "nist"}, {"id" => "q:electric_charge", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "electric charge", "lang" => "en"}, {"value" => "charge électrique", "lang" => "fr"}], "short" => "electric_charge", "dimension_reference" => {"id" => "NISTd17", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ELCH", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ElectricCharge", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq23", "type" => "nist"}, {"id" => "q:amount_of_electricity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "amount of electricity", "lang" => "en"}], "short" => "amount_of_electricity", "dimension_reference" => {"id" => "NISTd17", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq24", "type" => "nist"}, {"id" => "q:electric_potential_difference", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "electric potential difference", "lang" => "en"}, {"value" => "différence de potentiel électrique", "lang" => "fr"}], "short" => "electric_potential_difference", "dimension_reference" => {"id" => "NISTd18", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ELPD", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ElectricPotentialDifference", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq25", "type" => "nist"}, {"id" => "q:potential_difference", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "potential difference", "lang" => "en"}], "short" => "potential_difference", "dimension_reference" => {"id" => "NISTd18", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq26", "type" => "nist"}, {"id" => "q:electromotive_force", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "electromotive force", "lang" => "en"}], "short" => "electromotive_force", "dimension_reference" => {"id" => "NISTd18", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ElectromotiveForce", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq27", "type" => "nist"}, {"id" => "q:capacitance", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "capacitance", "lang" => "en"}, {"value" => "capacité électrique", "lang" => "fr"}], "short" => "capacitance", "dimension_reference" => {"id" => "NISTd19", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ELCA", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Capacitance", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq28", "type" => "nist"}, {"id" => "q:electric_resistance", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "electric resistance", "lang" => "en"}, {"value" => "résistance électrique", "lang" => "fr"}], "short" => "electric_resistance", "dimension_reference" => {"id" => "NISTd20", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ELRE", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Resistance", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq29", "type" => "nist"}, {"id" => "q:electric_conductance", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "electric conductance", "lang" => "en"}, {"value" => "conductance électrique", "lang" => "fr"}], "short" => "electric_conductance", "dimension_reference" => {"id" => "NISTd21", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ELCO", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Conductance", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq3", "type" => "nist"}, {"id" => "q:time", "type" => "unitsml"}], "quantity_type" => "base", "names" => [{"value" => "time", "lang" => "en"}, {"value" => "duration", "lang" => "en"}, {"value" => "temps", "lang" => "fr"}], "short" => "time", "dimension_reference" => {"id" => "NISTd3", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/TIME", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Time", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq30", "type" => "nist"}, {"id" => "q:magnetic_flux", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "magnetic flux", "lang" => "en"}, {"value" => "flux d'induction magnétique", "lang" => "fr"}], "short" => "magnetic_flux", "dimension_reference" => {"id" => "NISTd22", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/MGFL", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/MagneticFlux", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq31", "type" => "nist"}, {"id" => "q:surface_density", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "surface density", "lang" => "en"}, {"value" => "areic mass", "lang" => "en"}, {"value" => "masse surfacique", "lang" => "fr"}], "short" => "surface_density", "dimension_reference" => {"id" => "NISTd51", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/SUDE", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/AreaMass", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq32", "type" => "nist"}, {"id" => "q:inductance", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "inductance", "lang" => "en"}, {"value" => "inductance", "lang" => "fr"}], "short" => "inductance", "dimension_reference" => {"id" => "NISTd23", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ELIN", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Inductance", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq33", "type" => "nist"}, {"id" => "q:mass_concentration", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "mass concentration", "lang" => "en"}, {"value" => "concentration massique", "lang" => "fr"}], "short" => "mass_concentration", "dimension_reference" => {"id" => "NISTd30", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/MACO", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/MassConcentration", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq34", "type" => "nist"}, {"id" => "q:celsius_temperature", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "Celsius temperature", "lang" => "en"}, {"value" => "température Celsius", "lang" => "fr"}], "short" => "celsius_temperature", "dimension_reference" => {"id" => "NISTd5", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/TEMC", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/CelsiusTemperature", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq35", "type" => "nist"}, {"id" => "q:activity_referred_to_a_radionuclide", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "activity referred to a radionuclide", "lang" => "en"}, {"value" => "activité d'un radionucléide", "lang" => "fr"}], "short" => "activity_referred_to_a_radionuclide", "dimension_reference" => {"id" => "NISTd24", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ARRN", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Activity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq36", "type" => "nist"}, {"id" => "q:absorbed_dose", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "absorbed dose", "lang" => "en"}, {"value" => "dose absorbée", "lang" => "fr"}], "short" => "absorbed_dose", "dimension_reference" => {"id" => "NISTd25", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ABDO", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/AbsorbedDose", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq37", "type" => "nist"}, {"id" => "q:specific_energy_imparted", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "specific energy imparted", "lang" => "en"}], "short" => "specific_energy_imparted", "dimension_reference" => {"id" => "NISTd25", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/SpecificEnergyImparted", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq38", "type" => "nist"}, {"id" => "q:kerma", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "kerma", "lang" => "en"}, {"value" => "kerma", "lang" => "fr"}], "short" => "kerma", "dimension_reference" => {"id" => "NISTd25", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/KRMA", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Kerma", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq39", "type" => "nist"}, {"id" => "q:dose_equivalent", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "dose equivalent", "lang" => "en"}, {"value" => "équivalent de dose", "lang" => "fr"}], "short" => "dose_equivalent", "dimension_reference" => {"id" => "NISTd25", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/DOEQ", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/DoseEquivalent", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq4", "type" => "nist"}, {"id" => "q:electric_current", "type" => "unitsml"}], "quantity_type" => "base", "names" => [{"value" => "electric current", "lang" => "en"}, {"value" => "courant électrique", "lang" => "fr"}], "short" => "electric_current", "dimension_reference" => {"id" => "NISTd4", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ELCU", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ElectricCurrent", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq40", "type" => "nist"}, {"id" => "q:ambient_dose_equivalent", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "ambient dose equivalent", "lang" => "en"}], "short" => "ambient_dose_equivalent", "dimension_reference" => {"id" => "NISTd25", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq41", "type" => "nist"}, {"id" => "q:directional_dose_equivalent", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "directional dose equivalent", "lang" => "en"}], "short" => "directional_dose_equivalent", "dimension_reference" => {"id" => "NISTd25", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq42", "type" => "nist"}, {"id" => "q:personal_dose_equivalent", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "personal dose equivalent", "lang" => "en"}], "short" => "personal_dose_equivalent", "dimension_reference" => {"id" => "NISTd25", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq43", "type" => "nist"}, {"id" => "q:organ_dose_equivalent", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "organ dose equivalent", "lang" => "en"}], "short" => "organ_dose_equivalent", "dimension_reference" => {"id" => "NISTd25", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq44", "type" => "nist"}, {"id" => "q:catalytic_activity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "catalytic activity", "lang" => "en"}, {"value" => "activité catalytique", "lang" => "fr"}], "short" => "catalytic_activity", "dimension_reference" => {"id" => "NISTd26", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/CATA", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/CatalyticActivity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq45", "type" => "nist"}, {"id" => "q:frequency", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "frequency", "lang" => "en"}, {"value" => "fréquence", "lang" => "fr"}], "short" => "frequency", "dimension_reference" => {"id" => "NISTd24", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/FREQ", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Frequency", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq46", "type" => "nist"}, {"id" => "q:luminous_flux", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "luminous flux", "lang" => "en"}, {"value" => "flux lumineux", "lang" => "fr"}], "short" => "luminous_flux", "dimension_reference" => {"id" => "NISTd7", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/LUFL", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/LuminousFlux", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq47", "type" => "nist"}, {"id" => "q:illuminance", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "illuminance", "lang" => "en"}, {"value" => "éclairement lumineux", "lang" => "fr"}], "short" => "illuminance", "dimension_reference" => {"id" => "NISTd27", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ILLU", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Illuminance", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq48", "type" => "nist"}, {"id" => "q:distance", "type" => "unitsml"}], "quantity_type" => "base", "names" => [{"value" => "distance", "lang" => "en"}], "short" => "distance", "dimension_reference" => {"id" => "NISTd1", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Distance", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq49", "type" => "nist"}, {"id" => "q:acceleration", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "acceleration", "lang" => "en"}, {"value" => "accélération", "lang" => "fr"}], "short" => "acceleration", "dimension_reference" => {"id" => "NISTd28", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ACCE", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Acceleration", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq5", "type" => "nist"}, {"id" => "q:temperature", "type" => "unitsml"}], "quantity_type" => "base", "names" => [{"value" => "thermodynamic temperature", "lang" => "en"}, {"value" => "température thermodynamique", "lang" => "fr"}], "short" => "temperature", "dimension_reference" => {"id" => "NISTd5", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/TEMT", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ThermodynamicTemperature", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq50", "type" => "nist"}, {"id" => "q:wavenumber", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "wavenumber", "lang" => "en"}, {"value" => "repetency", "lang" => "en"}, {"value" => "nombre d'ondes", "lang" => "fr"}], "short" => "wavenumber", "dimension_reference" => {"id" => "NISTd29", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/WANU", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Repetency", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq51", "type" => "nist"}, {"id" => "q:density", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "density", "lang" => "en"}, {"value" => "mass density", "lang" => "en"}, {"value" => "masse volumique", "lang" => "fr"}], "short" => "density", "dimension_reference" => {"id" => "NISTd30", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/DENS", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Density", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq52", "type" => "nist"}, {"id" => "q:specific_volume", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "specific volume", "lang" => "en"}, {"value" => "massic volume", "lang" => "en"}, {"value" => "volume massique", "lang" => "fr"}], "short" => "specific_volume", "dimension_reference" => {"id" => "NISTd31", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/SPVO", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/SpecificVolume", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq53", "type" => "nist"}, {"id" => "q:current_density", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "current density", "lang" => "en"}, {"value" => "densité de courant", "lang" => "fr"}], "short" => "current_density", "dimension_reference" => {"id" => "NISTd32", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/CUDE", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Conductivity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq54", "type" => "nist"}, {"id" => "q:magnetic_field_strength", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "magnetic field strength", "lang" => "en"}, {"value" => "champ magnétique", "lang" => "fr"}], "short" => "magnetic_field_strength", "dimension_reference" => {"id" => "NISTd33", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/MAFD", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/MagneticFieldStrength_H", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq55", "type" => "nist"}, {"id" => "q:amount_concentration", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "amount of substance concentration", "lang" => "en"}, {"value" => "amount concentration", "lang" => "en"}, {"value" => "concentration de quantité de matière", "lang" => "fr"}], "short" => "amount_concentration", "dimension_reference" => {"id" => "NISTd34", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/AMSC", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/MolecularConcentration", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq56", "type" => "nist"}, {"id" => "q:luminance", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "luminance", "lang" => "en"}, {"value" => "luminance lumineuse", "lang" => "fr"}], "short" => "luminance", "dimension_reference" => {"id" => "NISTd27", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/LUMA", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Luminance", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq57", "type" => "nist"}, {"id" => "q:angular_velocity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "angular velocity", "lang" => "en"}, {"value" => "vitesse angulaire", "lang" => "fr"}], "short" => "angular_velocity", "dimension_reference" => {"id" => "NISTd11", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/VELA", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/AngularVelocity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq58", "type" => "nist"}, {"id" => "q:angular_acceleration", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "angular acceleration", "lang" => "en"}, {"value" => "accelération angulaire", "lang" => "fr"}], "short" => "angular_acceleration", "dimension_reference" => {"id" => "NISTd35", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ACCA", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/AngularAcceleration", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq59", "type" => "nist"}, {"id" => "q:dynamic_viscosity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "dynamic viscosity", "lang" => "en"}, {"value" => "viscosité dynamique", "lang" => "fr"}], "short" => "dynamic_viscosity", "dimension_reference" => {"id" => "NISTd36", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/DYVI", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/DynamicViscosity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq6", "type" => "nist"}, {"id" => "q:substance_amount", "type" => "unitsml"}], "quantity_type" => "base", "names" => [{"value" => "amount of substance", "lang" => "en"}, {"value" => "quantité de matière", "lang" => "fr"}], "short" => "substance_amount", "dimension_reference" => {"id" => "NISTd6", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/AMSU", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/AmountOfSubstance", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq60", "type" => "nist"}, {"id" => "q:moment_of_force", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "moment of force", "lang" => "en"}, {"value" => "moment d’une force", "lang" => "fr"}], "short" => "moment_of_force", "dimension_reference" => {"id" => "NISTd15", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/TORQ", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/MomentOfForce", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq61", "type" => "nist"}, {"id" => "q:surface_tension", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "surface tension", "lang" => "en"}, {"value" => "tension superficielle", "lang" => "fr"}], "short" => "surface_tension", "dimension_reference" => {"id" => "NISTd37", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/SUTE", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/SurfaceTension", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq62", "type" => "nist"}, {"id" => "q:heat_flux_density", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "heat flux density", "lang" => "en"}, {"value" => "flux thermique surfacique", "lang" => "fr"}], "short" => "heat_flux_density", "dimension_reference" => {"id" => "NISTd38", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/HEFD", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/HeatFluxDensity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq63", "type" => "nist"}, {"id" => "q:heat_capacity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "heat capacity", "lang" => "en"}, {"value" => "capacité thermique", "lang" => "fr"}], "short" => "heat_capacity", "dimension_reference" => {"id" => "NISTd39", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/HECA", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/HeatCapacity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq64", "type" => "nist"}, {"id" => "q:specific_heat_capacity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "specific heat capacity", "lang" => "en"}, {"value" => "capacité thermique massique", "lang" => "fr"}], "short" => "specific_heat_capacity", "dimension_reference" => {"id" => "NISTd40", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/SHEC", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/SpecificHeatCapacity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq65", "type" => "nist"}, {"id" => "q:specific_energy", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "specific energy", "lang" => "en"}, {"value" => "énergie massique", "lang" => "fr"}], "short" => "specific_energy", "dimension_reference" => {"id" => "NISTd25", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/SENG", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/SpecificEnergy", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq66", "type" => "nist"}, {"id" => "q:thermal_conductivity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "thermal conductivity", "lang" => "en"}, {"value" => "conductivité thermique", "lang" => "fr"}], "short" => "thermal_conductivity", "dimension_reference" => {"id" => "NISTd41", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/TCON", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ThermalConductivity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq67", "type" => "nist"}, {"id" => "q:energy_density", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "energy density", "lang" => "en"}, {"value" => "énergie volumique", "lang" => "fr"}], "short" => "energy_density", "dimension_reference" => {"id" => "NISTd14", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ENGD", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/EnergyDensity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq68", "type" => "nist"}, {"id" => "q:electric_field_strength", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "electric field strength", "lang" => "en"}, {"value" => "champ électrique", "lang" => "fr"}], "short" => "electric_field_strength", "dimension_reference" => {"id" => "NISTd42", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ELFS", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ElectricFieldStrength", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq69", "type" => "nist"}, {"id" => "q:electric_charge_density", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "electric charge density", "lang" => "en"}, {"value" => "charge électrique volumique", "lang" => "fr"}], "short" => "electric_charge_density", "dimension_reference" => {"id" => "NISTd43", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ELCD", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ElectricChargeDensity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq7", "type" => "nist"}, {"id" => "q:luminous_intensity", "type" => "unitsml"}], "quantity_type" => "base", "names" => [{"value" => "luminous intensity", "lang" => "en"}, {"value" => "intensité lumineuse", "lang" => "fr"}], "short" => "luminous_intensity", "dimension_reference" => {"id" => "NISTd7", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/LUIN", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/LuminousIntensity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq70", "type" => "nist"}, {"id" => "q:electric_flux_density", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "electric flux density", "lang" => "en"}, {"value" => "induction électrique", "lang" => "fr"}], "short" => "electric_flux_density", "dimension_reference" => {"id" => "NISTd44", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ELFD", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ElectricFluxDensity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq71", "type" => "nist"}, {"id" => "q:permittivity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "permittivity", "lang" => "en"}, {"value" => "permittivité", "lang" => "fr"}], "short" => "permittivity", "dimension_reference" => {"id" => "NISTd45", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/PRMI", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Permittivity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq72", "type" => "nist"}, {"id" => "q:permeability", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "permeability", "lang" => "en"}, {"value" => "perméabilitté", "lang" => "fr"}], "short" => "permeability", "dimension_reference" => {"id" => "NISTd46", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/PRME", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ElectromagneticPermeability", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq73", "type" => "nist"}, {"id" => "q:molar_energy", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "molar energy", "lang" => "en"}, {"value" => "énergie molaire", "lang" => "fr"}], "short" => "molar_energy", "dimension_reference" => {"id" => "NISTd47", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/MOEG", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/MolarEnergy", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq74", "type" => "nist"}, {"id" => "q:molar_entropy", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "molar entropy", "lang" => "en"}, {"value" => "entropie molaire", "lang" => "fr"}], "short" => "molar_entropy", "dimension_reference" => {"id" => "NISTd48", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/MOEN", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/MolarEntropy", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq75", "type" => "nist"}, {"id" => "q:exposure_x_and_gamma_rays", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "exposure (x and gamma rays)", "lang" => "en"}], "short" => "exposure_x_and_gamma_rays", "dimension_reference" => {"id" => "NISTd49", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ExposureOfIonizingRadiation", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq76", "type" => "nist"}, {"id" => "q:absorbed_dose_rate", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "absorbed dose rate", "lang" => "en"}, {"value" => "débit de dose absorbée", "lang" => "fr"}], "short" => "absorbed_dose_rate", "dimension_reference" => {"id" => "NISTd50", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ABDR", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/AbsorbedDoseRate", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq77", "type" => "nist"}, {"id" => "q:potential_energy", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "potential energy", "lang" => "en"}], "short" => "potential_energy", "dimension_reference" => {"id" => "NISTd15", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/PotentialEnergy", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq78", "type" => "nist"}, {"id" => "q:irradiance", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "irradiance", "lang" => "en"}], "short" => "irradiance", "dimension_reference" => {"id" => "NISTd38", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Irradiance", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq79", "type" => "nist"}, {"id" => "q:entropy", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "entropy", "lang" => "en"}], "short" => "entropy", "dimension_reference" => {"id" => "NISTd39", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Entropy", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq8", "type" => "nist"}, {"id" => "q:area", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "area", "lang" => "en"}, {"value" => "superficie", "lang" => "fr"}], "short" => "area", "dimension_reference" => {"id" => "NISTd8", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/AREA", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Area", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq80", "type" => "nist"}, {"id" => "q:specific_entropy", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "specific entropy", "lang" => "en"}], "short" => "specific_entropy", "dimension_reference" => {"id" => "NISTd40", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/SpecificEntropy", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq81", "type" => "nist"}, {"id" => "q:surface_charge_density", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "surface charge density", "lang" => "en"}, {"value" => "charge électrique surfacique", "lang" => "fr"}], "short" => "surface_charge_density", "dimension_reference" => {"id" => "NISTd53", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/SUCD", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/AreaChargeDensity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq82", "type" => "nist"}, {"id" => "q:electric_displacement", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "electric displacement", "lang" => "en"}], "short" => "electric_displacement", "dimension_reference" => {"id" => "NISTd44", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ElectricDisplacement", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq83", "type" => "nist"}, {"id" => "q:molar_heat_capacity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "molar heat capacity", "lang" => "en"}], "short" => "molar_heat_capacity", "dimension_reference" => {"id" => "NISTd48", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/MolarHeatCapacity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq84", "type" => "nist"}, {"id" => "q:catalytic_activity_concentration", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "catalytic activity concentration", "lang" => "en"}, {"value" => "concentration de l’activité catalytique", "lang" => "fr"}], "short" => "catalytic_activity_concentration", "dimension_reference" => {"id" => "NISTd55", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/CTAC", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/CatalyticActivityConcentration", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq85", "type" => "nist"}, {"id" => "q:kinematic_viscosity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "kinematic viscosity", "lang" => "en"}, {"value" => "viscosité cinématique", "lang" => "fr"}], "short" => "kinematic_viscosity", "dimension_reference" => {"id" => "NISTd56", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/KIVI", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/KinematicViscosity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq87", "type" => "nist"}, {"id" => "q:magnetic_field", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "magnetic field", "lang" => "en"}], "short" => "magnetic_field", "dimension_reference" => {"id" => "NISTd33", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/MagneticField", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq88", "type" => "nist"}, {"id" => "q:radiant_intensity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "radiant intensity", "lang" => "en"}, {"value" => "intensité énergétique", "lang" => "fr"}], "short" => "radiant_intensity", "dimension_reference" => {"id" => "NISTd16", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/RAIN", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/RadiantIntensity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq89", "type" => "nist"}, {"id" => "q:radiance", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "radiance", "lang" => "en"}, {"value" => "luminance énergétique", "lang" => "fr"}], "short" => "radiance", "dimension_reference" => {"id" => "NISTd38", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/RADI", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Radiance", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq9", "type" => "nist"}, {"id" => "q:plane_angle", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "plane angle", "lang" => "en"}, {"value" => "angle", "lang" => "en"}, {"value" => "angle plan", "lang" => "fr"}], "short" => "plane_angle", "dimension_reference" => {"id" => "NISTd9", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ANGP", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/PlaneAngle", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq90", "type" => "nist"}, {"id" => "q:logarithmic_ratio_quantities", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "ratio logarithm (B)", "lang" => "en"}, {"value" => "logarithmic ratio quantities (power-like quantities using decimal logarithms)", "lang" => "en"}, {"value" => "logarithme d'un rapport (B)", "lang" => "fr"}], "short" => "logarithmic_ratio_quantities", "dimension_reference" => {"id" => "NISTd67", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/RLGB", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/LinearLogarithmicRatio", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq91", "type" => "nist"}, {"id" => "q:fluidity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "fluidity", "lang" => "en"}, {"value" => "reciprocal of dynamic viscosity", "lang" => "en"}], "short" => "fluidity", "dimension_reference" => {"id" => "NISTd52", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Fluidity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq92", "type" => "nist"}, {"id" => "q:hydrodynamic_permeability", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "hydrodynamic permeability", "lang" => "en"}], "short" => "hydrodynamic_permeability", "dimension_reference" => {"id" => "NISTd8", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq93", "type" => "nist"}, {"id" => "q:refractive_index", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "refractive index", "lang" => "en"}], "short" => "refractive_index", "dimension_reference" => {"id" => "NISTd80", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/RefractiveIndex", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq94", "type" => "nist"}, {"id" => "q:relative_permeability", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "relative permeability", "lang" => "en"}], "short" => "relative_permeability", "dimension_reference" => {"id" => "NISTd80", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/PermeabilityRatio", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq95", "type" => "nist"}, {"id" => "q:breadth", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "breadth", "lang" => "en"}], "short" => "breadth", "dimension_reference" => {"id" => "NISTd1", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Breadth", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq96", "type" => "nist"}, {"id" => "q:height", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "height", "lang" => "en"}], "short" => "height", "dimension_reference" => {"id" => "NISTd1", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Height", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq97", "type" => "nist"}, {"id" => "q:thickness", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "thickness", "lang" => "en"}], "short" => "thickness", "dimension_reference" => {"id" => "NISTd1", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Thickness", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq98", "type" => "nist"}, {"id" => "q:radius", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "radius", "lang" => "en"}], "short" => "radius", "dimension_reference" => {"id" => "NISTd1", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Radius", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq99", "type" => "nist"}, {"id" => "q:radial_distance", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "radial distance", "lang" => "en"}], "short" => "radial_distance", "dimension_reference" => {"id" => "NISTd1", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/RadialDistance", "authority" => "qudt"}]}], "dimensions" => [{"identifiers" => [{"id" => "NISTd1", "type" => "nist"}, {"id" => "d:length", "type" => "unitsml"}], "length" => {"power" => 1, "symbol" => "L", "symbols" => [{"id" => "dim_L", "ascii" => "L", "html" => "𝖫", "latex" => "\\ensuremath{\\mathsf{L}}", "mathml" => "L", "unicode" => "𝖫"}]}, "short" => "length", "names" => [{"value" => "length", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd10", "type" => "nist"}, {"id" => "d:volume", "type" => "unitsml"}], "length" => {"power" => 3, "symbol" => "L"}, "short" => "volume", "names" => [{"value" => "volume", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd100", "type" => "nist"}, {"id" => "d:traffic_intensity", "type" => "unitsml"}], "dimensionless" => true, "short" => "traffic_intensity", "names" => [{"value" => "traffic intensity", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd101", "type" => "nist"}, {"id" => "d:symbol_rate", "type" => "unitsml"}], "time" => {"power" => -1, "symbol" => "T"}, "short" => "symbol_rate", "names" => [{"value" => "symbol rate", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L-0dot5I0M0dot5H0T-1D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd102", "type" => "nist"}, {"id" => "d:information_content", "type" => "unitsml"}], "dimensionless" => true, "short" => "information_content", "names" => [{"value" => "information content", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd11", "type" => "nist"}, {"id" => "d:velocity", "type" => "unitsml"}], "length" => {"power" => 1, "symbol" => "L"}, "time" => {"power" => -1, "symbol" => "T"}, "short" => "velocity", "names" => [{"value" => "velocity", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd12", "type" => "nist"}, {"id" => "d:force", "type" => "unitsml"}], "length" => {"power" => 1, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -2, "symbol" => "T"}, "short" => "force", "names" => [{"value" => "force", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd13", "type" => "nist"}, {"id" => "d:magnetic_flux_density", "type" => "unitsml"}], "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -2, "symbol" => "T"}, "electric_current" => {"power" => -1, "symbol" => "I"}, "short" => "magnetic_flux_density", "names" => [{"value" => "magnetic flux density", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E-1L0I0M1H0T-2D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd14", "type" => "nist"}, {"id" => "d:pressure", "type" => "unitsml"}], "length" => {"power" => -1, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -2, "symbol" => "T"}, "short" => "pressure", "names" => [{"value" => "pressure", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd15", "type" => "nist"}, {"id" => "d:energy", "type" => "unitsml"}], "length" => {"power" => 2, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -2, "symbol" => "T"}, "short" => "energy", "names" => [{"value" => "energy", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd16", "type" => "nist"}, {"id" => "d:power", "type" => "unitsml"}], "length" => {"power" => 2, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -3, "symbol" => "T"}, "short" => "power", "names" => [{"value" => "power", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D-1", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd17", "type" => "nist"}, {"id" => "d:electric_charge", "type" => "unitsml"}], "time" => {"power" => 1, "symbol" => "T"}, "electric_current" => {"power" => 1, "symbol" => "I"}, "short" => "electric_charge", "names" => [{"value" => "electric charge", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T1D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd18", "type" => "nist"}, {"id" => "d:electric_potential_difference", "type" => "unitsml"}], "length" => {"power" => 2, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -3, "symbol" => "T"}, "electric_current" => {"power" => -1, "symbol" => "I"}, "short" => "electric_potential_difference", "names" => [{"value" => "electric potential difference", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H0T-3D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd19", "type" => "nist"}, {"id" => "d:capacitance", "type" => "unitsml"}], "length" => {"power" => -2, "symbol" => "L"}, "mass" => {"power" => -1, "symbol" => "M"}, "time" => {"power" => 4, "symbol" => "T"}, "electric_current" => {"power" => 2, "symbol" => "I"}, "short" => "capacitance", "names" => [{"value" => "capacitance", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E2L-2I0M-1H0T4D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd2", "type" => "nist"}, {"id" => "d:mass", "type" => "unitsml"}], "mass" => {"power" => 1, "symbol" => "M", "symbols" => [{"id" => "dim_M", "ascii" => "M", "html" => "𝖬", "latex" => "\\ensuremath{\\mathsf{M}}", "mathml" => "M", "unicode" => "𝖬"}]}, "short" => "mass", "names" => [{"value" => "mass", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd20", "type" => "nist"}, {"id" => "d:electric_resistance", "type" => "unitsml"}], "length" => {"power" => 2, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -3, "symbol" => "T"}, "electric_current" => {"power" => -2, "symbol" => "I"}, "short" => "electric_resistance", "names" => [{"value" => "electric resistance", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H0T-3D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd21", "type" => "nist"}, {"id" => "d:electric_conductance", "type" => "unitsml"}], "length" => {"power" => -2, "symbol" => "L"}, "mass" => {"power" => -1, "symbol" => "M"}, "time" => {"power" => 3, "symbol" => "T"}, "electric_current" => {"power" => 2, "symbol" => "I"}, "short" => "electric_conductance", "names" => [{"value" => "electric conductance", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E2L-2I0M-1H0T3D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd22", "type" => "nist"}, {"id" => "d:magnetic_flux", "type" => "unitsml"}], "length" => {"power" => 2, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -2, "symbol" => "T"}, "electric_current" => {"power" => -1, "symbol" => "I"}, "short" => "magnetic_flux", "names" => [{"value" => "magnetic flux", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H0T-2D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd23", "type" => "nist"}, {"id" => "d:inductance", "type" => "unitsml"}], "length" => {"power" => 2, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -2, "symbol" => "T"}, "electric_current" => {"power" => -2, "symbol" => "I"}, "short" => "inductance", "names" => [{"value" => "inductance", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H0T-2D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd24", "type" => "nist"}, {"id" => "d:frequency", "type" => "unitsml"}], "time" => {"power" => -1, "symbol" => "T"}, "short" => "frequency", "names" => [{"value" => "frequency", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L-0dot5I0M0dot5H0T-1D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd25", "type" => "nist"}, {"id" => "d:absorbed_dose", "type" => "unitsml"}], "length" => {"power" => 2, "symbol" => "L"}, "time" => {"power" => -2, "symbol" => "T"}, "short" => "absorbed_dose", "names" => [{"value" => "absorbed dose", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-2D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd26", "type" => "nist"}, {"id" => "d:catalytic_activity", "type" => "unitsml"}], "time" => {"power" => -1, "symbol" => "T"}, "amount_of_substance" => {"power" => 1, "symbol" => "N"}, "short" => "catalytic_activity", "names" => [{"value" => "catalytic activity", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T-1D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd27", "type" => "nist"}, {"id" => "d:illuminance", "type" => "unitsml"}], "length" => {"power" => -2, "symbol" => "L"}, "luminous_intensity" => {"power" => 1, "symbol" => "J"}, "short" => "illuminance", "names" => [{"value" => "illuminance", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L-2I1M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd28", "type" => "nist"}, {"id" => "d:acceleration", "type" => "unitsml"}], "length" => {"power" => 1, "symbol" => "L"}, "time" => {"power" => -2, "symbol" => "T"}, "short" => "acceleration", "names" => [{"value" => "acceleration", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-2D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd29", "type" => "nist"}, {"id" => "d:wavenumber", "type" => "unitsml"}], "length" => {"power" => -1, "symbol" => "L"}, "short" => "wavenumber", "names" => [{"value" => "wavenumber", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd3", "type" => "nist"}, {"id" => "d:time", "type" => "unitsml"}], "time" => {"power" => 1, "symbol" => "T", "symbols" => [{"id" => "dim_T", "ascii" => "T", "html" => "𝖳", "latex" => "\\ensuremath{\\mathsf{T}}", "mathml" => "T", "unicode" => "𝖳"}]}, "short" => "time", "names" => [{"value" => "time", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd30", "type" => "nist"}, {"id" => "d:mass_density", "type" => "unitsml"}], "length" => {"power" => -3, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "short" => "mass_density", "names" => [{"value" => "mass density", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd31", "type" => "nist"}, {"id" => "d:specific_volume", "type" => "unitsml"}], "length" => {"power" => 3, "symbol" => "L"}, "mass" => {"power" => -1, "symbol" => "M"}, "short" => "specific_volume", "names" => [{"value" => "specific volume", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L3I0M-1H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd32", "type" => "nist"}, {"id" => "d:current_density", "type" => "unitsml"}], "length" => {"power" => -2, "symbol" => "L"}, "electric_current" => {"power" => 1, "symbol" => "I"}, "short" => "current_density", "names" => [{"value" => "current density", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E1L-2I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd33", "type" => "nist"}, {"id" => "d:magnetic_field_strength", "type" => "unitsml"}], "length" => {"power" => -1, "symbol" => "L"}, "electric_current" => {"power" => 1, "symbol" => "I"}, "short" => "magnetic_field_strength", "names" => [{"value" => "magnetic field strength", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E1L-1I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd34", "type" => "nist"}, {"id" => "d:concentration", "type" => "unitsml"}], "length" => {"power" => -3, "symbol" => "L"}, "amount_of_substance" => {"power" => 1, "symbol" => "N"}, "short" => "concentration", "names" => [{"value" => "concentration", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd35", "type" => "nist"}, {"id" => "d:angular_acceleration", "type" => "unitsml"}], "time" => {"power" => -2, "symbol" => "T"}, "short" => "angular_acceleration", "names" => [{"value" => "angular acceleration", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L-0dot5I0M0dot5H0T-2D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd36", "type" => "nist"}, {"id" => "d:dynamic_viscosity", "type" => "unitsml"}], "length" => {"power" => -1, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -1, "symbol" => "T"}, "short" => "dynamic_viscosity", "names" => [{"value" => "dynamic viscosity", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-1D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd37", "type" => "nist"}, {"id" => "d:surface_tension", "type" => "unitsml"}], "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -2, "symbol" => "T"}, "short" => "surface_tension", "names" => [{"value" => "surface tension", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L-0dot5I0M1H0T-2D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd38", "type" => "nist"}, {"id" => "d:heat_flux_density", "type" => "unitsml"}], "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -3, "symbol" => "T"}, "short" => "heat_flux_density", "names" => [{"value" => "heat flux density", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-3D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd39", "type" => "nist"}, {"id" => "d:heat_capacity", "type" => "unitsml"}], "length" => {"power" => 2, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -2, "symbol" => "T"}, "thermodynamic_temperature" => {"power" => -1, "symbol" => "Theta"}, "short" => "heat_capacity", "names" => [{"value" => "heat capacity", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H-1T-2D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd4", "type" => "nist"}, {"id" => "d:electric_current", "type" => "unitsml"}], "electric_current" => {"power" => 1, "symbol" => "I", "symbols" => [{"id" => "dim_I", "ascii" => "I", "html" => "𝖨", "latex" => "\\ensuremath{\\mathsf{I}}", "mathml" => "I", "unicode" => "𝖨"}]}, "short" => "electric_current", "names" => [{"value" => "electric current", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T0D-1", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd40", "type" => "nist"}, {"id" => "d:specific_heat_capacity", "type" => "unitsml"}], "length" => {"power" => 2, "symbol" => "L"}, "time" => {"power" => -2, "symbol" => "T"}, "thermodynamic_temperature" => {"power" => -1, "symbol" => "Theta"}, "short" => "specific_heat_capacity", "names" => [{"value" => "specific heat capacity", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H-1T-2D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd41", "type" => "nist"}, {"id" => "d:thermal_conductivity", "type" => "unitsml"}], "length" => {"power" => 1, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -3, "symbol" => "T"}, "thermodynamic_temperature" => {"power" => -1, "symbol" => "Theta"}, "short" => "thermal_conductivity", "names" => [{"value" => "thermal conductivity", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H-1T-3D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd42", "type" => "nist"}, {"id" => "d:electric_field_strength", "type" => "unitsml"}], "length" => {"power" => 1, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -3, "symbol" => "T"}, "electric_current" => {"power" => -1, "symbol" => "I"}, "short" => "electric_field_strength", "names" => [{"value" => "electric field strength", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E-1L1I0M1H0T-3D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd43", "type" => "nist"}, {"id" => "d:electric_charge_density", "type" => "unitsml"}], "length" => {"power" => -3, "symbol" => "L"}, "time" => {"power" => 1, "symbol" => "T"}, "electric_current" => {"power" => 1, "symbol" => "I"}, "short" => "electric_charge_density", "names" => [{"value" => "electric charge density", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E1L-3I0M0H0T1D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd44", "type" => "nist"}, {"id" => "d:electric_flux_density", "type" => "unitsml"}], "length" => {"power" => -2, "symbol" => "L"}, "time" => {"power" => 1, "symbol" => "T"}, "electric_current" => {"power" => 1, "symbol" => "I"}, "short" => "electric_flux_density", "names" => [{"value" => "electric flux density", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E1L-2I0M0H0T1D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd45", "type" => "nist"}, {"id" => "d:permittivity", "type" => "unitsml"}], "length" => {"power" => -3, "symbol" => "L"}, "mass" => {"power" => -1, "symbol" => "M"}, "time" => {"power" => 4, "symbol" => "T"}, "electric_current" => {"power" => 2, "symbol" => "I"}, "short" => "permittivity", "names" => [{"value" => "permittivity", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E2L-3I0M-1H0T4D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd46", "type" => "nist"}, {"id" => "d:permeability", "type" => "unitsml"}], "length" => {"power" => 1, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -2, "symbol" => "T"}, "electric_current" => {"power" => -2, "symbol" => "I"}, "short" => "permeability", "names" => [{"value" => "permeability", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E-2L1I0M1H0T-2D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd47", "type" => "nist"}, {"id" => "d:molar_energy", "type" => "unitsml"}], "length" => {"power" => 2, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -2, "symbol" => "T"}, "amount_of_substance" => {"power" => -1, "symbol" => "N"}, "short" => "molar_energy", "names" => [{"value" => "molar energy", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A-1E0L2I0M1H0T-2D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd48", "type" => "nist"}, {"id" => "d:molar_entropy", "type" => "unitsml"}], "length" => {"power" => 2, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -2, "symbol" => "T"}, "thermodynamic_temperature" => {"power" => -1, "symbol" => "Theta"}, "amount_of_substance" => {"power" => -1, "symbol" => "N"}, "short" => "molar_entropy", "names" => [{"value" => "molar entropy", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A-1E0L2I0M1H-1T-2D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd49", "type" => "nist"}, {"id" => "d:exposure", "type" => "unitsml"}], "mass" => {"power" => -1, "symbol" => "M"}, "time" => {"power" => 1, "symbol" => "T"}, "electric_current" => {"power" => 1, "symbol" => "I"}, "short" => "exposure", "names" => [{"value" => "exposure", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E1L0I0M-1H0T1D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd5", "type" => "nist"}, {"id" => "d:temperature", "type" => "unitsml"}], "thermodynamic_temperature" => {"power" => 1, "symbol" => "Theta", "symbols" => [{"id" => "dim_Theta", "ascii" => "Theta", "html" => "𝝠", "latex" => "\\ensuremath{\\mathsf{\\Theta}}", "mathml" => "Θ", "unicode" => "𝝧"}]}, "short" => "temperature", "names" => [{"value" => "temperature", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd50", "type" => "nist"}, {"id" => "d:absorbed_dose_rate", "type" => "unitsml"}], "length" => {"power" => 2, "symbol" => "L"}, "time" => {"power" => -3, "symbol" => "T"}, "short" => "absorbed_dose_rate", "names" => [{"value" => "absorbed dose rate", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-3D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd51", "type" => "nist"}, {"id" => "d:surface_density", "type" => "unitsml"}], "length" => {"power" => -2, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "short" => "surface_density", "names" => [{"value" => "surface density", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd52", "type" => "nist"}, {"id" => "d:fluidity", "type" => "unitsml"}], "length" => {"power" => 1, "symbol" => "L"}, "mass" => {"power" => -1, "symbol" => "M"}, "time" => {"power" => 1, "symbol" => "T"}, "short" => "fluidity", "names" => [{"value" => "fluidity", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H0T1D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd53", "type" => "nist"}, {"id" => "d:surface_charge_density", "type" => "unitsml"}], "mass" => {"power" => -2, "symbol" => "M"}, "time" => {"power" => 1, "symbol" => "T"}, "electric_current" => {"power" => 1, "symbol" => "I"}, "short" => "surface_charge_density", "names" => [{"value" => "surface charge density", "lang" => "en"}]}, {"identifiers" => [{"id" => "NISTd54", "type" => "nist"}, {"id" => "d:magnetizability", "type" => "unitsml"}], "length" => {"power" => 2, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => 2, "symbol" => "T"}, "electric_current" => {"power" => 2, "symbol" => "I"}, "short" => "magnetizability", "names" => [{"value" => "magnetizability", "lang" => "en"}]}, {"identifiers" => [{"id" => "NISTd55", "type" => "nist"}, {"id" => "d:catalytic_activity_concentration", "type" => "unitsml"}], "mass" => {"power" => -3, "symbol" => "M"}, "time" => {"power" => -1, "symbol" => "T"}, "amount_of_substance" => {"power" => 1, "symbol" => "N"}, "short" => "catalytic_activity_concentration", "names" => [{"value" => "catalytic activity concentration", "lang" => "en"}]}, {"identifiers" => [{"id" => "NISTd56", "type" => "nist"}, {"id" => "d:kinematic_viscosity", "type" => "unitsml"}], "length" => {"power" => 2, "symbol" => "L"}, "time" => {"power" => -1, "symbol" => "T"}, "short" => "kinematic_viscosity", "names" => [{"value" => "kinematic viscosity", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-1D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd57", "type" => "nist"}, {"id" => "d:area_moment_of_inertia", "type" => "unitsml"}], "length" => {"power" => 4, "symbol" => "L"}, "short" => "area_moment_of_inertia", "names" => [{"value" => "area moment of inertia", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L4I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd58", "type" => "nist"}, {"id" => "d:linear_density", "type" => "unitsml"}], "length" => {"power" => -1, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "short" => "linear_density", "names" => [{"value" => "linear density", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd59", "type" => "nist"}, {"id" => "d:mass_moment_of_inertia", "type" => "unitsml"}], "length" => {"power" => 2, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "short" => "mass_moment_of_inertia", "names" => [{"value" => "mass moment of inertia", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd6", "type" => "nist"}, {"id" => "d:substance_amount", "type" => "unitsml"}], "amount_of_substance" => {"power" => 1, "symbol" => "N", "symbols" => [{"id" => "dim_N", "ascii" => "N", "html" => "𝖭", "latex" => "\\ensuremath{\\mathsf{N}}", "mathml" => "N", "unicode" => "𝖭"}]}, "short" => "substance_amount", "names" => [{"value" => "substance amount", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd60", "type" => "nist"}, {"id" => "d:action", "type" => "unitsml"}], "length" => {"power" => 2, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -1, "symbol" => "T"}, "short" => "action", "names" => [{"value" => "action", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-1D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd61", "type" => "nist"}, {"id" => "d:momentum", "type" => "unitsml"}], "length" => {"power" => 1, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -1, "symbol" => "T"}, "short" => "momentum", "names" => [{"value" => "momentum", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-1D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd62", "type" => "nist"}, {"id" => "d:gravitational_constant", "type" => "unitsml"}], "length" => {"power" => 3, "symbol" => "L"}, "mass" => {"power" => -1, "symbol" => "M"}, "time" => {"power" => -2, "symbol" => "T"}, "short" => "gravitational_constant", "names" => [{"value" => "gravitational constant", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L3I0M-1H0T-2D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd63", "type" => "nist"}, {"id" => "d:compressibility", "type" => "unitsml"}], "length" => {"power" => 1, "symbol" => "L"}, "mass" => {"power" => -1, "symbol" => "M"}, "time" => {"power" => 2, "symbol" => "T"}, "short" => "compressibility", "names" => [{"value" => "compressibility", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H0T2D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd64", "type" => "nist"}, {"id" => "d:solid_angle", "type" => "unitsml"}], "dimensionless" => true, "plane_angle" => {"power" => 1, "symbol" => "phi"}, "short" => "solid_angle", "names" => [{"value" => "solid angle", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd65", "type" => "nist"}, {"id" => "d:mass_flow_rate", "type" => "unitsml"}], "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -1, "symbol" => "T"}, "short" => "mass_flow_rate", "names" => [{"value" => "mass flow rate", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd66", "type" => "nist"}, {"id" => "d:volume_flow_rate", "type" => "unitsml"}], "length" => {"power" => 3, "symbol" => "L"}, "time" => {"power" => -1, "symbol" => "T"}, "short" => "volume_flow_rate", "names" => [{"value" => "volume flow rate", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd67", "type" => "nist"}, {"id" => "d:logarithmic_ratio", "type" => "unitsml"}], "dimensionless" => true, "short" => "logarithmic_ratio", "names" => [{"value" => "logarithmic ratio", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd68", "type" => "nist"}, {"id" => "d:linear_expansion_coefficient", "type" => "unitsml"}], "thermodynamic_temperature" => {"power" => -1, "symbol" => "Theta"}, "short" => "linear_expansion_coefficient", "names" => [{"value" => "linear expansion coefficient", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H-1T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd69", "type" => "nist"}, {"id" => "d:pressure_coefficient", "type" => "unitsml"}], "length" => {"power" => -1, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -2, "symbol" => "T"}, "thermodynamic_temperature" => {"power" => -1, "symbol" => "Theta"}, "short" => "pressure_coefficient", "names" => [{"value" => "pressure coefficient", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H-1T-2D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd7", "type" => "nist"}, {"id" => "d:luminous_intensity", "type" => "unitsml"}], "luminous_intensity" => {"power" => 1, "symbol" => "J", "symbols" => [{"id" => "dim_J", "ascii" => "J", "html" => "𝖩", "latex" => "\\ensuremath{\\mathsf{J}}", "mathml" => "J", "unicode" => "𝖩"}]}, "short" => "luminous_intensity", "names" => [{"value" => "luminous intensity", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I1M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd70", "type" => "nist"}, {"id" => "d:isothermal_compressibility", "type" => "unitsml"}], "length" => {"power" => 1, "symbol" => "L"}, "mass" => {"power" => -1, "symbol" => "M"}, "time" => {"power" => 2, "symbol" => "T"}, "short" => "isothermal_compressibility", "names" => [{"value" => "isothermal compressibility", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H0T2D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd71", "type" => "nist"}, {"id" => "d:heat_transfer_coefficient", "type" => "unitsml"}], "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -3, "symbol" => "T"}, "thermodynamic_temperature" => {"power" => -1, "symbol" => "Theta"}, "short" => "heat_transfer_coefficient", "names" => [{"value" => "heat transfer coefficient", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-3D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd72", "type" => "nist"}, {"id" => "d:electric_dipole_moment", "type" => "unitsml"}], "length" => {"power" => 1, "symbol" => "L"}, "time" => {"power" => 1, "symbol" => "T"}, "electric_current" => {"power" => 1, "symbol" => "I"}, "short" => "electric_dipole_moment", "names" => [{"value" => "electric dipole moment", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E1L1I0M0H0T1D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd73", "type" => "nist"}, {"id" => "d:magnetic_dipole_moment", "type" => "unitsml"}], "length" => {"power" => 2, "symbol" => "L"}, "electric_current" => {"power" => 1, "symbol" => "I"}, "short" => "magnetic_dipole_moment", "names" => [{"value" => "magnetic dipole moment", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E1L2I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd74", "type" => "nist"}, {"id" => "d:electric_field_gradient", "type" => "unitsml"}], "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -3, "symbol" => "T"}, "electric_current" => {"power" => -1, "symbol" => "I"}, "short" => "electric_field_gradient", "names" => [{"value" => "electric field gradient", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E-1L0I0M1H0T-3D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd75", "type" => "nist"}, {"id" => "d:electric_quadrupole_moment", "type" => "unitsml"}], "length" => {"power" => 2, "symbol" => "L"}, "time" => {"power" => 1, "symbol" => "T"}, "electric_current" => {"power" => 1, "symbol" => "I"}, "short" => "electric_quadrupole_moment", "names" => [{"value" => "electric quadrupole moment", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E1L2I0M0H0T1D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd76", "type" => "nist"}, {"id" => "d:polarizability", "type" => "unitsml"}], "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => 4, "symbol" => "T"}, "electric_current" => {"power" => 2, "symbol" => "I"}, "short" => "polarizability", "names" => [{"value" => "polarizability", "lang" => "en"}]}, {"identifiers" => [{"id" => "NISTd77", "type" => "nist"}, {"id" => "d:hyperpolarizability_1st", "type" => "unitsml"}], "length" => {"power" => -1, "symbol" => "L"}, "mass" => {"power" => -2, "symbol" => "M"}, "time" => {"power" => 7, "symbol" => "T"}, "electric_current" => {"power" => 3, "symbol" => "I"}, "short" => "hyperpolarizability_1st", "names" => [{"value" => "hyperpolarizability 1st", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E3L-1I0M-2H0T7D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd78", "type" => "nist"}, {"id" => "d:hyperpolarizability_2nd", "type" => "unitsml"}], "length" => {"power" => -2, "symbol" => "L"}, "mass" => {"power" => -3, "symbol" => "M"}, "time" => {"power" => 10, "symbol" => "T"}, "electric_current" => {"power" => 4, "symbol" => "I"}, "short" => "hyperpolarizability_2nd", "names" => [{"value" => "hyperpolarizability 2nd", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E4L-2I0M-3H0T10D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd79", "type" => "nist"}, {"id" => "d:molality", "type" => "unitsml"}], "mass" => {"power" => 1, "symbol" => "M"}, "amount_of_substance" => {"power" => 1, "symbol" => "N"}, "short" => "molality", "names" => [{"value" => "molality", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A1E0L0I0M1H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd8", "type" => "nist"}, {"id" => "d:area", "type" => "unitsml"}], "length" => {"power" => 2, "symbol" => "L"}, "short" => "area", "names" => [{"value" => "area", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd80", "type" => "nist"}, {"id" => "d:ratio_quantity", "type" => "unitsml"}], "dimensionless" => true, "short" => "ratio_quantity", "names" => [{"value" => "ratio quantity", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd83", "type" => "nist"}, {"id" => "d:level_of_field_quantity", "type" => "unitsml"}], "dimensionless" => true, "short" => "level_of_field_quantity", "names" => [{"value" => "level of field quantity", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd84", "type" => "nist"}, {"id" => "d:field_power_level", "type" => "unitsml"}], "dimensionless" => true, "short" => "field_power_level", "names" => [{"value" => "field power level", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd85", "type" => "nist"}, {"id" => "d:mass_mole_fraction", "type" => "unitsml"}], "dimensionless" => true, "short" => "mass_mole_fraction", "names" => [{"value" => "mass mole fraction", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd9", "type" => "nist"}, {"id" => "d:plane_angle", "type" => "unitsml"}], "dimensionless" => true, "plane_angle" => {"power" => 1, "symbol" => "phi", "symbols" => [{"id" => "dim_phi", "ascii" => "phi", "html" => "𝞅", "latex" => "\\ensuremath{\\mathsf{\\phi}}", "mathml" => "φ", "unicode" => "𝞅"}]}, "short" => "plane_angle", "names" => [{"value" => "plane angle", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd94", "type" => "nist"}, {"id" => "d:acidity_index", "type" => "unitsml"}], "dimensionless" => true, "short" => "acidity_index", "names" => [{"value" => "acidity index", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd95", "type" => "nist"}, {"id" => "d:storage_capacity", "type" => "unitsml"}], "dimensionless" => true, "short" => "storage_capacity", "names" => [{"value" => "storage capacity", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd96", "type" => "nist"}, {"id" => "d:fluence", "type" => "unitsml"}], "length" => {"power" => -2, "symbol" => "L"}, "short" => "fluence", "names" => [{"value" => "fluence", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd97", "type" => "nist"}, {"id" => "d:fluence_rate", "type" => "unitsml"}], "length" => {"power" => -2, "symbol" => "L"}, "time" => {"power" => -1, "symbol" => "T"}, "short" => "fluence_rate", "names" => [{"value" => "fluence_rate", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T-1D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd98", "type" => "nist"}, {"id" => "d:phase", "type" => "unitsml"}], "dimensionless" => true, "plane_angle" => {"power" => 1, "symbol" => "phi"}, "short" => "phase", "names" => [{"value" => "phase", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd99", "type" => "nist"}, {"id" => "d:fuel_efficiency", "type" => "unitsml"}], "length" => {"power" => -2, "symbol" => "L"}, "short" => "fuel_efficiency", "names" => [{"value" => "fuel efficiency", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T0D0", "authority" => "qudt"}]}], "unit_systems" => [{"identifiers" => [{"id" => "SI_base", "type" => "nist"}, {"id" => "us:si-base", "type" => "unitsml"}], "names" => [{"value" => "SI base units", "lang" => "en"}], "short" => "si-base", "acceptable" => true, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/sou/SI", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "SI_compatible", "type" => "nist"}, {"id" => "us:si-compatible", "type" => "unitsml"}], "names" => [{"value" => "Units compatible with SI", "lang" => "en"}], "short" => "si-compatible", "acceptable" => true}, {"identifiers" => [{"id" => "SI_derived_non-special", "type" => "nist"}, {"id" => "us:si-derived-nonspecial", "type" => "unitsml"}], "names" => [{"value" => "SI-derived units non-special", "lang" => "en"}], "short" => "si-derived-nonspecial", "acceptable" => true}, {"identifiers" => [{"id" => "SI_derived_special", "type" => "nist"}, {"id" => "us:si-derived-special", "type" => "unitsml"}], "names" => [{"value" => "SI-derived units special", "lang" => "en"}], "short" => "si-derived-special", "acceptable" => true}, {"identifiers" => [{"id" => "non-SI_acceptable", "type" => "nist"}, {"id" => "us:nonsi-acceptable", "type" => "unitsml"}], "names" => [{"value" => "non-SI but acceptable", "lang" => "en"}], "short" => "nonsi-acceptable", "acceptable" => true}, {"identifiers" => [{"id" => "non-SI_nist_acceptable", "type" => "nist"}, {"id" => "us:nonsi-nist-acceptable", "type" => "unitsml"}], "names" => [{"value" => "non-SI but acceptable by NIST SP 811", "lang" => "en"}], "short" => "nonsi-nist-acceptable", "acceptable" => true}, {"identifiers" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}, {"id" => "us:nonsi-unacceptable", "type" => "unitsml"}], "names" => [{"value" => "non-SI and not acceptable", "lang" => "en"}], "short" => "nonsi-unacceptable", "acceptable" => false}]}.freeze) diff --git a/lib/unitsml/opal/payload_generator.rb b/lib/unitsml/opal/payload_generator.rb new file mode 100644 index 0000000..7cb5e33 --- /dev/null +++ b/lib/unitsml/opal/payload_generator.rb @@ -0,0 +1,57 @@ +# frozen_string_literal: true + +require "unitsdb" + +module Unitsml + module Opal + class PayloadGenerator + DEFAULT_OUTPUT_PATH = + File.expand_path("database_payload.rb", __dir__).freeze + + def initialize(unitsdb_data_dir: default_data_dir) + @unitsdb_data_dir = unitsdb_data_dir + end + + def call + "#{header}#{body}" + end + + def write_to(path = DEFAULT_OUTPUT_PATH) + File.write(path, call) + path + end + + private + + attr_reader :unitsdb_data_dir + + def header + <<~RUBY + # frozen_string_literal: true + + # AUTO-GENERATED by `bundle exec rake unitsml:generate_opal_payload`. + # Do not edit by hand. Edit the YAML in unitsdb-ruby/data/ and + # regenerate. This file is loaded by lib/unitsml/opal.rb under Opal + # to satisfy Unitsml::Unitsdb::Database.from_db without a filesystem. + RUBY + end + + def body + "Unitsml::Unitsdb::Database.const_set(:DATABASE, " \ + "#{database_hash.inspect}.freeze)\n" + end + + def database_hash + ::Unitsdb::Database.from_db(unitsdb_data_dir).to_hash + end + + def default_data_dir + File.join(unitsdb_gem_path, "data") + end + + def unitsdb_gem_path + Gem.loaded_specs.fetch("unitsdb").full_gem_path + end + end + end +end diff --git a/lib/unitsml/unitsdb.rb b/lib/unitsml/unitsdb.rb index 7efecc2..5ac7d6d 100644 --- a/lib/unitsml/unitsdb.rb +++ b/lib/unitsml/unitsdb.rb @@ -2,17 +2,18 @@ require "unitsdb" -require_relative "unitsdb/database" -require_relative "unitsdb/dimension_details" -require_relative "unitsdb/prefix_reference" -require_relative "unitsdb/dimension" -require_relative "unitsdb/dimensions" -require_relative "unitsdb/unit" -require_relative "unitsdb/units" -require_relative "unitsdb/prefixes" -require_relative "unitsdb/quantities" module Unitsml module Unitsdb + autoload :Database, "unitsml/unitsdb/database" + autoload :DimensionDetails, "unitsml/unitsdb/dimension_details" + autoload :PrefixReference, "unitsml/unitsdb/prefix_reference" + autoload :Dimension, "unitsml/unitsdb/dimension" + autoload :Dimensions, "unitsml/unitsdb/dimensions" + autoload :Unit, "unitsml/unitsdb/unit" + autoload :Units, "unitsml/unitsdb/units" + autoload :Prefixes, "unitsml/unitsdb/prefixes" + autoload :Quantities, "unitsml/unitsdb/quantities" + class << self REQUIRED_DATABASE_FILES = %w[ prefixes.yaml diff --git a/lib/unitsml/unitsdb/database.rb b/lib/unitsml/unitsdb/database.rb index 7a5be53..67bd69a 100644 --- a/lib/unitsml/unitsdb/database.rb +++ b/lib/unitsml/unitsdb/database.rb @@ -3,18 +3,34 @@ module Unitsml module Unitsdb class Database < ::Unitsdb::Database - DATABASE = nil - def self.from_db(dir_path, context: Unitsml::Configuration.context.id) return super unless RUBY_ENGINE == "opal" context_id = context.to_sym - raise Unitsml::Errors::OpalPayloadNotBundledError unless DATABASE + raise Unitsml::Errors::OpalPayloadNotBundledError unless opal_payload Unitsml::Configuration.context - from_hash(DATABASE, register: context_id) + from_hash(opal_payload, register: context_id) + end + + def self.load_opal_payload(payload) + @opal_payload = payload + end + + def self.reset_opal_payload + return unless instance_variable_defined?(:@opal_payload) + + remove_instance_variable(:@opal_payload) + end + + def self.opal_payload + return @opal_payload if instance_variable_defined?(:@opal_payload) + return unless const_defined?(:DATABASE, false) + + @opal_payload = const_get(:DATABASE, false) end + private_class_method :opal_payload Configuration.register_model(self, id: :database) end diff --git a/spec/unitsml/opal/payload_generator_spec.rb b/spec/unitsml/opal/payload_generator_spec.rb new file mode 100644 index 0000000..4219d2e --- /dev/null +++ b/spec/unitsml/opal/payload_generator_spec.rb @@ -0,0 +1,74 @@ +# frozen_string_literal: true + +require "spec_helper" +require "tmpdir" +require "unitsml/opal/payload_generator" + +HEADER_LINES = [ + "# frozen_string_literal: true\n", + "\n", + "# AUTO-GENERATED by `bundle exec rake unitsml:generate_opal_payload`.\n", + "# Do not edit by hand. Edit the YAML in unitsdb-ruby/data/ and\n", + "# regenerate. This file is loaded by lib/unitsml/opal.rb under Opal\n", + "# to satisfy Unitsml::Unitsdb::Database.from_db without a filesystem.\n", + "Unitsml::Unitsdb::Database.const_set(:DATABASE, ", +].freeze + +RSpec.describe Unitsml::Opal::PayloadGenerator do + let(:unitsdb_data_dir) do + File.join(Gem.loaded_specs.fetch("unitsdb").full_gem_path, "data") + end + + let(:real_database_hash) do + Unitsdb::Database.from_db(unitsdb_data_dir).to_hash + end + + def extract_hash_literal(source) + source.delete_prefix(HEADER_LINES.join).delete_suffix(".freeze)\n") + end + + describe "#call" do + subject(:source) { described_class.new.call } + + it "is marked frozen_string_literal: true" do + expect(source.lines.first).to eq("# frozen_string_literal: true\n") + end + + it "documents that the file is auto-generated" do + expect(source).to include("AUTO-GENERATED") + end + + it "defines DATABASE on Unitsml::Unitsdb::Database via const_set" do + expect(source) + .to match(/Unitsml::Unitsdb::Database\.const_set\(:DATABASE,/) + end + + it "freezes the payload hash" do + expect(source).to match(/\.freeze\)\n\z/) + end + + it "produces a hash that reproduces the source database" do + parsed = eval(extract_hash_literal(source)) # rubocop:disable Security/Eval + expect(parsed).to eq(real_database_hash) + end + end + + describe "#write_to" do + it "writes #call to the given path and returns the path" do + Dir.mktmpdir do |dir| + path = File.join(dir, "database_payload.rb") + returned = described_class.new.write_to(path) + + expect(returned).to eq(path) + expect(File.read(path)).to eq(described_class.new.call) + end + end + end + + describe "DEFAULT_OUTPUT_PATH" do + it "points at lib/unitsml/opal/database_payload.rb" do + expect(described_class::DEFAULT_OUTPUT_PATH) + .to end_with("lib/unitsml/opal/database_payload.rb") + end + end +end diff --git a/spec/unitsml/opal_boot_spec.rb b/spec/unitsml/opal_boot_spec.rb new file mode 100644 index 0000000..04e87e5 --- /dev/null +++ b/spec/unitsml/opal_boot_spec.rb @@ -0,0 +1,100 @@ +# frozen_string_literal: true + +require "spec_helper" +require "pathname" + +# Verifies the Opal boot file (lib/unitsml/opal.rb) stays in sync with +# the autoload declarations across the gem. Under Opal, autoloads do not +# lazy-execute, so the boot file eager-requires every entry point. If a +# new autoload is added without a matching require here, Opal users will +# hit NameError at runtime. +UPSTREAM_STUBS = %w[ + lutaml/model + lutaml/xml + unitsdb + unitsdb/opal + mml + mml/opal + omml + omml/opal + ox + htmlentities + parslet + plurimath + nokogiri +].freeze + +RSpec.describe "Unitsml Opal boot file" do # rubocop:disable RSpec/DescribeClass + let(:gem_root) { Pathname.new(__dir__).join("..", "..").expand_path } + let(:lib_root) { gem_root.join("lib") } + let(:boot_file) { lib_root.join("unitsml", "opal.rb") } + let(:boot_source) { boot_file.read } + + def autoload_paths_in(file) + source = file.read + pattern = /^\s*autoload\s+:[A-Za-z_][A-Za-z0-9_]*,?\s*["']([^"']+)["']/ + source.scan(pattern).flatten + end + + def autoload_source_files + [ + "unitsml.rb", + "unitsml/unitsdb.rb", + "unitsml/errors.rb", + "unitsml/model.rb", + "unitsml/model/dimension_quantities.rb", + "unitsml/model/prefixes.rb", + "unitsml/model/quantities.rb", + "unitsml/model/units.rb", + ].map { |relative| lib_root.join(relative) } + end + + def all_autoload_paths + autoload_source_files.flat_map { |file| autoload_paths_in(file) }.uniq + end + + def boot_required_paths + boot_source.scan(/^require\s+["']([^"']+)["']/).flatten + end + + describe "static structure" do + it "exists at lib/unitsml/opal.rb" do + expect(boot_file).to exist + end + + it "is syntactically valid Ruby" do + expect do + RubyVM::AbstractSyntaxTree.parse(boot_source) + end.not_to raise_error + end + + it "requires every autoloaded entry point so Opal eager-loads them" do + missing = all_autoload_paths - boot_required_paths + expect(missing).to be_empty, + "The following autoloads are not eager-required by " \ + "lib/unitsml/opal.rb — Opal users will see " \ + "NameError: #{missing.inspect}" + end + + it "requires unitsml/opal/database_payload so DATABASE is defined" do + expect(boot_required_paths).to include("unitsml/opal/database_payload"), + "boot file must require " \ + "unitsml/opal/database_payload so " \ + "Unitsml::Unitsdb::Database::DATABASE " \ + "is set under Opal" + end + end + + describe "Opal builder compilation", :opal do + it "compiles under Opal when external deps are stubbed" do + require "opal" + require "opal/builder" + + builder = Opal::Builder.new + builder.append_paths(lib_root.to_s) + builder.stubs += UPSTREAM_STUBS + + expect { builder.build("unitsml/opal") }.not_to raise_error + end + end +end diff --git a/spec/unitsml/payload_sync_spec.rb b/spec/unitsml/payload_sync_spec.rb new file mode 100644 index 0000000..d61222d --- /dev/null +++ b/spec/unitsml/payload_sync_spec.rb @@ -0,0 +1,49 @@ +# frozen_string_literal: true + +require "spec_helper" +require "pathname" +require "unitsml/opal/payload_generator" + +# Verifies that the committed lib/unitsml/opal/database_payload.rb is in +# sync with what the PayloadGenerator produces from the current unitsdb +# gem. Catches drift when unitsdb is bumped or its YAML data changes. +RSpec.describe "committed Opal database payload" do # rubocop:disable RSpec/DescribeClass + let(:committed_payload_path) do + Pathname.new(__dir__).join("..", "..", "lib", "unitsml", "opal").expand_path + .join("database_payload.rb") + end + + let(:committed_source) { File.read(committed_payload_path) } + + let(:generator_source) { Unitsml::Opal::PayloadGenerator.new.call } + + def extract_hash_literal(source) + prefix = "Unitsml::Unitsdb::Database.const_set(:DATABASE, " + suffix = ".freeze)\n" + non_comment = source.each_line.reject do |line| + line.start_with?("#") || line.strip.empty? + end + non_comment.join.delete_prefix(prefix).delete_suffix(suffix) + end + + it "exists at lib/unitsml/opal/database_payload.rb" do + expect(committed_payload_path).to exist + end + + it "is marked frozen_string_literal: true" do + expect(committed_source.lines.first) + .to eq("# frozen_string_literal: true\n") + end + + it "matches the generator output byte-for-byte" do + expect(committed_source).to eq(generator_source) + end + + it "round-trips through Unitsml::Unitsdb::Database.from_hash" do + payload = eval(extract_hash_literal(committed_source)) # rubocop:disable Security/Eval + reconstructed = Unitsml::Unitsdb::Database.from_hash(payload) + + expect(reconstructed).to be_a(Unitsml::Unitsdb::Database) + expect(reconstructed.units.size).to be_positive + end +end diff --git a/spec/unitsml/unitsdb/database_spec.rb b/spec/unitsml/unitsdb/database_spec.rb index cfe495f..b94c0f8 100644 --- a/spec/unitsml/unitsdb/database_spec.rb +++ b/spec/unitsml/unitsdb/database_spec.rb @@ -23,12 +23,44 @@ context "when running on opal" do before { stub_const("RUBY_ENGINE", "opal") } + around do |example| + described_class.reset_opal_payload + example.run + described_class.reset_opal_payload + end + it "raises a clear error when the bundled payload is missing" do expect do described_class.from_db("/does/not/matter", context: :unitsml_ruby) end.to raise_error(Unitsml::Errors::OpalPayloadNotBundledError, /not bundled/) end + + it "loads a payload injected via load_opal_payload" do # rubocop:disable RSpec/ExampleLength + payload = { "units" => [], "schema_version" => "2.0.0" } + described_class.load_opal_payload(payload) + allow(described_class).to receive(:from_hash).and_return(:database) + + result = described_class.from_db("/does/not/matter", + context: :unitsml_ruby) + + expect(result).to eq(:database) + expect(described_class).to have_received(:from_hash) + .with(payload, register: :unitsml_ruby) + end + + it "falls back to a committed DATABASE constant" do # rubocop:disable RSpec/ExampleLength + payload = { "units" => [:from_const] } + subclass = Class.new(described_class) + subclass.const_set(:DATABASE, payload) + allow(subclass).to receive(:from_hash).and_return(:database) + + result = subclass.from_db("/does/not/matter", context: :unitsml_ruby) + + expect(result).to eq(:database) + expect(subclass).to have_received(:from_hash) + .with(payload, register: :unitsml_ruby) + end end end From 87652e3cab063e5daf3cdf382860abb7c9971bc3 Mon Sep 17 00:00:00 2001 From: Ronald Tse Date: Sat, 27 Jun 2026 16:06:28 +0800 Subject: [PATCH 2/2] fix: deterministic payload serializer across Ruby versions Hash#inspect changed between Ruby 3.3 and 3.4 to add spaces around "=>". The committed payload file is generated on whichever Ruby the maintainer runs, but the payload_sync_spec runs on every supported Ruby in CI -- so a 3.3 maintainer committing the file would fail CI on 3.4, and vice versa. Replace Hash#inspect with a recursive serializer that produces byte-identical output across Rubies. Strings still use inspect (which is stable for UTF-8 clean data). --- lib/unitsml/opal/database_payload.rb | 2 +- lib/unitsml/opal/payload_generator.rb | 23 ++++++++++++++++++++++- 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/lib/unitsml/opal/database_payload.rb b/lib/unitsml/opal/database_payload.rb index 5da4d73..1e16f7f 100644 --- a/lib/unitsml/opal/database_payload.rb +++ b/lib/unitsml/opal/database_payload.rb @@ -4,4 +4,4 @@ # Do not edit by hand. Edit the YAML in unitsdb-ruby/data/ and # regenerate. This file is loaded by lib/unitsml/opal.rb under Opal # to satisfy Unitsml::Unitsdb::Database.from_db without a filesystem. -Unitsml::Unitsdb::Database.const_set(:DATABASE, {"schema_version" => "2.0.0", "units" => [{"identifiers" => [{"id" => "NISTu1", "type" => "nist"}, {"id" => "u:meter", "type" => "unitsml"}], "short" => "meter", "root" => true, "unit_system_reference" => [{"id" => "si-base", "type" => "unitsml"}], "names" => [{"value" => "metre", "lang" => "en"}, {"value" => "meter", "lang" => "en"}, {"value" => "mètre", "lang" => "fr"}], "symbols" => [{"id" => "m", "ascii" => "m", "html" => "m", "latex" => "\\ensuremath{\\mathrm{m}}", "mathml" => "m", "unicode" => "m"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}, {"id" => "NISTq100", "type" => "nist"}, {"id" => "NISTq101", "type" => "nist"}, {"id" => "NISTq102", "type" => "nist"}, {"id" => "NISTq103", "type" => "nist"}, {"id" => "NISTq104", "type" => "nist"}, {"id" => "NISTq105", "type" => "nist"}, {"id" => "NISTq114", "type" => "nist"}, {"id" => "NISTq48", "type" => "nist"}, {"id" => "NISTq95", "type" => "nist"}, {"id" => "NISTq96", "type" => "nist"}, {"id" => "NISTq97", "type" => "nist"}, {"id" => "NISTq98", "type" => "nist"}, {"id" => "NISTq99", "type" => "nist"}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/metre", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:base-unit:code:m", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/M", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu1.u3e-1/1", "type" => "nist"}, {"id" => "u:meter_per_second", "type" => "unitsml"}], "short" => "meter_per_second", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "meter per second", "lang" => "en"}], "symbols" => [{"id" => "m*s^-1", "ascii" => "m*s^-1", "html" => "m/s", "latex" => "\\ensuremath{\\mathrm{m/s}}", "mathml" => "m/s", "unicode" => "m·s⁻¹"}], "quantity_references" => [{"id" => "NISTq107", "type" => "nist"}, {"id" => "NISTq116", "type" => "nist"}, {"id" => "NISTq117", "type" => "nist"}, {"id" => "NISTq12", "type" => "nist"}], "root_units" => [{"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu1.u3e-2/1", "type" => "nist"}, {"id" => "u:meter_per_second_squared", "type" => "unitsml"}], "short" => "meter_per_second_squared", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "meter per second squared", "lang" => "en"}], "symbols" => [{"id" => "m*s^-2", "ascii" => "m*s^-2", "html" => "m/s2", "latex" => "\\ensuremath{\\mathrm{m/s^2}}", "mathml" => "m/s2", "unicode" => "m·s⁻²"}], "quantity_references" => [{"id" => "NISTq108", "type" => "nist"}, {"id" => "NISTq49", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu10", "type" => "nist"}, {"id" => "u:steradian", "type" => "unitsml"}], "short" => "steradian", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "steradian", "lang" => "en"}, {"value" => "stéradian", "lang" => "fr"}], "symbols" => [{"id" => "sr", "ascii" => "sr", "html" => "sr", "latex" => "\\ensuremath{\\mathrm{sr}}", "mathml" => "sr", "unicode" => "sr"}], "quantity_references" => [{"id" => "NISTq11", "type" => "nist"}], "si_derived_bases" => [{"power" => 1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/steradian", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:sr", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/SR", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu100", "type" => "nist"}, {"id" => "u:rem", "type" => "unitsml"}], "short" => "rem", "root" => true, "unit_system_reference" => [{"id" => "non-SI_nist_acceptable", "type" => "nist"}, {"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "rem", "lang" => "en"}], "symbols" => [{"id" => "rem", "ascii" => "rem", "html" => "rem", "latex" => "\\ensuremath{\\mathrm{rem}}", "mathml" => "rem", "unicode" => "rem"}], "quantity_references" => [{"id" => "NISTq39", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/REM", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu106", "type" => "nist"}, {"id" => "u:year_365", "type" => "unitsml"}], "short" => "year_365", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "year (365 days)", "lang" => "en"}, {"value" => "year", "lang" => "en"}], "symbols" => [{"id" => "a_year", "ascii" => "a", "html" => "a", "latex" => "\\ensuremath{\\mathrm{a}}", "mathml" => "a", "unicode" => "a"}], "quantity_references" => [{"id" => "NISTq3", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:iso1000:code:a", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/YR", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu107", "type" => "nist"}, {"id" => "u:foot_per_minute", "type" => "unitsml"}], "short" => "foot_per_minute", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "foot per minute", "lang" => "en"}], "symbols" => [{"id" => "ft*min^-1", "ascii" => "ft*min^-1", "html" => "ft/min", "latex" => "\\ensuremath{\\mathrm{ft/min}}", "mathml" => "ft/min", "unicode" => "ft·min⁻¹"}], "quantity_references" => [{"id" => "NISTq12", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu78", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu36", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FT-PER-MIN", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu108", "type" => "nist"}, {"id" => "u:foot_per_second", "type" => "unitsml"}], "short" => "foot_per_second", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "foot per second", "lang" => "en"}], "symbols" => [{"id" => "ft*s^-1", "ascii" => "ft*s^-1", "html" => "ft/s", "latex" => "\\ensuremath{\\mathrm{ft/s}}", "mathml" => "ft/s", "unicode" => "ft·s⁻¹"}], "quantity_references" => [{"id" => "NISTq12", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu78", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FT-PER-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu109", "type" => "nist"}, {"id" => "u:inch_per_second", "type" => "unitsml"}], "short" => "inch_per_second", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "inch per second", "lang" => "en"}], "symbols" => [{"id" => "in*s^-1", "ascii" => "in*s^-1", "html" => "in/s", "latex" => "\\ensuremath{\\mathrm{in/s}}", "mathml" => "in/s", "unicode" => "in·s⁻¹"}], "quantity_references" => [{"id" => "NISTq12", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu8", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/IN-PER-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu11", "type" => "nist"}, {"id" => "u:newton", "type" => "unitsml"}], "short" => "newton", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "newton", "lang" => "en"}, {"value" => "newton", "lang" => "fr"}], "symbols" => [{"id" => "N", "ascii" => "N", "html" => "N", "latex" => "\\ensuremath{\\mathrm{N}}", "mathml" => "N", "unicode" => "N"}], "quantity_references" => [{"id" => "NISTq13", "type" => "nist"}], "si_derived_bases" => [{"power" => 1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/newton", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:N", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/N", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu11.u1", "type" => "nist"}, {"id" => "u:newton_meter", "type" => "unitsml"}], "short" => "newton_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "newton meter", "lang" => "en"}], "symbols" => [{"id" => "N*m", "ascii" => "N*m", "html" => "N · m", "latex" => "\\ensuremath{\\mathrm{N\\cdot m}}", "mathml" => "N·m", "unicode" => "N·m"}], "quantity_references" => [{"id" => "NISTq184", "type" => "nist"}, {"id" => "NISTq185", "type" => "nist"}, {"id" => "NISTq60", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu11", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/N-M", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu11.u1.u3", "type" => "nist"}, {"id" => "u:newton_meter_second", "type" => "unitsml"}], "short" => "newton_meter_second", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "newton meter second", "lang" => "en"}], "symbols" => [{"id" => "N*m*s", "ascii" => "N*m*s", "html" => "N · m · s", "latex" => "\\ensuremath{\\mathrm{N\\cdot m\\cdot s}}", "mathml" => "N·m·s", "unicode" => "N·m·s"}], "quantity_references" => [{"id" => "NISTq133", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu11", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/N-M-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu11.u1e-1/1", "type" => "nist"}, {"id" => "u:newton_per_meter", "type" => "unitsml"}], "short" => "newton_per_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "newton per meter", "lang" => "en"}], "symbols" => [{"id" => "N*m^-1", "ascii" => "N*m^-1", "html" => "N/m", "latex" => "\\ensuremath{\\mathrm{N/m}}", "mathml" => "N/m", "unicode" => "N/m"}], "quantity_references" => [{"id" => "NISTq61", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu11", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/N-PER-M", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu11.u1e2/1.u27p10'3e-2/1", "type" => "nist"}, {"id" => "u:newton_meter_squared_per_kilogram_squared", "type" => "unitsml"}], "short" => "newton_meter_squared_per_kilogram_squared", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "newton meter squared per kilogram squared", "lang" => "en"}], "symbols" => [{"id" => "N*m^2*kg^-2", "ascii" => "N*m^2*kg^-2", "html" => "N · m2/kg 2", "latex" => "\\ensuremath{\\mathrm{N\\cdot m^2/kg^2}}", "mathml" => "N·m2/kg2", "unicode" => "N·m²/kg²"}], "quantity_references" => [{"id" => "NISTq130", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu11", "type" => "nist"}}, {"power" => 2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/N-M2-PER-KiloGM2", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu11.u3", "type" => "nist"}, {"id" => "u:newton_second", "type" => "unitsml"}], "short" => "newton_second", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "newton second", "lang" => "en"}], "symbols" => [{"id" => "N*s", "ascii" => "N*s", "html" => "N · s", "latex" => "\\ensuremath{\\mathrm{N\\cdot s}}", "mathml" => "N·s", "unicode" => "N·s"}], "quantity_references" => [{"id" => "NISTq129", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu11", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/N-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu110", "type" => "nist"}, {"id" => "u:mile_per_hour", "type" => "unitsml"}], "short" => "mile_per_hour", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "mile per hour", "lang" => "en"}], "symbols" => [{"id" => "mi*h^-1", "ascii" => "mi*h^-1", "html" => "mi/h", "latex" => "\\ensuremath{\\mathrm{mi/h}}", "mathml" => "mi/h", "unicode" => "mi·h⁻¹"}], "quantity_references" => [{"id" => "NISTq12", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu83", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu37", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MI-PER-HR", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu111", "type" => "nist"}, {"id" => "u:mile_per_minute", "type" => "unitsml"}], "short" => "mile_per_minute", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "mile per minute", "lang" => "en"}], "symbols" => [{"id" => "mi*min^-1", "ascii" => "mi*min^-1", "html" => "mi/min", "latex" => "\\ensuremath{\\mathrm{mi/min}}", "mathml" => "mi/min", "unicode" => "mi·min⁻¹"}], "quantity_references" => [{"id" => "NISTq12", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu83", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu36", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MI-PER-MIN", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu112", "type" => "nist"}, {"id" => "u:mile_per_second", "type" => "unitsml"}], "short" => "mile_per_second", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "mile per second", "lang" => "en"}], "symbols" => [{"id" => "mi*s^-1", "ascii" => "mi*s^-1", "html" => "mi/s", "latex" => "\\ensuremath{\\mathrm{mi/s}}", "mathml" => "mi/s", "unicode" => "mi·s⁻¹"}], "quantity_references" => [{"id" => "NISTq12", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu83", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MI-PER-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu115", "type" => "nist"}, {"id" => "u:stere", "type" => "unitsml"}], "short" => "stere", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "stere", "lang" => "en"}], "symbols" => [{"id" => "st", "ascii" => "st", "html" => "st", "latex" => "\\ensuremath{\\mathrm{st}}", "mathml" => "st", "unicode" => "st"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "root_units" => [{"power" => 3, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "ucum:unit:misc:code:st", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/STR", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu116", "type" => "nist"}, {"id" => "u:gamma", "type" => "unitsml"}], "short" => "gamma", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "gamma", "lang" => "en"}], "symbols" => [{"id" => "gamma", "ascii" => "gamma", "html" => "γ", "latex" => "\\ensuremath{\\gamma}}", "mathml" => "γ", "unicode" => "γ"}], "quantity_references" => [{"id" => "NISTq14", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu21", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_-9", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/GAMMA", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu117", "type" => "nist"}, {"id" => "u:ec_therm", "type" => "unitsml"}], "short" => "ec_therm", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "therm (EC)", "lang" => "en"}], "symbols" => [{"id" => "thm (EC)", "ascii" => "thm (EC)", "html" => "thm (EC)", "latex" => "\\ensuremath{\\mathrm{thm (EC)}}", "mathml" => "thm (EC)", "unicode" => "thm (EC)"}], "quantity_references" => [{"id" => "NISTq17", "type" => "nist"}, {"id" => "NISTq18", "type" => "nist"}, {"id" => "NISTq182", "type" => "nist"}, {"id" => "NISTq183", "type" => "nist"}, {"id" => "NISTq19", "type" => "nist"}, {"id" => "NISTq77", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/THERM_EC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu118", "type" => "nist"}, {"id" => "u:roentgen", "type" => "unitsml"}], "short" => "roentgen", "root" => true, "unit_system_reference" => [{"id" => "non-SI_nist_acceptable", "type" => "nist"}, {"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "roentgen", "lang" => "en"}], "symbols" => [{"id" => "R", "ascii" => "R", "html" => "R", "latex" => "\\ensuremath{\\mathrm{R}}", "mathml" => "R", "unicode" => "R"}], "quantity_references" => [{"id" => "NISTq75", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:cgs:code:R", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/R", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu119", "type" => "nist"}, {"id" => "u:gauss", "type" => "unitsml"}], "short" => "gauss", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "gauss", "lang" => "en"}], "symbols" => [{"id" => "Gs", "ascii" => "Gs", "html" => "Gs", "latex" => "\\ensuremath{\\mathrm{Gs}}", "mathml" => "Gs", "unicode" => "Gs"}, {"id" => "G", "ascii" => "G", "html" => "G", "latex" => "\\ensuremath{\\mathrm{G}}", "mathml" => "G", "unicode" => "G"}], "quantity_references" => [{"id" => "NISTq14", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:cgs:code:G", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/GAUSS", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu12", "type" => "nist"}, {"id" => "u:pascal", "type" => "unitsml"}], "short" => "pascal", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "pascal", "lang" => "en"}, {"value" => "pascal", "lang" => "fr"}], "symbols" => [{"id" => "Pa", "ascii" => "Pa", "html" => "Pa", "latex" => "\\ensuremath{\\mathrm{Pa}}", "mathml" => "Pa", "unicode" => "Pa"}], "quantity_references" => [{"id" => "NISTq134", "type" => "nist"}, {"id" => "NISTq135", "type" => "nist"}, {"id" => "NISTq141", "type" => "nist"}, {"id" => "NISTq142", "type" => "nist"}, {"id" => "NISTq143", "type" => "nist"}, {"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "si_derived_bases" => [{"power" => -1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/pascal", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:Pa", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/PA", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu12.u3", "type" => "nist"}, {"id" => "u:pascal_second", "type" => "unitsml"}], "short" => "pascal_second", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "pascal second", "lang" => "en"}], "symbols" => [{"id" => "Pa*s", "ascii" => "Pa*s", "html" => "Pa · s", "latex" => "\\ensuremath{\\mathrm{Pa\\cdot s}}", "mathml" => "Pa·s", "unicode" => "Pa·s"}], "quantity_references" => [{"id" => "NISTq59", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu12", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/PA-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu12.u5e-1/1", "type" => "nist"}, {"id" => "u:pascal_per_kelvin", "type" => "unitsml"}], "short" => "pascal_per_kelvin", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "pascal per kelvin", "lang" => "en"}], "symbols" => [{"id" => "Pa*K^-1", "ascii" => "Pa*K^-1", "html" => "Pa/K", "latex" => "\\ensuremath{\\mathrm{Pa/K}}", "mathml" => "Pa/K", "unicode" => "Pa/K"}], "quantity_references" => [{"id" => "NISTq159", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu12", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu5", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/PA-PER-K", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu120", "type" => "nist"}, {"id" => "u:kayser", "type" => "unitsml"}], "short" => "kayser", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "kayser", "lang" => "en"}], "symbols" => [{"id" => "kayser", "ascii" => "K", "html" => "K", "latex" => "\\ensuremath{\\mathrm{K}}", "mathml" => "K", "unicode" => "K"}], "quantity_references" => [{"id" => "NISTq50", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:cgs:code:Ky", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/KY", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu121", "type" => "nist"}, {"id" => "u:centistokes", "type" => "unitsml"}], "short" => "centistokes", "root" => false, "prefixed" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "centistokes", "lang" => "en"}], "symbols" => [{"id" => "cSt", "ascii" => "cSt", "html" => "cSt", "latex" => "\\ensuremath{\\mathrm{cSt}}", "mathml" => "cSt", "unicode" => "cSt"}], "quantity_references" => [{"id" => "NISTq85", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu142", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_-2", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/CentiST", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu122", "type" => "nist"}, {"id" => "u:micron", "type" => "unitsml"}], "short" => "micron", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "micron", "lang" => "en"}], "symbols" => [{"id" => "micron", "ascii" => "micron", "html" => "μ", "latex" => "\\ensuremath{\\mathrm{mu}}", "mathml" => "μ", "unicode" => "μ"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}, {"id" => "NISTq48", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_-6", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu123", "type" => "nist"}, {"id" => "u:mil (length)", "type" => "unitsml"}], "short" => "mil (length)", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "mil (length)", "lang" => "en"}, {"value" => "mil", "lang" => "en"}, {"value" => "thou", "lang" => "en"}], "symbols" => [{"id" => "mil", "ascii" => "mil", "html" => "mil", "latex" => "\\ensuremath{\\mathrm{mil}}", "mathml" => "mil", "unicode" => "mil"}, {"id" => "thou", "ascii" => "thou", "html" => "thou", "latex" => "\\ensuremath{\\mathrm{thou}}", "mathml" => "thou", "unicode" => "thou"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}, {"id" => "NISTq48", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu8", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_-3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[mil_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MilLength", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu124", "type" => "nist"}, {"id" => "u:stilb", "type" => "unitsml"}], "short" => "stilb", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "stilb", "lang" => "en"}], "symbols" => [{"id" => "sb", "ascii" => "sb", "html" => "sb", "latex" => "\\ensuremath{\\mathrm{sb}}", "mathml" => "sb", "unicode" => "sb"}], "quantity_references" => [{"id" => "NISTq56", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:cgs:code:sb", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/STILB", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu125", "type" => "nist"}, {"id" => "u:kilogram_force_second_squared_per_meter", "type" => "unitsml"}], "short" => "kilogram_force_second_squared_per_meter", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "kilogram-force second squared per meter", "lang" => "en"}], "symbols" => [{"id" => "kgf*s^2/m", "ascii" => "kgf*s^2/m", "html" => "kgf · s2/m", "latex" => "\\ensuremath{\\mathrm{kgf\\cdot s^2/m}}", "mathml" => "kgf·s", "unicode" => "kgf·s²m⁻¹"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu196", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => 2, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu126", "type" => "nist"}, {"id" => "u:kilogram_force_meter", "type" => "unitsml"}], "short" => "kilogram_force_meter", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "kilogram-force meter", "lang" => "en"}], "symbols" => [{"id" => "kgf*m", "ascii" => "kgf*m", "html" => "kgf · m", "latex" => "\\ensuremath{\\mathrm{kgf\\cdot m}}", "mathml" => "kgf·m", "unicode" => "kgf·m"}], "quantity_references" => [{"id" => "NISTq17", "type" => "nist"}, {"id" => "NISTq18", "type" => "nist"}, {"id" => "NISTq184", "type" => "nist"}, {"id" => "NISTq185", "type" => "nist"}, {"id" => "NISTq60", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu196", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/KiloGM_F-M", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu127", "type" => "nist"}, {"id" => "u:electric_horsepower", "type" => "unitsml"}], "short" => "electric_horsepower", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "horsepower, electric", "lang" => "en"}, {"value" => "electric horsepower", "lang" => "en"}], "symbols" => [{"id" => "hp_electric", "ascii" => "hp", "html" => "hp", "latex" => "\\ensuremath{\\mathrm{hp}}", "mathml" => "hp", "unicode" => "hp"}], "quantity_references" => [{"id" => "NISTq20", "type" => "nist"}, {"id" => "NISTq21", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/HP_Electric", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu128", "type" => "nist"}, {"id" => "u:poise", "type" => "unitsml"}], "short" => "poise", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "poise", "lang" => "en"}], "symbols" => [{"id" => "P", "ascii" => "P", "html" => "P", "latex" => "\\ensuremath{\\mathrm{P}}", "mathml" => "P", "unicode" => "P"}], "quantity_references" => [{"id" => "NISTq59", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:cgs:code:P", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/POISE", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu129", "type" => "nist"}, {"id" => "u:rhe", "type" => "unitsml"}], "short" => "rhe", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "rhe", "lang" => "en"}], "symbols" => [{"id" => "rhe", "ascii" => "rhe", "html" => "rhe", "latex" => "\\ensuremath{\\mathrm{rhe}}", "mathml" => "rhe", "unicode" => "rhe"}], "quantity_references" => [{"id" => "NISTq91", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/RHE", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu12e-1/1", "type" => "nist"}, {"id" => "u:pascal_to_the_power_minus_one", "type" => "unitsml"}], "short" => "pascal_to_the_power_minus_one", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "pascal to the power minus one", "lang" => "en"}], "symbols" => [{"id" => "Pa^-1", "ascii" => "Pa^-1", "html" => "Pa-1", "latex" => "\\ensuremath{\\mathrm{Pa^{-1}}}", "mathml" => "Pa1", "unicode" => "Pa⁻¹"}], "quantity_references" => [{"id" => "NISTq139", "type" => "nist"}, {"id" => "NISTq160", "type" => "nist"}], "root_units" => [{"power" => -1, "unit_reference" => {"id" => "NISTu12", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu13", "type" => "nist"}, {"id" => "u:joule", "type" => "unitsml"}], "short" => "joule", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "joule", "lang" => "en"}, {"value" => "joule", "lang" => "fr"}], "symbols" => [{"id" => "J", "ascii" => "J", "html" => "J", "latex" => "\\ensuremath{\\mathrm{J}}", "mathml" => "J", "unicode" => "J"}], "quantity_references" => [{"id" => "NISTq152", "type" => "nist"}, {"id" => "NISTq153", "type" => "nist"}, {"id" => "NISTq17", "type" => "nist"}, {"id" => "NISTq18", "type" => "nist"}, {"id" => "NISTq182", "type" => "nist"}, {"id" => "NISTq183", "type" => "nist"}, {"id" => "NISTq19", "type" => "nist"}, {"id" => "NISTq77", "type" => "nist"}], "si_derived_bases" => [{"power" => 2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/joule", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:J", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/J", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu13.u1e-3/1", "type" => "nist"}, {"id" => "u:joule_per_cubic_meter", "type" => "unitsml"}], "short" => "joule_per_cubic_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "joule per cubic meter", "lang" => "en"}], "symbols" => [{"id" => "J*m^-3", "ascii" => "J*m^-3", "html" => "J/m3", "latex" => "\\ensuremath{\\mathrm{J/m^3}}", "mathml" => "J/m3", "unicode" => "J/m³"}], "quantity_references" => [{"id" => "NISTq67", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu13", "type" => "nist"}}, {"power" => -3, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/J-PER-M3", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu13.u27p10'3e-1/1", "type" => "nist"}, {"id" => "u:joule_per_kilogram", "type" => "unitsml"}], "short" => "joule_per_kilogram", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "joule per kilogram", "lang" => "en"}], "symbols" => [{"id" => "J*kg^-1", "ascii" => "J*kg^-1", "html" => "J/kg", "latex" => "\\ensuremath{\\mathrm{J/kg}}", "mathml" => "J/kg", "unicode" => "J/kg"}], "quantity_references" => [{"id" => "NISTq65", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu13", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/J-PER-KiloGM", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu13.u27p10'3e-1/1.u5e-1/1", "type" => "nist"}, {"id" => "u:joule_per_kilogram_kelvin", "type" => "unitsml"}], "short" => "joule_per_kilogram_kelvin", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "joule per kilogram kelvin", "lang" => "en"}], "symbols" => [{"id" => "J*kg^-1*K^-1", "ascii" => "J*kg^-1*K^-1", "html" => "J/(kg · K)", "latex" => "\\ensuremath{\\mathrm{J/(kg\\cdot K)}}", "mathml" => "J/(kg·K)", "unicode" => "J/(kg·K)"}], "quantity_references" => [{"id" => "NISTq64", "type" => "nist"}, {"id" => "NISTq80", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu13", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu5", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/J-PER-KiloGM-K", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu13.u3", "type" => "nist"}, {"id" => "u:joule_second", "type" => "unitsml"}], "short" => "joule_second", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "joule second", "lang" => "en"}], "symbols" => [{"id" => "J*s", "ascii" => "J*s", "html" => "J · s", "latex" => "\\ensuremath{\\mathrm{J\\cdot s}}", "mathml" => "J·s", "unicode" => "J·s"}], "quantity_references" => [{"id" => "NISTq154", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu13", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/J-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu13.u5e-1/1", "type" => "nist"}, {"id" => "u:joule_per_kelvin", "type" => "unitsml"}], "short" => "joule_per_kelvin", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "joule per kelvin", "lang" => "en"}], "symbols" => [{"id" => "J*K^-1", "ascii" => "J*K^-1", "html" => "J/K", "latex" => "\\ensuremath{\\mathrm{J/K}}", "mathml" => "J/K", "unicode" => "J/K"}], "quantity_references" => [{"id" => "NISTq63", "type" => "nist"}, {"id" => "NISTq79", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu13", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu5", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/J-PER-K", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu13.u6e-1/1", "type" => "nist"}, {"id" => "u:joule_per_mole", "type" => "unitsml"}], "short" => "joule_per_mole", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "joule per mole", "lang" => "en"}], "symbols" => [{"id" => "J*mol^-1", "ascii" => "J*mol^-1", "html" => "J/mol", "latex" => "\\ensuremath{\\mathrm{J/mol}}", "mathml" => "J/mol", "unicode" => "J/mol"}], "quantity_references" => [{"id" => "NISTq73", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu13", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu6", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/J-PER-MOL", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu13.u6e-1/1.u5e-1/1", "type" => "nist"}, {"id" => "u:joule_per_mole_kelvin", "type" => "unitsml"}], "short" => "joule_per_mole_kelvin", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "joule per mole kelvin", "lang" => "en"}], "symbols" => [{"id" => "J*mol^-1*K^-1", "ascii" => "J*mol^-1*K^-1", "html" => "J/(mol · K)", "latex" => "\\ensuremath{\\mathrm{J/(mol\\cdot K)}}", "mathml" => "J/(mol·K)", "unicode" => "J/(mol·K)"}], "quantity_references" => [{"id" => "NISTq74", "type" => "nist"}, {"id" => "NISTq83", "type" => "nist"}], "root_units" => [{"power" => -1, "unit_reference" => {"id" => "NISTu5", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/J-PER-MOL-K", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu130", "type" => "nist"}, {"id" => "u:liter", "type" => "unitsml"}], "short" => "liter", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "litre", "lang" => "en"}, {"value" => "liter", "lang" => "en"}, {"value" => "litre", "lang" => "fr"}], "symbols" => [{"id" => "l", "ascii" => "l", "html" => "l", "latex" => "\\ensuremath{\\mathrm{l}}", "mathml" => "l", "unicode" => "l"}, {"id" => "L", "ascii" => "L", "html" => "L", "latex" => "\\ensuremath{\\mathrm{L}}", "mathml" => "L", "unicode" => "L"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/litre", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:iso1000:code:l", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/L", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu131", "type" => "nist"}, {"id" => "u:nautical_mile", "type" => "unitsml"}], "short" => "nautical_mile", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "nautical mile", "lang" => "en"}], "symbols" => [{"id" => "M", "ascii" => "M", "html" => "M", "latex" => "\\ensuremath{\\mathrm{M}}", "mathml" => "M", "unicode" => "M"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}, {"id" => "NISTq48", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[nmi_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MI_N", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu133", "type" => "nist"}, {"id" => "u:degree_Fahrenheit", "type" => "unitsml"}], "short" => "degree_Fahrenheit", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "degree Fahrenheit", "lang" => "en"}], "symbols" => [{"id" => "degF", "ascii" => "degF", "html" => "°F", "latex" => "\\ensuremath{\\mathrm{^{\\circ}F}}", "mathml" => "°F", "unicode" => "°F"}], "quantity_references" => [{"id" => "NISTq175", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:heat:code:[degF]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/DEG_F", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_interval", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu134", "type" => "nist"}, {"id" => "u:standard_atmosphere", "type" => "unitsml"}], "short" => "standard_atmosphere", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "standard atmosphere", "lang" => "en"}], "symbols" => [{"id" => "atm", "ascii" => "atm", "html" => "atm", "latex" => "\\ensuremath{\\mathrm{atm}}", "mathml" => "atm", "unicode" => "atm"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:const:code:atm", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/ATM", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu135", "type" => "nist"}, {"id" => "u:technical_atmosphere", "type" => "unitsml"}], "short" => "technical_atmosphere", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "technical atmosphere", "lang" => "en"}], "symbols" => [{"id" => "at", "ascii" => "at", "html" => "at", "latex" => "\\ensuremath{\\mathrm{at}}", "mathml" => "at", "unicode" => "at"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:misc:code:att", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/ATM_T", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu14", "type" => "nist"}, {"id" => "u:watt", "type" => "unitsml"}], "short" => "watt", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "watt", "lang" => "en"}, {"value" => "watt", "lang" => "fr"}], "symbols" => [{"id" => "W", "ascii" => "W", "html" => "W", "latex" => "\\ensuremath{\\mathrm{W}}", "mathml" => "W", "unicode" => "W"}], "quantity_references" => [{"id" => "NISTq20", "type" => "nist"}, {"id" => "NISTq21", "type" => "nist"}], "si_derived_bases" => [{"power" => 2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -3, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/watt", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:W", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/W", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu14.u10e-1/1", "type" => "nist"}, {"id" => "u:watt_per_steradian", "type" => "unitsml"}], "short" => "watt_per_steradian", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "watt per steradian", "lang" => "en"}], "symbols" => [{"id" => "W*sr^-1", "ascii" => "W*sr^-1", "html" => "W/sr", "latex" => "\\ensuremath{\\mathrm{W/sr}}", "mathml" => "W/sr", "unicode" => "W/sr"}], "quantity_references" => [{"id" => "NISTq88", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu14", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu10", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/W-PER-SR", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu14.u1e-1/1.u5e-1/1", "type" => "nist"}, {"id" => "u:watt_per_meter_kelvin", "type" => "unitsml"}], "short" => "watt_per_meter_kelvin", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "watt per meter kelvin", "lang" => "en"}], "symbols" => [{"id" => "W*m^-1*K^-1", "ascii" => "W*m^-1*K^-1", "html" => "W/(m · K)", "latex" => "\\ensuremath{\\mathrm{W/(m\\cdot K)}}", "mathml" => "W/(m·K)", "unicode" => "W/(m·K)"}], "quantity_references" => [{"id" => "NISTq66", "type" => "nist"}], "root_units" => [{"power" => -1, "unit_reference" => {"id" => "NISTu5", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/W-PER-M-K", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu14.u1e-2/1", "type" => "nist"}, {"id" => "u:watt_per_square_meter", "type" => "unitsml"}], "short" => "watt_per_square_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "watt per square meter", "lang" => "en"}], "symbols" => [{"id" => "W*m^-2", "ascii" => "W*m^-2", "html" => "W/m2", "latex" => "\\ensuremath{\\mathrm{W/m^2}}", "mathml" => "W/m2", "unicode" => "W/m²"}], "quantity_references" => [{"id" => "NISTq62", "type" => "nist"}, {"id" => "NISTq78", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu14", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/W-PER-M2", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu14.u1e-2/1.u10e-1/1", "type" => "nist"}, {"id" => "u:watt_per_square_meter_steradian", "type" => "unitsml"}], "short" => "watt_per_square_meter_steradian", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "watt per square meter steradian", "lang" => "en"}], "symbols" => [{"id" => "W*m^-2*sr^-1", "ascii" => "W*m^-2*sr^-1", "html" => "W/(m^2 · sr)", "latex" => "\\ensuremath{\\mathrm{W/(m^2\\cdot sr)}}", "mathml" => "W/(m2·sr)", "unicode" => "W/(m²·sr)"}], "quantity_references" => [{"id" => "NISTq89", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu14", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu10", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/W-PER-M2-SR", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu14.u3", "type" => "nist"}, {"id" => "u:watt_second", "type" => "unitsml"}], "short" => "watt_second", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "watt second", "lang" => "en"}], "symbols" => [{"id" => "W*s", "ascii" => "W*s", "html" => "W · s", "latex" => "\\ensuremath{\\mathrm{W\\cdot s}}", "mathml" => "W·s", "unicode" => "W·s"}], "quantity_references" => [{"id" => "NISTq17", "type" => "nist"}, {"id" => "NISTq18", "type" => "nist"}, {"id" => "NISTq182", "type" => "nist"}, {"id" => "NISTq183", "type" => "nist"}, {"id" => "NISTq19", "type" => "nist"}, {"id" => "NISTq77", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu14", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/W-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu142", "type" => "nist"}, {"id" => "u:stokes", "type" => "unitsml"}], "short" => "stokes", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "stokes", "lang" => "en"}], "symbols" => [{"id" => "St", "ascii" => "St", "html" => "St", "latex" => "\\ensuremath{\\mathrm{St}}", "mathml" => "St", "unicode" => "St"}], "quantity_references" => [{"id" => "NISTq85", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:cgs:code:St", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/ST", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu143", "type" => "nist"}, {"id" => "u:gal", "type" => "unitsml"}], "short" => "gal", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "gal", "lang" => "en"}], "symbols" => [{"id" => "Gal", "ascii" => "Gal", "html" => "Gal", "latex" => "\\ensuremath{\\mathrm{Gal}}", "mathml" => "Gal", "unicode" => "Gal"}], "quantity_references" => [{"id" => "NISTq49", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:cgs:code:Gal", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/GALILEO", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu144", "type" => "nist"}, {"id" => "u:oersted", "type" => "unitsml"}], "short" => "oersted", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "oersted", "lang" => "en"}], "symbols" => [{"id" => "Oe", "ascii" => "Oe", "html" => "Oe", "latex" => "\\ensuremath{\\mathrm{Oe}}", "mathml" => "Oe", "unicode" => "Oe"}], "quantity_references" => [{"id" => "NISTq87", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:cgs:code:Oe", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/OERSTED", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu147", "type" => "nist"}, {"id" => "u:arc_minute", "type" => "unitsml"}], "short" => "arc_minute", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "arcminute", "lang" => "en"}, {"value" => "minute (minute of arc)", "lang" => "en"}, {"value" => "arcminute", "lang" => "fr"}], "symbols" => [{"id" => "'", "ascii" => "'", "html" => "′", "latex" => "\\ensuremath{\\mathrm{'}}", "mathml" => "", "unicode" => "′"}, {"id" => "prime", "ascii" => "'", "html" => "′", "latex" => "\\ensuremath{\\mathrm{'}}", "mathml" => "", "unicode" => "′"}], "quantity_references" => [{"id" => "NISTq9", "type" => "nist"}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/arcminute", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:iso1000:code:'", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/ARCMIN", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu148", "type" => "nist"}, {"id" => "u:arc_second", "type" => "unitsml"}], "short" => "arc_second", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "arcsecond", "lang" => "en"}, {"value" => "second (second of arc)", "lang" => "en"}, {"value" => "arcseconde", "lang" => "fr"}], "symbols" => [{"id" => "\"", "ascii" => "\"", "html" => "″", "latex" => "\\ensuremath{\\mathrm{''}}", "mathml" => "", "unicode" => "″"}, {"id" => "dprime", "ascii" => "\"", "html" => "″", "latex" => "\\ensuremath{\\mathrm{''}}", "mathml" => "", "unicode" => "″"}, {"id" => "as", "ascii" => "as", "html" => "as", "latex" => "\\ensuremath{\\mathrm{as}}", "mathml" => "as", "unicode" => "as"}], "quantity_references" => [{"id" => "NISTq9", "type" => "nist"}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/arcsecond", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/ARCSEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu149", "type" => "nist"}, {"id" => "u:arc_degree", "type" => "unitsml"}], "short" => "arc_degree", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "degree (degree of arc)", "lang" => "en"}, {"value" => "degré", "lang" => "fr"}], "symbols" => [{"id" => "deg", "ascii" => "deg", "html" => "°", "latex" => "\\ensuremath{\\mathrm{^{\\circ}}}", "mathml" => "°", "unicode" => "º"}], "quantity_references" => [{"id" => "NISTq9", "type" => "nist"}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/degree", "authority" => "si-digital-framework"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu15", "type" => "nist"}, {"id" => "u:coulomb", "type" => "unitsml"}], "short" => "coulomb", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "coulomb", "lang" => "en"}, {"value" => "coulomb", "lang" => "fr"}], "symbols" => [{"id" => "C", "ascii" => "C", "html" => "C", "latex" => "\\ensuremath{\\mathrm{C}}", "mathml" => "C", "unicode" => "C"}], "quantity_references" => [{"id" => "NISTq22", "type" => "nist"}, {"id" => "NISTq23", "type" => "nist"}], "si_derived_bases" => [{"power" => 1, "unit_reference" => {"id" => "NISTu2", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu4", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/coulomb", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:base-unit:code:C", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/C", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu15.u1e-2/1", "type" => "nist"}, {"id" => "u:coulomb_per_square_meter", "type" => "unitsml"}], "short" => "coulomb_per_square_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "coulomb per square meter", "lang" => "en"}], "symbols" => [{"id" => "C*m^-2", "ascii" => "C*m^-2", "html" => "C/m2", "latex" => "\\ensuremath{\\mathrm{C/m^2}}", "mathml" => "C/m2", "unicode" => "C/m²"}], "quantity_references" => [{"id" => "NISTq81", "type" => "nist"}, {"id" => "NISTq82", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu15", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/C-PER-M2", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu15.u1e-3/1", "type" => "nist"}, {"id" => "u:coulomb_per_cubic_meter", "type" => "unitsml"}], "short" => "coulomb_per_cubic_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "coulomb per cubic meter", "lang" => "en"}], "symbols" => [{"id" => "C*m^-3", "ascii" => "C*m^-3", "html" => "C/m3", "latex" => "\\ensuremath{\\mathrm{C/m^3}}", "mathml" => "C/m3", "unicode" => "C/m³"}], "quantity_references" => [{"id" => "NISTq69", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu15", "type" => "nist"}}, {"power" => -3, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/C-PER-M3", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu15.u27p10'3e-1/1", "type" => "nist"}, {"id" => "u:coulomb_per_kilogram", "type" => "unitsml"}], "short" => "coulomb_per_kilogram", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "coulomb per kilogram", "lang" => "en"}], "symbols" => [{"id" => "C*kg^-1", "ascii" => "C*kg^-1", "html" => "C/kg", "latex" => "\\ensuremath{\\mathrm{C/kg}}", "mathml" => "C/kg", "unicode" => "C/kg"}], "quantity_references" => [{"id" => "NISTq197", "type" => "nist"}, {"id" => "NISTq75", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu15", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/C-PER-KiloGM", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu152", "type" => "nist"}, {"id" => "u:knot", "type" => "unitsml"}], "short" => "knot", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "nautical mile per hour", "lang" => "en"}, {"value" => "knot", "lang" => "en"}], "symbols" => [{"id" => "kn", "ascii" => "kn", "html" => "kn", "latex" => "\\ensuremath{\\mathrm{kn}}", "mathml" => "kn", "unicode" => "kn"}], "quantity_references" => [{"id" => "NISTq12", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[kn_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/KN", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu153", "type" => "nist"}, {"id" => "u:neper", "type" => "unitsml"}], "short" => "neper", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "neper", "lang" => "en"}, {"value" => "néper", "lang" => "fr"}], "symbols" => [{"id" => "Np", "ascii" => "Np", "html" => "Np", "latex" => "\\ensuremath{\\mathrm{Np}}", "mathml" => "Np", "unicode" => "Np"}], "quantity_references" => [{"id" => "NISTq118", "type" => "nist"}, {"id" => "NISTq119", "type" => "nist"}, {"id" => "NISTq121", "type" => "nist"}, {"id" => "NISTq90", "type" => "nist"}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/neper", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:levels:code:Np", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/NP", "authority" => "qudt"}], "scale_reference" => {"id" => "logarithmic_field", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu154", "type" => "nist"}, {"id" => "u:bel", "type" => "unitsml"}], "short" => "bel", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "bel", "lang" => "en"}, {"value" => "bel", "lang" => "fr"}], "symbols" => [{"id" => "bel_B", "ascii" => "B", "html" => "B", "latex" => "\\ensuremath{\\mathrm{B}}", "mathml" => "B", "unicode" => "B"}], "quantity_references" => [{"id" => "NISTq118", "type" => "nist"}, {"id" => "NISTq119", "type" => "nist"}, {"id" => "NISTq90", "type" => "nist"}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/bel", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:levels:code:B", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/B", "authority" => "qudt"}], "scale_reference" => {"id" => "logarithmic_field", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu155", "type" => "nist"}, {"id" => "u:decibel", "type" => "unitsml"}], "short" => "decibel", "root" => false, "prefixed" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "decibel", "lang" => "en"}], "symbols" => [{"id" => "dB", "ascii" => "dB", "html" => "dB", "latex" => "\\ensuremath{\\mathrm{dB}}", "mathml" => "dB", "unicode" => "dB"}], "quantity_references" => [{"id" => "NISTq90", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu154", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_-1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/DeciB", "authority" => "qudt"}], "scale_reference" => {"id" => "logarithmic_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu156", "type" => "nist"}, {"id" => "u:mm_Hg", "type" => "unitsml"}], "short" => "mm_Hg", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "conventional millimeter of mercury", "lang" => "en"}, {"value" => "millimeter of mercury, conventional", "lang" => "en"}, {"value" => "millimeter of mercury", "lang" => "en"}], "symbols" => [{"id" => "mmHg", "ascii" => "mmHg", "html" => "mmHg", "latex" => "\\ensuremath{\\mathrm{mmHg}}", "mathml" => "mmHg", "unicode" => "mmHg"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MilliM_HG", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu157", "type" => "nist"}, {"id" => "u:darcy", "type" => "unitsml"}], "short" => "darcy", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "darcy", "lang" => "en"}], "symbols" => [{"id" => "darcy", "ascii" => "d", "html" => "d", "latex" => "\\ensuremath{\\mathrm{d}}", "mathml" => "d", "unicode" => "d"}, {"id" => "Darcy", "ascii" => "D", "html" => "D", "latex" => "\\ensuremath{\\mathrm{D}}", "mathml" => "D", "unicode" => "D"}], "quantity_references" => [{"id" => "NISTq72", "type" => "nist"}, {"id" => "NISTq92", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:iso1000:code:d", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/DARCY", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu159", "type" => "nist"}, {"id" => "u:gon", "type" => "unitsml"}], "short" => "gon", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "gon", "lang" => "en"}], "symbols" => [{"id" => "gon", "ascii" => "gon", "html" => "gon", "latex" => "\\ensuremath{\\mathrm{gon}}", "mathml" => "gon", "unicode" => "gon"}], "quantity_references" => [{"id" => "NISTq9", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:iso1000:code:gon", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/GON", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu16", "type" => "nist"}, {"id" => "u:volt", "type" => "unitsml"}], "short" => "volt", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "volt", "lang" => "en"}, {"value" => "volt", "lang" => "fr"}], "symbols" => [{"id" => "V", "ascii" => "V", "html" => "V", "latex" => "\\ensuremath{\\mathrm{V}}", "mathml" => "V", "unicode" => "V"}], "quantity_references" => [{"id" => "NISTq24", "type" => "nist"}, {"id" => "NISTq25", "type" => "nist"}, {"id" => "NISTq26", "type" => "nist"}], "si_derived_bases" => [{"power" => 2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -3, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu4", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/volt", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:V", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/V", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu16.u1e-1/1", "type" => "nist"}, {"id" => "u:volt_per_meter", "type" => "unitsml"}], "short" => "volt_per_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "volt per meter", "lang" => "en"}], "symbols" => [{"id" => "V*m^-1", "ascii" => "V*m^-1", "html" => "V/m", "latex" => "\\ensuremath{\\mathrm{V/m}}", "mathml" => "V/m", "unicode" => "V/m"}], "quantity_references" => [{"id" => "NISTq68", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu16", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/V-PER-M", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu160", "type" => "nist"}, {"id" => "u:kilometer_per_hour", "type" => "unitsml"}], "short" => "kilometer_per_hour", "root" => false, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "kilometer per hour", "lang" => "en"}], "symbols" => [{"id" => "km/h", "ascii" => "km/h", "html" => "kh/h", "latex" => "\\ensuremath{\\mathrm{kh/h}}", "mathml" => "kh/h", "unicode" => "km/h"}], "quantity_references" => [{"id" => "NISTq107", "type" => "nist"}, {"id" => "NISTq12", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu37", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/KiloM-PER-HR", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu163", "type" => "nist"}, {"id" => "u:neper_per_second", "type" => "unitsml"}], "short" => "neper_per_second", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "neper per second", "lang" => "en"}], "symbols" => [{"id" => "Np*s^-1", "ascii" => "Np*s^-1", "html" => "Np/s", "latex" => "\\ensuremath{\\mathrm{Np/s}}", "mathml" => "Np/s", "unicode" => "Np/s"}], "quantity_references" => [{"id" => "NISTq120", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu153", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/NP-PER-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu164", "type" => "nist"}, {"id" => "u:square_yard", "type" => "unitsml"}], "short" => "square_yard", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "square yard", "lang" => "en"}], "symbols" => [{"id" => "yd^2", "ascii" => "yd^2", "html" => "yd2", "latex" => "\\ensuremath{\\mathrm{yd^2}}", "mathml" => "yd2", "unicode" => "yd²"}], "quantity_references" => [{"id" => "NISTq8", "type" => "nist"}], "root_units" => [{"power" => 2, "unit_reference" => {"id" => "NISTu84", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[syd_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/YD2", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu165", "type" => "nist"}, {"id" => "u:square_mile", "type" => "unitsml"}], "short" => "square_mile", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "square mile", "lang" => "en"}], "symbols" => [{"id" => "mi^2", "ascii" => "mi^2", "html" => "mi2", "latex" => "\\ensuremath{\\mathrm{mi^2}}", "mathml" => "mi2", "unicode" => "mi²"}], "quantity_references" => [{"id" => "NISTq8", "type" => "nist"}], "root_units" => [{"power" => 2, "unit_reference" => {"id" => "NISTu83", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-lengths:code:[smi_us]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MI2", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu166", "type" => "nist"}, {"id" => "u:tons_of_tnt", "type" => "unitsml"}], "short" => "tons_of_tnt", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "ton of TNT (energy equivalent)", "lang" => "en"}, {"value" => "ton", "lang" => "en"}], "symbols" => [{"id" => "ton_TNT", "ascii" => "ton", "html" => "ton", "latex" => "\\ensuremath{\\mathrm{ton}}", "mathml" => "ton", "unicode" => "ton"}], "quantity_references" => [{"id" => "NISTq17", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/TonEnergy", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu167", "type" => "nist"}, {"id" => "u:foot_per_second_squared", "type" => "unitsml"}], "short" => "foot_per_second_squared", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "foot per second squared", "lang" => "en"}], "symbols" => [{"id" => "ft*s^-2", "ascii" => "ft*s^-2", "html" => "ft/s2", "latex" => "\\ensuremath{\\mathrm{ft/s^2}}", "mathml" => "ft/s2", "unicode" => "ft/s²"}], "quantity_references" => [{"id" => "NISTq49", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu78", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FT-PER-SEC2", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu168", "type" => "nist"}, {"id" => "u:cubic_inch", "type" => "unitsml"}], "short" => "cubic_inch", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "cubic inch", "lang" => "en"}], "symbols" => [{"id" => "in^3", "ascii" => "in^3", "html" => "in3", "latex" => "\\ensuremath{\\mathrm{in^3}}", "mathml" => "in3", "unicode" => "in³"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "root_units" => [{"power" => 3, "unit_reference" => {"id" => "NISTu8", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[cin_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/IN3", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu169", "type" => "nist"}, {"id" => "u:cubic_foot", "type" => "unitsml"}], "short" => "cubic_foot", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "cubic foot", "lang" => "en"}], "symbols" => [{"id" => "ft^3", "ascii" => "ft^3", "html" => "ft3", "latex" => "\\ensuremath{\\mathrm{ft^3}}", "mathml" => "ft3", "unicode" => "ft³"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "root_units" => [{"power" => 3, "unit_reference" => {"id" => "NISTu78", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[cft_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FT3", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu17", "type" => "nist"}, {"id" => "u:farad", "type" => "unitsml"}], "short" => "farad", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "farad", "lang" => "en"}, {"value" => "farad", "lang" => "fr"}], "symbols" => [{"id" => "F", "ascii" => "F", "html" => "F", "latex" => "\\ensuremath{\\mathrm{F}}", "mathml" => "F", "unicode" => "F"}], "quantity_references" => [{"id" => "NISTq27", "type" => "nist"}], "si_derived_bases" => [{"power" => -2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => 4, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}, {"power" => 2, "unit_reference" => {"id" => "NISTu4", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/farad", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:F", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/F", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu17.u1e-1/1", "type" => "nist"}, {"id" => "u:farad_per_meter", "type" => "unitsml"}], "short" => "farad_per_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "farad per meter", "lang" => "en"}], "symbols" => [{"id" => "F*m^-1", "ascii" => "F*m^-1", "html" => "F/m", "latex" => "\\ensuremath{\\mathrm{F/m}}", "mathml" => "F/m", "unicode" => "F/m"}], "quantity_references" => [{"id" => "NISTq71", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu17", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FARAD-PER-M", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu170", "type" => "nist"}, {"id" => "u:cubic_yard", "type" => "unitsml"}], "short" => "cubic_yard", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "cubic yard", "lang" => "en"}], "symbols" => [{"id" => "yd^3", "ascii" => "yd^3", "html" => "yd3", "latex" => "\\ensuremath{\\mathrm{yd^3}}", "mathml" => "yd3", "unicode" => "yd³"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "root_units" => [{"power" => 3, "unit_reference" => {"id" => "NISTu84", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[cyd_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/YD3", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu171", "type" => "nist"}, {"id" => "u:imperial_gallon", "type" => "unitsml"}], "short" => "imperial_gallon", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "gallon (UK)", "lang" => "en"}, {"value" => "imperial gallon", "lang" => "en"}, {"value" => "gallon", "lang" => "en"}], "symbols" => [{"id" => "gal (UK)", "ascii" => "gal (UK)", "html" => "gal (UK)", "latex" => "\\ensuremath{\\mathrm{gal (UK)}}", "mathml" => "gal (UK)", "unicode" => "gal (UK)"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:brit-volumes:code:[gal_br]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/GAL_IMP", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu172", "type" => "nist"}, {"id" => "u:imperial_pint", "type" => "unitsml"}], "short" => "imperial_pint", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "pint (UK)", "lang" => "en"}, {"value" => "pint", "lang" => "en"}], "symbols" => [{"id" => "pt (UK)", "ascii" => "pt (UK)", "html" => "pt (UK)", "latex" => "\\ensuremath{\\mathrm{pint~{UK}}", "mathml" => "pt (UK)", "unicode" => "pt (UK)"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[pt_us]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/PINT_UK", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu173", "type" => "nist"}, {"id" => "u:imperial_ounce", "type" => "unitsml"}], "short" => "imperial_ounce", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "fluid ounce (UK)", "lang" => "en"}, {"value" => "fluid ounce", "lang" => "en"}, {"value" => "ounce", "lang" => "en"}], "symbols" => [{"id" => "fl oz (UK)", "ascii" => "fl oz (UK)", "html" => "fl oz (UK)", "latex" => "\\ensuremath{\\mathrm{fl oz (UK)}}", "mathml" => "fl oz (UK)", "unicode" => "fl oz (UK)"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[foz_us]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/OZ_VOL_UK", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu175", "type" => "nist"}, {"id" => "u:us_gallon", "type" => "unitsml"}], "short" => "us_gallon", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "gallon (US)", "lang" => "en"}, {"value" => "gallon", "lang" => "en"}], "symbols" => [{"id" => "gal (US)", "ascii" => "gal (US)", "html" => "gal (US)", "latex" => "\\ensuremath{\\mathrm{gal (US)}}", "mathml" => "gal (US)", "unicode" => "gal (US)"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:brit-volumes:code:[gal_br]", "authority" => "ucum"}], "scale_reference" => {"id" => "continuous_interval", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu176", "type" => "nist"}, {"id" => "u:us_pint", "type" => "unitsml"}], "short" => "us_pint", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "liquid pint (US)", "lang" => "en"}, {"value" => "pint", "lang" => "en"}], "symbols" => [{"id" => "liq pint (US)", "ascii" => "liq pint (US)", "html" => "liq pint (US)", "latex" => "\\ensuremath{\\mathrm{liq pint (US)}}", "mathml" => "liq pint (US)", "unicode" => "liq pint (US)"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[pt_us]", "authority" => "ucum"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu177", "type" => "nist"}, {"id" => "u:us_fluid_ounce", "type" => "unitsml"}], "short" => "us_fluid_ounce", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "fluid ounce (US)", "lang" => "en"}, {"value" => "fluid ounce", "lang" => "en"}, {"value" => "ounce", "lang" => "en"}], "symbols" => [{"id" => "fl oz (US)", "ascii" => "fl oz (US)", "html" => "fl oz (US)", "latex" => "\\ensuremath{\\mathrm{fl oz (US)}}", "mathml" => "fl oz (US)", "unicode" => "fl oz (US)"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[foz_us]", "authority" => "ucum"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu178", "type" => "nist"}, {"id" => "u:petro_barrel", "type" => "unitsml"}], "short" => "petro_barrel", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "barrel (US) for petroleum", "lang" => "en"}, {"value" => "barrel", "lang" => "en"}], "symbols" => [{"id" => "bbl (US)", "ascii" => "bbl (US)", "html" => "bbl (US)", "latex" => "\\ensuremath{\\mathrm{bbl (US)}}", "mathml" => "bbl (US)", "unicode" => "bbl (US)"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[bbl_us]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/BBL", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu179", "type" => "nist"}, {"id" => "u:us_bushel", "type" => "unitsml"}], "short" => "us_bushel", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "bushel (US)", "lang" => "en"}, {"value" => "bushel", "lang" => "en"}], "symbols" => [{"id" => "bu (US)", "ascii" => "bu (US)", "html" => "bu (US)", "latex" => "\\ensuremath{\\mathrm{bu (US)}}", "mathml" => "bu (US)", "unicode" => "bu (US)"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[bu_us]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/BU_US", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu18", "type" => "nist"}, {"id" => "u:ohm", "type" => "unitsml"}], "short" => "ohm", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "ohm", "lang" => "en"}, {"value" => "ohm", "lang" => "fr"}], "symbols" => [{"id" => "Ohm", "ascii" => "Ohm", "html" => "Ω", "latex" => "\\ensuremath{\\mathrm{\\Omega}}", "mathml" => "", "unicode" => "Ω"}], "quantity_references" => [{"id" => "NISTq28", "type" => "nist"}], "si_derived_bases" => [{"power" => 2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => 4, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}, {"power" => 2, "unit_reference" => {"id" => "NISTu4", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/ohm", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:Ohm", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/OHM", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu180", "type" => "nist"}, {"id" => "u:us_dry_pint", "type" => "unitsml"}], "short" => "us_dry_pint", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "dry pint (US)", "lang" => "en"}, {"value" => "pint", "lang" => "en"}], "symbols" => [{"id" => "dry pt (US)", "ascii" => "dry pt (US)", "html" => "dry pt (US)", "latex" => "\\ensuremath{\\mathrm{dry pt (US)}}", "mathml" => "dry pt (US)", "unicode" => "dry pt (US)"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[pt_us]", "authority" => "ucum"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu182", "type" => "nist"}, {"id" => "u:light_year", "type" => "unitsml"}], "short" => "light_year", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "light year", "lang" => "en"}], "symbols" => [{"id" => "l.y.", "ascii" => "l.y.", "html" => "l.y.", "latex" => "\\ensuremath{\\mathrm{l.y.}}", "mathml" => "l.y.", "unicode" => "l.y."}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:const:code:[ly]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/LY", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu183", "type" => "nist"}, {"id" => "u:astronomical_unit", "type" => "unitsml"}], "short" => "astronomical_unit", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "astronomical unit", "lang" => "en"}, {"value" => "unité astronomique", "lang" => "fr"}], "symbols" => [{"id" => "ua", "ascii" => "ua", "html" => "ua", "latex" => "\\ensuremath{\\mathrm{ua}}", "mathml" => "ua", "unicode" => "ua"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/astronomicalunit", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/AU", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu184", "type" => "nist"}, {"id" => "u:parsec", "type" => "unitsml"}], "short" => "parsec", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "parsec", "lang" => "en"}], "symbols" => [{"id" => "pc", "ascii" => "pc", "html" => "pc", "latex" => "\\ensuremath{\\mathrm{pc}}", "mathml" => "pc", "unicode" => "pc"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:iso1000:code:pc", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/PARSEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu185", "type" => "nist"}, {"id" => "u:meter_to_the_power_four", "type" => "unitsml"}], "short" => "meter_to_the_power_four", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "meter to the power four", "lang" => "en"}], "symbols" => [{"id" => "m^4", "ascii" => "m^4", "html" => "m4", "latex" => "\\ensuremath{\\mathrm{m^4}}", "mathml" => "m4", "unicode" => "m⁴"}], "quantity_references" => [{"id" => "NISTq144", "type" => "nist"}, {"id" => "NISTq145", "type" => "nist"}], "root_units" => [{"power" => 4, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/M4", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu188", "type" => "nist"}, {"id" => "u:kilogram_per_liter", "type" => "unitsml"}], "short" => "kilogram_per_liter", "root" => false, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "kilogram per liter", "lang" => "en"}], "symbols" => [{"id" => "kg*l^-1", "ascii" => "kg*l^-1", "html" => "kg/l", "latex" => "\\ensuremath{\\mathrm{kg/l}}", "mathml" => "kg/l", "unicode" => "kg/l"}], "quantity_references" => [{"id" => "NISTq51", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu130", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/KiloGM-PER-L", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu189", "type" => "nist"}, {"id" => "u:metric_ton_per_cubic_meter", "type" => "unitsml"}], "short" => "metric_ton_per_cubic_meter", "root" => false, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "metric ton per cubic meter", "lang" => "en"}], "symbols" => [{"id" => "t*m^-3", "ascii" => "t*m^-3", "html" => "t/m3", "latex" => "\\ensuremath{\\mathrm{t/m^3}}", "mathml" => "t/m3", "unicode" => "t/m³"}], "quantity_references" => [{"id" => "NISTq51", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu88", "type" => "nist"}}, {"power" => -3, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/TONNE-PER-M3", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu19", "type" => "nist"}, {"id" => "u:siemens", "type" => "unitsml"}], "short" => "siemens", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "siemens", "lang" => "en"}, {"value" => "siemens", "lang" => "fr"}], "symbols" => [{"id" => "S", "ascii" => "S", "html" => "S", "latex" => "\\ensuremath{\\mathrm{S}}", "mathml" => "S", "unicode" => "S"}], "quantity_references" => [{"id" => "NISTq29", "type" => "nist"}], "si_derived_bases" => [{"power" => -2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => 3, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}, {"power" => 2, "unit_reference" => {"id" => "NISTu4", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/siemens", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:S", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/S", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu196", "type" => "nist"}, {"id" => "u:gram_force", "type" => "unitsml"}], "short" => "gram_force", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "gram-force", "lang" => "en"}], "symbols" => [{"id" => "gf", "ascii" => "gf", "html" => "gf", "latex" => "\\ensuremath{\\mathrm{gf}}", "mathml" => "gf", "unicode" => "gf"}], "quantity_references" => [{"id" => "NISTq13", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu196", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "ucum:unit:const:code:gf", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/GM_F", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu1e-1/1", "type" => "nist"}, {"id" => "u:meter_to_the_power_minus_one", "type" => "unitsml"}], "short" => "meter_to_the_power_minus_one", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "meter to the power minus one", "lang" => "en"}, {"value" => "reciprocal meter", "lang" => "en"}], "symbols" => [{"id" => "m^-1", "ascii" => "m^-1", "html" => "m-1", "latex" => "\\ensuremath{\\mathrm{m^{-1}}}", "mathml" => "m1", "unicode" => "m⁻¹"}], "quantity_references" => [{"id" => "NISTq106", "type" => "nist"}, {"id" => "NISTq115", "type" => "nist"}, {"id" => "NISTq122", "type" => "nist"}, {"id" => "NISTq123", "type" => "nist"}, {"id" => "NISTq124", "type" => "nist"}, {"id" => "NISTq50", "type" => "nist"}], "root_units" => [{"power" => -1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu1e-2/1", "type" => "nist"}, {"id" => "u:meter_to_the_power_minus_two", "type" => "unitsml"}], "short" => "meter_to_the_power_minus_two", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "meter to the power minus two", "lang" => "en"}, {"value" => "reciprocal square meter", "lang" => "en"}], "symbols" => [{"id" => "m^-2", "ascii" => "m^-2", "html" => "m-2", "latex" => "\\ensuremath{\\mathrm{m^{-2}}}", "mathml" => "m2", "unicode" => "m⁻²"}], "quantity_references" => [{"id" => "NISTq190", "type" => "nist"}], "root_units" => [{"power" => -2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu1e-2/1.u3e-1/1", "type" => "nist"}, {"id" => "u:meter_to_the_power_minus_two_per_second", "type" => "unitsml"}], "short" => "meter_to_the_power_minus_two_per_second", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "meter to the power minus two per second", "lang" => "en"}, {"value" => "reciprocal square meter per second", "lang" => "en"}], "symbols" => [{"id" => "m^-2*s^-1", "ascii" => "m^-2*s^-1", "html" => "m-2/s", "latex" => "\\ensuremath{\\mathrm{m^{-2}/s}}", "mathml" => "m2/s", "unicode" => "m⁻²·s⁻¹"}], "quantity_references" => [{"id" => "NISTq191", "type" => "nist"}], "root_units" => [{"power" => -2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu1e2/1", "type" => "nist"}, {"id" => "u:square_meter", "type" => "unitsml"}], "short" => "square_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "square meter", "lang" => "en"}], "symbols" => [{"id" => "m^2", "ascii" => "m^2", "html" => "m2", "latex" => "\\ensuremath{\\mathrm{m^2}}", "mathml" => "m2", "unicode" => "m²"}], "quantity_references" => [{"id" => "NISTq8", "type" => "nist"}], "root_units" => [{"power" => 2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/M2", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu1e2/1.u3e-1/1", "type" => "nist"}, {"id" => "u:meter_squared_per_second", "type" => "unitsml"}], "short" => "meter_squared_per_second", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "meter squared per second", "lang" => "en"}], "symbols" => [{"id" => "m^2*s^-1", "ascii" => "m^2*s^-1", "html" => "m2/s", "latex" => "\\ensuremath{\\mathrm{m^2/s}}", "mathml" => "m2/s", "unicode" => "m²/s"}], "quantity_references" => [{"id" => "NISTq85", "type" => "nist"}], "root_units" => [{"power" => 2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/M2-PER-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu1e3/1", "type" => "nist"}, {"id" => "u:cubic_meter", "type" => "unitsml"}], "short" => "cubic_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "cubic meter", "lang" => "en"}], "symbols" => [{"id" => "m^3", "ascii" => "m^3", "html" => "m3", "latex" => "\\ensuremath{\\mathrm{m^3}}", "mathml" => "m3", "unicode" => "m³"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}, {"id" => "NISTq146", "type" => "nist"}], "root_units" => [{"power" => 3, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/M3", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu1e3/1.u27p10'3", "type" => "nist"}, {"id" => "u:cubic_meter_per_kilogram", "type" => "unitsml"}], "short" => "cubic_meter_per_kilogram", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "cubic meter per kilogram", "lang" => "en"}], "symbols" => [{"id" => "m^3*kg", "ascii" => "m^3*kg", "html" => "m3/kg", "latex" => "\\ensuremath{\\mathrm{m^3/kg}}", "mathml" => "m3/kg", "unicode" => "m³·kg"}], "quantity_references" => [{"id" => "NISTq52", "type" => "nist"}], "root_units" => [{"power" => 3, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu1e3/1.u3e-1/1", "type" => "nist"}, {"id" => "u:cubic_meter_per_second", "type" => "unitsml"}], "short" => "cubic_meter_per_second", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "cubic meter per second", "lang" => "en"}], "symbols" => [{"id" => "m^3*s^-1", "ascii" => "m^3*s^-1", "html" => "m3/s", "latex" => "\\ensuremath{\\mathrm{m^3/s}}", "mathml" => "m3/s", "unicode" => "m³/s"}], "quantity_references" => [{"id" => "NISTq151", "type" => "nist"}], "root_units" => [{"power" => 3, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/M3-PER-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu2", "type" => "nist"}, {"id" => "u:kilogram", "type" => "unitsml"}], "short" => "kilogram", "root" => false, "prefixed" => true, "unit_system_reference" => [{"id" => "si-base", "type" => "unitsml"}], "names" => [{"value" => "kilogram", "lang" => "en"}, {"value" => "kilogramme", "lang" => "fr"}], "symbols" => [{"id" => "kg", "ascii" => "kg", "html" => "kg", "latex" => "\\ensuremath{\\mathrm{kg}}", "mathml" => "kg", "unicode" => "kg"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/kilogram", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/KiloGM", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu20", "type" => "nist"}, {"id" => "u:weber", "type" => "unitsml"}], "short" => "weber", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "weber", "lang" => "en"}, {"value" => "weber", "lang" => "fr"}], "symbols" => [{"id" => "Wb", "ascii" => "Wb", "html" => "Wb", "latex" => "\\ensuremath{\\mathrm{Wb}}", "mathml" => "Wb", "unicode" => "Wb"}], "quantity_references" => [{"id" => "NISTq30", "type" => "nist"}], "si_derived_bases" => [{"power" => 2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu4", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/weber", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:Wb", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/WB", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu201", "type" => "nist"}, {"id" => "u:av_pound", "type" => "unitsml"}], "short" => "av_pound", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "pound (avoirdupois)", "lang" => "en"}, {"value" => "avoirdupois pound", "lang" => "en"}, {"value" => "pound", "lang" => "en"}], "symbols" => [{"id" => "lb", "ascii" => "lb", "html" => "lb", "latex" => "\\ensuremath{\\mathrm{lb}}", "mathml" => "lb", "unicode" => "lb"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:avoirdupois:code:[lb_av]", "authority" => "ucum"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu202", "type" => "nist"}, {"id" => "u:av_ounce", "type" => "unitsml"}], "short" => "av_ounce", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "ounce (avoirdupois)", "lang" => "en"}, {"value" => "avoirdupois ounce", "lang" => "en"}, {"value" => "ounce", "lang" => "en"}], "symbols" => [{"id" => "oz", "ascii" => "oz", "html" => "oz", "latex" => "\\ensuremath{\\mathrm{oz}}", "mathml" => "oz", "unicode" => "oz"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:avoirdupois:code:[oz_av]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/OZ-FT", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu203", "type" => "nist"}, {"id" => "u:gross_hundredweight", "type" => "unitsml"}], "short" => "gross_hundredweight", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "hundredweight (long, 112 lb)", "lang" => "en"}, {"value" => "hundredweight", "lang" => "en"}], "symbols" => [{"id" => "cwt (UK)", "ascii" => "cwt (UK)", "html" => "cwt (UK)", "latex" => "\\ensuremath{\\mathrm{cwt (UK)}}", "mathml" => "cwt (UK)", "unicode" => "cwt (UK)"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu204", "type" => "nist"}, {"id" => "u:pound_per_cubic_foot", "type" => "unitsml"}], "short" => "pound_per_cubic_foot", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "pound per cubic foot", "lang" => "en"}], "symbols" => [{"id" => "lb*ft^-3", "ascii" => "lb*ft^-3", "html" => "lb/ft3", "latex" => "\\ensuremath{\\mathrm{lb/ft^3}}", "mathml" => "lb/ft3", "unicode" => "lb/ft³"}], "quantity_references" => [{"id" => "NISTq51", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu201", "type" => "nist"}}, {"power" => -3, "unit_reference" => {"id" => "NISTu78", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/LB-PER-FT3", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu205", "type" => "nist"}, {"id" => "u:pound_force", "type" => "unitsml"}], "short" => "pound_force", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "pound-force", "lang" => "en"}], "symbols" => [{"id" => "lbf", "ascii" => "lbf", "html" => "lbf", "latex" => "\\ensuremath{\\mathrm{lbf}}", "mathml" => "lbf", "unicode" => "lbf"}], "quantity_references" => [{"id" => "NISTq128", "type" => "nist"}, {"id" => "NISTq13", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:const:code:[lbf_av]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/LB_F", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu206", "type" => "nist"}, {"id" => "u:foot_pound_force", "type" => "unitsml"}], "short" => "foot_pound_force", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "foot pound-force", "lang" => "en"}], "symbols" => [{"id" => "ft*lbf", "ascii" => "ft*lbf", "html" => "ft · lbf", "latex" => "\\ensuremath{\\mathrm{ft\\cdot lbf}}", "mathml" => "ft·lbf", "unicode" => "ft·lbf"}], "quantity_references" => [{"id" => "NISTq17", "type" => "nist"}, {"id" => "NISTq18", "type" => "nist"}, {"id" => "NISTq182", "type" => "nist"}, {"id" => "NISTq183", "type" => "nist"}, {"id" => "NISTq184", "type" => "nist"}, {"id" => "NISTq185", "type" => "nist"}, {"id" => "NISTq60", "type" => "nist"}, {"id" => "NISTq77", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu78", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu205", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FT-LB_F", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu207", "type" => "nist"}, {"id" => "u:pound_force_per_square_inch", "type" => "unitsml"}], "short" => "pound_force_per_square_inch", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "pound-force per square inch", "lang" => "en"}], "symbols" => [{"id" => "lbf*in^-2", "ascii" => "lbf*in^-2", "html" => "lbf/in2", "latex" => "\\ensuremath{\\mathrm{lbf/in^2}}", "mathml" => "lbf/in2", "unicode" => "psi"}, {"id" => "psi", "ascii" => "psi", "html" => "psi", "latex" => "\\ensuremath{\\mathrm{psi}}", "mathml" => "psi", "unicode" => "lbf/in²"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu205", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu8", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "ucum:unit:misc:code:[psi]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/LB_F-PER-IN2", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu208", "type" => "nist"}, {"id" => "u:inch_to_the_fourth_power", "type" => "unitsml"}], "short" => "inch_to_the_fourth_power", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "inch to the fourth power", "lang" => "en"}], "symbols" => [{"id" => "in^4", "ascii" => "in^4", "html" => "in4", "latex" => "\\ensuremath{\\mathrm{in^4}}", "mathml" => "in4", "unicode" => "in⁴"}], "quantity_references" => [{"id" => "NISTq155", "type" => "nist"}], "root_units" => [{"power" => 4, "unit_reference" => {"id" => "NISTu8", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/IN4", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu209", "type" => "nist"}, {"id" => "u:inch_cubed", "type" => "unitsml"}], "short" => "inch_cubed", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "inch cubed", "lang" => "en"}], "symbols" => [{"id" => "in^3_section_modulus", "ascii" => "in^3", "html" => "in3", "latex" => "\\ensuremath{\\mathrm{in^3}}", "mathml" => "in3", "unicode" => "in³"}], "quantity_references" => [{"id" => "NISTq146", "type" => "nist"}], "root_units" => [{"power" => 3, "unit_reference" => {"id" => "NISTu8", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/IN3", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu21", "type" => "nist"}, {"id" => "u:tesla", "type" => "unitsml"}], "short" => "tesla", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "tesla", "lang" => "en"}, {"value" => "tesla", "lang" => "fr"}], "symbols" => [{"id" => "T", "ascii" => "T", "html" => "T", "latex" => "\\ensuremath{\\mathrm{T}}", "mathml" => "T", "unicode" => "T"}], "quantity_references" => [{"id" => "NISTq14", "type" => "nist"}], "si_derived_bases" => [{"power" => 1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu4", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/tesla", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:T", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/T", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu210", "type" => "nist"}, {"id" => "u:foot_squared_per_second", "type" => "unitsml"}], "short" => "foot_squared_per_second", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "foot squared per second", "lang" => "en"}], "symbols" => [{"id" => "ft^2*s^-1", "ascii" => "ft^2*s^-1", "html" => "ft2/s", "latex" => "\\ensuremath{\\mathrm{ft^2/s}}", "mathml" => "ft2/s", "unicode" => "ft²/s"}], "quantity_references" => [{"id" => "NISTq85", "type" => "nist"}], "root_units" => [{"power" => 2, "unit_reference" => {"id" => "NISTu78", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FT2-PER-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu211", "type" => "nist"}, {"id" => "u:foot_pound_force_per_second", "type" => "unitsml"}], "short" => "foot_pound_force_per_second", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "foot pound-force per second", "lang" => "en"}], "symbols" => [{"id" => "ft*lbf*s^-1", "ascii" => "ft*lbf*s^-1", "html" => "ft · lbf/s", "latex" => "\\ensuremath{\\mathrm{ft\\cdot lbf/s}}", "mathml" => "ft·lbf/s", "unicode" => "ft·lbf/2"}], "quantity_references" => [{"id" => "NISTq20", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu78", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu205", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FT-LB_F-PER-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu212", "type" => "nist"}, {"id" => "u:carat", "type" => "unitsml"}], "short" => "carat", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "carat", "lang" => "en"}, {"value" => "metric carat", "lang" => "en"}, {"value" => "carat, metric", "lang" => "en"}], "symbols" => [{"id" => "ct", "ascii" => "ct", "html" => "ct", "latex" => "\\ensuremath{\\mathrm{ct}}", "mathml" => "ct", "unicode" => "ct"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:misc:code:[car_m]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/CARAT", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu213", "type" => "nist"}, {"id" => "u:tex", "type" => "unitsml"}], "short" => "tex", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "tex", "lang" => "en"}], "symbols" => [{"id" => "tex", "ascii" => "tex", "html" => "tex", "latex" => "\\ensuremath{\\mathrm{tex}}", "mathml" => "tex", "unicode" => "tex"}], "quantity_references" => [{"id" => "NISTq126", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:heat:code:tex", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/TEX", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu214", "type" => "nist"}, {"id" => "u:torr", "type" => "unitsml"}], "short" => "torr", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "torr", "lang" => "en"}], "symbols" => [{"id" => "Torr", "ascii" => "Torr", "html" => "Torr", "latex" => "\\ensuremath{\\mathrm{torr}}", "mathml" => "Torr", "unicode" => "torr"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/TORR", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu215", "type" => "nist"}, {"id" => "u:mm_water", "type" => "unitsml"}], "short" => "mm_water", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "conventional millimeter of water", "lang" => "en"}, {"value" => "millimeter of water, conventional", "lang" => "en"}, {"value" => "millimeter of water", "lang" => "en"}], "symbols" => [{"id" => "mmH_2O", "ascii" => "mmH_2O", "html" => "mmH2O", "latex" => "\\ensuremath{\\mathrm{mmH_{2}O}}", "mathml" => "mmH2O", "unicode" => "mmH₂O"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu216", "type" => "nist"}, {"id" => "u:thermo_btu", "type" => "unitsml"}], "short" => "thermo_btu", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "British thermal unit_th", "lang" => "en"}, {"value" => "thermochemical Btu", "lang" => "en"}], "symbols" => [{"id" => "Btu_th", "ascii" => "Btu_th", "html" => "Btuth", "latex" => "\\ensuremath{\\mathrm{Btu_{th}}}", "mathml" => "Btuth", "unicode" => "Btu_th"}], "quantity_references" => [{"id" => "NISTq19", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu217", "type" => "nist"}, {"id" => "u:kilogram_force_meter_per_second", "type" => "unitsml"}], "short" => "kilogram_force_meter_per_second", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "kilogram-force meter per second", "lang" => "en"}], "symbols" => [{"id" => "kgf*m*s^-1", "ascii" => "kgf*m*s^-1", "html" => "kgf · m/s", "latex" => "\\ensuremath{\\mathrm{kgf\\cdot m/s}}", "mathml" => "kgf·m/s", "unicode" => "kgf·m/s"}], "quantity_references" => [{"id" => "NISTq20", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu196", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/KiloGM_F-M-PER-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu218", "type" => "nist"}, {"id" => "u:metric_horsepower", "type" => "unitsml"}], "short" => "metric_horsepower", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "horsepower, metric", "lang" => "en"}, {"value" => "metric horsepower", "lang" => "en"}], "symbols" => [{"id" => "hp_metric", "ascii" => "hp", "html" => "hp", "latex" => "\\ensuremath{\\mathrm{hp}}", "mathml" => "hp", "unicode" => "hp"}], "quantity_references" => [{"id" => "NISTq20", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/HP_Metric", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu22", "type" => "nist"}, {"id" => "u:henry", "type" => "unitsml"}], "short" => "henry", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "henry", "lang" => "en"}, {"value" => "henry", "lang" => "fr"}], "symbols" => [{"id" => "H", "ascii" => "H", "html" => "H", "latex" => "\\ensuremath{\\mathrm{H}}", "mathml" => "H", "unicode" => "H"}], "quantity_references" => [{"id" => "NISTq32", "type" => "nist"}], "si_derived_bases" => [{"power" => 2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu4", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/henry", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:H", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/H", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu22.u1e-1/1", "type" => "nist"}, {"id" => "u:henry_per_meter", "type" => "unitsml"}], "short" => "henry_per_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "henry per meter", "lang" => "en"}], "symbols" => [{"id" => "H*m^-1", "ascii" => "H*m^-1", "html" => "H/m", "latex" => "\\ensuremath{\\mathrm{H/m}}", "mathml" => "H/m", "unicode" => "H/m"}], "quantity_references" => [{"id" => "NISTq72", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu22", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/H-PER-M", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu221", "type" => "nist"}, {"id" => "u:watt_per_square_meter_kelvin", "type" => "unitsml"}], "short" => "watt_per_square_meter_kelvin", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "watt per square meter kelvin", "lang" => "en"}], "symbols" => [{"id" => "W*m^-2*K^-1", "ascii" => "W*m^-2*K^-1", "html" => "W/(m 2 · K)", "latex" => "\\ensuremath{\\mathrm{W/(m^2\\cdot K)}}", "mathml" => "W/(m2·K)", "unicode" => "W/(m²·K)"}], "quantity_references" => [{"id" => "NISTq180", "type" => "nist"}, {"id" => "NISTq181", "type" => "nist"}], "root_units" => [{"power" => -1, "unit_reference" => {"id" => "NISTu5", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/W-PER-M2-K", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu222", "type" => "nist"}, {"id" => "u:lambert", "type" => "unitsml"}], "short" => "lambert", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "lambert", "lang" => "en"}], "symbols" => [{"id" => "Lambert", "ascii" => "L", "html" => "L", "latex" => "\\ensuremath{\\mathrm{L}}", "mathml" => "L", "unicode" => "L"}], "quantity_references" => [{"id" => "NISTq56", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:cgs:code:Lmb", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/LA", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu223", "type" => "nist"}, {"id" => "u:gilbert", "type" => "unitsml"}], "short" => "gilbert", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "gilbert", "lang" => "en"}], "symbols" => [{"id" => "Gi", "ascii" => "Gi", "html" => "Gi", "latex" => "\\ensuremath{\\mathrm{Gi}}", "mathml" => "Gi", "unicode" => "Gi"}], "quantity_references" => [{"id" => "NISTq161", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:cgs:code:Gb", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/GI", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu224", "type" => "nist"}, {"id" => "u:debye", "type" => "unitsml"}], "short" => "debye", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "debye", "lang" => "en"}], "symbols" => [{"id" => "D", "ascii" => "D", "html" => "D", "latex" => "\\ensuremath{\\mathrm{D}}", "mathml" => "D", "unicode" => "D"}], "quantity_references" => [{"id" => "NISTq162", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/DEBYE", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu225", "type" => "nist"}, {"id" => "u:abwatt", "type" => "unitsml"}], "short" => "abwatt", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "abwatt", "lang" => "en"}], "symbols" => [{"id" => "aW (Cardelli)", "ascii" => "aW (Cardelli)", "html" => "aW", "latex" => "\\ensuremath{\\mathrm{aW}}", "mathml" => "aW", "unicode" => "aW"}], "quantity_references" => [{"id" => "NISTq20", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu226", "type" => "nist"}, {"id" => "u:slug", "type" => "unitsml"}], "short" => "slug", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "slug", "lang" => "en"}], "symbols" => [{"id" => "slug", "ascii" => "slug", "html" => "slug", "latex" => "\\ensuremath{\\mathrm{D}}", "mathml" => "slug", "unicode" => "slug"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/SLUG", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu227", "type" => "nist"}, {"id" => "u:thermo_calorie", "type" => "unitsml"}], "short" => "thermo_calorie", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "thermochemical calorie", "lang" => "en"}, {"value" => "calorie_th", "lang" => "en"}, {"value" => "calorie", "lang" => "en"}], "symbols" => [{"id" => "cal_th", "ascii" => "cal_th", "html" => "calth", "latex" => "\\ensuremath{\\mathrm{cal_th}}", "mathml" => "calth", "unicode" => "cal_th"}, {"id" => "cal", "ascii" => "cal", "html" => "cal", "latex" => "\\ensuremath{\\mathrm{cal}}", "mathml" => "cal", "unicode" => "cal"}], "quantity_references" => [{"id" => "NISTq17", "type" => "nist"}, {"id" => "NISTq18", "type" => "nist"}, {"id" => "NISTq182", "type" => "nist"}, {"id" => "NISTq183", "type" => "nist"}, {"id" => "NISTq19", "type" => "nist"}, {"id" => "NISTq77", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:heat:code:cal_th", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/CAL_TH", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu228", "type" => "nist"}, {"id" => "u:short_ton", "type" => "unitsml"}], "short" => "short_ton", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "short ton", "lang" => "en"}, {"value" => "ton", "lang" => "en"}], "symbols" => [{"id" => "ton_short", "ascii" => "ton", "html" => "t", "latex" => "\\ensuremath{\\mathrm{t}}", "mathml" => "t", "unicode" => "t"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:avoirdupois:code:[ston_av]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/TON_SHORT", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu229", "type" => "nist"}, {"id" => "u:long_ton", "type" => "unitsml"}], "short" => "long_ton", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "long ton", "lang" => "en"}, {"value" => "ton", "lang" => "en"}], "symbols" => [{"id" => "ton_long", "ascii" => "ton", "html" => "t", "latex" => "\\ensuremath{\\mathrm{t}}", "mathml" => "t", "unicode" => "t"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:avoirdupois:code:[lton_av]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/TON_LONG", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu23", "type" => "nist"}, {"id" => "u:degree_Celsius", "type" => "unitsml"}], "short" => "degree_Celsius", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "degree Celsius", "lang" => "en"}, {"value" => "degré Celsius", "lang" => "fr"}], "symbols" => [{"id" => "degC", "ascii" => "degC", "html" => "°C", "latex" => "\\ensuremath{\\mathrm{^{\\circ}C}}", "mathml" => "°C", "unicode" => "°C"}], "quantity_references" => [{"id" => "NISTq192", "type" => "nist"}, {"id" => "NISTq34", "type" => "nist"}], "si_derived_bases" => [{"power" => 1, "unit_reference" => {"id" => "NISTu5", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/degreeCelsius", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:Cel", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/DEG_C", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_interval", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu230", "type" => "nist"}, {"id" => "u:hundredweight", "type" => "unitsml"}], "short" => "hundredweight", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "hundredweight (short, 100 lb)", "lang" => "en"}, {"value" => "hundredweight", "lang" => "en"}], "symbols" => [{"id" => "cwt (US)", "ascii" => "cwt (US)", "html" => "cwt (US)", "latex" => "\\ensuremath{\\mathrm{cwt (US)}}", "mathml" => "cwt (US)", "unicode" => "cwt (US)"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu203", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu231", "type" => "nist"}, {"id" => "u:troy_ounce", "type" => "unitsml"}], "short" => "troy_ounce", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "ounce (troy or apothecary)", "lang" => "en"}, {"value" => "troy ounce", "lang" => "en"}, {"value" => "ounce", "lang" => "en"}], "symbols" => [{"id" => "oz_troy", "ascii" => "oz", "html" => "oz", "latex" => "\\ensuremath{\\mathrm{oz}}", "mathml" => "oz", "unicode" => "oz"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:avoirdupois:code:[oz_av]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/OZ", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu232", "type" => "nist"}, {"id" => "u:troy_pound", "type" => "unitsml"}], "short" => "troy_pound", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "pound (troy or apothecary)", "lang" => "en"}, {"value" => "troy pound", "lang" => "en"}, {"value" => "pound", "lang" => "en"}], "symbols" => [{"id" => "lb_troy", "ascii" => "lb", "html" => "lb", "latex" => "\\ensuremath{\\mathrm{lb}}", "mathml" => "lb", "unicode" => "lb"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:avoirdupois:code:[lb_av]", "authority" => "ucum"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu233", "type" => "nist"}, {"id" => "u:pennyweight", "type" => "unitsml"}], "short" => "pennyweight", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "pennyweight", "lang" => "en"}], "symbols" => [{"id" => "dwt (troy)", "ascii" => "dwt (troy)", "html" => "dwt (troy)", "latex" => "\\ensuremath{\\mathrm{dwt (troy)}}", "mathml" => "dwt (troy)", "unicode" => "dwt (troy)"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:troy:code:[pwt_tr]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/PENNYWEIGHT", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu234", "type" => "nist"}, {"id" => "u:apothecaries_dram", "type" => "unitsml"}], "short" => "apothecaries_dram", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "dram (apothecary)", "lang" => "en"}, {"value" => "apothecary dram", "lang" => "en"}, {"value" => "dram", "lang" => "en"}], "symbols" => [{"id" => "dr", "ascii" => "dr", "html" => "dr", "latex" => "\\ensuremath{\\mathrm{dr}}", "mathml" => "dr", "unicode" => "dr"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:avoirdupois:code:[dr_av]", "authority" => "ucum"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu235", "type" => "nist"}, {"id" => "u:scruple", "type" => "unitsml"}], "short" => "scruple", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "scruple", "lang" => "en"}, {"value" => "apothecary scruple", "lang" => "en"}], "symbols" => [{"id" => "scr (ap.)", "ascii" => "scr (ap.)", "html" => "scr (ap.)", "latex" => "\\ensuremath{\\mathrm{scr (ap.)}}", "mathml" => "scr (ap.)", "unicode" => "scr (ap.)"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:apoth:code:[sc_ap]", "authority" => "ucum"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu236", "type" => "nist"}, {"id" => "u:poundal", "type" => "unitsml"}], "short" => "poundal", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "poundal", "lang" => "en"}], "symbols" => [{"id" => "pdl", "ascii" => "pdl", "html" => "pdl", "latex" => "\\ensuremath{\\mathrm{pdl}}", "mathml" => "pdl", "unicode" => "pdl"}], "quantity_references" => [{"id" => "NISTq128", "type" => "nist"}, {"id" => "NISTq13", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/PDL", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu237", "type" => "nist"}, {"id" => "u:kip", "type" => "unitsml"}], "short" => "kip", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "kip", "lang" => "en"}], "symbols" => [{"id" => "kip", "ascii" => "kip", "html" => "kip", "latex" => "\\ensuremath{\\mathrm{kip}}", "mathml" => "kip", "unicode" => "kip"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/KIP_F", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu238", "type" => "nist"}, {"id" => "u:ton_force", "type" => "unitsml"}], "short" => "ton_force", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "ton-force (2000 lb)", "lang" => "en"}], "symbols" => [{"id" => "ton-force (2000 lb)", "ascii" => "ton-force (2000 lb)", "html" => "ton-force (2000 lb)", "latex" => "\\ensuremath{\\mathrm{ton-force (2000 lb)}}", "mathml" => "ton-force (2000 lb)", "unicode" => "ton-force (2000 lb)"}], "quantity_references" => [{"id" => "NISTq128", "type" => "nist"}, {"id" => "NISTq13", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu239", "type" => "nist"}, {"id" => "u:barye", "type" => "unitsml"}], "short" => "barye", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "barye", "lang" => "en"}], "symbols" => [{"id" => "barye", "ascii" => "barye", "html" => "barye", "latex" => "\\ensuremath{\\mathrm{barye}}", "mathml" => "barye", "unicode" => "barye"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/BARYE", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu240", "type" => "nist"}, {"id" => "u:electronvolt", "type" => "unitsml"}], "short" => "electronvolt", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "electronvolt", "lang" => "en"}, {"value" => "électronvolt", "lang" => "fr"}], "symbols" => [{"id" => "eV", "ascii" => "eV", "html" => "eV", "latex" => "\\ensuremath{\\mathrm{eV}}", "mathml" => "eV", "unicode" => "eV"}], "quantity_references" => [{"id" => "NISTq17", "type" => "nist"}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/electronvolt", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:iso1000:code:eV", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/EV", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu241", "type" => "nist"}, {"id" => "u:unified_atomic_mass_unit", "type" => "unitsml"}], "short" => "unified_atomic_mass_unit", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "unified atomic mass unit", "lang" => "en"}], "symbols" => [{"id" => "u", "ascii" => "u", "html" => "u", "latex" => "\\ensuremath{\\mathrm{u}}", "mathml" => "u", "unicode" => "u"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:iso1000:code:u", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/U", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu242", "type" => "nist"}, {"id" => "u:natural_unit_of_velocity", "type" => "unitsml"}], "short" => "natural_unit_of_velocity", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "natural unit of velocity", "lang" => "en"}], "symbols" => [{"id" => "c_0", "ascii" => "c_0", "html" => "c0", "latex" => "\\ensuremath{\\mathit{c}_{0}}", "mathml" => "c0", "unicode" => "𝑐₀"}, {"id" => "c", "ascii" => "c", "html" => "c", "latex" => "\\ensuremath{\\mathit{c}}", "mathml" => "c", "unicode" => "𝑐"}], "quantity_references" => [{"id" => "NISTq12", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/C", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu243", "type" => "nist"}, {"id" => "u:natural_unit_of_action", "type" => "unitsml"}], "short" => "natural_unit_of_action", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "natural unit of action", "lang" => "en"}], "symbols" => [{"id" => "h-bar", "ascii" => "h-bar", "html" => "ħ", "latex" => "\\ensuremath{\\mathit{\\hbar}}", "mathml" => "ħ", "unicode" => "ℏ"}], "quantity_references" => [{"id" => "NISTq154", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu244", "type" => "nist"}, {"id" => "u:natural_unit_of_mass", "type" => "unitsml"}], "short" => "natural_unit_of_mass", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "natural unit of mass", "lang" => "en"}], "symbols" => [{"id" => "m_e", "ascii" => "m_e", "html" => "me", "latex" => "\\ensuremath{\\mathit{m}_\\mathrm{e}}", "mathml" => "me", "unicode" => "𝑚ₑ"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu245", "type" => "nist"}, {"id" => "u:natural_unit_of_time", "type" => "unitsml"}], "short" => "natural_unit_of_time", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "natural unit of time", "lang" => "en"}], "symbols" => [{"id" => "h-bar*(m_e*c^2)", "ascii" => "h-bar*(m_e*c^2)", "html" => "ħ/mec2", "latex" => "\\ensuremath{\\mathit{\\hbar}/(\\mathit{m}_\\mathrm{e}\\mathit{c}^\\mathrm{2}})", "mathml" => "ħ/mec2", "unicode" => "ℏ/𝑚ₑ𝑐²"}], "quantity_references" => [{"id" => "NISTq3", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu246", "type" => "nist"}, {"id" => "u:atomic_unit_of_charge", "type" => "unitsml"}], "short" => "atomic_unit_of_charge", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of charge", "lang" => "en"}], "symbols" => [{"id" => "e", "ascii" => "e", "html" => "e", "latex" => "\\ensuremath{\\mathit{e}}", "mathml" => "e", "unicode" => "𝑒"}], "quantity_references" => [{"id" => "NISTq22", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/E", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu247", "type" => "nist"}, {"id" => "u:atomic_unit_of_mass", "type" => "unitsml"}], "short" => "atomic_unit_of_mass", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of mass", "lang" => "en"}], "symbols" => [{"id" => "m_e_atomic", "ascii" => "m_e", "html" => "me", "latex" => "\\ensuremath{\\mathit{m}_\\mathrm{e}}", "mathml" => "me", "unicode" => "𝑚ₑ"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu248", "type" => "nist"}, {"id" => "u:atomic_unit_of_action", "type" => "unitsml"}], "short" => "atomic_unit_of_action", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of action", "lang" => "en"}], "symbols" => [{"id" => "h-bar_atomic", "ascii" => "h-bar", "html" => "ħ", "latex" => "\\ensuremath{\\mathit{\\hbar}}", "mathml" => "ħ", "unicode" => "ℏ"}], "quantity_references" => [{"id" => "NISTq154", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu249", "type" => "nist"}, {"id" => "u:atomic_unit_of_length", "type" => "unitsml"}], "short" => "atomic_unit_of_length", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of length", "lang" => "en"}], "symbols" => [{"id" => "a_0", "ascii" => "a_0", "html" => "a0", "latex" => "\\ensuremath{\\mathit{a}_\\mathrm{0}}", "mathml" => "a0", "unicode" => "𝑎₀"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu25", "type" => "nist"}, {"id" => "u:becquerel", "type" => "unitsml"}], "short" => "becquerel", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "becquerel", "lang" => "en"}, {"value" => "becquerel", "lang" => "fr"}], "symbols" => [{"id" => "Bq", "ascii" => "Bq", "html" => "Bq", "latex" => "\\ensuremath{\\mathrm{Bq}}", "mathml" => "Bq", "unicode" => "Bq"}], "quantity_references" => [{"id" => "NISTq35", "type" => "nist"}], "si_derived_bases" => [{"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/becquerel", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:Bq", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/BQ", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu250", "type" => "nist"}, {"id" => "u:atomic_unit_of_energy", "type" => "unitsml"}], "short" => "atomic_unit_of_energy", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of energy", "lang" => "en"}], "symbols" => [{"id" => "E_h", "ascii" => "E_h", "html" => "Eh", "latex" => "\\ensuremath{\\mathit{E}_\\mathrm{h}}", "mathml" => "Eh", "unicode" => "𝐸ₕ"}], "quantity_references" => [{"id" => "NISTq17", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu251", "type" => "nist"}, {"id" => "u:atomic_unit_of_time", "type" => "unitsml"}], "short" => "atomic_unit_of_time", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of time", "lang" => "en"}], "symbols" => [{"id" => "h-bar/E_h", "ascii" => "h-bar/E_h", "html" => "ħ/Eh", "latex" => "\\ensuremath{\\mathit{\\hbar}/\\mathit{E}_\\mathrm{h}}", "mathml" => "ħ/Eh", "unicode" => "ℏ/𝐸ₕ"}], "quantity_references" => [{"id" => "NISTq3", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu252", "type" => "nist"}, {"id" => "u:atomic_unit_of_magnetizability", "type" => "unitsml"}], "short" => "atomic_unit_of_magnetizability", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of magnetizability", "lang" => "en"}], "symbols" => [{"id" => "e^2*a_0^2*m_e-1", "ascii" => "e^2*a_0^2*m_e-1", "html" => "e2a02/me", "latex" => "\\ensuremath{\\mathit{e}^2\\mathit{a}_0^2/\\mathit{m}_\\mathrm{e}}", "mathml" => "e2a02/me", "unicode" => "𝑒²𝑎₀²/𝑚ₑ"}], "quantity_references" => [{"id" => "NISTq163", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu253", "type" => "nist"}, {"id" => "u:atomic_unit_of_magnetic_flux_density", "type" => "unitsml"}], "short" => "atomic_unit_of_magnetic_flux_density", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of magnetic flux density", "lang" => "en"}], "symbols" => [{"id" => "h-bar*(e*a_0^2)-1", "ascii" => "h-bar*(e*a_0^2)-1", "html" => "ħ/ea02", "latex" => "\\ensuremath{\\mathit{\\hbar}/\\mathit{e}a_0^2}", "mathml" => "ħ/ea02", "unicode" => "ℏ/𝑒𝑎₀²"}], "quantity_references" => [{"id" => "NISTq14", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu254", "type" => "nist"}, {"id" => "u:atomic_unit_of_magnetic_dipole_moment", "type" => "unitsml"}], "short" => "atomic_unit_of_magnetic_dipole_moment", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of magnetic dipole moment", "lang" => "en"}], "symbols" => [{"id" => "h-bar*e*(m_e)-1", "ascii" => "h-bar*e*(m_e)-1", "html" => "ħe/me", "latex" => "\\ensuremath{\\mathit{\\hbar e}/\\mathit{m}_\\mathrm{e}}", "mathml" => "ħe/me", "unicode" => "ℏ𝑒/𝑚ₑ"}], "quantity_references" => [{"id" => "NISTq164", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu255", "type" => "nist"}, {"id" => "u:atomic_unit_of_momentum", "type" => "unitsml"}], "short" => "atomic_unit_of_momentum", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of momentum", "lang" => "en"}], "symbols" => [{"id" => "h-bar*(a_0)-1", "ascii" => "h-bar*(a_0)-1", "html" => "ħ/a0", "latex" => "\\ensuremath{\\mathit{\\hbar}/\\mathit{a}_0}", "mathml" => "ħ/a0", "unicode" => "ℏ/𝑎₀"}], "quantity_references" => [{"id" => "NISTq131", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu256", "type" => "nist"}, {"id" => "u:atomic_unit_of_charge_density", "type" => "unitsml"}], "short" => "atomic_unit_of_charge_density", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of charge density", "lang" => "en"}], "symbols" => [{"id" => "e*(a_0^3)", "ascii" => "e*(a_0^3)", "html" => "ea03", "latex" => "\\ensuremath{\\mathit{e}\\mathit{a}_0^{3}}", "mathml" => "ea03", "unicode" => "𝑒𝑎₀³"}], "quantity_references" => [{"id" => "NISTq69", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu257", "type" => "nist"}, {"id" => "u:atomic_unit_of_current", "type" => "unitsml"}], "short" => "atomic_unit_of_current", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of current", "lang" => "en"}], "symbols" => [{"id" => "eE_h*h-bar^-1", "ascii" => "eE_h*h-bar^-1", "html" => "eEh/ħ", "latex" => "\\ensuremath{\\mathit{e}E_{h}/\\mathit{\\hbar}}", "mathml" => "eEh/ħ", "unicode" => "𝑒𝐸ₕ/ℏ"}], "quantity_references" => [{"id" => "NISTq4", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu258", "type" => "nist"}, {"id" => "u:atomic_unit_of_electric_dipole_moment", "type" => "unitsml"}], "short" => "atomic_unit_of_electric_dipole_moment", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of electric dipole moment", "lang" => "en"}], "symbols" => [{"id" => "e*a_0", "ascii" => "e*a_0", "html" => "ea0", "latex" => "\\ensuremath{\\mathit{e}\\mathit{a}_0}", "mathml" => "ea0", "unicode" => "𝑒𝑎₀"}], "quantity_references" => [{"id" => "NISTq162", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu259", "type" => "nist"}, {"id" => "u:atomic_unit_of_electric_field", "type" => "unitsml"}], "short" => "atomic_unit_of_electric_field", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of electric field", "lang" => "en"}], "symbols" => [{"id" => "E_h*(e*a_0)", "ascii" => "E_h*(e*a_0)", "html" => "Eh/ea0", "latex" => "\\ensuremath{\\mathit{E}_{h}/\\mathit{\\e}\\mathit{a}_0}", "mathml" => "Eh/ea0", "unicode" => "𝐸ₕ/𝑒𝑎₀"}], "quantity_references" => [{"id" => "NISTq68", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu26", "type" => "nist"}, {"id" => "u:fermi", "type" => "unitsml"}], "short" => "fermi", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "fermi", "lang" => "en"}], "symbols" => [{"id" => "fermi", "ascii" => "fermi", "html" => "fermi", "latex" => "\\ensuremath{\\mathrm{fermi}}", "mathml" => "fermi", "unicode" => "fermi"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}, {"id" => "NISTq48", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_-15", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FM", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu260", "type" => "nist"}, {"id" => "u:atomic_unit_of_electric_field_gradient", "type" => "unitsml"}], "short" => "atomic_unit_of_electric_field_gradient", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of electric field gradient", "lang" => "en"}], "symbols" => [{"id" => "E_h*(e*a_0^2)", "ascii" => "E_h*(e*a_0^2)", "html" => "Eh/ea02", "latex" => "\\ensuremath{\\mathit{E}_{h}/\\mathit{\\e}\\mathit{a}_0^2}", "mathml" => "Eh/ea02", "unicode" => "𝐸ₕ/𝑒𝑎₀²"}], "quantity_references" => [{"id" => "NISTq165", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu261", "type" => "nist"}, {"id" => "u:atomic_unit_of_electric_potential", "type" => "unitsml"}], "short" => "atomic_unit_of_electric_potential", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of electric potential", "lang" => "en"}], "symbols" => [{"id" => "E_h*e-1", "ascii" => "E_h*e-1", "html" => "Eh/e", "latex" => "\\ensuremath{\\mathit{E}_{h}/\\mathit{\\e}}", "mathml" => "Eh/e", "unicode" => "𝐸ₕ/𝑒"}], "quantity_references" => [{"id" => "NISTq166", "type" => "nist"}, {"id" => "NISTq24", "type" => "nist"}, {"id" => "NISTq26", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu262", "type" => "nist"}, {"id" => "u:atomic_unit_of_force", "type" => "unitsml"}], "short" => "atomic_unit_of_force", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of force", "lang" => "en"}], "symbols" => [{"id" => "E_h*(a_0)-1", "ascii" => "E_h*(a_0)-1", "html" => "Eh/a0", "latex" => "\\ensuremath{\\mathit{E}_{h}/\\mathit{a}_0}", "mathml" => "Eh/a0", "unicode" => "𝐸ₕ/𝑎₀"}], "quantity_references" => [{"id" => "NISTq128", "type" => "nist"}, {"id" => "NISTq13", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu263", "type" => "nist"}, {"id" => "u:atomic_unit_of_electric_quadrupole_moment", "type" => "unitsml"}], "short" => "atomic_unit_of_electric_quadrupole_moment", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of electric quadrupole moment", "lang" => "en"}], "symbols" => [{"id" => "e*a_0^2", "ascii" => "e*a_0^2", "html" => "ea02", "latex" => "\\ensuremath{\\mathit{e}\\mathit{a}_0^2}", "mathml" => "ea0>2", "unicode" => "𝑒𝑎₀²"}], "quantity_references" => [{"id" => "NISTq167", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu264", "type" => "nist"}, {"id" => "u:atomic_unit_of_electric_polarizability", "type" => "unitsml"}], "short" => "atomic_unit_of_electric_polarizability", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of electric polarizability", "lang" => "en"}], "symbols" => [{"id" => "e^2*a_0^2*(E_h)^-1", "ascii" => "e^2*a_0^2*(E_h)^-1", "html" => "e2a02/Eh", "latex" => "\\ensuremath{\\mathit{e}\\mathit{a}_0^2/\\mathit{E}_h}", "mathml" => "e2a02/Eh", "unicode" => "𝑒²𝑎₀²/𝐸ₕ"}], "quantity_references" => [{"id" => "NISTq168", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu265", "type" => "nist"}, {"id" => "u:statohm", "type" => "unitsml"}], "short" => "statohm", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "statohm", "lang" => "en"}, {"value" => "ESU of resistance", "lang" => "en"}], "symbols" => [{"id" => "statohm", "ascii" => "statohm", "html" => "statohm", "latex" => "\\ensuremath{\\mathrm{statohm}}", "mathml" => "statohm", "unicode" => "statohm"}], "quantity_references" => [{"id" => "NISTq28", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/OHM_Stat", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu266", "type" => "nist"}, {"id" => "u:statfarad", "type" => "unitsml"}], "short" => "statfarad", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "statfarad", "lang" => "en"}, {"value" => "ESU of capacitance", "lang" => "en"}], "symbols" => [{"id" => "statF", "ascii" => "statF", "html" => "statF", "latex" => "\\ensuremath{\\mathrm{statF}}", "mathml" => "statF", "unicode" => "statF"}], "quantity_references" => [{"id" => "NISTq169", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FARAD_Stat", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu267", "type" => "nist"}, {"id" => "u:statampere", "type" => "unitsml"}], "short" => "statampere", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "statampere", "lang" => "en"}, {"value" => "ESU of current", "lang" => "en"}], "symbols" => [{"id" => "statA", "ascii" => "statA", "html" => "statA", "latex" => "\\ensuremath{\\mathrm{statA}}", "mathml" => "statA", "unicode" => "statA"}], "quantity_references" => [{"id" => "NISTq170", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/A_Stat", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu268", "type" => "nist"}, {"id" => "u:statvolt", "type" => "unitsml"}], "short" => "statvolt", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "statvolt", "lang" => "en"}, {"value" => "ESU of Electric potential", "lang" => "en"}], "symbols" => [{"id" => "statV", "ascii" => "statV", "html" => "statV", "latex" => "statV", "mathml" => "statV", "unicode" => "statV"}], "quantity_references" => [{"id" => "NISTq166", "type" => "nist"}, {"id" => "NISTq24", "type" => "nist"}, {"id" => "NISTq26", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/V_Stat", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu269", "type" => "nist"}, {"id" => "u:stathenry", "type" => "unitsml"}], "short" => "stathenry", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "stathenry", "lang" => "en"}, {"value" => "ESU of inductance", "lang" => "en"}], "symbols" => [{"id" => "statH", "ascii" => "statH", "html" => "statH", "latex" => "\\ensuremath{\\mathrm{statH}}", "mathml" => "statH", "unicode" => "statH"}], "quantity_references" => [{"id" => "NISTq171", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/H_Stat", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu27", "type" => "nist"}, {"id" => "u:gram", "type" => "unitsml"}], "short" => "gram", "root" => true, "unit_system_reference" => [{"id" => "si-base", "type" => "unitsml"}], "names" => [{"value" => "gram", "lang" => "en"}, {"value" => "gramme", "lang" => "fr"}], "symbols" => [{"id" => "g", "ascii" => "g", "html" => "g", "latex" => "\\ensuremath{\\mathrm{g}}", "mathml" => "g", "unicode" => "g"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "si_derived_bases" => [{"power" => -3, "unit_reference" => {"id" => "NISTu2", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/gram", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:base-unit:code:g", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/GM", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu270", "type" => "nist"}, {"id" => "u:statmho", "type" => "unitsml"}], "short" => "statmho", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "statmho", "lang" => "en"}, {"value" => "ESU of conductance", "lang" => "en"}], "symbols" => [{"id" => "statmho", "ascii" => "statmho", "html" => "statmho", "latex" => "\\ensuremath{\\mathrm{statmho}}", "mathml" => "statmho", "unicode" => "statmho"}], "quantity_references" => [{"id" => "NISTq29", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MHO_Stat", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu271", "type" => "nist"}, {"id" => "u:statcoulomb", "type" => "unitsml"}], "short" => "statcoulomb", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "statcoulomb", "lang" => "en"}, {"value" => "ESU of charge", "lang" => "en"}], "symbols" => [{"id" => "statcoulomb", "ascii" => "statcoulomb", "html" => "statcoulomb", "latex" => "\\ensuremath{\\mathrm{statcoulomb}}", "mathml" => "statcoulomb", "unicode" => "statcoulomb"}], "quantity_references" => [{"id" => "NISTq22", "type" => "nist"}, {"id" => "NISTq23", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/C_Stat", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu272", "type" => "nist"}, {"id" => "u:statweber", "type" => "unitsml"}], "short" => "statweber", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "statweber", "lang" => "en"}], "symbols" => [{"id" => "statWb", "ascii" => "statWb", "html" => "statWb", "latex" => "\\ensuremath{\\mathrm{statWb}}", "mathml" => "statWb", "unicode" => "statWb"}], "quantity_references" => [{"id" => "NISTq30", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu273", "type" => "nist"}, {"id" => "u:stattesla", "type" => "unitsml"}], "short" => "stattesla", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "stattesla", "lang" => "en"}], "symbols" => [{"id" => "statT", "ascii" => "statT", "html" => "statT", "latex" => "\\ensuremath{\\mathrm{statT}}", "mathml" => "statT", "unicode" => "statT"}], "quantity_references" => [{"id" => "NISTq14", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu274", "type" => "nist"}, {"id" => "u:statwatt", "type" => "unitsml"}], "short" => "statwatt", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "statwatt", "lang" => "en"}], "symbols" => [{"id" => "statwatt", "ascii" => "statwatt", "html" => "statwatt", "latex" => "\\ensuremath{\\mathrm{statwatt}}", "mathml" => "statwatt", "unicode" => "statwatt"}], "quantity_references" => [{"id" => "NISTq20", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu275", "type" => "nist"}, {"id" => "u:av_dram", "type" => "unitsml"}], "short" => "av_dram", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "dram (avoirdupois)", "lang" => "en"}, {"value" => "dram", "lang" => "en"}], "symbols" => [{"id" => "dr (avdp)", "ascii" => "dr (avdp)", "html" => "dr (avdp)", "latex" => "\\ensuremath{\\mathrm{dr~(avdp)}}", "mathml" => "dr (avdp)", "unicode" => "dr (avdp)"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:avoirdupois:code:[dr_av]", "authority" => "ucum"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu276", "type" => "nist"}, {"id" => "u:footcandle", "type" => "unitsml"}], "short" => "footcandle", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "footcandle", "lang" => "en"}], "symbols" => [{"id" => "ft.c", "ascii" => "ft.c", "html" => "ft.c", "latex" => "\\ensuremath{\\mathrm{ft.c}}", "mathml" => "ft.c", "unicode" => "ft.c"}], "quantity_references" => [{"id" => "NISTq47", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu277", "type" => "nist"}, {"id" => "u:footlambert", "type" => "unitsml"}], "short" => "footlambert", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "footlambert", "lang" => "en"}], "symbols" => [{"id" => "ft.L", "ascii" => "ft.L", "html" => "ft.L", "latex" => "\\ensuremath{\\mathrm{ft.L}}", "mathml" => "ft.L", "unicode" => "ft.L"}], "quantity_references" => [{"id" => "NISTq56", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu278", "type" => "nist"}, {"id" => "u:computer_pica", "type" => "unitsml"}], "short" => "computer_pica", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "pica (computer)", "lang" => "en"}], "symbols" => [{"id" => "pica_computer", "ascii" => "pc", "html" => "pc", "latex" => "\\ensuremath{\\mathrm{pc}}", "mathml" => "pc", "unicode" => "pc"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}, {"id" => "NISTq48", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:iso1000:code:pc", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/PARSEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu279", "type" => "nist"}, {"id" => "u:printers_pica", "type" => "unitsml"}], "short" => "printers_pica", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "pica (printer's)", "lang" => "en"}], "symbols" => [{"id" => "pica_printer", "ascii" => "pc", "html" => "pc", "latex" => "\\ensuremath{\\mathrm{pc}}", "mathml" => "pc", "unicode" => "pc"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:iso1000:code:pc", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/PARSEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu27p10'3.u1.u3e-1/1", "type" => "nist"}, {"id" => "u:kilogram_meter_per_second", "type" => "unitsml"}], "short" => "kilogram_meter_per_second", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "kilogram meter per second", "lang" => "en"}], "symbols" => [{"id" => "kg*m*s^-1", "ascii" => "kg*m*s^-1", "html" => "kg · m/s", "latex" => "\\ensuremath{\\mathrm{kg\\cdot m/s}}", "mathml" => "kg·m/s", "unicode" => "N·m/s"}], "quantity_references" => [{"id" => "NISTq131", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu27p10'3.u1e-1/1", "type" => "nist"}, {"id" => "u:kilogram_per_meter", "type" => "unitsml"}], "short" => "kilogram_per_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "kilogram per meter", "lang" => "en"}], "symbols" => [{"id" => "kg*m^-1", "ascii" => "kg*m^-1", "html" => "kg/m", "latex" => "\\ensuremath{\\mathrm{kg/m}}", "mathml" => "kg/m", "unicode" => "kg/m"}], "quantity_references" => [{"id" => "NISTq126", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/KiloGM-PER-M", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu27p10'3.u1e-2/1", "type" => "nist"}, {"id" => "u:kilogram_per_square_meter", "type" => "unitsml"}], "short" => "kilogram_per_square_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "kilogram per square meter", "lang" => "en"}], "symbols" => [{"id" => "kg*m^-2", "ascii" => "kg*m^-2", "html" => "kg/m2", "latex" => "\\ensuremath{\\mathrm{kg/m^2}}", "mathml" => "kg/m2", "unicode" => "kg/m²"}], "quantity_references" => [{"id" => "NISTq31", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/KiloGM-PER-M2", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu27p10'3.u1e-3/1", "type" => "nist"}, {"id" => "u:kilogram_per_cubic_meter", "type" => "unitsml"}], "short" => "kilogram_per_cubic_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "kilogram per cubic meter", "lang" => "en"}], "symbols" => [{"id" => "kg*m^-3", "ascii" => "kg*m^-3", "html" => "kg/m3", "latex" => "\\ensuremath{\\mathrm{kg/m^3}}", "mathml" => "kg/m3", "unicode" => "kg·m⁻³"}], "quantity_references" => [{"id" => "NISTq33", "type" => "nist"}, {"id" => "NISTq51", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -3, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu27p10'3.u1e2/1", "type" => "nist"}, {"id" => "u:kilogram_meter_squared", "type" => "unitsml"}], "short" => "kilogram_meter_squared", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "kilogram meter squared", "lang" => "en"}], "symbols" => [{"id" => "kg*m^2", "ascii" => "kg*m^2", "html" => "kg · m2", "latex" => "\\ensuremath{\\mathrm{kg\\cdot m^2}}", "mathml" => "kg·m2", "unicode" => "kg·m²"}], "quantity_references" => [{"id" => "NISTq127", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/KiloGM-M2", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu27p10'3.u1e2/1.u3e-1/1", "type" => "nist"}, {"id" => "u:kilogram_meter_squared_per_second", "type" => "unitsml"}], "short" => "kilogram_meter_squared_per_second", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "kilogram meter squared per second", "lang" => "en"}], "symbols" => [{"id" => "kg*m^2*s^-1", "ascii" => "kg*m^2*s^-1", "html" => "kg · m2/s", "latex" => "\\ensuremath{\\mathrm{kg\\cdot m^2/s}}", "mathml" => "kg·m2/s", "unicode" => "kg·m²/s"}], "quantity_references" => [{"id" => "NISTq132", "type" => "nist"}, {"id" => "NISTq132", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => 2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/KiloGM-M2-PER-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu27p10'3.u3e-1/1", "type" => "nist"}, {"id" => "u:kilogram_per_second", "type" => "unitsml"}], "short" => "kilogram_per_second", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "kilogram per second", "lang" => "en"}], "symbols" => [{"id" => "kg*s^-1", "ascii" => "kg*s^-1", "html" => "kg/s", "latex" => "\\ensuremath{\\mathrm{kg/s}}", "mathml" => "kg/s", "unicode" => "kg/s"}], "quantity_references" => [{"id" => "NISTq150", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/KiloGM-PER-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu28", "type" => "nist"}, {"id" => "u:gray", "type" => "unitsml"}], "short" => "gray", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "gray", "lang" => "en"}, {"value" => "gray", "lang" => "fr"}], "symbols" => [{"id" => "Gy", "ascii" => "Gy", "html" => "Gy", "latex" => "\\ensuremath{\\mathrm{Gy}}", "mathml" => "Gy", "unicode" => "Gy"}], "quantity_references" => [{"id" => "NISTq36", "type" => "nist"}, {"id" => "NISTq37", "type" => "nist"}, {"id" => "NISTq38", "type" => "nist"}], "si_derived_bases" => [{"power" => -2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu7", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/gray", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:Gy", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/GRAY", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu28.u3e-1/1", "type" => "nist"}, {"id" => "u:gray_per_second", "type" => "unitsml"}], "short" => "gray_per_second", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "gray per second", "lang" => "en"}], "symbols" => [{"id" => "Gy*s^-1", "ascii" => "Gy*s^-1", "html" => "Gy/s", "latex" => "\\ensuremath{\\mathrm{Gy/s}}", "mathml" => "Gy/s", "unicode" => "Gy/s"}], "quantity_references" => [{"id" => "NISTq194", "type" => "nist"}, {"id" => "NISTq76", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu28", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/GRAY-PER-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu280", "type" => "nist"}, {"id" => "u:computer_point", "type" => "unitsml"}], "short" => "computer_point", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "point (computer)", "lang" => "en"}], "symbols" => [{"id" => "pt_computer", "ascii" => "pt", "html" => "pt", "latex" => "\\ensuremath{\\mathrm{pt}}", "mathml" => "pt", "unicode" => "pt"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}, {"id" => "NISTq48", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/PT", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu281", "type" => "nist"}, {"id" => "u:us_survey_rod", "type" => "unitsml"}], "short" => "us_survey_rod", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "rod (based on US survey foot)", "lang" => "en"}, {"value" => "rod", "lang" => "en"}], "symbols" => [{"id" => "rd", "ascii" => "rd", "html" => "rd", "latex" => "rd", "mathml" => "rd", "unicode" => "rd"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-lengths:code:[rd_us]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/ROD", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu282", "type" => "nist"}, {"id" => "u:us_survey_fathom", "type" => "unitsml"}], "short" => "us_survey_fathom", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "fathom (based on US survey foot)", "lang" => "en"}, {"value" => "fathom", "lang" => "en"}], "symbols" => [{"id" => "fath", "ascii" => "fath", "html" => "fath", "latex" => "\\ensuremath{\\mathrm{fath}}", "mathml" => "fath", "unicode" => "fath"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[fth_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FATH", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu283", "type" => "nist"}, {"id" => "u:circular_mil", "type" => "unitsml"}], "short" => "circular_mil", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "circular mil", "lang" => "en"}], "symbols" => [{"id" => "cmil", "ascii" => "cmil", "html" => "cmil", "latex" => "\\ensuremath{\\mathrm{cmil}}", "mathml" => "cmil", "unicode" => "cmil"}], "quantity_references" => [{"id" => "NISTq8", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[cml_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MIL_Circ", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu284", "type" => "nist"}, {"id" => "u:horsepower", "type" => "unitsml"}], "short" => "horsepower", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "horsepower", "lang" => "en"}], "symbols" => [{"id" => "hp", "ascii" => "hp", "html" => "hp", "latex" => "\\ensuremath{\\mathrm{hp}}", "mathml" => "hp", "unicode" => "hp"}], "quantity_references" => [{"id" => "NISTq20", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:heat:code:[HP]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/HP", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu285", "type" => "nist"}, {"id" => "u:boiler_horsepower", "type" => "unitsml"}], "short" => "boiler_horsepower", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "horsepower, boiler", "lang" => "en"}, {"value" => "boiler horsepower", "lang" => "en"}], "symbols" => [{"id" => "hp_boiler", "ascii" => "hp", "html" => "hp", "latex" => "\\ensuremath{\\mathrm{hp}}", "mathml" => "hp", "unicode" => "hp"}], "quantity_references" => [{"id" => "NISTq20", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/HP_Boiler", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu286", "type" => "nist"}, {"id" => "u:water_horsepower", "type" => "unitsml"}], "short" => "water_horsepower", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "horsepower, water", "lang" => "en"}, {"value" => "water horsepower", "lang" => "en"}], "symbols" => [{"id" => "hp_water", "ascii" => "hp", "html" => "hp", "latex" => "\\ensuremath{\\mathrm{hp}}", "mathml" => "hp", "unicode" => "hp"}], "quantity_references" => [{"id" => "NISTq20", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/HP_H2O", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu287", "type" => "nist"}, {"id" => "u:uk_horsepower", "type" => "unitsml"}], "short" => "uk_horsepower", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "horsepower (UK)", "lang" => "en"}], "symbols" => [{"id" => "hp_UK", "ascii" => "hp", "html" => "hp", "latex" => "\\ensuremath{\\mathrm{hp}}", "mathml" => "hp", "unicode" => "hp"}], "quantity_references" => [{"id" => "NISTq20", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/HP", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu288", "type" => "nist"}, {"id" => "u:degree_Rankine", "type" => "unitsml"}], "short" => "degree_Rankine", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "degree Rankine", "lang" => "en"}], "symbols" => [{"id" => "degR", "ascii" => "degR", "html" => "°R", "latex" => "\\ensuremath{mathrm{^{\\circ}R}}", "mathml" => "°R", "unicode" => "°R"}], "quantity_references" => [{"id" => "NISTq5", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:heat:code:[degR]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/DEG_R", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu289", "type" => "nist"}, {"id" => "u:dalton", "type" => "unitsml"}], "short" => "dalton", "root" => false, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "dalton", "lang" => "en"}, {"value" => "dalton", "lang" => "fr"}], "symbols" => [{"id" => "Da", "ascii" => "Da", "html" => "Da", "latex" => "\\ensuremath{\\mathrm{Da}}", "mathml" => "Da", "unicode" => "Da"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu241", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/dalton", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/DA", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu29", "type" => "nist"}, {"id" => "u:sievert", "type" => "unitsml"}], "short" => "sievert", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "sievert", "lang" => "en"}, {"value" => "sievert", "lang" => "fr"}], "symbols" => [{"id" => "Sv", "ascii" => "Sv", "html" => "Sv", "latex" => "\\ensuremath{\\mathrm{Sv}}", "mathml" => "Sv", "unicode" => "Sv"}], "quantity_references" => [{"id" => "NISTq39", "type" => "nist"}], "si_derived_bases" => [{"power" => 2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/sievert", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:Sv", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/SV", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu290", "type" => "nist"}, {"id" => "u:natural_unit_of_length", "type" => "unitsml"}], "short" => "natural_unit_of_length", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "natural unit of length", "lang" => "en"}], "symbols" => [{"id" => "lambda-bar_C", "ascii" => "lambda-bar_C", "html" => "ƛC", "latex" => "\\ensuremath{\\lambdabar_C}", "mathml" => "ƛC", "unicode" => "ƛ_C"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu291", "type" => "nist"}, {"id" => "u:atomic_unit_of_1st_hyperpolarizability", "type" => "unitsml"}], "short" => "atomic_unit_of_1st_hyperpolarizability", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of 1st hyperpolarizability", "lang" => "en"}], "symbols" => [{"id" => "e^3a_0^3*(E_h^3)", "ascii" => "e^3a_0^3*(E_h^3)", "html" => "e3a03Eh3", "latex" => "\\ensuremath{\\mathit{e}^3/\\mathit(a}_0^3\\mathit{E}_h^3}", "mathml" => "e3a03Eh3", "unicode" => "𝑒³𝑎₀³𝐸ₕ³"}], "quantity_references" => [{"id" => "NISTq172", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu292", "type" => "nist"}, {"id" => "u:atomic_unit_of_2nd_hyperpolarizability", "type" => "unitsml"}], "short" => "atomic_unit_of_2nd_hyperpolarizability", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of 2nd hyperpolarizability", "lang" => "en"}], "symbols" => [{"id" => "e^4a_0^4*(E_h^3)", "ascii" => "e^4a_0^4*(E_h^3)", "html" => "e4a04Eh3", "latex" => "\\ensuremath{\\mathit{e}^4/\\mathit(a}_0^4\\mathit{E}_h^3}", "mathml" => "e4a04Eh3", "unicode" => "𝑒⁴𝑎₀⁴𝐸ₕ⁴"}], "quantity_references" => [{"id" => "NISTq173", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu293", "type" => "nist"}, {"id" => "u:atomic_unit_of_permittivity", "type" => "unitsml"}], "short" => "atomic_unit_of_permittivity", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of permittivity", "lang" => "en"}], "symbols" => [{"id" => "e^2*(a_0*E_h)-1", "ascii" => "e^2*(a_0*E_h)-1", "html" => "e2/a0Eh", "latex" => "\\ensuremath{\\mathit{e}^2/\\mathit(a}_0\\mathit{E}_h}", "mathml" => "e2/a0Eh", "unicode" => "𝑒²/𝑎₀𝐸ₕ"}], "quantity_references" => [{"id" => "NISTq71", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu294", "type" => "nist"}, {"id" => "u:atomic_unit_of_velocity", "type" => "unitsml"}], "short" => "atomic_unit_of_velocity", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "atomic unit of velocity", "lang" => "en"}], "symbols" => [{"id" => "a_0*E_h*h-bar-1", "ascii" => "a_0*E_h*h-bar-1", "html" => "a0Eh/ħ", "latex" => "\\ensuremath{\\mathit{a}_\\mathrm{0}\\mathit{E}_{h}/\\mathit{\\hbar}}", "mathml" => "a0Eh/ħ", "unicode" => "𝑎₀𝐸ₕ/ℏ"}], "quantity_references" => [{"id" => "NISTq12", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu295", "type" => "nist"}, {"id" => "u:natural_unit_of_energy", "type" => "unitsml"}], "short" => "natural_unit_of_energy", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "natural unit of energy", "lang" => "en"}], "symbols" => [{"id" => "m_e*c^2", "ascii" => "m_e*c^2", "html" => "mec2", "latex" => "\\ensuremath{\\mathit{m}_e\\mathit{c}^2}", "mathml" => "mec2", "unicode" => "𝑚ₑ𝑐²"}], "quantity_references" => [{"id" => "NISTq17", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu296", "type" => "nist"}, {"id" => "u:natural_unit_of_momentum", "type" => "unitsml"}], "short" => "natural_unit_of_momentum", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "natural unit of momentum", "lang" => "en"}], "symbols" => [{"id" => "m_e*c", "ascii" => "m_e*c", "html" => "mec", "latex" => "\\ensuremath{\\mathit{m}_e\\mathit{c}}", "mathml" => "mec", "unicode" => "𝑚ₑ𝑐"}], "quantity_references" => [{"id" => "NISTq131", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu297", "type" => "nist"}, {"id" => "u:natural_unit_of_action_in_eV_s", "type" => "unitsml"}], "short" => "natural_unit_of_action_in_eV_s", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "natural unit of action in eV s", "lang" => "en"}], "symbols" => [{"id" => "h-bar_eV_s", "ascii" => "h-bar", "html" => "ħ", "latex" => "\\ensuremath{mathrm{\\hbar}}", "mathml" => "ħ", "unicode" => "ℏ"}], "quantity_references" => [{"id" => "NISTq154", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu298", "type" => "nist"}, {"id" => "u:natural_unit_of_energy_in_MeV", "type" => "unitsml"}], "short" => "natural_unit_of_energy_in_MeV", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "natural unit of energy in MeV", "lang" => "en"}], "symbols" => [{"id" => "m_e*c^2_MeV", "ascii" => "m_e*c^2", "html" => "mec2", "latex" => "\\ensuremath{\\mathit{m}_e\\mathit{c}^2}", "mathml" => "mec2", "unicode" => "𝑚ₑ𝑐²"}], "quantity_references" => [{"id" => "NISTq17", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu299", "type" => "nist"}, {"id" => "u:natural_unit_of_momentum_in_MeV_per_c", "type" => "unitsml"}], "short" => "natural_unit_of_momentum_in_MeV_per_c", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "natural unit of momentum in MeV/c", "lang" => "en"}], "symbols" => [{"id" => "m_e*c_MeV/C", "ascii" => "m_e*c", "html" => "mec", "latex" => "\\ensuremath{\\mathit{m}_e\\mathit{c}}", "mathml" => "mec", "unicode" => "𝑚ₑ𝑐"}], "quantity_references" => [{"id" => "NISTq131", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu3", "type" => "nist"}, {"id" => "u:second", "type" => "unitsml"}], "short" => "second", "root" => true, "unit_system_reference" => [{"id" => "si-base", "type" => "unitsml"}], "names" => [{"value" => "second", "lang" => "en"}, {"value" => "seconde", "lang" => "fr"}], "symbols" => [{"id" => "s", "ascii" => "s", "html" => "s", "latex" => "\\ensuremath{\\mathrm{s}}", "mathml" => "s", "unicode" => "s"}, {"id" => "\"_s", "ascii" => "\"", "html" => "″", "latex" => "\\ensuremath{\\mathrm{''}}", "mathml" => "", "unicode" => "″"}, {"id" => "dprime_s", "ascii" => "\"", "html" => "″", "latex" => "\\ensuremath{\\mathrm{''}}", "mathml" => "", "unicode" => "″"}], "quantity_references" => [{"id" => "NISTq109", "type" => "nist"}, {"id" => "NISTq110", "type" => "nist"}, {"id" => "NISTq3", "type" => "nist"}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/second", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:base-unit:code:s", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu30", "type" => "nist"}, {"id" => "u:katal", "type" => "unitsml"}], "short" => "katal", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "katal", "lang" => "en"}, {"value" => "katal", "lang" => "fr"}], "symbols" => [{"id" => "kat", "ascii" => "kat", "html" => "kat", "latex" => "\\ensuremath{\\mathrm{kat}}", "mathml" => "kat", "unicode" => "kat"}], "quantity_references" => [{"id" => "NISTq44", "type" => "nist"}], "si_derived_bases" => [{"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu6", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/katal", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:chemical:code:kat", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/KAT", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu30.u1e-3/1", "type" => "nist"}, {"id" => "u:katal_per_cubic_meter", "type" => "unitsml"}], "short" => "katal_per_cubic_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "katal per cubic meter", "lang" => "en"}], "symbols" => [{"id" => "kat*m^-3", "ascii" => "kat*m^-3", "html" => "kat/m3", "latex" => "\\ensuremath{\\mathrm{kat/m^3}}", "mathml" => "kat/m3", "unicode" => "kat/m³"}], "quantity_references" => [{"id" => "NISTq84", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu30", "type" => "nist"}}, {"power" => -3, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/KAT-PER-M3", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu300", "type" => "nist"}, {"id" => "u:imperial_quart", "type" => "unitsml"}], "short" => "imperial_quart", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "quart (UK)", "lang" => "en"}, {"value" => "quart", "lang" => "en"}], "symbols" => [{"id" => "qt (UK)", "ascii" => "qt (UK)", "html" => "qt (UK)", "latex" => "\\ensuremath{\\mathrm{qt (UK)}}", "mathml" => "qt (UK)", "unicode" => "qt (UK)"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[qt_us]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/QT_UK", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu301", "type" => "nist"}, {"id" => "u:us_dry_quart", "type" => "unitsml"}], "short" => "us_dry_quart", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "dry quart (US)", "lang" => "en"}, {"value" => "quart", "lang" => "en"}], "symbols" => [{"id" => "dry qt (US)", "ascii" => "dry qt (US)", "html" => "dry qt (US)", "latex" => "\\ensuremath{\\mathrm{dry qt (US)}}", "mathml" => "dry qt (US)", "unicode" => "dry qt (US)"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[qt_us]", "authority" => "ucum"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu302", "type" => "nist"}, {"id" => "u:us_quart", "type" => "unitsml"}], "short" => "us_quart", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "liquid quart (US)", "lang" => "en"}, {"value" => "quart", "lang" => "en"}], "symbols" => [{"id" => "liq qt (US)", "ascii" => "liq qt (US)", "html" => "liq qt (US)", "latex" => "\\ensuremath{\\mathrm{liq qt (US)}}", "mathml" => "liq qt (US)", "unicode" => "liq qt (US)"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[qt_us]", "authority" => "ucum"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu303", "type" => "nist"}, {"id" => "u:us_teaspoon", "type" => "unitsml"}], "short" => "us_teaspoon", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "teaspoon", "lang" => "en"}], "symbols" => [{"id" => "tsp", "ascii" => "tsp", "html" => "tsp", "latex" => "\\ensuremath{\\mathrm{tsp}}", "mathml" => "tsp", "unicode" => "tsp"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[tsp_us]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/TSP", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu304", "type" => "nist"}, {"id" => "u:us_tablespoon", "type" => "unitsml"}], "short" => "us_tablespoon", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "tablespoon", "lang" => "en"}], "symbols" => [{"id" => "tbsp", "ascii" => "tbsp", "html" => "tbsp", "latex" => "\\ensuremath{\\mathrm{tbsp}}", "mathml" => "tbsp", "unicode" => "tbsp"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[tbs_us]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/TBSP", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu305", "type" => "nist"}, {"id" => "u:us_label_tablespoon", "type" => "unitsml"}], "short" => "us_label_tablespoon", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "tablespoon (FDA)", "lang" => "en"}, {"value" => "teaspoon", "lang" => "en"}], "symbols" => [{"id" => "tbsp_label", "ascii" => "tbsp", "html" => "tbsp", "latex" => "\\ensuremath{\\mathrm{tbsp}}", "mathml" => "tbsp", "unicode" => "tbsp"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[tsp_us]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/TBSP", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu306", "type" => "nist"}, {"id" => "u:us_label_teaspoon", "type" => "unitsml"}], "short" => "us_label_teaspoon", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "teaspoon (FDA)", "lang" => "en"}, {"value" => "teaspoon", "lang" => "en"}], "symbols" => [{"id" => "tsp_label", "ascii" => "tsp", "html" => "tsp", "latex" => "\\ensuremath{\\mathrm{tsp}}", "mathml" => "tsp", "unicode" => "tsp"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[tsp_us]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/TSP", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu307", "type" => "nist"}, {"id" => "u:us_label_cup", "type" => "unitsml"}], "short" => "us_label_cup", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "cup (FDA)", "lang" => "en"}, {"value" => "cup", "lang" => "en"}], "symbols" => [{"id" => "cup_label", "ascii" => "cup", "html" => "cup", "latex" => "\\ensuremath{\\mathrm{cup}}", "mathml" => "cup", "unicode" => "cup"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[cup_us]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/CUP", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu308", "type" => "nist"}, {"id" => "u:us_label_fluid_ounce", "type" => "unitsml"}], "short" => "us_label_fluid_ounce", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "fluid ounce (FDA)", "lang" => "en"}, {"value" => "fluid ounce", "lang" => "en"}, {"value" => "ounce", "lang" => "en"}], "symbols" => [{"id" => "fl oz (US label)", "ascii" => "fl oz (US label)", "html" => "fl oz (US label)", "latex" => "\\ensuremath{\\mathrm{fl oz (US label)}}", "mathml" => "fl oz (US label)", "unicode" => "fl oz (US label)"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[foz_us]", "authority" => "ucum"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu309", "type" => "nist"}, {"id" => "u:us_label_ounce", "type" => "unitsml"}], "short" => "us_label_ounce", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "ounce (FDA)", "lang" => "en"}, {"value" => "ounce", "lang" => "en"}], "symbols" => [{"id" => "oz (US label)", "ascii" => "oz (US label)", "html" => "oz (US label)", "latex" => "\\ensuremath{\\mathrm{oz (US label)}}", "mathml" => "oz (US label)", "unicode" => "oz (US label)"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:avoirdupois:code:[oz_av]", "authority" => "ucum"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu31", "type" => "nist"}, {"id" => "u:hertz", "type" => "unitsml"}], "short" => "hertz", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "hertz", "lang" => "en"}, {"value" => "hertz", "lang" => "fr"}], "symbols" => [{"id" => "Hz", "ascii" => "Hz", "html" => "Hz", "latex" => "\\ensuremath{\\mathrm{Hz}}", "mathml" => "Hz", "unicode" => "Hz"}], "quantity_references" => [{"id" => "NISTq45", "type" => "nist"}], "si_derived_bases" => [{"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/hertz", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:Hz", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/HZ", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu310", "type" => "nist"}, {"id" => "u:us_survey_chain", "type" => "unitsml"}], "short" => "us_survey_chain", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "chain (based on US survey foot)", "lang" => "en"}, {"value" => "surveyors chain", "lang" => "en"}, {"value" => "Gunter's chain", "lang" => "en"}, {"value" => "chain", "lang" => "en"}], "symbols" => [{"id" => "ch", "ascii" => "ch", "html" => "ch", "latex" => "\\ensuremath{\\mathrm{ch}}", "mathml" => "ch", "unicode" => "ch"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-lengths:code:[ch_us]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/CH", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu311", "type" => "nist"}, {"id" => "u:us_survey_link", "type" => "unitsml"}], "short" => "us_survey_link", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "link (based on US survey foot)", "lang" => "en"}, {"value" => "surveyors link", "lang" => "en"}, {"value" => "Gunter's link", "lang" => "en"}, {"value" => "link", "lang" => "en"}], "symbols" => [{"id" => "lnk", "ascii" => "lnk", "html" => "lnk", "latex" => "\\ensuremath{\\mathrm{lnk}}", "mathml" => "lnk", "unicode" => "lnk"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu312", "type" => "nist"}, {"id" => "u:us_survey_furlong", "type" => "unitsml"}], "short" => "us_survey_furlong", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "furlong (based on US survey foot)", "lang" => "en"}, {"value" => "furlong", "lang" => "en"}], "symbols" => [{"id" => "fur", "ascii" => "fur", "html" => "fur", "latex" => "\\ensuremath{\\mathrm{fur}}", "mathml" => "fur", "unicode" => "fur"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-lengths:code:[fur_us]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FUR", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu313", "type" => "nist"}, {"id" => "u:us_survey_mile", "type" => "unitsml"}], "short" => "us_survey_mile", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "mile (based on US survey foot)", "lang" => "en"}, {"value" => "survey mile", "lang" => "en"}, {"value" => "mile", "lang" => "en"}], "symbols" => [{"id" => "mi_US_survey", "ascii" => "mi", "html" => "mi", "latex" => "\\ensuremath{\\mathrm{mi}}", "mathml" => "mi", "unicode" => "mi"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[mi_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MI_US", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu314", "type" => "nist"}, {"id" => "u:us_survey_yard", "type" => "unitsml"}], "short" => "us_survey_yard", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "yard (based on US survey foot)", "lang" => "en"}, {"value" => "yard", "lang" => "en"}], "symbols" => [{"id" => "yd_US_survey", "ascii" => "yd", "html" => "yd", "latex" => "\\ensuremath{\\mathrm{yd}}", "mathml" => "yd", "unicode" => "yd"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[yd_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/YD", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu315", "type" => "nist"}, {"id" => "u:us_survey_foot", "type" => "unitsml"}], "short" => "us_survey_foot", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "foot (based on US survey foot)", "lang" => "en"}, {"value" => "survey foot", "lang" => "en"}, {"value" => "foot", "lang" => "en"}], "symbols" => [{"id" => "ft_US_survey", "ascii" => "ft", "html" => "ft", "latex" => "\\ensuremath{\\mathrm{ft}}", "mathml" => "ft", "unicode" => "ft"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[ft_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FT_US", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu316", "type" => "nist"}, {"id" => "u:us_survey_inch", "type" => "unitsml"}], "short" => "us_survey_inch", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "inch (based on US survey foot)", "lang" => "en"}, {"value" => "inch", "lang" => "en"}], "symbols" => [{"id" => "in_US_survey", "ascii" => "in", "html" => "in", "latex" => "\\ensuremath{\\mathrm{in}}", "mathml" => "in", "unicode" => "in"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[in_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/IN", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu317", "type" => "nist"}, {"id" => "u:us_acre", "type" => "unitsml"}], "short" => "us_acre", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "acre (based on US survey foot)", "lang" => "en"}, {"value" => "acre", "lang" => "en"}], "symbols" => [{"id" => "ac", "ascii" => "ac", "html" => "ac", "latex" => "\\ensuremath{\\mathrm{ac}}", "mathml" => "ac", "unicode" => "ac"}], "quantity_references" => [{"id" => "NISTq8", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-lengths:code:[acr_us]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/AC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu318", "type" => "nist"}, {"id" => "u:cm_Hg", "type" => "unitsml"}], "short" => "cm_Hg", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "conventional centimeter of mercury", "lang" => "en"}, {"value" => "centimeter of mercury, conventional", "lang" => "en"}, {"value" => "centimeter of mercury", "lang" => "en"}], "symbols" => [{"id" => "cmHg", "ascii" => "cmHg", "html" => "cmHg", "latex" => "\\ensuremath{\\mathrm{cmHg}}", "mathml" => "cmHg", "unicode" => "cmHg"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/CentiM_HG", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu319", "type" => "nist"}, {"id" => "u:0C_cm_Hg", "type" => "unitsml"}], "short" => "0C_cm_Hg", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "centimeter of mercury (0 degC)", "lang" => "en"}], "symbols" => [{"id" => "cmHg_0degC", "ascii" => "cmHg", "html" => "cmHg", "latex" => "\\ensuremath{\\mathrm{cmHg}}", "mathml" => "cmHg", "unicode" => "cmHg"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/CentiM_HG_0DEG_C", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu32", "type" => "nist"}, {"id" => "u:lumen", "type" => "unitsml"}], "short" => "lumen", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "lumen", "lang" => "en"}, {"value" => "lumen", "lang" => "fr"}], "symbols" => [{"id" => "lm", "ascii" => "lm", "html" => "lm", "latex" => "\\ensuremath{\\mathrm{lm}}", "mathml" => "lm", "unicode" => "lm"}], "quantity_references" => [{"id" => "NISTq46", "type" => "nist"}], "si_derived_bases" => [{"power" => 1, "unit_reference" => {"id" => "NISTu7", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/lumen", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:lm", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/LM", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu320", "type" => "nist"}, {"id" => "u:4C_cm_water", "type" => "unitsml"}], "short" => "4C_cm_water", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "centimeter of water (4 degC)", "lang" => "en"}], "symbols" => [{"id" => "cmH_2O_4degC", "ascii" => "cmH_2O", "html" => "cmH2O", "latex" => "\\ensuremath{\\mathrm{cmH_{2}O}}", "mathml" => "cmH2O", "unicode" => "cmH₂O"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu321", "type" => "nist"}, {"id" => "u:cm_water", "type" => "unitsml"}], "short" => "cm_water", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "conventional centimeter of water", "lang" => "en"}, {"value" => "centimeter of water, conventional", "lang" => "en"}, {"value" => "centimeter of water", "lang" => "en"}], "symbols" => [{"id" => "cmH_2O", "ascii" => "cmH_2O", "html" => "cmH2O", "latex" => "\\ensuremath{\\mathrm{cmH_{2}O}}", "mathml" => "cmH2O", "unicode" => "cmH₂O"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu322", "type" => "nist"}, {"id" => "u:in_water", "type" => "unitsml"}], "short" => "in_water", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "conventional inch of water", "lang" => "en"}, {"value" => "inch of water, conventional", "lang" => "en"}, {"value" => "inch of water", "lang" => "en"}], "symbols" => [{"id" => "inH_2O", "ascii" => "inH_2O", "html" => "inH2O", "latex" => "\\ensuremath{\\mathrm{inH_{2}O}}", "mathml" => "inH2O", "unicode" => "inH₂O"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/IN_H2O", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu323", "type" => "nist"}, {"id" => "u:39F_in_water", "type" => "unitsml"}], "short" => "39F_in_water", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "inch of water (39.2 degF)", "lang" => "en"}], "symbols" => [{"id" => "inH_2O_39degF", "ascii" => "inH_2O", "html" => "inH2O", "latex" => "\\ensuremath{\\mathrm{inH_{2}O}}", "mathml" => "inH2O", "unicode" => "inH₂O"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu324", "type" => "nist"}, {"id" => "u:60F_in_water", "type" => "unitsml"}], "short" => "60F_in_water", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "inch of water (60 degF)", "lang" => "en"}], "symbols" => [{"id" => "inH_2O_60degF", "ascii" => "inH_2O", "html" => "inH2O", "latex" => "\\ensuremath{\\mathrm{inH_{2}O}}", "mathml" => "inH2O", "unicode" => "inH₂O"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu325", "type" => "nist"}, {"id" => "u:ft_water", "type" => "unitsml"}], "short" => "ft_water", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "conventional foot of water", "lang" => "en"}, {"value" => "foot of water, conventional", "lang" => "en"}, {"value" => "foot of water", "lang" => "en"}], "symbols" => [{"id" => "ftH_2O", "ascii" => "ftH_2O", "html" => "ftH2O", "latex" => "\\ensuremath{\\mathrm{ftH_{2}O}}", "mathml" => "ftH2O", "unicode" => "ftH₂O"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FT_H2O", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu326", "type" => "nist"}, {"id" => "u:39F_ft_water", "type" => "unitsml"}], "short" => "39F_ft_water", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "foot of water (39.2 degF)", "lang" => "en"}], "symbols" => [{"id" => "ftH_2O_39degF", "ascii" => "ftH_2O", "html" => "ftH2O", "latex" => "\\ensuremath{\\mathrm{ftH_{2}O}}", "mathml" => "ftH2O", "unicode" => "ftH₂O"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu327", "type" => "nist"}, {"id" => "u:32F_in_Hg", "type" => "unitsml"}], "short" => "32F_in_Hg", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "inch of mercury (32 degF)", "lang" => "en"}], "symbols" => [{"id" => "inHg_32degF", "ascii" => "inHg", "html" => "inHg", "latex" => "\\ensuremath{\\mathrm{inHg}}", "mathml" => "inHg", "unicode" => "inHg"}, {"id" => "\"Hg_32degF", "ascii" => "\"Hg", "html" => "″Hg", "latex" => "\\ensuremath{\\mathrm{''Hg}}", "mathml" => "″Hg", "unicode" => "″Hg"}, {"id" => "dprime_Hg_32degF", "ascii" => "\"Hg", "html" => "″Hg", "latex" => "\\ensuremath{\\mathrm{''Hg}}", "mathml" => "″Hg", "unicode" => "″Hg"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/IN_HG_32DEG_F", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu328", "type" => "nist"}, {"id" => "u:60F_in_Hg", "type" => "unitsml"}], "short" => "60F_in_Hg", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "inch of mercury (60 degF)", "lang" => "en"}], "symbols" => [{"id" => "inHg_60degF", "ascii" => "inHg", "html" => "inHg", "latex" => "\\ensuremath{\\mathrm{inHg}}", "mathml" => "inHg", "unicode" => "inHg"}, {"id" => "\"Hg_60degF", "ascii" => "\"Hg", "html" => "″Hg", "latex" => "\\ensuremath{\\mathrm{''Hg}}", "mathml" => "″Hg", "unicode" => "″Hg"}, {"id" => "dprime_Hg_60degF", "ascii" => "\"Hg", "html" => "″Hg", "latex" => "\\ensuremath{\\mathrm{''Hg}}", "mathml" => "″Hg", "unicode" => "″Hg"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/IN_HG_60DEG_F", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu329", "type" => "nist"}, {"id" => "u:in_Hg", "type" => "unitsml"}], "short" => "in_Hg", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "conventional inch of mercury", "lang" => "en"}, {"value" => "inch of mercury, conventional", "lang" => "en"}, {"value" => "inch of mercury", "lang" => "en"}], "symbols" => [{"id" => "inHg", "ascii" => "inHg", "html" => "inHg", "latex" => "\\ensuremath{\\mathrm{inHg}}", "mathml" => "inHg", "unicode" => "inHg"}, {"id" => "\"Hg", "ascii" => "\"Hg", "html" => "″Hg", "latex" => "\\ensuremath{\\mathrm{''Hg}}", "mathml" => "″Hg", "unicode" => "″Hg"}, {"id" => "dprime_Hg", "ascii" => "\"Hg", "html" => "″Hg", "latex" => "\\ensuremath{\\mathrm{''Hg}}", "mathml" => "″Hg", "unicode" => "″Hg"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/IN_HG", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu33", "type" => "nist"}, {"id" => "u:lux", "type" => "unitsml"}], "short" => "lux", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "lux", "lang" => "en"}, {"value" => "lux", "lang" => "fr"}], "symbols" => [{"id" => "lx", "ascii" => "lx", "html" => "lx", "latex" => "\\ensuremath{\\mathrm{lx}}", "mathml" => "lx", "unicode" => "lx"}], "quantity_references" => [{"id" => "NISTq47", "type" => "nist"}], "si_derived_bases" => [{"power" => -2, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu7", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/lux", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:lx", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/LUX", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu330", "type" => "nist"}, {"id" => "u:ft_Hg", "type" => "unitsml"}], "short" => "ft_Hg", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "conventional foot of mercury", "lang" => "en"}, {"value" => "foot of mercury, conventional", "lang" => "en"}, {"value" => "foot of mercury", "lang" => "en"}], "symbols" => [{"id" => "ftHg", "ascii" => "ftHg", "html" => "ftHg", "latex" => "\\ensuremath{\\mathrm{ftnHg}}", "mathml" => "ftHg", "unicode" => "ftHg"}, {"id" => "'Hg", "ascii" => "'Hg", "html" => "′Hg", "latex" => "\\ensuremath{\\mathrm{'Hg}}", "mathml" => "′Hg", "unicode" => "′Hg"}, {"id" => "prime_Hg", "ascii" => "'Hg", "html" => "′Hg", "latex" => "\\ensuremath{\\mathrm{'Hg}}", "mathml" => "′Hg", "unicode" => "′Hg"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FT_HG", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu331", "type" => "nist"}, {"id" => "u:us_therm", "type" => "unitsml"}], "short" => "us_therm", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "therm (US)", "lang" => "en"}], "symbols" => [{"id" => "thm (US)", "ascii" => "thm (US)", "html" => "thm (US)", "latex" => "\\ensuremath{\\mathrm{thm (US)}}", "mathml" => "thm (US)", "unicode" => "thm (US)"}], "quantity_references" => [{"id" => "NISTq17", "type" => "nist"}, {"id" => "NISTq18", "type" => "nist"}, {"id" => "NISTq182", "type" => "nist"}, {"id" => "NISTq183", "type" => "nist"}, {"id" => "NISTq19", "type" => "nist"}, {"id" => "NISTq77", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/THM_US", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu332", "type" => "nist"}, {"id" => "u:pH", "type" => "unitsml"}], "short" => "pH", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "pH", "lang" => "en"}], "symbols" => [{"id" => "pH", "ascii" => "pH", "html" => "pH", "latex" => "\\ensuremath{\\mathrm{pH}}", "mathml" => "pH", "unicode" => "pH"}], "quantity_references" => [{"id" => "NISTq174", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:chemical:code:[pH]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/PH", "authority" => "qudt"}], "scale_reference" => {"id" => "logarithmic_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu333", "type" => "nist"}, {"id" => "u:table_btu", "type" => "unitsml"}], "short" => "table_btu", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "British thermal unit_IT", "lang" => "en"}, {"value" => "International Table Btu", "lang" => "en"}, {"value" => "British thermal unit", "lang" => "en"}], "symbols" => [{"id" => "Btu", "ascii" => "Btu", "html" => "Btu", "latex" => "\\ensuremath{\\mathrm{Btu}}", "mathml" => "Btu", "unicode" => "Btu"}], "quantity_references" => [{"id" => "NISTq19", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:heat:code:[Btu]", "authority" => "ucum"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu334", "type" => "nist"}, {"id" => "u:mean_btu", "type" => "unitsml"}], "short" => "mean_btu", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "British thermal unit (mean)", "lang" => "en"}], "symbols" => [{"id" => "Btu_mean", "ascii" => "Btu", "html" => "Btu", "latex" => "\\ensuremath{\\mathrm{Btu}}", "mathml" => "Btu", "unicode" => "Btu"}], "quantity_references" => [{"id" => "NISTq19", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/BTU_MEAN", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu335", "type" => "nist"}, {"id" => "u:39F_btu", "type" => "unitsml"}], "short" => "39F_btu", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "British thermal unit (39 degF)", "lang" => "en"}], "symbols" => [{"id" => "Btu_39degF", "ascii" => "Btu", "html" => "Btu", "latex" => "\\ensuremath{\\mathrm{Btu}}", "mathml" => "Btu", "unicode" => "Btu"}], "quantity_references" => [{"id" => "NISTq19", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu336", "type" => "nist"}, {"id" => "u:59F_btu", "type" => "unitsml"}], "short" => "59F_btu", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "British thermal unit (59 degF)", "lang" => "en"}], "symbols" => [{"id" => "Btu_59degF", "ascii" => "Btu", "html" => "Btu", "latex" => "\\ensuremath{\\mathrm{Btu}}", "mathml" => "Btu", "unicode" => "Btu"}], "quantity_references" => [{"id" => "NISTq19", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu337", "type" => "nist"}, {"id" => "u:60F_btu", "type" => "unitsml"}], "short" => "60F_btu", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "British thermal unit (60 degF)", "lang" => "en"}], "symbols" => [{"id" => "Btu_60degF", "ascii" => "Btu", "html" => "Btu", "latex" => "\\ensuremath{\\mathrm{Btu}}", "mathml" => "Btu", "unicode" => "Btu"}], "quantity_references" => [{"id" => "NISTq19", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu338", "type" => "nist"}, {"id" => "u:tropical_year", "type" => "unitsml"}], "short" => "tropical_year", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "year, tropical", "lang" => "en"}, {"value" => "tropical year", "lang" => "en"}, {"value" => "year", "lang" => "en"}], "symbols" => [{"id" => "a_tropical_year", "ascii" => "a", "html" => "a", "latex" => "\\ensuremath{\\mathrm{a}}", "mathml" => "a", "unicode" => "a"}], "quantity_references" => [{"id" => "NISTq3", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:iso1000:code:a_t", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/YR_TROPICAL", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu339", "type" => "nist"}, {"id" => "u:sidereal_year", "type" => "unitsml"}], "short" => "sidereal_year", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "year, sidereal", "lang" => "en"}, {"value" => "sidereal year", "lang" => "en"}, {"value" => "year", "lang" => "en"}], "symbols" => [{"id" => "a_sidereal_year", "ascii" => "a", "html" => "a", "latex" => "\\ensuremath{\\mathrm{a}}", "mathml" => "a", "unicode" => "a"}], "quantity_references" => [{"id" => "NISTq3", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:iso1000:code:a", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/YR_Sidereal", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu340", "type" => "nist"}, {"id" => "u:sidereal_day", "type" => "unitsml"}], "short" => "sidereal_day", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "day, sidereal", "lang" => "en"}, {"value" => "sidereal day", "lang" => "en"}, {"value" => "day", "lang" => "en"}], "symbols" => [{"id" => "d_sidereal", "ascii" => "d", "html" => "d", "latex" => "\\ensuremath{\\mathrm{d}}", "mathml" => "d", "unicode" => "d"}], "quantity_references" => [{"id" => "NISTq3", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:iso1000:code:d", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/DAY_Sidereal", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu341", "type" => "nist"}, {"id" => "u:sidereal_hour", "type" => "unitsml"}], "short" => "sidereal_hour", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "hour, sidereal", "lang" => "en"}, {"value" => "sidereal hour", "lang" => "en"}, {"value" => "hour", "lang" => "en"}], "symbols" => [{"id" => "h_sidereal", "ascii" => "h", "html" => "h", "latex" => "\\ensuremath{\\mathrm{h}}", "mathml" => "h", "unicode" => "h"}], "quantity_references" => [{"id" => "NISTq3", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:iso1000:code:h", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/HR_Sidereal", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu342", "type" => "nist"}, {"id" => "u:sidereal_minute", "type" => "unitsml"}], "short" => "sidereal_minute", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "minute, sidereal", "lang" => "en"}, {"value" => "sidereal minute", "lang" => "en"}, {"value" => "minute", "lang" => "en"}], "symbols" => [{"id" => "min_sidereal", "ascii" => "min", "html" => "min", "latex" => "\\ensuremath{\\mathrm{min}}", "mathml" => "min", "unicode" => "min"}], "quantity_references" => [{"id" => "NISTq3", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:iso1000:code:'", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MIN_Sidereal", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu343", "type" => "nist"}, {"id" => "u:sidereal_second", "type" => "unitsml"}], "short" => "sidereal_second", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "second, sidereal", "lang" => "en"}, {"value" => "sidereal second", "lang" => "en"}, {"value" => "second", "lang" => "en"}], "symbols" => [{"id" => "s_sidereal", "ascii" => "s", "html" => "s", "latex" => "\\ensuremath{\\mathrm{s}}", "mathml" => "s", "unicode" => "s"}], "quantity_references" => [{"id" => "NISTq3", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/S", "authority" => "qudt"}, {"type" => "informative", "uri" => "ucum:base-unit:code:s", "authority" => "ucum"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu344", "type" => "nist"}, {"id" => "u:printers_point", "type" => "unitsml"}], "short" => "printers_point", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "point (printer's)", "lang" => "en"}], "symbols" => [{"id" => "pt_printer", "ascii" => "pt", "html" => "pt", "latex" => "\\ensuremath{\\mathrm{pt}}", "mathml" => "pt", "unicode" => "pt"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/PT_BIG", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu345", "type" => "nist"}, {"id" => "u:shake", "type" => "unitsml"}], "short" => "shake", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "shake", "lang" => "en"}], "symbols" => [{"id" => "shake", "ascii" => "shake", "html" => "shake", "latex" => "\\ensuremath{\\mathrm{shake}}", "mathml" => "shake", "unicode" => "shake"}], "quantity_references" => [{"id" => "NISTq3", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/SH", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu346", "type" => "nist"}, {"id" => "u:denier", "type" => "unitsml"}], "short" => "denier", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "denier", "lang" => "en"}], "symbols" => [{"id" => "den", "ascii" => "den", "html" => "den", "latex" => "\\ensuremath{\\mathrm{den}}", "mathml" => "den", "unicode" => "den"}], "quantity_references" => [{"id" => "NISTq176", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:heat:code:[den]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/DENIER", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu347", "type" => "nist"}, {"id" => "u:nato_mil", "type" => "unitsml"}], "short" => "nato_mil", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "angular mil (NATO)", "lang" => "en"}, {"value" => "angular mil", "lang" => "en"}, {"value" => "mil", "lang" => "en"}], "symbols" => [{"id" => "mil_nato", "ascii" => "mil", "html" => "mil", "latex" => "\\ensuremath{\\mathrm{mil}}", "mathml" => "mil", "unicode" => "mil"}], "quantity_references" => [{"id" => "NISTq9", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[mil_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MilLength", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu348", "type" => "nist"}, {"id" => "u:pound_mole", "type" => "unitsml"}], "short" => "pound_mole", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "pound-mole", "lang" => "en"}, {"value" => "pound mole", "lang" => "en"}], "symbols" => [{"id" => "lbmol", "ascii" => "lbmol", "html" => "lbmol", "latex" => "\\ensuremath{\\mathrm{lbmol}}", "mathml" => "lbmol", "unicode" => "lbmol"}], "quantity_references" => [{"id" => "NISTq6", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MOL_LB", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu349", "type" => "nist"}, {"id" => "u:ton_refrigeration", "type" => "unitsml"}], "short" => "ton_refrigeration", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "ton of refrigeration (12 000 Btu_IT/h)", "lang" => "en"}, {"value" => "ton of refrigeration", "lang" => "en"}, {"value" => "ton", "lang" => "en"}], "symbols" => [{"id" => "ton_refrigeration", "ascii" => "ton", "html" => "ton", "latex" => "\\ensuremath{\\mathrm{ton}}", "mathml" => "ton", "unicode" => "ton"}], "quantity_references" => [{"id" => "NISTq20", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/TON_FG", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu350", "type" => "nist"}, {"id" => "u:bit", "type" => "unitsml"}], "short" => "bit", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "bit", "lang" => "en"}], "symbols" => [{"id" => "bit", "ascii" => "bit", "html" => "bit", "latex" => "\\ensuremath{\\mathrm{bit}}", "mathml" => "bit", "unicode" => "bit"}], "quantity_references" => [{"id" => "NISTq177", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:infotech:code:bit_s", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/BIT", "authority" => "qudt"}], "scale_reference" => {"id" => "discrete", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu351", "type" => "nist"}, {"id" => "u:byte", "type" => "unitsml"}], "short" => "byte", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "byte", "lang" => "en"}], "symbols" => [{"id" => "byte_B", "ascii" => "B", "html" => "B", "latex" => "\\ensuremath{\\mathrm{B}}", "mathml" => "B", "unicode" => "B"}], "quantity_references" => [{"id" => "NISTq177", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:infotech:code:By", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/BYTE", "authority" => "qudt"}], "scale_reference" => {"id" => "discrete", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu352", "type" => "nist"}, {"id" => "u:us_peck", "type" => "unitsml"}], "short" => "us_peck", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "peck", "lang" => "en"}], "symbols" => [{"id" => "pk", "ascii" => "pk", "html" => "pk", "latex" => "\\ensuremath{\\mathrm{pk}}", "mathml" => "pk", "unicode" => "pk"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[pk_us]", "authority" => "ucum"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu353", "type" => "nist"}, {"id" => "u:us_minim", "type" => "unitsml"}], "short" => "us_minim", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "minim", "lang" => "en"}], "symbols" => [{"id" => "minim", "ascii" => "min", "html" => "min", "latex" => "\\ensuremath{\\mathrm{min}}", "mathml" => "min", "unicode" => "min"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[min_us]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MIN", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu354", "type" => "nist"}, {"id" => "u:us_cup", "type" => "unitsml"}], "short" => "us_cup", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "cup (US)", "lang" => "en"}, {"value" => "cup", "lang" => "en"}], "symbols" => [{"id" => "cup", "ascii" => "cup", "html" => "cup", "latex" => "\\ensuremath{\\mathrm{cup}}", "mathml" => "cup", "unicode" => "cup"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[cup_us]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/CUP_US", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu355", "type" => "nist"}, {"id" => "u:us_fluid_dram", "type" => "unitsml"}], "short" => "us_fluid_dram", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "fluid dram", "lang" => "en"}, {"value" => "dram, fluid", "lang" => "en"}, {"value" => "dram", "lang" => "en"}], "symbols" => [{"id" => "fl dr", "ascii" => "fl dr", "html" => "fl dr", "latex" => "\\ensuremath{\\mathrm{fl dr}}", "mathml" => "fl dr", "unicode" => "fl dr"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[fdr_us]", "authority" => "ucum"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu356", "type" => "nist"}, {"id" => "u:us_gill", "type" => "unitsml"}], "short" => "us_gill", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "gill (US)", "lang" => "en"}, {"value" => "gill", "lang" => "en"}], "symbols" => [{"id" => "gi", "ascii" => "gi", "html" => "gi", "latex" => "\\ensuremath{\\mathrm{gi}}", "mathml" => "gi", "unicode" => "gi"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[gil_us]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/GI_US", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu357", "type" => "nist"}, {"id" => "u:imperial_gill", "type" => "unitsml"}], "short" => "imperial_gill", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "gill [Canadian and UK (Imperial)]", "lang" => "en"}, {"value" => "imperial gill", "lang" => "en"}, {"value" => "gill", "lang" => "en"}], "symbols" => [{"id" => "gi_imperial", "ascii" => "gi", "html" => "gi", "latex" => "\\ensuremath{\\mathrm{gi}}", "mathml" => "gi", "unicode" => "gi"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:us-volumes:code:[gil_us]", "authority" => "ucum"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu358", "type" => "nist"}, {"id" => "u:cubic_foot_per_minute", "type" => "unitsml"}], "short" => "cubic_foot_per_minute", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "cubic foot per minute", "lang" => "en"}], "symbols" => [{"id" => "ft^3*min^-1", "ascii" => "ft^3*min^-1", "html" => "ft3/min", "latex" => "\\ensuremath{\\mathrm{ft^3/min}}", "mathml" => "ft3/min", "unicode" => "ft³min"}], "quantity_references" => [{"id" => "NISTq151", "type" => "nist"}], "root_units" => [{"power" => 3, "unit_reference" => {"id" => "NISTu78", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu36", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FT3-PER-MIN", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu359", "type" => "nist"}, {"id" => "u:cubic_foot_per_second", "type" => "unitsml"}], "short" => "cubic_foot_per_second", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "cubic foot per second", "lang" => "en"}], "symbols" => [{"id" => "ft^3*sec^-1", "ascii" => "ft^3*sec^-1", "html" => "ft3/sec", "latex" => "\\ensuremath{\\mathrm{ft^3/sec}}", "mathml" => "ft3/sec", "unicode" => "ft³sec"}], "quantity_references" => [{"id" => "NISTq151", "type" => "nist"}], "root_units" => [{"power" => 3, "unit_reference" => {"id" => "NISTu78", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FT3-PER-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu36", "type" => "nist"}, {"id" => "u:minute", "type" => "unitsml"}], "short" => "minute", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "minute", "lang" => "en"}, {"value" => "minute", "lang" => "fr"}], "symbols" => [{"id" => "min", "ascii" => "min", "html" => "min", "latex" => "\\ensuremath{\\mathrm{min}}", "mathml" => "min", "unicode" => "min"}, {"id" => "'_min", "ascii" => "'", "html" => "′", "latex" => "\\ensuremath{\\mathrm{'}}", "mathml" => "", "unicode" => "′"}, {"id" => "prime_min", "ascii" => "'", "html" => "′", "latex" => "\\ensuremath{\\mathrm{'}}", "mathml" => "", "unicode" => "′"}], "quantity_references" => [{"id" => "NISTq3", "type" => "nist"}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/minute", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:iso1000:code:'", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MIN", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu360", "type" => "nist"}, {"id" => "u:cubic_inch_per_minute", "type" => "unitsml"}], "short" => "cubic_inch_per_minute", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "cubic inch per minute", "lang" => "en"}], "symbols" => [{"id" => "in^3*min^-1", "ascii" => "in^3*min^-1", "html" => "in3/min", "latex" => "\\ensuremath{\\mathrm{in^3/min}}", "mathml" => "in3/min", "unicode" => "in³min"}], "quantity_references" => [{"id" => "NISTq151", "type" => "nist"}], "root_units" => [{"power" => 3, "unit_reference" => {"id" => "NISTu8", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu36", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/IN3-PER-MIN", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu361", "type" => "nist"}, {"id" => "u:microinch", "type" => "unitsml"}], "short" => "microinch", "root" => false, "prefixed" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "microinch", "lang" => "en"}], "symbols" => [{"id" => "uin", "ascii" => "uin", "html" => "μin", "latex" => "\\ensuremath{\\mathrm{mu}in}", "mathml" => "μin", "unicode" => "μin"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu8", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_-6", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MicroIN", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu362", "type" => "nist"}, {"id" => "u:millibar", "type" => "unitsml"}], "short" => "millibar", "root" => false, "prefixed" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "millibar", "lang" => "en"}], "symbols" => [{"id" => "mbar", "ascii" => "mbar", "html" => "mbar", "latex" => "\\ensuremath{\\mathrm{mbar}}", "mathml" => "mbar", "unicode" => "mbar"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu91", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_-3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MilliBAR", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu363", "type" => "nist"}, {"id" => "u:mile_per_gallon", "type" => "unitsml"}], "short" => "mile_per_gallon", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "mile per gallon (US)", "lang" => "en"}, {"value" => "mile per gallon", "lang" => "en"}], "symbols" => [{"id" => "mpg", "ascii" => "mpg", "html" => "mpg", "latex" => "\\ensuremath{\\mathrm{mpg}}", "mathml" => "mpg", "unicode" => "mpg"}, {"id" => "mi/gal", "ascii" => "mi/gal", "html" => "mi/gal", "latex" => "\\ensuremath{\\mathrm{mi/gal}}", "mathml" => "mi/gal", "unicode" => "mi/gal"}], "quantity_references" => [{"id" => "NISTq198", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu83", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu175", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu364", "type" => "nist"}, {"id" => "u:gallon_per_minute", "type" => "unitsml"}], "short" => "gallon_per_minute", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "gallon (US) per minute", "lang" => "en"}, {"value" => "gallon per minute", "lang" => "en"}], "symbols" => [{"id" => "gpm", "ascii" => "gpm", "html" => "gpm", "latex" => "\\ensurement{\\mathrm{gpm}}", "mathml" => "gpm", "unicode" => "gal/min"}, {"id" => "gal*min^-1", "ascii" => "gal*min^-1", "html" => "gal/min", "latex" => "\\ensurement{\\mathrm{gal/min}}", "mathml" => "gal/min", "unicode" => "gpm"}], "quantity_references" => [{"id" => "NISTq151", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu175", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu36", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu365", "type" => "nist"}, {"id" => "u:milliliter", "type" => "unitsml"}], "short" => "milliliter", "root" => false, "prefixed" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "milliliter", "lang" => "en"}], "symbols" => [{"id" => "mL", "ascii" => "mL", "html" => "mL", "latex" => "\\ensuremath{\\mathrm{mL}}", "mathml" => "mL", "unicode" => "mL"}, {"id" => "ml", "ascii" => "ml", "html" => "ml", "latex" => "\\ensuremath{\\mathrm{ml}}", "mathml" => "ml", "unicode" => "ml"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu130", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_-3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MilliL", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu366", "type" => "nist"}, {"id" => "u:mole_per_liter", "type" => "unitsml"}], "short" => "mole_per_liter", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "mole per liter", "lang" => "en"}], "symbols" => [{"id" => "mol*l^-1", "ascii" => "mol*l^-1", "html" => "mol/l", "latex" => "\\ensuremath{\\mathrm{mol/l}}", "mathml" => "mol/l", "unicode" => "mol/l"}, {"id" => "mol*L^-1", "ascii" => "mol*L^-1", "html" => "mol/L", "latex" => "\\ensuremath{\\mathrm{mol/L}}", "mathml" => "mol/L", "unicode" => "mol/L"}], "quantity_references" => [{"id" => "NISTq55", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu6", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu130", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MOL-PER-L", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu37", "type" => "nist"}, {"id" => "u:hour", "type" => "unitsml"}], "short" => "hour", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "hour", "lang" => "en"}, {"value" => "heure", "lang" => "fr"}], "symbols" => [{"id" => "h", "ascii" => "h", "html" => "h", "latex" => "\\ensuremath{\\mathrm{h}}", "mathml" => "h", "unicode" => "h"}], "quantity_references" => [{"id" => "NISTq3", "type" => "nist"}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/hour", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:iso1000:code:h", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/HR", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu376", "type" => "nist"}, {"id" => "u:light_week", "type" => "unitsml"}], "short" => "light_week", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "light week", "lang" => "en"}], "symbols" => [{"id" => "l.w.", "ascii" => "l.w.", "html" => "l.w.", "latex" => "\\ensuremath{\\mathrm{l.w.}}", "mathml" => "l.w.", "unicode" => "l.w."}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu377", "type" => "nist"}, {"id" => "u:light_hour", "type" => "unitsml"}], "short" => "light_hour", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "light hour", "lang" => "en"}], "symbols" => [{"id" => "l.h.", "ascii" => "l.h.", "html" => "l.h.", "latex" => "\\ensuremath{\\mathrm{l.h.}}", "mathml" => "l.h.", "unicode" => "l.h."}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu378", "type" => "nist"}, {"id" => "u:light_minute", "type" => "unitsml"}], "short" => "light_minute", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "light minute", "lang" => "en"}], "symbols" => [{"id" => "l.m.", "ascii" => "l.m.", "html" => "l.m.", "latex" => "\\ensuremath{\\mathrm{l.m.}}", "mathml" => "l.m.", "unicode" => "l.m."}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu379", "type" => "nist"}, {"id" => "u:light_second", "type" => "unitsml"}], "short" => "light_second", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "light second", "lang" => "en"}], "symbols" => [{"id" => "l.s.", "ascii" => "l.s.", "html" => "l.s.", "latex" => "\\ensuremath{\\mathrm{l.s.}}", "mathml" => "l.s.", "unicode" => "l.s."}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu38", "type" => "nist"}, {"id" => "u:day", "type" => "unitsml"}], "short" => "day", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "day", "lang" => "en"}, {"value" => "jour", "lang" => "fr"}], "symbols" => [{"id" => "d", "ascii" => "d", "html" => "d", "latex" => "\\ensuremath{\\mathrm{d}}", "mathml" => "d", "unicode" => "d"}], "quantity_references" => [{"id" => "NISTq3", "type" => "nist"}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/day", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:iso1000:code:d", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/DAY", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu380", "type" => "nist"}, {"id" => "u:kilometer_per_liter", "type" => "unitsml"}], "short" => "kilometer_per_liter", "root" => false, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "kilometer per liter", "lang" => "en"}], "symbols" => [{"id" => "km/l", "ascii" => "km/l", "html" => "km/l", "latex" => "\\ensuremath{\\mathrm{km/l}}", "mathml" => "km/l", "unicode" => "km/l"}, {"id" => "km/L", "ascii" => "km/L", "html" => "km/L", "latex" => "\\ensuremath{\\mathrm{km/L}}", "mathml" => "km/L", "unicode" => "km/L"}], "quantity_references" => [{"id" => "NISTq198", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu130", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu381", "type" => "nist"}, {"id" => "u:decibel_milliwatt", "type" => "unitsml"}], "short" => "decibel_milliwatt", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "dBm", "lang" => "en"}, {"value" => "decibel-milliwatt", "lang" => "en"}], "symbols" => [{"id" => "dBm", "ascii" => "dBm", "html" => "dBm", "latex" => "\\ensuremath{\\mathrm{dBm}}", "mathml" => "dBm", "unicode" => "dBm"}, {"id" => "dB_mW", "ascii" => "dB_mW", "html" => "dBmW", "latex" => "\\ensuremath{\\mathrm{dB_{mW}}}", "mathml" => "dBmW", "unicode" => "dB_mW"}], "quantity_references" => [{"id" => "NISTq90", "type" => "nist"}], "scale_reference" => {"id" => "logarithmic_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu382", "type" => "nist"}, {"id" => "u:relative_humidity", "type" => "unitsml"}], "short" => "relative_humidity", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "relative humidity", "lang" => "en"}, {"value" => "percent relative humidity", "lang" => "en"}], "symbols" => [{"id" => "rh", "ascii" => "RH", "html" => "RH", "latex" => "\\ensuremath{\\mathrm{RH}}", "mathml" => "RH", "unicode" => "RH"}, {"id" => "rh_percent", "ascii" => "%rh", "html" => "%rh", "latex" => "\\ensuremath{\\mathrm{\\%rh}}", "mathml" => "%rh", "unicode" => "%rh"}], "quantity_references" => [{"id" => "NISTq199", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/PERCENT_RH", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu383", "type" => "nist"}, {"id" => "u:octave", "type" => "unitsml"}], "short" => "octave", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "octave", "lang" => "en"}], "symbols" => [{"id" => "oct", "ascii" => "oct", "html" => "oct", "latex" => "\\ensuremath{\\mathrm{oct}}", "mathml" => "oct", "unicode" => "oct"}], "quantity_references" => [{"id" => "NISTq200", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu384", "type" => "nist"}, {"id" => "u:decade", "type" => "unitsml"}], "short" => "decade", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "decade", "lang" => "en"}], "symbols" => [{"id" => "dec", "ascii" => "dec", "html" => "dec", "latex" => "\\ensuremath{\\mathrm{dec}}", "mathml" => "dec", "unicode" => "dec"}], "quantity_references" => [{"id" => "NISTq200", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/DECADE", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu385", "type" => "nist"}, {"id" => "u:erlang", "type" => "unitsml"}], "short" => "erlang", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "erlang", "lang" => "en"}], "symbols" => [{"id" => "E_erlang", "ascii" => "E", "html" => "E", "latex" => "\\ensuremath{\\mathrm{E}}", "mathml" => "E", "unicode" => "E"}], "quantity_references" => [{"id" => "NISTq201", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/ERLANG", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu386", "type" => "nist"}, {"id" => "u:baud", "type" => "unitsml"}], "short" => "baud", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "baud", "lang" => "en"}], "symbols" => [{"id" => "Bd", "ascii" => "Bd", "html" => "Bd", "latex" => "\\ensuremath{\\mathrm{Bd}}", "mathml" => "Bd", "unicode" => "Bd"}], "quantity_references" => [{"id" => "NISTq202", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:infotech:code:Bd", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/BAUD", "authority" => "qudt"}], "scale_reference" => {"id" => "discrete", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu387", "type" => "nist"}, {"id" => "u:shannon", "type" => "unitsml"}], "short" => "shannon", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "shannon", "lang" => "en"}], "symbols" => [{"id" => "Sh", "ascii" => "Sh", "html" => "Sh", "latex" => "\\ensuremath{\\mathrm{Sh}}", "mathml" => "Sh", "unicode" => "Sh"}], "quantity_references" => [{"id" => "NISTq203", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/SHANNON", "authority" => "qudt"}], "scale_reference" => {"id" => "discrete", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu388", "type" => "nist"}, {"id" => "u:hartley", "type" => "unitsml"}], "short" => "hartley", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "hartley", "lang" => "en"}], "symbols" => [{"id" => "Hart", "ascii" => "Hart", "html" => "Hart", "latex" => "\\ensuremath{\\mathrm{Hart}}", "mathml" => "Hart", "unicode" => "Hart"}], "quantity_references" => [{"id" => "NISTq203", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/HART", "authority" => "qudt"}], "scale_reference" => {"id" => "discrete", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu39", "type" => "nist"}, {"id" => "u:angstrom", "type" => "unitsml"}], "short" => "angstrom", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "ångström", "lang" => "en"}], "symbols" => [{"id" => "Aring", "ascii" => "Aring", "html" => "Å", "latex" => "\\ensuremath{\\mathrm{\\AA}}", "mathml" => "Å", "unicode" => "Å"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}, {"id" => "NISTq48", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:misc:code:Ao", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/ANGSTROM", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu3e-1/1", "type" => "nist"}, {"id" => "u:second_to_the_power_minus_one", "type" => "unitsml"}], "short" => "second_to_the_power_minus_one", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "second to the power minus one", "lang" => "en"}], "symbols" => [{"id" => "s^-1", "ascii" => "s^-1", "html" => "s-1", "latex" => "\\ensuremath{\\mathrm{s^{-1}}}", "mathml" => "s1", "unicode" => "s⁻¹"}], "quantity_references" => [{"id" => "NISTq112", "type" => "nist"}, {"id" => "NISTq113", "type" => "nist"}, {"id" => "NISTq120", "type" => "nist"}, {"id" => "NISTq189", "type" => "nist"}], "root_units" => [{"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu4", "type" => "nist"}, {"id" => "u:ampere", "type" => "unitsml"}], "short" => "ampere", "root" => true, "unit_system_reference" => [{"id" => "si-base", "type" => "unitsml"}], "names" => [{"value" => "ampere", "lang" => "en"}, {"value" => "ampère", "lang" => "fr"}], "symbols" => [{"id" => "A", "ascii" => "A", "html" => "A", "latex" => "\\ensuremath{\\mathrm{A}}", "mathml" => "A", "unicode" => "A"}], "quantity_references" => [{"id" => "NISTq4", "type" => "nist"}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/ampere", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:A", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/A", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu4.u1e-1/1", "type" => "nist"}, {"id" => "u:ampere_per_meter", "type" => "unitsml"}], "short" => "ampere_per_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "ampere per meter", "lang" => "en"}], "symbols" => [{"id" => "A*m^-1", "ascii" => "A*m^-1", "html" => "A/m", "latex" => "\\ensuremath{\\mathrm{A/m}}", "mathml" => "A/m", "unicode" => "A·m⁻¹"}], "quantity_references" => [{"id" => "NISTq54", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu4", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu4.u1e-2/1", "type" => "nist"}, {"id" => "u:ampere_per_square_meter", "type" => "unitsml"}], "short" => "ampere_per_square_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "ampere per square meter", "lang" => "en"}], "symbols" => [{"id" => "A*m^-2", "ascii" => "A*m^-2", "html" => "A/m2", "latex" => "\\ensuremath{\\mathrm{A/m^2}}", "mathml" => "A/m2", "unicode" => "A·m⁻²"}], "quantity_references" => [{"id" => "NISTq53", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu4", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu400", "type" => "nist"}, {"id" => "u:parts_per_million", "type" => "unitsml"}], "short" => "parts_per_million", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "parts per million", "lang" => "en"}], "symbols" => [{"id" => "ppm", "ascii" => "ppm", "html" => "ppm", "latex" => "\\ensuremath{\\mathrm{ppm}}", "mathml" => "ppm", "unicode" => "ppm"}], "quantity_references" => [{"id" => "NISTq186", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:dimless:code:[ppm]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/PPM", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu401", "type" => "nist"}, {"id" => "u:var", "type" => "unitsml"}], "short" => "var", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "var", "lang" => "en"}], "symbols" => [{"id" => "var", "ascii" => "var", "html" => "var", "latex" => "\\ensuremath{\\mathrm{var}}", "mathml" => "var", "unicode" => "var"}], "quantity_references" => [{"id" => "NISTq187", "type" => "nist"}], "si_derived_bases" => [{"power" => 2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -3, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu16", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu4", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu42", "type" => "nist"}, {"id" => "u:are", "type" => "unitsml"}], "short" => "are", "root" => true, "unit_system_reference" => [{"id" => "non-SI_nist_acceptable", "type" => "nist"}, {"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "are", "lang" => "en"}], "symbols" => [{"id" => "a", "ascii" => "a", "html" => "a", "latex" => "\\ensuremath{\\mathrm{a}}", "mathml" => "a", "unicode" => "a"}], "quantity_references" => [{"id" => "NISTq8", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:iso1000:code:ar", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/ARE", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu43", "type" => "nist"}, {"id" => "u:barn", "type" => "unitsml"}], "short" => "barn", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "barn", "lang" => "en"}], "symbols" => [{"id" => "barn", "ascii" => "b", "html" => "b", "latex" => "\\ensuremath{\\mathrm{b}}", "mathml" => "b", "unicode" => "b"}], "quantity_references" => [{"id" => "NISTq8", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:misc:code:b", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/BARN", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu44", "type" => "nist"}, {"id" => "u:hectare", "type" => "unitsml"}], "short" => "hectare", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "hectare", "lang" => "en"}, {"value" => "hectare", "lang" => "fr"}], "symbols" => [{"id" => "ha", "ascii" => "ha", "html" => "ha", "latex" => "\\ensuremath{\\mathrm{ha}}", "mathml" => "ha", "unicode" => "ha"}], "quantity_references" => [{"id" => "NISTq8", "type" => "nist"}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/hectare", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/HA", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu45", "type" => "nist"}, {"id" => "u:square_foot", "type" => "unitsml"}], "short" => "square_foot", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "square foot", "lang" => "en"}], "symbols" => [{"id" => "ft^2", "ascii" => "ft^2", "html" => "ft2", "latex" => "\\ensuremath{\\mathrm{ft^2}}", "mathml" => "ft2", "unicode" => "ft²"}], "quantity_references" => [{"id" => "NISTq8", "type" => "nist"}], "root_units" => [{"power" => 2, "unit_reference" => {"id" => "NISTu78", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[sft_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FT2", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu46", "type" => "nist"}, {"id" => "u:square_inch", "type" => "unitsml"}], "short" => "square_inch", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "square inch", "lang" => "en"}], "symbols" => [{"id" => "in^2", "ascii" => "in^2", "html" => "in2", "latex" => "\\ensuremath{\\mathrm{in^2}}", "mathml" => "in2", "unicode" => "in²"}], "quantity_references" => [{"id" => "NISTq8", "type" => "nist"}], "root_units" => [{"power" => 2, "unit_reference" => {"id" => "NISTu8", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[sin_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/IN2", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu47", "type" => "nist"}, {"id" => "u:abampere", "type" => "unitsml"}], "short" => "abampere", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "abampere", "lang" => "en"}, {"value" => "EMU of current", "lang" => "en"}], "symbols" => [{"id" => "abA", "ascii" => "abA", "html" => "abA", "latex" => "\\ensuremath{\\mathrm{abA}}", "mathml" => "abA", "unicode" => "abA"}], "quantity_references" => [{"id" => "NISTq4", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/A_Ab", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu48", "type" => "nist"}, {"id" => "u:abcoulomb", "type" => "unitsml"}], "short" => "abcoulomb", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "abcoulomb", "lang" => "en"}], "symbols" => [{"id" => "abC", "ascii" => "abC", "html" => "abC", "latex" => "\\ensuremath{\\mathrm{abC}}", "mathml" => "abC", "unicode" => "abC"}], "quantity_references" => [{"id" => "NISTq22", "type" => "nist"}, {"id" => "NISTq23", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/C_Ab", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu49", "type" => "nist"}, {"id" => "u:abfarad", "type" => "unitsml"}], "short" => "abfarad", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "abfarad", "lang" => "en"}, {"value" => "EMU of capacitance", "lang" => "en"}], "symbols" => [{"id" => "abF", "ascii" => "abF", "html" => "abF", "latex" => "\\ensuremath{\\mathrm{abF}}", "mathml" => "abF", "unicode" => "abF"}], "quantity_references" => [{"id" => "NISTq27", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FARAD_Ab", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu5", "type" => "nist"}, {"id" => "u:kelvin", "type" => "unitsml"}], "short" => "kelvin", "root" => true, "unit_system_reference" => [{"id" => "si-base", "type" => "unitsml"}], "names" => [{"value" => "kelvin", "lang" => "en"}, {"value" => "kelvin", "lang" => "fr"}], "symbols" => [{"id" => "K", "ascii" => "K", "html" => "K", "latex" => "\\ensuremath{\\mathrm{K}}", "mathml" => "K", "unicode" => "K"}, {"id" => "degK", "ascii" => "degK", "html" => "°K", "latex" => "\\ensuremath{\\mathrm{^{\\circ}K}}", "mathml" => "°K", "unicode" => "°K"}], "quantity_references" => [{"id" => "NISTq193", "type" => "nist"}, {"id" => "NISTq196", "type" => "nist"}, {"id" => "NISTq5", "type" => "nist"}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/kelvin", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:base-unit:code:K", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/K", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu50", "type" => "nist"}, {"id" => "u:abhenry", "type" => "unitsml"}], "short" => "abhenry", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "abhenry", "lang" => "en"}, {"value" => "EMU of inductance", "lang" => "en"}], "symbols" => [{"id" => "abH", "ascii" => "abH", "html" => "abH", "latex" => "\\ensuremath{\\mathrm{abH}}", "mathml" => "abH", "unicode" => "abH"}], "quantity_references" => [{"id" => "NISTq32", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/H_Ab", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu51", "type" => "nist"}, {"id" => "u:abmho", "type" => "unitsml"}], "short" => "abmho", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "abmho", "lang" => "en"}], "symbols" => [{"id" => "abS", "ascii" => "abS", "html" => "(abΩ)-1", "latex" => "\\ensuremath{\\mathrm{(ab\\Omega)^{-1}}", "mathml" => "(abΩ)-1", "unicode" => "(abΩ)⁻¹"}], "quantity_references" => [{"id" => "NISTq29", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu52", "type" => "nist"}, {"id" => "u:abohm", "type" => "unitsml"}], "short" => "abohm", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "abohm", "lang" => "en"}, {"value" => "EMU of resistance", "lang" => "en"}], "symbols" => [{"id" => "abohm", "ascii" => "abohm", "html" => "abΩ", "latex" => "\\ensuremath{\\mathrm{ab\\Omega}}", "mathml" => "abΩ", "unicode" => "abΩ"}], "quantity_references" => [{"id" => "NISTq28", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/OHM_Ab", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu53", "type" => "nist"}, {"id" => "u:abvolt", "type" => "unitsml"}], "short" => "abvolt", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "abvolt", "lang" => "en"}, {"value" => "EMU of electric potential", "lang" => "en"}], "symbols" => [{"id" => "abV", "ascii" => "abV", "html" => "abV", "latex" => "\\ensuremath{\\mathrm{abV}}", "mathml" => "abV", "unicode" => "abV"}], "quantity_references" => [{"id" => "NISTq24", "type" => "nist"}, {"id" => "NISTq25", "type" => "nist"}, {"id" => "NISTq26", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/V_Ab", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu54", "type" => "nist"}, {"id" => "u:ampere_hour", "type" => "unitsml"}], "short" => "ampere_hour", "root" => false, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "ampere hour", "lang" => "en"}], "symbols" => [{"id" => "A*h", "ascii" => "A*h", "html" => "A · h", "latex" => "\\ensuremath{\\mathrm{A\\cdot h}}", "mathml" => "A·h", "unicode" => "A·h"}], "quantity_references" => [{"id" => "NISTq22", "type" => "nist"}, {"id" => "NISTq23", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu4", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu37", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/A-HR", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu55", "type" => "nist"}, {"id" => "u:biot", "type" => "unitsml"}], "short" => "biot", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "biot", "lang" => "en"}], "symbols" => [{"id" => "Bi", "ascii" => "Bi", "html" => "Bi", "latex" => "\\ensuremath{\\mathrm{Bi}}", "mathml" => "Bi", "unicode" => "Bi"}], "quantity_references" => [{"id" => "NISTq4", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu47", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "ucum:unit:cgs:code:Bi", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/BIOT", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu57", "type" => "nist"}, {"id" => "u:us_survey_acre_foot", "type" => "unitsml"}], "short" => "us_survey_acre_foot", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "acre-foot (based on US survey foot)", "lang" => "en"}, {"value" => "acre-foot", "lang" => "en"}], "symbols" => [{"id" => "ac*ft", "ascii" => "ac*ft", "html" => "ac · ft", "latex" => "\\ensuremath{\\mathrm{ac\\cdot ft}}", "mathml" => "ac·ft", "unicode" => "ac·ft"}], "quantity_references" => [{"id" => "NISTq10", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu317", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu78", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/AC-FT", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu58", "type" => "nist"}, {"id" => "u:maxwell", "type" => "unitsml"}], "short" => "maxwell", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "maxwell", "lang" => "en"}], "symbols" => [{"id" => "Mx", "ascii" => "Mx", "html" => "Mx", "latex" => "\\ensuremath{\\mathrm{Mx}}", "mathml" => "Mx", "unicode" => "Mx"}], "quantity_references" => [{"id" => "NISTq30", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:cgs:code:Mx", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MX", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu5e-1/1", "type" => "nist"}, {"id" => "u:kelvin_to_the_power_minus_one", "type" => "unitsml"}], "short" => "kelvin_to_the_power_minus_one", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "kelvin to the power minus one", "lang" => "en"}], "symbols" => [{"id" => "K^-1", "ascii" => "K^-1", "html" => "K-1", "latex" => "\\ensuremath{\\mathrm{K^{-1}}}", "mathml" => "K1", "unicode" => "K⁻¹"}], "quantity_references" => [{"id" => "NISTq156", "type" => "nist"}, {"id" => "NISTq157", "type" => "nist"}, {"id" => "NISTq158", "type" => "nist"}], "root_units" => [{"power" => -1, "unit_reference" => {"id" => "NISTu5", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu6", "type" => "nist"}, {"id" => "u:mole", "type" => "unitsml"}], "short" => "mole", "root" => true, "unit_system_reference" => [{"id" => "si-base", "type" => "unitsml"}], "names" => [{"value" => "mole", "lang" => "en"}, {"value" => "mole", "lang" => "fr"}], "symbols" => [{"id" => "mol", "ascii" => "mol", "html" => "mol", "latex" => "\\ensuremath{\\mathrm{mol}}", "mathml" => "mol", "unicode" => "mol"}], "quantity_references" => [{"id" => "NISTq6", "type" => "nist"}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/mole", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:si:code:mol", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MOL", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu6.u1e-3/1", "type" => "nist"}, {"id" => "u:mole_per_cubic_meter", "type" => "unitsml"}], "short" => "mole_per_cubic_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "mole per cubic meter", "lang" => "en"}], "symbols" => [{"id" => "mol*m^-3", "ascii" => "mol*m^-3", "html" => "mol/m3", "latex" => "\\ensuremath{\\mathrm{mol/m^3}}", "mathml" => "mol/m3", "unicode" => "mol·m⁻³"}], "quantity_references" => [{"id" => "NISTq55", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu6", "type" => "nist"}}, {"power" => -3, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu6.u27p10'3e-1/1", "type" => "nist"}, {"id" => "u:mole_per_kilogram", "type" => "unitsml"}], "short" => "mole_per_kilogram", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "mole per kilogram", "lang" => "en"}], "symbols" => [{"id" => "mol*kg^-1", "ascii" => "mol*kg^-1", "html" => "mol/kg", "latex" => "\\ensuremath{\\mathrm{mol/kg}}", "mathml" => "mol/kg", "unicode" => "mol/kg"}], "quantity_references" => [{"id" => "NISTq179", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu6", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu27", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MOL-PER-KiloGM", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu60", "type" => "nist"}, {"id" => "u:table_calorie", "type" => "unitsml"}], "short" => "table_calorie", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "I.T. calorie", "lang" => "en"}, {"value" => "calorie_IT", "lang" => "en"}, {"value" => "calorie", "lang" => "en"}], "symbols" => [{"id" => "cal_IT", "ascii" => "cal_IT", "html" => "calIT", "latex" => "\\ensuremath{\\mathrm{cal_{IT}}}", "mathml" => "calIT", "unicode" => "cal_IT"}], "quantity_references" => [{"id" => "NISTq17", "type" => "nist"}, {"id" => "NISTq18", "type" => "nist"}, {"id" => "NISTq182", "type" => "nist"}, {"id" => "NISTq183", "type" => "nist"}, {"id" => "NISTq19", "type" => "nist"}, {"id" => "NISTq77", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:heat:code:cal", "authority" => "ucum"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu61", "type" => "nist"}, {"id" => "u:one", "type" => "unitsml"}], "short" => "one", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "one", "lang" => "en"}], "symbols" => [{"id" => "1", "ascii" => "1", "html" => "1", "latex" => "\\ensuremath{\\mathrm{1}}", "mathml" => "1", "unicode" => "1"}], "quantity_references" => [{"id" => "NISTq111", "type" => "nist"}, {"id" => "NISTq121", "type" => "nist"}, {"id" => "NISTq125", "type" => "nist"}, {"id" => "NISTq136", "type" => "nist"}, {"id" => "NISTq137", "type" => "nist"}, {"id" => "NISTq138", "type" => "nist"}, {"id" => "NISTq140", "type" => "nist"}, {"id" => "NISTq147", "type" => "nist"}, {"id" => "NISTq188", "type" => "nist"}, {"id" => "NISTq93", "type" => "nist"}, {"id" => "NISTq94", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/ONE", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu62", "type" => "nist"}, {"id" => "u:erg", "type" => "unitsml"}], "short" => "erg", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "erg", "lang" => "en"}], "symbols" => [{"id" => "erg", "ascii" => "erg", "html" => "erg", "latex" => "\\ensuremath{\\mathrm{erg}}", "mathml" => "erg", "unicode" => "erg"}], "quantity_references" => [{"id" => "NISTq17", "type" => "nist"}, {"id" => "NISTq18", "type" => "nist"}, {"id" => "NISTq182", "type" => "nist"}, {"id" => "NISTq183", "type" => "nist"}, {"id" => "NISTq19", "type" => "nist"}, {"id" => "NISTq77", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:cgs:code:erg", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/ERG", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu63", "type" => "nist"}, {"id" => "u:table_kg_calorie", "type" => "unitsml"}], "short" => "table_kg_calorie", "root" => true, "prefixed" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "kilocalorie_IT", "lang" => "en"}], "symbols" => [{"id" => "kcal_IT", "ascii" => "kcal_IT", "html" => "kcalIT", "latex" => "\\ensuremath{\\mathrm{kcal_{IT}}}", "mathml" => "kcalIT", "unicode" => "kcal_IT"}], "quantity_references" => [{"id" => "NISTq17", "type" => "nist"}, {"id" => "NISTq18", "type" => "nist"}, {"id" => "NISTq182", "type" => "nist"}, {"id" => "NISTq183", "type" => "nist"}, {"id" => "NISTq19", "type" => "nist"}, {"id" => "NISTq77", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu64", "type" => "nist"}, {"id" => "u:thermo_kg_calorie", "type" => "unitsml"}], "short" => "thermo_kg_calorie", "root" => true, "prefixed" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "kilocalorie_th", "lang" => "en"}], "symbols" => [{"id" => "kcal_th", "ascii" => "kcal_th", "html" => "kcalth", "latex" => "\\ensuremath{\\mathrm{kcal_{th}}}", "mathml" => "kcalth", "unicode" => "kcal_th"}], "quantity_references" => [{"id" => "NISTq17", "type" => "nist"}, {"id" => "NISTq18", "type" => "nist"}, {"id" => "NISTq182", "type" => "nist"}, {"id" => "NISTq183", "type" => "nist"}, {"id" => "NISTq19", "type" => "nist"}, {"id" => "NISTq77", "type" => "nist"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu65", "type" => "nist"}, {"id" => "u:kilowatt_hour", "type" => "unitsml"}], "short" => "kilowatt_hour", "root" => false, "prefixed" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "kilowatt hour", "lang" => "en"}], "symbols" => [{"id" => "kW*h", "ascii" => "kW*h", "html" => "kW · h", "latex" => "\\ensuremath{\\mathrm{kW\\cdot h}}", "mathml" => "kW·h", "unicode" => "kW·h"}], "quantity_references" => [{"id" => "NISTq17", "type" => "nist"}, {"id" => "NISTq18", "type" => "nist"}, {"id" => "NISTq182", "type" => "nist"}, {"id" => "NISTq183", "type" => "nist"}, {"id" => "NISTq19", "type" => "nist"}, {"id" => "NISTq77", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu14", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu37", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/KiloW-HR", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu69", "type" => "nist"}, {"id" => "u:watt_hour", "type" => "unitsml"}], "short" => "watt_hour", "root" => false, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "watt hour", "lang" => "en"}], "symbols" => [{"id" => "W*h", "ascii" => "W*h", "html" => "W · h", "latex" => "\\ensuremath{\\mathrm{W\\cdot h}}", "mathml" => "W·h", "unicode" => "W·h"}], "quantity_references" => [{"id" => "NISTq17", "type" => "nist"}, {"id" => "NISTq18", "type" => "nist"}, {"id" => "NISTq182", "type" => "nist"}, {"id" => "NISTq183", "type" => "nist"}, {"id" => "NISTq19", "type" => "nist"}, {"id" => "NISTq77", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu14", "type" => "nist"}}, {"power" => 1, "unit_reference" => {"id" => "NISTu37", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/W-HR", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu7", "type" => "nist"}, {"id" => "u:candela", "type" => "unitsml"}], "short" => "candela", "root" => true, "unit_system_reference" => [{"id" => "si-base", "type" => "unitsml"}], "names" => [{"value" => "candela", "lang" => "en"}, {"value" => "candela", "lang" => "fr"}], "symbols" => [{"id" => "cd", "ascii" => "cd", "html" => "cd", "latex" => "\\ensuremath{\\mathrm{cd}}", "mathml" => "cd", "unicode" => "cd"}], "quantity_references" => [{"id" => "NISTq7", "type" => "nist"}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/candela", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:base-unit:code:cd", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/CD", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu7.u1e-2/1", "type" => "nist"}, {"id" => "u:candela_per_square_meter", "type" => "unitsml"}], "short" => "candela_per_square_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "candela per square meter", "lang" => "en"}], "symbols" => [{"id" => "cd*m^-2", "ascii" => "cd*m^-2", "html" => "cd/m2", "latex" => "\\ensuremath{\\mathrm{cd/m^2}}", "mathml" => "cd/m2", "unicode" => "cd·m⁻²"}], "quantity_references" => [{"id" => "NISTq56", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu7", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu71", "type" => "nist"}, {"id" => "u:dyne", "type" => "unitsml"}], "short" => "dyne", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "dyne", "lang" => "en"}], "symbols" => [{"id" => "dyn", "ascii" => "dyn", "html" => "dyn", "latex" => "\\ensuremath{\\mathrm{dyn}}", "mathml" => "dyn", "unicode" => "dyn"}], "quantity_references" => [{"id" => "NISTq13", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:cgs:code:dyn", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/DYN", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu72", "type" => "nist"}, {"id" => "u:kilogram_force", "type" => "unitsml"}], "short" => "kilogram_force", "root" => false, "prefixed" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "kilogram-force", "lang" => "en"}], "symbols" => [{"id" => "kgf", "ascii" => "kgf", "html" => "kgf", "latex" => "\\ensuremath{\\mathrm{kgf}}", "mathml" => "kgf", "unicode" => "kgf"}], "quantity_references" => [{"id" => "NISTq13", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu196", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/KiloGM_F", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu73", "type" => "nist"}, {"id" => "u:kilopond", "type" => "unitsml"}], "short" => "kilopond", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "kilopond", "lang" => "en"}], "symbols" => [{"id" => "kp", "ascii" => "kp", "html" => "kp", "latex" => "\\ensuremath{\\mathrm{kp}}", "mathml" => "kp", "unicode" => "kp"}], "quantity_references" => [{"id" => "NISTq13", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu196", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/KiloPOND", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu74", "type" => "nist"}, {"id" => "u:calorie_th_per_second", "type" => "unitsml"}], "short" => "calorie_th_per_second", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "calorie_th per second", "lang" => "en"}], "symbols" => [{"id" => "cal_th*s^-1", "ascii" => "cal_th*s^-1", "html" => "calth/s", "latex" => "\\ensuremath{\\mathrm{cal_{th}}}", "mathml" => "calth/s", "unicode" => "cal_th/s"}], "quantity_references" => [{"id" => "NISTq20", "type" => "nist"}, {"id" => "NISTq21", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu227", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu75", "type" => "nist"}, {"id" => "u:kilocalorie_th_per_second", "type" => "unitsml"}], "short" => "kilocalorie_th_per_second", "root" => false, "prefixed" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "kilocalorie_th per second", "lang" => "en"}], "symbols" => [{"id" => "kcal_th*s^-1", "ascii" => "kcal_th*s^-1", "html" => "kcalth/s", "latex" => "\\ensuremath{\\mathrm{kcal_{th}}}", "mathml" => "kcalth/s", "unicode" => "kcal_th/s"}], "quantity_references" => [{"id" => "NISTq20", "type" => "nist"}, {"id" => "NISTq21", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu227", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu78", "type" => "nist"}, {"id" => "u:foot", "type" => "unitsml"}], "short" => "foot", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "foot", "lang" => "en"}], "symbols" => [{"id" => "ft", "ascii" => "ft", "html" => "ft", "latex" => "\\ensuremath{\\mathrm{ft}}", "mathml" => "ft", "unicode" => "ft"}, {"id" => "'_ft", "ascii" => "'", "html" => "′", "latex" => "\\ensuremath{\\mathrm{'}}", "mathml" => "", "unicode" => "′"}, {"id" => "prime_ft", "ascii" => "'", "html" => "′", "latex" => "\\ensuremath{\\mathrm{'}}", "mathml" => "", "unicode" => "′"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}, {"id" => "NISTq48", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[ft_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/FT", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu8", "type" => "nist"}, {"id" => "u:inch", "type" => "unitsml"}], "short" => "inch", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "inch", "lang" => "en"}], "symbols" => [{"id" => "in", "ascii" => "in", "html" => "in", "latex" => "\\ensuremath{\\mathrm{in}}", "mathml" => "in", "unicode" => "in"}, {"id" => "\"_in", "ascii" => "\"", "html" => "″", "latex" => "\\ensuremath{\\mathrm{''}}", "mathml" => "", "unicode" => "″"}, {"id" => "dprime_in", "ascii" => "\"", "html" => "″", "latex" => "\\ensuremath{\\mathrm{''}}", "mathml" => "", "unicode" => "″"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}, {"id" => "NISTq48", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[in_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/IN", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu83", "type" => "nist"}, {"id" => "u:mile", "type" => "unitsml"}], "short" => "mile", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "mile", "lang" => "en"}], "symbols" => [{"id" => "mi", "ascii" => "mi", "html" => "mi", "latex" => "\\ensuremath{\\mathrm{mi}}", "mathml" => "mi", "unicode" => "mi"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}, {"id" => "NISTq48", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[mi_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/MI", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu84", "type" => "nist"}, {"id" => "u:yard", "type" => "unitsml"}], "short" => "yard", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "yard", "lang" => "en"}], "symbols" => [{"id" => "yd", "ascii" => "yd", "html" => "yd", "latex" => "\\ensuremath{\\mathrm{yd}}", "mathml" => "yd", "unicode" => "yd"}], "quantity_references" => [{"id" => "NISTq1", "type" => "nist"}, {"id" => "NISTq48", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:intcust:code:[yd_i]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/YD", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu85", "type" => "nist"}, {"id" => "u:phot", "type" => "unitsml"}], "short" => "phot", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "phot", "lang" => "en"}], "symbols" => [{"id" => "ph", "ascii" => "ph", "html" => "ph", "latex" => "\\ensuremath{\\mathrm{ph}}", "mathml" => "ph", "unicode" => "ph"}], "quantity_references" => [{"id" => "NISTq47", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:cgs:code:ph", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/PHOT", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu86", "type" => "nist"}, {"id" => "u:grain", "type" => "unitsml"}], "short" => "grain", "root" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "grain (troy or apothecary)", "lang" => "en"}, {"value" => "troy grain", "lang" => "en"}, {"value" => "apothecary grain", "lang" => "en"}, {"value" => "grain", "lang" => "en"}], "symbols" => [{"id" => "gr", "ascii" => "gr", "html" => "gr", "latex" => "\\ensuremath{\\mathrm{gr}}", "mathml" => "gr", "unicode" => "gr"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:avoirdupois:code:[gr]", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/GRAIN", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu88", "type" => "nist"}, {"id" => "u:metric_ton", "type" => "unitsml"}], "short" => "metric_ton", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "tonne", "lang" => "en"}, {"value" => "metric ton", "lang" => "en"}, {"value" => "ton", "lang" => "en"}, {"value" => "tonne", "lang" => "fr"}], "symbols" => [{"id" => "t", "ascii" => "t", "html" => "t", "latex" => "\\ensuremath{\\mathrm{t}}", "mathml" => "t", "unicode" => "t"}], "quantity_references" => [{"id" => "NISTq2", "type" => "nist"}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/tonne", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:unit:iso1000:code:t", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/TON_Metric", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu89", "type" => "nist"}, {"id" => "u:erg_per_second", "type" => "unitsml"}], "short" => "erg_per_second", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "erg per second", "lang" => "en"}], "symbols" => [{"id" => "erg*s^-1", "ascii" => "erg*s^-1", "html" => "erg/s", "latex" => "\\ensuremath{\\mathrm{erg/s}}", "mathml" => "erg/s", "unicode" => "erg·s⁻¹"}], "quantity_references" => [{"id" => "NISTq20", "type" => "nist"}, {"id" => "NISTq21", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu62", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/ERG-PER-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu9", "type" => "nist"}, {"id" => "u:radian", "type" => "unitsml"}], "short" => "radian", "root" => true, "unit_system_reference" => [{"id" => "SI_derived_special", "type" => "nist"}], "names" => [{"value" => "radian", "lang" => "en"}, {"value" => "radian", "lang" => "fr"}], "symbols" => [{"id" => "rad", "ascii" => "rad", "html" => "rad", "latex" => "\\ensuremath{\\mathrm{rad}}", "mathml" => "rad", "unicode" => "rad"}], "quantity_references" => [{"id" => "NISTq195", "type" => "nist"}, {"id" => "NISTq9", "type" => "nist"}], "si_derived_bases" => [{"power" => 2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/units/radian", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:base-unit:code:rad", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/RAD", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu9.u1e-1/1", "type" => "nist"}, {"id" => "u:radian_per_meter", "type" => "unitsml"}], "short" => "radian_per_meter", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "radian per meter", "lang" => "en"}], "symbols" => [{"id" => "rad*m^-1", "ascii" => "rad*m^-1", "html" => "rad/m", "latex" => "\\ensuremath{\\mathrm{rad/m}}", "mathml" => "rad/m", "unicode" => "rad/m"}], "quantity_references" => [{"id" => "NISTq115", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu9", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/RAD-PER-M", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu9.u3e-1/1", "type" => "nist"}, {"id" => "u:radian_per_second", "type" => "unitsml"}], "short" => "radian_per_second", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "radian per second", "lang" => "en"}], "symbols" => [{"id" => "rad*s^-1", "ascii" => "rad*s^-1", "html" => "rad/s", "latex" => "\\ensuremath{\\mathrm{rad/s}}", "mathml" => "rad/s", "unicode" => "rad/s"}], "quantity_references" => [{"id" => "NISTq113", "type" => "nist"}, {"id" => "NISTq57", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu9", "type" => "nist"}}, {"power" => -1, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/RAD-PER-SEC", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu9.u3e-2/1", "type" => "nist"}, {"id" => "u:radian_per_second_squared", "type" => "unitsml"}], "short" => "radian_per_second_squared", "root" => false, "unit_system_reference" => [{"id" => "SI_derived_non-special", "type" => "nist"}], "names" => [{"value" => "radian per second squared", "lang" => "en"}], "symbols" => [{"id" => "rad*s^-2", "ascii" => "rad*s^-2", "html" => "rad/s2", "latex" => "\\ensuremath{\\mathrm{rad/s^2}}", "mathml" => "rad/s2", "unicode" => "rad/s²"}], "quantity_references" => [{"id" => "NISTq58", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu9", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu3", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/RAD-PER-SEC2", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu91", "type" => "nist"}, {"id" => "u:bar", "type" => "unitsml"}], "short" => "bar", "root" => true, "unit_system_reference" => [{"id" => "non-SI_acceptable", "type" => "nist"}], "names" => [{"value" => "bar", "lang" => "en"}], "symbols" => [{"id" => "bar", "ascii" => "bar", "html" => "bar", "latex" => "\\ensuremath{\\mathrm{bar}}", "mathml" => "bar", "unicode" => "bar"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:iso1000:code:bar", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/BAR", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu92", "type" => "nist"}, {"id" => "u:dyne_per_square_centimeter", "type" => "unitsml"}], "short" => "dyne_per_square_centimeter", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "dyne per square centimeter", "lang" => "en"}], "symbols" => [{"id" => "dyn*cm^-2", "ascii" => "dyn*cm^-2", "html" => "dyn/cm2", "latex" => "\\ensuremath{\\mathrm{dyn/cm^2}}", "mathml" => "dyn/cm2", "unicode" => "dyn·cm⁻²"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu71", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_-2", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu93", "type" => "nist"}, {"id" => "u:gram_force_per_square_centimeter", "type" => "unitsml"}], "short" => "gram_force_per_square_centimeter", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "gram-force per square centimeter", "lang" => "en"}], "symbols" => [{"id" => "gf*cm^-2", "ascii" => "gf*cm^-2", "html" => "gf/cm2", "latex" => "\\ensuremath{\\mathrm{gf/cm^2}}", "mathml" => "gf/cm2", "unicode" => "gf·cm⁻²"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu196", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_-2", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu94", "type" => "nist"}, {"id" => "u:kilogram_force_per_square_centimeter", "type" => "unitsml"}], "short" => "kilogram_force_per_square_centimeter", "root" => false, "prefixed" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "kilogram-force per square centimeter", "lang" => "en"}], "symbols" => [{"id" => "kgf*cm^-2", "ascii" => "kgf*cm^-2", "html" => "kgf/cm2", "latex" => "\\ensuremath{\\mathrm{kgf/cm^2}}", "mathml" => "kgf/cm2", "unicode" => "kgf·cm⁻²"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu196", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_-2", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu95", "type" => "nist"}, {"id" => "u:kilogram_force_per_square_meter", "type" => "unitsml"}], "short" => "kilogram_force_per_square_meter", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "kilogram-force per square meter", "lang" => "en"}], "symbols" => [{"id" => "kgf*m^-2", "ascii" => "kgf*m^-2", "html" => "kgf/m2", "latex" => "\\ensuremath{\\mathrm{kgf/m^2}}", "mathml" => "kgf/m2", "unicode" => "kgf·m⁻²"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu196", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu96", "type" => "nist"}, {"id" => "u:kilogram_force_per_square_millimeter", "type" => "unitsml"}], "short" => "kilogram_force_per_square_millimeter", "root" => false, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "kilogram-force per square millimeter", "lang" => "en"}], "symbols" => [{"id" => "kgf*mm^-2", "ascii" => "kgf*mm^-2", "html" => "kgf/mm2", "latex" => "\\ensuremath{\\mathrm{kgf/mm^2}}", "mathml" => "kgf/mm2", "unicode" => "kgf·mm⁻²"}], "quantity_references" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "NISTq16", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu196", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_3", "type" => "nist"}}, {"power" => -2, "unit_reference" => {"id" => "NISTu1", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_-3", "type" => "nist"}}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu97", "type" => "nist"}, {"id" => "u:centipoise", "type" => "unitsml"}], "short" => "centipoise", "root" => false, "prefixed" => true, "unit_system_reference" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "centipoise", "lang" => "en"}], "symbols" => [{"id" => "cP", "ascii" => "cP", "html" => "cP", "latex" => "\\ensuremath{\\mathrm{cP}}", "mathml" => "cP", "unicode" => "cP"}], "quantity_references" => [{"id" => "NISTq59", "type" => "nist"}], "root_units" => [{"power" => 1, "unit_reference" => {"id" => "NISTu128", "type" => "nist"}, "prefix_reference" => {"id" => "NISTp10_-2", "type" => "nist"}}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/unit/CentiPOISE", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu98", "type" => "nist"}, {"id" => "u:curie", "type" => "unitsml"}], "short" => "curie", "root" => true, "unit_system_reference" => [{"id" => "non-SI_nist_acceptable", "type" => "nist"}, {"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "curie", "lang" => "en"}], "symbols" => [{"id" => "Ci", "ascii" => "Ci", "html" => "Ci", "latex" => "\\ensuremath{\\mathrm{Ci}}", "mathml" => "Ci", "unicode" => "Ci"}], "quantity_references" => [{"id" => "NISTq35", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:unit:cgs:code:Ci", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/CI", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}, {"identifiers" => [{"id" => "NISTu99", "type" => "nist"}, {"id" => "u:rad", "type" => "unitsml"}], "short" => "rad", "root" => true, "unit_system_reference" => [{"id" => "non-SI_nist_acceptable", "type" => "nist"}, {"id" => "non-SI_not_acceptable", "type" => "nist"}], "names" => [{"value" => "rad (absorbed dose)", "lang" => "en"}], "symbols" => [{"id" => "rad_radiation", "ascii" => "rad", "html" => "rad", "latex" => "\\ensuremath{\\mathrm{rad}}", "mathml" => "rad", "unicode" => "rad"}], "quantity_references" => [{"id" => "NISTq36", "type" => "nist"}], "references" => [{"type" => "informative", "uri" => "ucum:base-unit:code:rad", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/RAD_R", "authority" => "qudt"}], "scale_reference" => {"id" => "continuous_ratio", "type" => "unitsml"}}], "prefixes" => [{"identifiers" => [{"id" => "NISTp10_-1", "type" => "nist"}, {"id" => "p:deci", "type" => "unitsml"}], "names" => [{"value" => "deci", "lang" => "en"}], "short" => "deci", "symbols" => [{"id" => "deci", "ascii" => "d", "html" => "d", "latex" => "d", "mathml" => "d", "unicode" => "d"}], "base" => 10, "power" => -1, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/deci", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:d", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Deci", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_-12", "type" => "nist"}, {"id" => "p:pico", "type" => "unitsml"}], "names" => [{"value" => "pico", "lang" => "en"}], "short" => "pico", "symbols" => [{"id" => "pico", "ascii" => "p", "html" => "p", "latex" => "p", "mathml" => "p", "unicode" => "p"}], "base" => 10, "power" => -12, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/pico", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:p", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Pico", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_-15", "type" => "nist"}, {"id" => "p:femto", "type" => "unitsml"}], "names" => [{"value" => "femto", "lang" => "en"}], "short" => "femto", "symbols" => [{"id" => "femto", "ascii" => "f", "html" => "f", "latex" => "f", "mathml" => "f", "unicode" => "f"}], "base" => 10, "power" => -15, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/femto", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:f", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Femto", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_-18", "type" => "nist"}, {"id" => "p:atto", "type" => "unitsml"}], "names" => [{"value" => "atto", "lang" => "en"}], "short" => "atto", "symbols" => [{"id" => "atto", "ascii" => "a", "html" => "a", "latex" => "a", "mathml" => "a", "unicode" => "a"}], "base" => 10, "power" => -18, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/atto", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:a", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Atto", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_-2", "type" => "nist"}, {"id" => "p:centi", "type" => "unitsml"}], "names" => [{"value" => "centi", "lang" => "en"}], "short" => "centi", "symbols" => [{"id" => "centi", "ascii" => "c", "html" => "c", "latex" => "c", "mathml" => "c", "unicode" => "c"}], "base" => 10, "power" => -2, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/centi", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:c", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Centi", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_-21", "type" => "nist"}, {"id" => "p:zepto", "type" => "unitsml"}], "names" => [{"value" => "zepto", "lang" => "en"}], "short" => "zepto", "symbols" => [{"id" => "zepto", "ascii" => "z", "html" => "z", "latex" => "z", "mathml" => "z", "unicode" => "z"}], "base" => 10, "power" => -21, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/zepto", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:z", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Zepto", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_-24", "type" => "nist"}, {"id" => "p:yocto", "type" => "unitsml"}], "names" => [{"value" => "yocto", "lang" => "en"}], "short" => "yocto", "symbols" => [{"id" => "yocto", "ascii" => "y", "html" => "y", "latex" => "y", "mathml" => "y", "unicode" => "y"}], "base" => 10, "power" => -24, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/yocto", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:y", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Yocto", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_-27", "type" => "nist"}, {"id" => "p:ronto", "type" => "unitsml"}], "names" => [{"value" => "ronto", "lang" => "en"}], "short" => "ronto", "symbols" => [{"id" => "ronto", "ascii" => "r", "html" => "r", "latex" => "r", "mathml" => "r", "unicode" => "r"}], "base" => 10, "power" => -27, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/ronto", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Ronto", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_-3", "type" => "nist"}, {"id" => "p:milli", "type" => "unitsml"}], "names" => [{"value" => "milli", "lang" => "en"}], "short" => "milli", "symbols" => [{"id" => "milli", "ascii" => "m", "html" => "m", "latex" => "m", "mathml" => "m", "unicode" => "m"}], "base" => 10, "power" => -3, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/milli", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:m", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Milli", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_-30", "type" => "nist"}, {"id" => "p:quecto", "type" => "unitsml"}], "names" => [{"value" => "quecto", "lang" => "en"}], "short" => "quecto", "symbols" => [{"id" => "quecto", "ascii" => "q", "html" => "q", "latex" => "q", "mathml" => "q", "unicode" => "q"}], "base" => 10, "power" => -30, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/quecto", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Quecto", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_-6", "type" => "nist"}, {"id" => "p:micro", "type" => "unitsml"}], "names" => [{"value" => "micro", "lang" => "en"}], "short" => "micro", "symbols" => [{"id" => "micro", "ascii" => "u", "html" => "µ", "latex" => "$mu$", "mathml" => "µ", "unicode" => "μ"}], "base" => 10, "power" => -6, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/micro", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:u", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Micro", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_-9", "type" => "nist"}, {"id" => "p:nano", "type" => "unitsml"}], "names" => [{"value" => "nano", "lang" => "en"}], "short" => "nano", "symbols" => [{"id" => "nano", "ascii" => "n", "html" => "n", "latex" => "n", "mathml" => "n", "unicode" => "n"}], "base" => 10, "power" => -9, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/nano", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:n", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Nano", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_0", "type" => "nist"}, {"id" => "p:none", "type" => "unitsml"}], "names" => [{"value" => "none", "lang" => "en"}], "short" => "none", "symbols" => [{"id" => "unity", "ascii" => "1", "html" => "1", "latex" => "1", "mathml" => "1", "unicode" => "1"}], "base" => 10, "power" => 0, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/none", "authority" => "si-digital-framework"}]}, {"identifiers" => [{"id" => "NISTp10_1", "type" => "nist"}, {"id" => "p:deka", "type" => "unitsml"}], "names" => [{"value" => "deka", "lang" => "en"}], "short" => "deka", "symbols" => [{"id" => "deka", "ascii" => "da", "html" => "da", "latex" => "da", "mathml" => "da", "unicode" => "da"}], "base" => 10, "power" => 1, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/deca", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:da", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Deca", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_12", "type" => "nist"}, {"id" => "p:tera", "type" => "unitsml"}], "names" => [{"value" => "tera", "lang" => "en"}], "short" => "tera", "symbols" => [{"id" => "tera", "ascii" => "T", "html" => "T", "latex" => "T", "mathml" => "T", "unicode" => "T"}], "base" => 10, "power" => 12, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/tera", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:T", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Tera", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_15", "type" => "nist"}, {"id" => "p:peta", "type" => "unitsml"}], "names" => [{"value" => "peta", "lang" => "en"}], "short" => "peta", "symbols" => [{"id" => "peta", "ascii" => "P", "html" => "P", "latex" => "P", "mathml" => "P", "unicode" => "P"}], "base" => 10, "power" => 15, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/peta", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:P", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Peta", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_18", "type" => "nist"}, {"id" => "p:exa", "type" => "unitsml"}], "names" => [{"value" => "exa", "lang" => "en"}], "short" => "exa", "symbols" => [{"id" => "exa", "ascii" => "E", "html" => "E", "latex" => "E", "mathml" => "E", "unicode" => "E"}], "base" => 10, "power" => 18, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/exa", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:E", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Exa", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_2", "type" => "nist"}, {"id" => "p:hecto", "type" => "unitsml"}], "names" => [{"value" => "hecto", "lang" => "en"}], "short" => "hecto", "symbols" => [{"id" => "hecto", "ascii" => "h", "html" => "h", "latex" => "h", "mathml" => "h", "unicode" => "h"}], "base" => 10, "power" => 2, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/hecto", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:h", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Hecto", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_21", "type" => "nist"}, {"id" => "p:zetta", "type" => "unitsml"}], "names" => [{"value" => "zetta", "lang" => "en"}], "short" => "zetta", "symbols" => [{"id" => "zetta", "ascii" => "Z", "html" => "Z", "latex" => "Z", "mathml" => "Z", "unicode" => "Z"}], "base" => 10, "power" => 21, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/zetta", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:Z", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Zetta", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_24", "type" => "nist"}, {"id" => "p:yotta", "type" => "unitsml"}], "names" => [{"value" => "yotta", "lang" => "en"}], "short" => "yotta", "symbols" => [{"id" => "yotta", "ascii" => "Y", "html" => "Y", "latex" => "Y", "mathml" => "Y", "unicode" => "Y"}], "base" => 10, "power" => 24, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/yotta", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:Y", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Yotta", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_27", "type" => "nist"}, {"id" => "p:ronna", "type" => "unitsml"}], "names" => [{"value" => "ronna", "lang" => "en"}], "short" => "ronna", "symbols" => [{"id" => "ronna", "ascii" => "R", "html" => "R", "latex" => "R", "mathml" => "R", "unicode" => "R"}], "base" => 10, "power" => 27, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/ronna", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Ronna", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_3", "type" => "nist"}, {"id" => "p:kilo", "type" => "unitsml"}], "names" => [{"value" => "kilo", "lang" => "en"}], "short" => "kilo", "symbols" => [{"id" => "kilo", "ascii" => "k", "html" => "k", "latex" => "k", "mathml" => "k", "unicode" => "k"}], "base" => 10, "power" => 3, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/kilo", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:k", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Kilo", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_30", "type" => "nist"}, {"id" => "p:quetta", "type" => "unitsml"}], "names" => [{"value" => "quetta", "lang" => "en"}], "short" => "quetta", "symbols" => [{"id" => "quetta", "ascii" => "Q", "html" => "Q", "latex" => "Q", "mathml" => "Q", "unicode" => "Q"}], "base" => 10, "power" => 30, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/quetta", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Quetta", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_6", "type" => "nist"}, {"id" => "p:mega", "type" => "unitsml"}], "names" => [{"value" => "mega", "lang" => "en"}], "short" => "mega", "symbols" => [{"id" => "mega", "ascii" => "M", "html" => "M", "latex" => "M", "mathml" => "M", "unicode" => "M"}], "base" => 10, "power" => 6, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/mega", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:M", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Mega", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp10_9", "type" => "nist"}, {"id" => "p:giga", "type" => "unitsml"}], "names" => [{"value" => "giga", "lang" => "en"}], "short" => "giga", "symbols" => [{"id" => "giga", "ascii" => "G", "html" => "G", "latex" => "G", "mathml" => "G", "unicode" => "G"}], "base" => 10, "power" => 9, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/SI/prefixes/giga", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "ucum:prefix:code:G", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/unit/Giga", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp2_10", "type" => "nist"}, {"id" => "p:kibi", "type" => "unitsml"}], "names" => [{"value" => "kibi", "lang" => "en"}], "short" => "kibi", "symbols" => [{"id" => "kibi", "ascii" => "Ki", "html" => "Ki", "latex" => "Ki", "mathml" => "Ki", "unicode" => "Ki"}], "base" => 2, "power" => 10, "references" => [{"type" => "informative", "uri" => "ucum:prefix:code:Ki", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/prefix/Kibi", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp2_20", "type" => "nist"}, {"id" => "p:mebi", "type" => "unitsml"}], "names" => [{"value" => "mebi", "lang" => "en"}], "short" => "mebi", "symbols" => [{"id" => "mebi", "ascii" => "Mi", "html" => "Mi", "latex" => "Mi", "mathml" => "Mi", "unicode" => "Mi"}], "base" => 2, "power" => 20, "references" => [{"type" => "informative", "uri" => "ucum:prefix:code:Mi", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/prefix/Mebi", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp2_30", "type" => "nist"}, {"id" => "p:gibi", "type" => "unitsml"}], "names" => [{"value" => "gibi", "lang" => "en"}], "short" => "gibi", "symbols" => [{"id" => "gibi", "ascii" => "Gi", "html" => "Gi", "latex" => "Gi", "mathml" => "Gi", "unicode" => "Gi"}], "base" => 2, "power" => 30, "references" => [{"type" => "informative", "uri" => "ucum:prefix:code:Gi", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/prefix/Gibi", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp2_40", "type" => "nist"}, {"id" => "p:tebi", "type" => "unitsml"}], "names" => [{"value" => "tebi", "lang" => "en"}], "short" => "tebi", "symbols" => [{"id" => "tebi", "ascii" => "Ti", "html" => "Ti", "latex" => "Ti", "mathml" => "Ti", "unicode" => "Ti"}], "base" => 2, "power" => 40, "references" => [{"type" => "informative", "uri" => "ucum:prefix:code:Ti", "authority" => "ucum"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/prefix/Tebi", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp2_50", "type" => "nist"}, {"id" => "p:pebi", "type" => "unitsml"}], "names" => [{"value" => "pebi", "lang" => "en"}], "short" => "pebi", "symbols" => [{"id" => "pebi", "ascii" => "Pi", "html" => "Pi", "latex" => "Pi", "mathml" => "Pi", "unicode" => "Pi"}], "base" => 2, "power" => 50, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/prefix/Pebi", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp2_60", "type" => "nist"}, {"id" => "p:exbi", "type" => "unitsml"}], "names" => [{"value" => "exbi", "lang" => "en"}], "short" => "exbi", "symbols" => [{"id" => "exbi", "ascii" => "Ei", "html" => "Ei", "latex" => "Ei", "mathml" => "Ei", "unicode" => "Ei"}], "base" => 2, "power" => 60, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/prefix/Exbi", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp2_70", "type" => "nist"}, {"id" => "p:zebi", "type" => "unitsml"}], "names" => [{"value" => "zebi", "lang" => "en"}], "short" => "zebi", "symbols" => [{"id" => "zebi", "ascii" => "Zi", "html" => "Zi", "latex" => "Zi", "mathml" => "Zi", "unicode" => "Zi"}], "base" => 2, "power" => 70, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/prefix/Zebi", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTp2_80", "type" => "nist"}, {"id" => "p:yobi", "type" => "unitsml"}], "names" => [{"value" => "yobi", "lang" => "en"}], "short" => "yobi", "symbols" => [{"id" => "yobi", "ascii" => "Yi", "html" => "Yi", "latex" => "Yi", "mathml" => "Yi", "unicode" => "Yi"}], "base" => 2, "power" => 80, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/prefix/Yobi", "authority" => "qudt"}]}], "quantities" => [{"identifiers" => [{"id" => "NISTq1", "type" => "nist"}, {"id" => "q:length", "type" => "unitsml"}], "quantity_type" => "base", "names" => [{"value" => "length", "lang" => "en"}, {"value" => "longueur", "lang" => "fr"}], "short" => "length", "dimension_reference" => {"id" => "NISTd1", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/LENG", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Length", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq10", "type" => "nist"}, {"id" => "q:volume", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "volume", "lang" => "en"}, {"value" => "volume", "lang" => "fr"}], "short" => "volume", "dimension_reference" => {"id" => "NISTd10", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/VOLU", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Volume", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq100", "type" => "nist"}, {"id" => "q:diameter", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "diameter", "lang" => "en"}], "short" => "diameter", "dimension_reference" => {"id" => "NISTd1", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Diameter", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq101", "type" => "nist"}, {"id" => "q:length_of_path", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "length of path", "lang" => "en"}], "short" => "length_of_path", "dimension_reference" => {"id" => "NISTd1", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq102", "type" => "nist"}, {"id" => "q:cartesian_coordinates", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "cartesian coordinates", "lang" => "en"}], "short" => "cartesian_coordinates", "dimension_reference" => {"id" => "NISTd1", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/CartesianCoordinates", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq103", "type" => "nist"}, {"id" => "q:position_vector", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "position vector", "lang" => "en"}], "short" => "position_vector", "dimension_reference" => {"id" => "NISTd1", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/PositionVector", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq104", "type" => "nist"}, {"id" => "q:displacement", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "displacement", "lang" => "en"}], "short" => "displacement", "dimension_reference" => {"id" => "NISTd1", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Displacement", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq105", "type" => "nist"}, {"id" => "q:radius_of_curvature", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "radius of curvature", "lang" => "en"}], "short" => "radius_of_curvature", "dimension_reference" => {"id" => "NISTd1", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/RadiusOfCurvature", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq106", "type" => "nist"}, {"id" => "q:curvature", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "curvature", "lang" => "en"}], "short" => "curvature", "dimension_reference" => {"id" => "NISTd29", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Curvature", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq107", "type" => "nist"}, {"id" => "q:speed_of_propagation_of_waves", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "speed of propagation of waves", "lang" => "en"}], "short" => "speed_of_propagation_of_waves", "dimension_reference" => {"id" => "NISTd11", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq108", "type" => "nist"}, {"id" => "q:acceleration_of_free_fall", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "acceleration of free fall", "lang" => "en"}], "short" => "acceleration_of_free_fall", "dimension_reference" => {"id" => "NISTd28", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/AccelerationOfGravity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq109", "type" => "nist"}, {"id" => "q:period_duration", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "period duration", "lang" => "en"}, {"value" => "period", "lang" => "en"}], "short" => "period_duration", "dimension_reference" => {"id" => "NISTd3", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Period", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq11", "type" => "nist"}, {"id" => "q:solid_angle", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "solid angle", "lang" => "en"}, {"value" => "angle solide", "lang" => "fr"}], "short" => "solid_angle", "dimension_reference" => {"id" => "NISTd64", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ANGS", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/SolidAngle", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq110", "type" => "nist"}, {"id" => "q:time_constant", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "time constant", "lang" => "en"}], "short" => "time_constant", "dimension_reference" => {"id" => "NISTd3", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq111", "type" => "nist"}, {"id" => "q:rotation", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "rotation", "lang" => "en"}], "short" => "rotation", "dimension_reference" => {"id" => "NISTd80", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq112", "type" => "nist"}, {"id" => "q:rotational_frequency", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "rotational frequency", "lang" => "en"}], "short" => "rotational_frequency", "dimension_reference" => {"id" => "NISTd24", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/RotationalFrequency", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq113", "type" => "nist"}, {"id" => "q:angular_frequency", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "angular frequency", "lang" => "en"}], "short" => "angular_frequency", "dimension_reference" => {"id" => "NISTd24", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/AngularFrequency", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq114", "type" => "nist"}, {"id" => "q:wavelength", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "wavelength", "lang" => "en"}], "short" => "wavelength", "dimension_reference" => {"id" => "NISTd1", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Wavelength", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq115", "type" => "nist"}, {"id" => "q:angular_wavenumber", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "angular wavenumber", "lang" => "en"}, {"value" => "angular repetency", "lang" => "en"}], "short" => "angular_wavenumber", "dimension_reference" => {"id" => "NISTd29", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/AngularWavenumber", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq116", "type" => "nist"}, {"id" => "q:phase_velocity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "phase velocity", "lang" => "en"}, {"value" => "phase speed", "lang" => "en"}], "short" => "phase_velocity", "dimension_reference" => {"id" => "NISTd11", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq117", "type" => "nist"}, {"id" => "q:group_velocity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "group velocity", "lang" => "en"}, {"value" => "group speed", "lang" => "en"}], "short" => "group_velocity", "dimension_reference" => {"id" => "NISTd11", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq118", "type" => "nist"}, {"id" => "q:level_of_a_field_quantity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "level of a field quantity", "lang" => "en"}], "short" => "level_of_a_field_quantity", "dimension_reference" => {"id" => "NISTd83", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq119", "type" => "nist"}, {"id" => "q:level_of_a_power_quantity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "level of a power quantity", "lang" => "en"}], "short" => "level_of_a_power_quantity", "dimension_reference" => {"id" => "NISTd84", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq12", "type" => "nist"}, {"id" => "q:velocity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "velocity", "lang" => "en"}, {"value" => "speed", "lang" => "en"}, {"value" => "vitesse", "lang" => "fr"}], "short" => "velocity", "dimension_reference" => {"id" => "NISTd11", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/VELO", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Speed", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq120", "type" => "nist"}, {"id" => "q:damping_coefficient", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "damping coefficient", "lang" => "en"}], "short" => "damping_coefficient", "dimension_reference" => {"id" => "NISTd24", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq121", "type" => "nist"}, {"id" => "q:logarithmic_decrement", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "ratio logarithm (Np)", "lang" => "en"}, {"value" => "logarithmic decrement (field quantities using natural logarithms)", "lang" => "en"}, {"value" => "logarithme d'un rapport (Np)", "lang" => "fr"}], "short" => "logarithmic_decrement", "dimension_reference" => {"id" => "NISTd67", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/RLGN", "authority" => "si-digital-framework"}]}, {"identifiers" => [{"id" => "NISTq122", "type" => "nist"}, {"id" => "q:attenuation_coefficient", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "attenuation coefficient", "lang" => "en"}], "short" => "attenuation_coefficient", "dimension_reference" => {"id" => "NISTd29", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/AttenuationCoefficient", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq123", "type" => "nist"}, {"id" => "q:phase_coefficient", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "phase coefficient", "lang" => "en"}], "short" => "phase_coefficient", "dimension_reference" => {"id" => "NISTd29", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/PhaseCoefficient", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq124", "type" => "nist"}, {"id" => "q:propagation_coefficient", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "propagation coefficient", "lang" => "en"}], "short" => "propagation_coefficient", "dimension_reference" => {"id" => "NISTd29", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/PropagationCoefficient", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq125", "type" => "nist"}, {"id" => "q:relative_mass_density", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "relative mass density", "lang" => "en"}, {"value" => "relative density", "lang" => "en"}], "short" => "relative_mass_density", "dimension_reference" => {"id" => "NISTd80", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/RelativeMassDensity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq126", "type" => "nist"}, {"id" => "q:linear_density", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "linear density", "lang" => "en"}, {"value" => "lineic mass", "lang" => "en"}], "short" => "linear_density", "dimension_reference" => {"id" => "NISTd58", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/LinearDensity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq127", "type" => "nist"}, {"id" => "q:mass_moment_of_inertia", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "mass moment of inertia", "lang" => "en"}, {"value" => "moment of inertia", "lang" => "en"}], "short" => "mass_moment_of_inertia", "dimension_reference" => {"id" => "NISTd59", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/SecondAxialMomentOfArea", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq128", "type" => "nist"}, {"id" => "q:weight", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "weight", "lang" => "en"}], "short" => "weight", "dimension_reference" => {"id" => "NISTd12", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Weight", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq129", "type" => "nist"}, {"id" => "q:impulse", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "impulse", "lang" => "en"}], "short" => "impulse", "dimension_reference" => {"id" => "NISTd61", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Impulse", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq13", "type" => "nist"}, {"id" => "q:force", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "force", "lang" => "en"}, {"value" => "force", "lang" => "fr"}], "short" => "force", "dimension_reference" => {"id" => "NISTd12", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/FORC", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Force", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq130", "type" => "nist"}, {"id" => "q:gravitational_constant", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "gravitational constant", "lang" => "en"}], "short" => "gravitational_constant", "dimension_reference" => {"id" => "NISTd62", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/GravitationalAttraction", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq131", "type" => "nist"}, {"id" => "q:momentum", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "momentum", "lang" => "en"}], "short" => "momentum", "dimension_reference" => {"id" => "NISTd61", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Momentum", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq132", "type" => "nist"}, {"id" => "q:moment_of_momentum", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "moment of momentum", "lang" => "en"}, {"value" => "angular momentum", "lang" => "en"}], "short" => "moment_of_momentum", "dimension_reference" => {"id" => "NISTd60", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/AngularMomentum", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq133", "type" => "nist"}, {"id" => "q:angular_impulse", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "angular impulse", "lang" => "en"}], "short" => "angular_impulse", "dimension_reference" => {"id" => "NISTd60", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/AngularImpulse", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq134", "type" => "nist"}, {"id" => "q:normal_stress", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "normal stress", "lang" => "en"}], "short" => "normal_stress", "dimension_reference" => {"id" => "NISTd14", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/NormalStress", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq135", "type" => "nist"}, {"id" => "q:shear_stress", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "shear stress", "lang" => "en"}], "short" => "shear_stress", "dimension_reference" => {"id" => "NISTd14", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ShearStress", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq136", "type" => "nist"}, {"id" => "q:linear_strain", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "linear strain", "lang" => "en"}], "short" => "linear_strain", "dimension_reference" => {"id" => "NISTd80", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/LinearStrain", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq137", "type" => "nist"}, {"id" => "q:shear_strain", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "shear strain", "lang" => "en"}], "short" => "shear_strain", "dimension_reference" => {"id" => "NISTd80", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ShearStrain", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq138", "type" => "nist"}, {"id" => "q:volume_strain", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "volume strain", "lang" => "en"}], "short" => "volume_strain", "dimension_reference" => {"id" => "NISTd80", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/VolumeStrain", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq139", "type" => "nist"}, {"id" => "q:compressibility", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "compressibility", "lang" => "en"}], "short" => "compressibility", "dimension_reference" => {"id" => "NISTd63", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Compressibility", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq14", "type" => "nist"}, {"id" => "q:magnetic_flux_density", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "magnetic flux density", "lang" => "en"}, {"value" => "induction magnétique", "lang" => "fr"}], "short" => "magnetic_flux_density", "dimension_reference" => {"id" => "NISTd13", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/MGFD", "authority" => "si-digital-framework"}]}, {"identifiers" => [{"id" => "NISTq140", "type" => "nist"}, {"id" => "q:poisson_number", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "Poisson number", "lang" => "en"}], "short" => "poisson_number", "dimension_reference" => {"id" => "NISTd80", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/PoissonRatio", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq141", "type" => "nist"}, {"id" => "q:modulus_of_elasticity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "modulus of elasticity", "lang" => "en"}], "short" => "modulus_of_elasticity", "dimension_reference" => {"id" => "NISTd14", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ModulusOfElasticity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq142", "type" => "nist"}, {"id" => "q:modulus_of_rigidity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "modulus of rigidity", "lang" => "en"}, {"value" => "shear modulus", "lang" => "en"}], "short" => "modulus_of_rigidity", "dimension_reference" => {"id" => "NISTd14", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ShearModulus", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq143", "type" => "nist"}, {"id" => "q:modulus_of_compression", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "modulus of compression", "lang" => "en"}, {"value" => "bulk modulus", "lang" => "en"}], "short" => "modulus_of_compression", "dimension_reference" => {"id" => "NISTd14", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/BulkModulus", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq144", "type" => "nist"}, {"id" => "q:second_axial_moment_of_area", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "second axial moment of area", "lang" => "en"}], "short" => "second_axial_moment_of_area", "dimension_reference" => {"id" => "NISTd57", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/SecondAxialMomentOfArea", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq145", "type" => "nist"}, {"id" => "q:second_polar_moment_of_area", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "second polar moment of area", "lang" => "en"}], "short" => "second_polar_moment_of_area", "dimension_reference" => {"id" => "NISTd57", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/SecondPolarMomentOfArea", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq146", "type" => "nist"}, {"id" => "q:section_modulus", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "section modulus", "lang" => "en"}], "short" => "section_modulus", "dimension_reference" => {"id" => "NISTd10", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/SectionModulus", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq147", "type" => "nist"}, {"id" => "q:dynamic_friction_factor", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "dynamic friction factor", "lang" => "en"}], "short" => "dynamic_friction_factor", "dimension_reference" => {"id" => "NISTd80", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/DynamicFriction", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq15", "type" => "nist"}, {"id" => "q:pressure", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "pressure", "lang" => "en"}, {"value" => "pression, contrainte", "lang" => "fr"}], "short" => "pressure", "dimension_reference" => {"id" => "NISTd14", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/PRES", "authority" => "si-digital-framework"}]}, {"identifiers" => [{"id" => "NISTq150", "type" => "nist"}, {"id" => "q:mass_flow_rate", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "mass flow rate", "lang" => "en"}], "short" => "mass_flow_rate", "dimension_reference" => {"id" => "NISTd65", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/MassFlowRate", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq151", "type" => "nist"}, {"id" => "q:volume_flow_rate", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "volume flow rate", "lang" => "en"}], "short" => "volume_flow_rate", "dimension_reference" => {"id" => "NISTd66", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/VolumeFlowRate", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq152", "type" => "nist"}, {"id" => "q:lagrange_function", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "Lagrange function", "lang" => "en"}], "short" => "lagrange_function", "dimension_reference" => {"id" => "NISTd15", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/LagrangeFunction", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq153", "type" => "nist"}, {"id" => "q:hamilton_function", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "Hamilton function", "lang" => "en"}], "short" => "hamilton_function", "dimension_reference" => {"id" => "NISTd15", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/HamiltonFunction", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq154", "type" => "nist"}, {"id" => "q:action", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "action", "lang" => "en"}], "short" => "action", "dimension_reference" => {"id" => "NISTd60", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Action", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq155", "type" => "nist"}, {"id" => "q:area_moment_of_inertia", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "area moment of inertia", "lang" => "en"}, {"value" => "second moment of area", "lang" => "en"}], "short" => "area_moment_of_inertia", "dimension_reference" => {"id" => "NISTd57", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/PolarMomentOfInertia", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq156", "type" => "nist"}, {"id" => "q:linear_expansion_coefficient", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "linear expansion coefficient", "lang" => "en"}], "short" => "linear_expansion_coefficient", "dimension_reference" => {"id" => "NISTd68", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/LinearExpansionCoefficient", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq157", "type" => "nist"}, {"id" => "q:cubic_expansion_coefficient", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "cubic expansion coefficient", "lang" => "en"}], "short" => "cubic_expansion_coefficient", "dimension_reference" => {"id" => "NISTd68", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/CubicExpansionCoefficient", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq158", "type" => "nist"}, {"id" => "q:relative_pressure_coefficient", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "relative pressure coefficient", "lang" => "en"}], "short" => "relative_pressure_coefficient", "dimension_reference" => {"id" => "NISTd68", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/RelativePressureCoefficient", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq159", "type" => "nist"}, {"id" => "q:pressure_coefficient", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "pressure coefficient", "lang" => "en"}], "short" => "pressure_coefficient", "dimension_reference" => {"id" => "NISTd69", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/PressureCoefficient", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq16", "type" => "nist"}, {"id" => "q:stress", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "stress", "lang" => "en"}], "short" => "stress", "dimension_reference" => {"id" => "NISTd14", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Stress", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq160", "type" => "nist"}, {"id" => "q:isothermal_compressibility", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "isothermal compressibility", "lang" => "en"}], "short" => "isothermal_compressibility", "dimension_reference" => {"id" => "NISTd70", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/IsothermalCompressibility", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq161", "type" => "nist"}, {"id" => "q:magnetomotive_force", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "magnetomotive force (Cardelli) (-SP811)", "lang" => "en"}], "short" => "magnetomotive_force", "dimension_reference" => {"id" => "NISTd4", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/MagnetomotiveForce", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq162", "type" => "nist"}, {"id" => "q:electric_dipole_moment", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "electric dipole moment", "lang" => "en"}], "short" => "electric_dipole_moment", "dimension_reference" => {"id" => "NISTd72", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ElectricDipoleMoment", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq163", "type" => "nist"}, {"id" => "q:magnetizability", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "magnetizability", "lang" => "en"}], "short" => "magnetizability", "dimension_reference" => {"id" => "NISTd54", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Magnetization", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq164", "type" => "nist"}, {"id" => "q:magnetic_dipole_moment", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "magnetic dipole moment", "lang" => "en"}], "short" => "magnetic_dipole_moment", "dimension_reference" => {"id" => "NISTd73", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/MagneticDipoleMoment", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq165", "type" => "nist"}, {"id" => "q:electric_field_gradient", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "electric field gradient", "lang" => "en"}], "short" => "electric_field_gradient", "dimension_reference" => {"id" => "NISTd74", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ElectricField", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq166", "type" => "nist"}, {"id" => "q:electric_potential", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "electric potential", "lang" => "en"}], "short" => "electric_potential", "dimension_reference" => {"id" => "NISTd18", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ElectricPotential", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq167", "type" => "nist"}, {"id" => "q:electric_quadrupole_moment", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "electric quadrupole moment", "lang" => "en"}], "short" => "electric_quadrupole_moment", "dimension_reference" => {"id" => "NISTd75", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ElectricQuadrupoleMoment", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq168", "type" => "nist"}, {"id" => "q:polarizability", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "polarizability", "lang" => "en"}], "short" => "polarizability", "dimension_reference" => {"id" => "NISTd76", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Polarizability", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq169", "type" => "nist"}, {"id" => "q:electric_capacitance", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "electric capacitance", "lang" => "en"}], "short" => "electric_capacitance", "dimension_reference" => {"id" => "NISTd19", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Capacitance", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq17", "type" => "nist"}, {"id" => "q:energy", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "energy", "lang" => "en"}, {"value" => "énergie", "lang" => "fr"}], "short" => "energy", "dimension_reference" => {"id" => "NISTd15", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ENGY", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Energy", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq170", "type" => "nist"}, {"id" => "q:electric_current_intensity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "electric current intensity", "lang" => "en"}], "short" => "electric_current_intensity", "dimension_reference" => {"id" => "NISTd4", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ElectricCurrentIntensity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq171", "type" => "nist"}, {"id" => "q:electric_inductance", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "electric inductance", "lang" => "en"}], "short" => "electric_inductance", "dimension_reference" => {"id" => "NISTd23", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Inductance", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq172", "type" => "nist"}, {"id" => "q:first_hyperpolarizability", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "1st hyperpolarizability", "lang" => "en"}], "short" => "first_hyperpolarizability", "dimension_reference" => {"id" => "NISTd77", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq173", "type" => "nist"}, {"id" => "q:second_hyperpolarizability", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "2nd hyperpolarizability", "lang" => "en"}], "short" => "second_hyperpolarizability", "dimension_reference" => {"id" => "NISTd78", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq174", "type" => "nist"}, {"id" => "q:index_of_acidity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "index of acidity", "lang" => "en"}], "short" => "index_of_acidity", "dimension_reference" => {"id" => "NISTd94", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Acidity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq175", "type" => "nist"}, {"id" => "q:fahrenheit_temperature", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "Fahrenheit temperature", "lang" => "en"}], "short" => "fahrenheit_temperature", "dimension_reference" => {"id" => "NISTd5", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/FahrenheitTemperature", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq176", "type" => "nist"}, {"id" => "q:mass_divided_by_length", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "mass divided by length", "lang" => "en"}], "short" => "mass_divided_by_length", "dimension_reference" => {"id" => "NISTd58", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/LineicMass", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq177", "type" => "nist"}, {"id" => "q:storage_capacity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "storage capacity", "lang" => "en"}, {"value" => "storage size", "lang" => "en"}], "short" => "storage_capacity", "dimension_reference" => {"id" => "NISTd95", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq179", "type" => "nist"}, {"id" => "q:molality_of_solute_B", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "molality of solute B", "lang" => "en"}], "short" => "molality_of_solute_B", "dimension_reference" => {"id" => "NISTd79", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/MolalityOfSolute", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq18", "type" => "nist"}, {"id" => "q:work", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "work", "lang" => "en"}], "short" => "work", "dimension_reference" => {"id" => "NISTd15", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Work", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq180", "type" => "nist"}, {"id" => "q:coefficient_of_heat_transfer", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "coefficient of heat transfer", "lang" => "en"}], "short" => "coefficient_of_heat_transfer", "dimension_reference" => {"id" => "NISTd71", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/CoefficientOfHeatTransfer", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq181", "type" => "nist"}, {"id" => "q:surface_coefficient_of_heat_transfer", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "surface coefficient of heat transfer", "lang" => "en"}], "short" => "surface_coefficient_of_heat_transfer", "dimension_reference" => {"id" => "NISTd71", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/SurfaceCoefficientOfHeatTransfer", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq182", "type" => "nist"}, {"id" => "q:kinetic_energy", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "kinetic energy", "lang" => "en"}], "short" => "kinetic_energy", "dimension_reference" => {"id" => "NISTd15", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/KineticEnergy", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq183", "type" => "nist"}, {"id" => "q:mechanical_energy", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "mechanical energy", "lang" => "en"}], "short" => "mechanical_energy", "dimension_reference" => {"id" => "NISTd15", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/MechanicalEnergy", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq184", "type" => "nist"}, {"id" => "q:torque", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "torque", "lang" => "en"}], "short" => "torque", "dimension_reference" => {"id" => "NISTd15", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Torque", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq185", "type" => "nist"}, {"id" => "q:bending_moment_of_force", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "bending moment of force", "lang" => "en"}], "short" => "bending_moment_of_force", "dimension_reference" => {"id" => "NISTd15", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/BendingMomentOfForce", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq186", "type" => "nist"}, {"id" => "q:mass_fraction", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "mass fraction", "lang" => "en"}, {"value" => "mole fraction", "lang" => "en"}], "short" => "mass_fraction", "dimension_reference" => {"id" => "NISTd85", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/MassFraction", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq187", "type" => "nist"}, {"id" => "q:apparent_power", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "apparent power", "lang" => "en"}], "short" => "apparent_power", "dimension_reference" => {"id" => "NISTd16", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ApparentPower", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq188", "type" => "nist"}, {"id" => "q:nil", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "nil", "lang" => "en"}], "short" => "nil", "dimension_reference" => {"id" => "NISTd80", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq189", "type" => "nist"}, {"id" => "q:emission_rate", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "emission rate", "lang" => "en"}, {"value" => "taux d'émission", "lang" => "fr"}], "short" => "emission_rate", "dimension_reference" => {"id" => "NISTd24", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/EMIR", "authority" => "si-digital-framework"}]}, {"identifiers" => [{"id" => "NISTq19", "type" => "nist"}, {"id" => "q:amount_of_heat", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "amount of heat", "lang" => "en"}, {"value" => "heat", "lang" => "en"}], "short" => "amount_of_heat", "dimension_reference" => {"id" => "NISTd15", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Heat", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq190", "type" => "nist"}, {"id" => "q:fluence", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "fluence", "lang" => "en"}, {"value" => "fluence", "lang" => "fr"}], "short" => "fluence", "dimension_reference" => {"id" => "NISTd96", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/FLUE", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/EnergyFluence", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq191", "type" => "nist"}, {"id" => "q:fluence_rate", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "fluence rate", "lang" => "en"}, {"value" => "débit de fluence", "lang" => "fr"}], "short" => "fluence_rate", "dimension_reference" => {"id" => "NISTd97", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/FLUR", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/EnergyFluenceRate", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq192", "type" => "nist"}, {"id" => "q:ITS-90_temperature_celsius", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "ITS-90 temperature (°C)", "lang" => "en"}, {"value" => "température ITS-90 (℃)", "lang" => "fr"}], "short" => "ITS-90_temperature_celsius", "dimension_reference" => {"id" => "NISTd5", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ITSC", "authority" => "si-digital-framework"}]}, {"identifiers" => [{"id" => "NISTq193", "type" => "nist"}, {"id" => "q:ITS-90_temperature_kelvin", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "ITS-90 temperature (K)", "lang" => "en"}, {"value" => "température ITS-90 (K)", "lang" => "fr"}], "short" => "ITS-90_temperature_kelvin", "dimension_reference" => {"id" => "NISTd5", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ITSK", "authority" => "si-digital-framework"}]}, {"identifiers" => [{"id" => "NISTq194", "type" => "nist"}, {"id" => "q:kerma_rate", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "kerma rate", "lang" => "en"}, {"value" => "kerma rate", "lang" => "fr"}], "short" => "kerma_rate", "dimension_reference" => {"id" => "NISTd50", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/KRMR", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/KermaRate", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq195", "type" => "nist"}, {"id" => "q:phase", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "phase", "lang" => "en"}, {"value" => "phase", "lang" => "fr"}], "short" => "phase", "dimension_reference" => {"id" => "NISTd98", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/PHAS", "authority" => "si-digital-framework"}]}, {"identifiers" => [{"id" => "NISTq196", "type" => "nist"}, {"id" => "q:PLTS-2000_temperature", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "PLTS-2000 temperature (K)", "lang" => "en"}, {"value" => "température PLTS-2000 (K)", "lang" => "fr"}], "short" => "PLTS-2000_temperature", "dimension_reference" => {"id" => "NISTd5", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/PLTS", "authority" => "si-digital-framework"}]}, {"identifiers" => [{"id" => "NISTq197", "type" => "nist"}, {"id" => "q:exposure", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "exposure", "lang" => "en"}, {"value" => "exposition (rayons x et γ)", "lang" => "fr"}], "short" => "exposure", "dimension_reference" => {"id" => "NISTd49", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/XPOS", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Exposure", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq198", "type" => "nist"}, {"id" => "q:fuel_efficiency", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "fuel efficiency", "lang" => "en"}, {"value" => "fuel economy", "lang" => "en"}], "short" => "fuel_efficiency", "dimension_reference" => {"id" => "NISTd99", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq199", "type" => "nist"}, {"id" => "q:relative_humidity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "relative humidity", "lang" => "en"}], "short" => "relative_humidity", "dimension_reference" => {"id" => "NISTd80", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/RelativeHumidity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq2", "type" => "nist"}, {"id" => "q:mass", "type" => "unitsml"}], "quantity_type" => "base", "names" => [{"value" => "mass", "lang" => "en"}, {"value" => "masse", "lang" => "fr"}], "short" => "mass", "dimension_reference" => {"id" => "NISTd2", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/MASS", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Mass", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq20", "type" => "nist"}, {"id" => "q:power", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "power", "lang" => "en"}, {"value" => "puissance, flux énergétique", "lang" => "fr"}], "short" => "power", "dimension_reference" => {"id" => "NISTd16", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/POWR", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Power", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq200", "type" => "nist"}, {"id" => "q:logarithmic_frequency_range", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "logarithmic frequency range", "lang" => "en"}], "short" => "logarithmic_frequency_range", "dimension_reference" => {"id" => "NISTd67", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq201", "type" => "nist"}, {"id" => "q:traffic_intensity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "traffic intensity", "lang" => "en"}], "short" => "traffic_intensity", "dimension_reference" => {"id" => "NISTd100", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/TrafficIntensity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq202", "type" => "nist"}, {"id" => "q:symbol_rate", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "symbol rate", "lang" => "en"}], "short" => "symbol_rate", "dimension_reference" => {"id" => "NISTd101", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq203", "type" => "nist"}, {"id" => "q:information_content", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "information content", "lang" => "en"}, {"value" => "information entropy", "lang" => "en"}], "short" => "information_content", "dimension_reference" => {"id" => "NISTd102", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/InformationContent", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq21", "type" => "nist"}, {"id" => "q:radiant_flux", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "radiant flux", "lang" => "en"}], "short" => "radiant_flux", "dimension_reference" => {"id" => "NISTd16", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/RadiantFlux", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq22", "type" => "nist"}, {"id" => "q:electric_charge", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "electric charge", "lang" => "en"}, {"value" => "charge électrique", "lang" => "fr"}], "short" => "electric_charge", "dimension_reference" => {"id" => "NISTd17", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ELCH", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ElectricCharge", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq23", "type" => "nist"}, {"id" => "q:amount_of_electricity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "amount of electricity", "lang" => "en"}], "short" => "amount_of_electricity", "dimension_reference" => {"id" => "NISTd17", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq24", "type" => "nist"}, {"id" => "q:electric_potential_difference", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "electric potential difference", "lang" => "en"}, {"value" => "différence de potentiel électrique", "lang" => "fr"}], "short" => "electric_potential_difference", "dimension_reference" => {"id" => "NISTd18", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ELPD", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ElectricPotentialDifference", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq25", "type" => "nist"}, {"id" => "q:potential_difference", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "potential difference", "lang" => "en"}], "short" => "potential_difference", "dimension_reference" => {"id" => "NISTd18", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq26", "type" => "nist"}, {"id" => "q:electromotive_force", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "electromotive force", "lang" => "en"}], "short" => "electromotive_force", "dimension_reference" => {"id" => "NISTd18", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ElectromotiveForce", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq27", "type" => "nist"}, {"id" => "q:capacitance", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "capacitance", "lang" => "en"}, {"value" => "capacité électrique", "lang" => "fr"}], "short" => "capacitance", "dimension_reference" => {"id" => "NISTd19", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ELCA", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Capacitance", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq28", "type" => "nist"}, {"id" => "q:electric_resistance", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "electric resistance", "lang" => "en"}, {"value" => "résistance électrique", "lang" => "fr"}], "short" => "electric_resistance", "dimension_reference" => {"id" => "NISTd20", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ELRE", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Resistance", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq29", "type" => "nist"}, {"id" => "q:electric_conductance", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "electric conductance", "lang" => "en"}, {"value" => "conductance électrique", "lang" => "fr"}], "short" => "electric_conductance", "dimension_reference" => {"id" => "NISTd21", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ELCO", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Conductance", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq3", "type" => "nist"}, {"id" => "q:time", "type" => "unitsml"}], "quantity_type" => "base", "names" => [{"value" => "time", "lang" => "en"}, {"value" => "duration", "lang" => "en"}, {"value" => "temps", "lang" => "fr"}], "short" => "time", "dimension_reference" => {"id" => "NISTd3", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/TIME", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Time", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq30", "type" => "nist"}, {"id" => "q:magnetic_flux", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "magnetic flux", "lang" => "en"}, {"value" => "flux d'induction magnétique", "lang" => "fr"}], "short" => "magnetic_flux", "dimension_reference" => {"id" => "NISTd22", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/MGFL", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/MagneticFlux", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq31", "type" => "nist"}, {"id" => "q:surface_density", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "surface density", "lang" => "en"}, {"value" => "areic mass", "lang" => "en"}, {"value" => "masse surfacique", "lang" => "fr"}], "short" => "surface_density", "dimension_reference" => {"id" => "NISTd51", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/SUDE", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/AreaMass", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq32", "type" => "nist"}, {"id" => "q:inductance", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "inductance", "lang" => "en"}, {"value" => "inductance", "lang" => "fr"}], "short" => "inductance", "dimension_reference" => {"id" => "NISTd23", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ELIN", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Inductance", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq33", "type" => "nist"}, {"id" => "q:mass_concentration", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "mass concentration", "lang" => "en"}, {"value" => "concentration massique", "lang" => "fr"}], "short" => "mass_concentration", "dimension_reference" => {"id" => "NISTd30", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/MACO", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/MassConcentration", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq34", "type" => "nist"}, {"id" => "q:celsius_temperature", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "Celsius temperature", "lang" => "en"}, {"value" => "température Celsius", "lang" => "fr"}], "short" => "celsius_temperature", "dimension_reference" => {"id" => "NISTd5", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/TEMC", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/CelsiusTemperature", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq35", "type" => "nist"}, {"id" => "q:activity_referred_to_a_radionuclide", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "activity referred to a radionuclide", "lang" => "en"}, {"value" => "activité d'un radionucléide", "lang" => "fr"}], "short" => "activity_referred_to_a_radionuclide", "dimension_reference" => {"id" => "NISTd24", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ARRN", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Activity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq36", "type" => "nist"}, {"id" => "q:absorbed_dose", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "absorbed dose", "lang" => "en"}, {"value" => "dose absorbée", "lang" => "fr"}], "short" => "absorbed_dose", "dimension_reference" => {"id" => "NISTd25", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ABDO", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/AbsorbedDose", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq37", "type" => "nist"}, {"id" => "q:specific_energy_imparted", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "specific energy imparted", "lang" => "en"}], "short" => "specific_energy_imparted", "dimension_reference" => {"id" => "NISTd25", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/SpecificEnergyImparted", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq38", "type" => "nist"}, {"id" => "q:kerma", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "kerma", "lang" => "en"}, {"value" => "kerma", "lang" => "fr"}], "short" => "kerma", "dimension_reference" => {"id" => "NISTd25", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/KRMA", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Kerma", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq39", "type" => "nist"}, {"id" => "q:dose_equivalent", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "dose equivalent", "lang" => "en"}, {"value" => "équivalent de dose", "lang" => "fr"}], "short" => "dose_equivalent", "dimension_reference" => {"id" => "NISTd25", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/DOEQ", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/DoseEquivalent", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq4", "type" => "nist"}, {"id" => "q:electric_current", "type" => "unitsml"}], "quantity_type" => "base", "names" => [{"value" => "electric current", "lang" => "en"}, {"value" => "courant électrique", "lang" => "fr"}], "short" => "electric_current", "dimension_reference" => {"id" => "NISTd4", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ELCU", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ElectricCurrent", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq40", "type" => "nist"}, {"id" => "q:ambient_dose_equivalent", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "ambient dose equivalent", "lang" => "en"}], "short" => "ambient_dose_equivalent", "dimension_reference" => {"id" => "NISTd25", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq41", "type" => "nist"}, {"id" => "q:directional_dose_equivalent", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "directional dose equivalent", "lang" => "en"}], "short" => "directional_dose_equivalent", "dimension_reference" => {"id" => "NISTd25", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq42", "type" => "nist"}, {"id" => "q:personal_dose_equivalent", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "personal dose equivalent", "lang" => "en"}], "short" => "personal_dose_equivalent", "dimension_reference" => {"id" => "NISTd25", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq43", "type" => "nist"}, {"id" => "q:organ_dose_equivalent", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "organ dose equivalent", "lang" => "en"}], "short" => "organ_dose_equivalent", "dimension_reference" => {"id" => "NISTd25", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq44", "type" => "nist"}, {"id" => "q:catalytic_activity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "catalytic activity", "lang" => "en"}, {"value" => "activité catalytique", "lang" => "fr"}], "short" => "catalytic_activity", "dimension_reference" => {"id" => "NISTd26", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/CATA", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/CatalyticActivity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq45", "type" => "nist"}, {"id" => "q:frequency", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "frequency", "lang" => "en"}, {"value" => "fréquence", "lang" => "fr"}], "short" => "frequency", "dimension_reference" => {"id" => "NISTd24", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/FREQ", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Frequency", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq46", "type" => "nist"}, {"id" => "q:luminous_flux", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "luminous flux", "lang" => "en"}, {"value" => "flux lumineux", "lang" => "fr"}], "short" => "luminous_flux", "dimension_reference" => {"id" => "NISTd7", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/LUFL", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/LuminousFlux", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq47", "type" => "nist"}, {"id" => "q:illuminance", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "illuminance", "lang" => "en"}, {"value" => "éclairement lumineux", "lang" => "fr"}], "short" => "illuminance", "dimension_reference" => {"id" => "NISTd27", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ILLU", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Illuminance", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq48", "type" => "nist"}, {"id" => "q:distance", "type" => "unitsml"}], "quantity_type" => "base", "names" => [{"value" => "distance", "lang" => "en"}], "short" => "distance", "dimension_reference" => {"id" => "NISTd1", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Distance", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq49", "type" => "nist"}, {"id" => "q:acceleration", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "acceleration", "lang" => "en"}, {"value" => "accélération", "lang" => "fr"}], "short" => "acceleration", "dimension_reference" => {"id" => "NISTd28", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ACCE", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Acceleration", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq5", "type" => "nist"}, {"id" => "q:temperature", "type" => "unitsml"}], "quantity_type" => "base", "names" => [{"value" => "thermodynamic temperature", "lang" => "en"}, {"value" => "température thermodynamique", "lang" => "fr"}], "short" => "temperature", "dimension_reference" => {"id" => "NISTd5", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/TEMT", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ThermodynamicTemperature", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq50", "type" => "nist"}, {"id" => "q:wavenumber", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "wavenumber", "lang" => "en"}, {"value" => "repetency", "lang" => "en"}, {"value" => "nombre d'ondes", "lang" => "fr"}], "short" => "wavenumber", "dimension_reference" => {"id" => "NISTd29", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/WANU", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Repetency", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq51", "type" => "nist"}, {"id" => "q:density", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "density", "lang" => "en"}, {"value" => "mass density", "lang" => "en"}, {"value" => "masse volumique", "lang" => "fr"}], "short" => "density", "dimension_reference" => {"id" => "NISTd30", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/DENS", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Density", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq52", "type" => "nist"}, {"id" => "q:specific_volume", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "specific volume", "lang" => "en"}, {"value" => "massic volume", "lang" => "en"}, {"value" => "volume massique", "lang" => "fr"}], "short" => "specific_volume", "dimension_reference" => {"id" => "NISTd31", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/SPVO", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/SpecificVolume", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq53", "type" => "nist"}, {"id" => "q:current_density", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "current density", "lang" => "en"}, {"value" => "densité de courant", "lang" => "fr"}], "short" => "current_density", "dimension_reference" => {"id" => "NISTd32", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/CUDE", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Conductivity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq54", "type" => "nist"}, {"id" => "q:magnetic_field_strength", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "magnetic field strength", "lang" => "en"}, {"value" => "champ magnétique", "lang" => "fr"}], "short" => "magnetic_field_strength", "dimension_reference" => {"id" => "NISTd33", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/MAFD", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/MagneticFieldStrength_H", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq55", "type" => "nist"}, {"id" => "q:amount_concentration", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "amount of substance concentration", "lang" => "en"}, {"value" => "amount concentration", "lang" => "en"}, {"value" => "concentration de quantité de matière", "lang" => "fr"}], "short" => "amount_concentration", "dimension_reference" => {"id" => "NISTd34", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/AMSC", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/MolecularConcentration", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq56", "type" => "nist"}, {"id" => "q:luminance", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "luminance", "lang" => "en"}, {"value" => "luminance lumineuse", "lang" => "fr"}], "short" => "luminance", "dimension_reference" => {"id" => "NISTd27", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/LUMA", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Luminance", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq57", "type" => "nist"}, {"id" => "q:angular_velocity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "angular velocity", "lang" => "en"}, {"value" => "vitesse angulaire", "lang" => "fr"}], "short" => "angular_velocity", "dimension_reference" => {"id" => "NISTd11", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/VELA", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/AngularVelocity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq58", "type" => "nist"}, {"id" => "q:angular_acceleration", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "angular acceleration", "lang" => "en"}, {"value" => "accelération angulaire", "lang" => "fr"}], "short" => "angular_acceleration", "dimension_reference" => {"id" => "NISTd35", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ACCA", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/AngularAcceleration", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq59", "type" => "nist"}, {"id" => "q:dynamic_viscosity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "dynamic viscosity", "lang" => "en"}, {"value" => "viscosité dynamique", "lang" => "fr"}], "short" => "dynamic_viscosity", "dimension_reference" => {"id" => "NISTd36", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/DYVI", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/DynamicViscosity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq6", "type" => "nist"}, {"id" => "q:substance_amount", "type" => "unitsml"}], "quantity_type" => "base", "names" => [{"value" => "amount of substance", "lang" => "en"}, {"value" => "quantité de matière", "lang" => "fr"}], "short" => "substance_amount", "dimension_reference" => {"id" => "NISTd6", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/AMSU", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/AmountOfSubstance", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq60", "type" => "nist"}, {"id" => "q:moment_of_force", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "moment of force", "lang" => "en"}, {"value" => "moment d’une force", "lang" => "fr"}], "short" => "moment_of_force", "dimension_reference" => {"id" => "NISTd15", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/TORQ", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/MomentOfForce", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq61", "type" => "nist"}, {"id" => "q:surface_tension", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "surface tension", "lang" => "en"}, {"value" => "tension superficielle", "lang" => "fr"}], "short" => "surface_tension", "dimension_reference" => {"id" => "NISTd37", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/SUTE", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/SurfaceTension", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq62", "type" => "nist"}, {"id" => "q:heat_flux_density", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "heat flux density", "lang" => "en"}, {"value" => "flux thermique surfacique", "lang" => "fr"}], "short" => "heat_flux_density", "dimension_reference" => {"id" => "NISTd38", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/HEFD", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/HeatFluxDensity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq63", "type" => "nist"}, {"id" => "q:heat_capacity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "heat capacity", "lang" => "en"}, {"value" => "capacité thermique", "lang" => "fr"}], "short" => "heat_capacity", "dimension_reference" => {"id" => "NISTd39", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/HECA", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/HeatCapacity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq64", "type" => "nist"}, {"id" => "q:specific_heat_capacity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "specific heat capacity", "lang" => "en"}, {"value" => "capacité thermique massique", "lang" => "fr"}], "short" => "specific_heat_capacity", "dimension_reference" => {"id" => "NISTd40", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/SHEC", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/SpecificHeatCapacity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq65", "type" => "nist"}, {"id" => "q:specific_energy", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "specific energy", "lang" => "en"}, {"value" => "énergie massique", "lang" => "fr"}], "short" => "specific_energy", "dimension_reference" => {"id" => "NISTd25", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/SENG", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/SpecificEnergy", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq66", "type" => "nist"}, {"id" => "q:thermal_conductivity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "thermal conductivity", "lang" => "en"}, {"value" => "conductivité thermique", "lang" => "fr"}], "short" => "thermal_conductivity", "dimension_reference" => {"id" => "NISTd41", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/TCON", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ThermalConductivity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq67", "type" => "nist"}, {"id" => "q:energy_density", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "energy density", "lang" => "en"}, {"value" => "énergie volumique", "lang" => "fr"}], "short" => "energy_density", "dimension_reference" => {"id" => "NISTd14", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ENGD", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/EnergyDensity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq68", "type" => "nist"}, {"id" => "q:electric_field_strength", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "electric field strength", "lang" => "en"}, {"value" => "champ électrique", "lang" => "fr"}], "short" => "electric_field_strength", "dimension_reference" => {"id" => "NISTd42", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ELFS", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ElectricFieldStrength", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq69", "type" => "nist"}, {"id" => "q:electric_charge_density", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "electric charge density", "lang" => "en"}, {"value" => "charge électrique volumique", "lang" => "fr"}], "short" => "electric_charge_density", "dimension_reference" => {"id" => "NISTd43", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ELCD", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ElectricChargeDensity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq7", "type" => "nist"}, {"id" => "q:luminous_intensity", "type" => "unitsml"}], "quantity_type" => "base", "names" => [{"value" => "luminous intensity", "lang" => "en"}, {"value" => "intensité lumineuse", "lang" => "fr"}], "short" => "luminous_intensity", "dimension_reference" => {"id" => "NISTd7", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/LUIN", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/LuminousIntensity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq70", "type" => "nist"}, {"id" => "q:electric_flux_density", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "electric flux density", "lang" => "en"}, {"value" => "induction électrique", "lang" => "fr"}], "short" => "electric_flux_density", "dimension_reference" => {"id" => "NISTd44", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ELFD", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ElectricFluxDensity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq71", "type" => "nist"}, {"id" => "q:permittivity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "permittivity", "lang" => "en"}, {"value" => "permittivité", "lang" => "fr"}], "short" => "permittivity", "dimension_reference" => {"id" => "NISTd45", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/PRMI", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Permittivity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq72", "type" => "nist"}, {"id" => "q:permeability", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "permeability", "lang" => "en"}, {"value" => "perméabilitté", "lang" => "fr"}], "short" => "permeability", "dimension_reference" => {"id" => "NISTd46", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/PRME", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ElectromagneticPermeability", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq73", "type" => "nist"}, {"id" => "q:molar_energy", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "molar energy", "lang" => "en"}, {"value" => "énergie molaire", "lang" => "fr"}], "short" => "molar_energy", "dimension_reference" => {"id" => "NISTd47", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/MOEG", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/MolarEnergy", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq74", "type" => "nist"}, {"id" => "q:molar_entropy", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "molar entropy", "lang" => "en"}, {"value" => "entropie molaire", "lang" => "fr"}], "short" => "molar_entropy", "dimension_reference" => {"id" => "NISTd48", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/MOEN", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/MolarEntropy", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq75", "type" => "nist"}, {"id" => "q:exposure_x_and_gamma_rays", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "exposure (x and gamma rays)", "lang" => "en"}], "short" => "exposure_x_and_gamma_rays", "dimension_reference" => {"id" => "NISTd49", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ExposureOfIonizingRadiation", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq76", "type" => "nist"}, {"id" => "q:absorbed_dose_rate", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "absorbed dose rate", "lang" => "en"}, {"value" => "débit de dose absorbée", "lang" => "fr"}], "short" => "absorbed_dose_rate", "dimension_reference" => {"id" => "NISTd50", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ABDR", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/AbsorbedDoseRate", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq77", "type" => "nist"}, {"id" => "q:potential_energy", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "potential energy", "lang" => "en"}], "short" => "potential_energy", "dimension_reference" => {"id" => "NISTd15", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/PotentialEnergy", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq78", "type" => "nist"}, {"id" => "q:irradiance", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "irradiance", "lang" => "en"}], "short" => "irradiance", "dimension_reference" => {"id" => "NISTd38", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Irradiance", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq79", "type" => "nist"}, {"id" => "q:entropy", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "entropy", "lang" => "en"}], "short" => "entropy", "dimension_reference" => {"id" => "NISTd39", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Entropy", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq8", "type" => "nist"}, {"id" => "q:area", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "area", "lang" => "en"}, {"value" => "superficie", "lang" => "fr"}], "short" => "area", "dimension_reference" => {"id" => "NISTd8", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/AREA", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Area", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq80", "type" => "nist"}, {"id" => "q:specific_entropy", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "specific entropy", "lang" => "en"}], "short" => "specific_entropy", "dimension_reference" => {"id" => "NISTd40", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/SpecificEntropy", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq81", "type" => "nist"}, {"id" => "q:surface_charge_density", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "surface charge density", "lang" => "en"}, {"value" => "charge électrique surfacique", "lang" => "fr"}], "short" => "surface_charge_density", "dimension_reference" => {"id" => "NISTd53", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/SUCD", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/AreaChargeDensity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq82", "type" => "nist"}, {"id" => "q:electric_displacement", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "electric displacement", "lang" => "en"}], "short" => "electric_displacement", "dimension_reference" => {"id" => "NISTd44", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/ElectricDisplacement", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq83", "type" => "nist"}, {"id" => "q:molar_heat_capacity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "molar heat capacity", "lang" => "en"}], "short" => "molar_heat_capacity", "dimension_reference" => {"id" => "NISTd48", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/MolarHeatCapacity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq84", "type" => "nist"}, {"id" => "q:catalytic_activity_concentration", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "catalytic activity concentration", "lang" => "en"}, {"value" => "concentration de l’activité catalytique", "lang" => "fr"}], "short" => "catalytic_activity_concentration", "dimension_reference" => {"id" => "NISTd55", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/CTAC", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/CatalyticActivityConcentration", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq85", "type" => "nist"}, {"id" => "q:kinematic_viscosity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "kinematic viscosity", "lang" => "en"}, {"value" => "viscosité cinématique", "lang" => "fr"}], "short" => "kinematic_viscosity", "dimension_reference" => {"id" => "NISTd56", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/KIVI", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/KinematicViscosity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq87", "type" => "nist"}, {"id" => "q:magnetic_field", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "magnetic field", "lang" => "en"}], "short" => "magnetic_field", "dimension_reference" => {"id" => "NISTd33", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/MagneticField", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq88", "type" => "nist"}, {"id" => "q:radiant_intensity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "radiant intensity", "lang" => "en"}, {"value" => "intensité énergétique", "lang" => "fr"}], "short" => "radiant_intensity", "dimension_reference" => {"id" => "NISTd16", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/RAIN", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/RadiantIntensity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq89", "type" => "nist"}, {"id" => "q:radiance", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "radiance", "lang" => "en"}, {"value" => "luminance énergétique", "lang" => "fr"}], "short" => "radiance", "dimension_reference" => {"id" => "NISTd38", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/RADI", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Radiance", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq9", "type" => "nist"}, {"id" => "q:plane_angle", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "plane angle", "lang" => "en"}, {"value" => "angle", "lang" => "en"}, {"value" => "angle plan", "lang" => "fr"}], "short" => "plane_angle", "dimension_reference" => {"id" => "NISTd9", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/ANGP", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/PlaneAngle", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq90", "type" => "nist"}, {"id" => "q:logarithmic_ratio_quantities", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "ratio logarithm (B)", "lang" => "en"}, {"value" => "logarithmic ratio quantities (power-like quantities using decimal logarithms)", "lang" => "en"}, {"value" => "logarithme d'un rapport (B)", "lang" => "fr"}], "short" => "logarithmic_ratio_quantities", "dimension_reference" => {"id" => "NISTd67", "type" => "nist"}, "references" => [{"type" => "normative", "uri" => "http://si-digital-framework.org/quantities/RLGB", "authority" => "si-digital-framework"}, {"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/LinearLogarithmicRatio", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq91", "type" => "nist"}, {"id" => "q:fluidity", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "fluidity", "lang" => "en"}, {"value" => "reciprocal of dynamic viscosity", "lang" => "en"}], "short" => "fluidity", "dimension_reference" => {"id" => "NISTd52", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Fluidity", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq92", "type" => "nist"}, {"id" => "q:hydrodynamic_permeability", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "hydrodynamic permeability", "lang" => "en"}], "short" => "hydrodynamic_permeability", "dimension_reference" => {"id" => "NISTd8", "type" => "nist"}}, {"identifiers" => [{"id" => "NISTq93", "type" => "nist"}, {"id" => "q:refractive_index", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "refractive index", "lang" => "en"}], "short" => "refractive_index", "dimension_reference" => {"id" => "NISTd80", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/RefractiveIndex", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq94", "type" => "nist"}, {"id" => "q:relative_permeability", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "relative permeability", "lang" => "en"}], "short" => "relative_permeability", "dimension_reference" => {"id" => "NISTd80", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/PermeabilityRatio", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq95", "type" => "nist"}, {"id" => "q:breadth", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "breadth", "lang" => "en"}], "short" => "breadth", "dimension_reference" => {"id" => "NISTd1", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Breadth", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq96", "type" => "nist"}, {"id" => "q:height", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "height", "lang" => "en"}], "short" => "height", "dimension_reference" => {"id" => "NISTd1", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Height", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq97", "type" => "nist"}, {"id" => "q:thickness", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "thickness", "lang" => "en"}], "short" => "thickness", "dimension_reference" => {"id" => "NISTd1", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Thickness", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq98", "type" => "nist"}, {"id" => "q:radius", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "radius", "lang" => "en"}], "short" => "radius", "dimension_reference" => {"id" => "NISTd1", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/Radius", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTq99", "type" => "nist"}, {"id" => "q:radial_distance", "type" => "unitsml"}], "quantity_type" => "derived", "names" => [{"value" => "radial distance", "lang" => "en"}], "short" => "radial_distance", "dimension_reference" => {"id" => "NISTd1", "type" => "nist"}, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/quantitykind/RadialDistance", "authority" => "qudt"}]}], "dimensions" => [{"identifiers" => [{"id" => "NISTd1", "type" => "nist"}, {"id" => "d:length", "type" => "unitsml"}], "length" => {"power" => 1, "symbol" => "L", "symbols" => [{"id" => "dim_L", "ascii" => "L", "html" => "𝖫", "latex" => "\\ensuremath{\\mathsf{L}}", "mathml" => "L", "unicode" => "𝖫"}]}, "short" => "length", "names" => [{"value" => "length", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd10", "type" => "nist"}, {"id" => "d:volume", "type" => "unitsml"}], "length" => {"power" => 3, "symbol" => "L"}, "short" => "volume", "names" => [{"value" => "volume", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd100", "type" => "nist"}, {"id" => "d:traffic_intensity", "type" => "unitsml"}], "dimensionless" => true, "short" => "traffic_intensity", "names" => [{"value" => "traffic intensity", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd101", "type" => "nist"}, {"id" => "d:symbol_rate", "type" => "unitsml"}], "time" => {"power" => -1, "symbol" => "T"}, "short" => "symbol_rate", "names" => [{"value" => "symbol rate", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L-0dot5I0M0dot5H0T-1D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd102", "type" => "nist"}, {"id" => "d:information_content", "type" => "unitsml"}], "dimensionless" => true, "short" => "information_content", "names" => [{"value" => "information content", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd11", "type" => "nist"}, {"id" => "d:velocity", "type" => "unitsml"}], "length" => {"power" => 1, "symbol" => "L"}, "time" => {"power" => -1, "symbol" => "T"}, "short" => "velocity", "names" => [{"value" => "velocity", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd12", "type" => "nist"}, {"id" => "d:force", "type" => "unitsml"}], "length" => {"power" => 1, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -2, "symbol" => "T"}, "short" => "force", "names" => [{"value" => "force", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd13", "type" => "nist"}, {"id" => "d:magnetic_flux_density", "type" => "unitsml"}], "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -2, "symbol" => "T"}, "electric_current" => {"power" => -1, "symbol" => "I"}, "short" => "magnetic_flux_density", "names" => [{"value" => "magnetic flux density", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E-1L0I0M1H0T-2D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd14", "type" => "nist"}, {"id" => "d:pressure", "type" => "unitsml"}], "length" => {"power" => -1, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -2, "symbol" => "T"}, "short" => "pressure", "names" => [{"value" => "pressure", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd15", "type" => "nist"}, {"id" => "d:energy", "type" => "unitsml"}], "length" => {"power" => 2, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -2, "symbol" => "T"}, "short" => "energy", "names" => [{"value" => "energy", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd16", "type" => "nist"}, {"id" => "d:power", "type" => "unitsml"}], "length" => {"power" => 2, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -3, "symbol" => "T"}, "short" => "power", "names" => [{"value" => "power", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D-1", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd17", "type" => "nist"}, {"id" => "d:electric_charge", "type" => "unitsml"}], "time" => {"power" => 1, "symbol" => "T"}, "electric_current" => {"power" => 1, "symbol" => "I"}, "short" => "electric_charge", "names" => [{"value" => "electric charge", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T1D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd18", "type" => "nist"}, {"id" => "d:electric_potential_difference", "type" => "unitsml"}], "length" => {"power" => 2, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -3, "symbol" => "T"}, "electric_current" => {"power" => -1, "symbol" => "I"}, "short" => "electric_potential_difference", "names" => [{"value" => "electric potential difference", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H0T-3D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd19", "type" => "nist"}, {"id" => "d:capacitance", "type" => "unitsml"}], "length" => {"power" => -2, "symbol" => "L"}, "mass" => {"power" => -1, "symbol" => "M"}, "time" => {"power" => 4, "symbol" => "T"}, "electric_current" => {"power" => 2, "symbol" => "I"}, "short" => "capacitance", "names" => [{"value" => "capacitance", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E2L-2I0M-1H0T4D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd2", "type" => "nist"}, {"id" => "d:mass", "type" => "unitsml"}], "mass" => {"power" => 1, "symbol" => "M", "symbols" => [{"id" => "dim_M", "ascii" => "M", "html" => "𝖬", "latex" => "\\ensuremath{\\mathsf{M}}", "mathml" => "M", "unicode" => "𝖬"}]}, "short" => "mass", "names" => [{"value" => "mass", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd20", "type" => "nist"}, {"id" => "d:electric_resistance", "type" => "unitsml"}], "length" => {"power" => 2, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -3, "symbol" => "T"}, "electric_current" => {"power" => -2, "symbol" => "I"}, "short" => "electric_resistance", "names" => [{"value" => "electric resistance", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H0T-3D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd21", "type" => "nist"}, {"id" => "d:electric_conductance", "type" => "unitsml"}], "length" => {"power" => -2, "symbol" => "L"}, "mass" => {"power" => -1, "symbol" => "M"}, "time" => {"power" => 3, "symbol" => "T"}, "electric_current" => {"power" => 2, "symbol" => "I"}, "short" => "electric_conductance", "names" => [{"value" => "electric conductance", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E2L-2I0M-1H0T3D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd22", "type" => "nist"}, {"id" => "d:magnetic_flux", "type" => "unitsml"}], "length" => {"power" => 2, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -2, "symbol" => "T"}, "electric_current" => {"power" => -1, "symbol" => "I"}, "short" => "magnetic_flux", "names" => [{"value" => "magnetic flux", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H0T-2D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd23", "type" => "nist"}, {"id" => "d:inductance", "type" => "unitsml"}], "length" => {"power" => 2, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -2, "symbol" => "T"}, "electric_current" => {"power" => -2, "symbol" => "I"}, "short" => "inductance", "names" => [{"value" => "inductance", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H0T-2D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd24", "type" => "nist"}, {"id" => "d:frequency", "type" => "unitsml"}], "time" => {"power" => -1, "symbol" => "T"}, "short" => "frequency", "names" => [{"value" => "frequency", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L-0dot5I0M0dot5H0T-1D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd25", "type" => "nist"}, {"id" => "d:absorbed_dose", "type" => "unitsml"}], "length" => {"power" => 2, "symbol" => "L"}, "time" => {"power" => -2, "symbol" => "T"}, "short" => "absorbed_dose", "names" => [{"value" => "absorbed dose", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-2D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd26", "type" => "nist"}, {"id" => "d:catalytic_activity", "type" => "unitsml"}], "time" => {"power" => -1, "symbol" => "T"}, "amount_of_substance" => {"power" => 1, "symbol" => "N"}, "short" => "catalytic_activity", "names" => [{"value" => "catalytic activity", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T-1D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd27", "type" => "nist"}, {"id" => "d:illuminance", "type" => "unitsml"}], "length" => {"power" => -2, "symbol" => "L"}, "luminous_intensity" => {"power" => 1, "symbol" => "J"}, "short" => "illuminance", "names" => [{"value" => "illuminance", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L-2I1M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd28", "type" => "nist"}, {"id" => "d:acceleration", "type" => "unitsml"}], "length" => {"power" => 1, "symbol" => "L"}, "time" => {"power" => -2, "symbol" => "T"}, "short" => "acceleration", "names" => [{"value" => "acceleration", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-2D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd29", "type" => "nist"}, {"id" => "d:wavenumber", "type" => "unitsml"}], "length" => {"power" => -1, "symbol" => "L"}, "short" => "wavenumber", "names" => [{"value" => "wavenumber", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd3", "type" => "nist"}, {"id" => "d:time", "type" => "unitsml"}], "time" => {"power" => 1, "symbol" => "T", "symbols" => [{"id" => "dim_T", "ascii" => "T", "html" => "𝖳", "latex" => "\\ensuremath{\\mathsf{T}}", "mathml" => "T", "unicode" => "𝖳"}]}, "short" => "time", "names" => [{"value" => "time", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd30", "type" => "nist"}, {"id" => "d:mass_density", "type" => "unitsml"}], "length" => {"power" => -3, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "short" => "mass_density", "names" => [{"value" => "mass density", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd31", "type" => "nist"}, {"id" => "d:specific_volume", "type" => "unitsml"}], "length" => {"power" => 3, "symbol" => "L"}, "mass" => {"power" => -1, "symbol" => "M"}, "short" => "specific_volume", "names" => [{"value" => "specific volume", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L3I0M-1H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd32", "type" => "nist"}, {"id" => "d:current_density", "type" => "unitsml"}], "length" => {"power" => -2, "symbol" => "L"}, "electric_current" => {"power" => 1, "symbol" => "I"}, "short" => "current_density", "names" => [{"value" => "current density", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E1L-2I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd33", "type" => "nist"}, {"id" => "d:magnetic_field_strength", "type" => "unitsml"}], "length" => {"power" => -1, "symbol" => "L"}, "electric_current" => {"power" => 1, "symbol" => "I"}, "short" => "magnetic_field_strength", "names" => [{"value" => "magnetic field strength", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E1L-1I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd34", "type" => "nist"}, {"id" => "d:concentration", "type" => "unitsml"}], "length" => {"power" => -3, "symbol" => "L"}, "amount_of_substance" => {"power" => 1, "symbol" => "N"}, "short" => "concentration", "names" => [{"value" => "concentration", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd35", "type" => "nist"}, {"id" => "d:angular_acceleration", "type" => "unitsml"}], "time" => {"power" => -2, "symbol" => "T"}, "short" => "angular_acceleration", "names" => [{"value" => "angular acceleration", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L-0dot5I0M0dot5H0T-2D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd36", "type" => "nist"}, {"id" => "d:dynamic_viscosity", "type" => "unitsml"}], "length" => {"power" => -1, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -1, "symbol" => "T"}, "short" => "dynamic_viscosity", "names" => [{"value" => "dynamic viscosity", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-1D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd37", "type" => "nist"}, {"id" => "d:surface_tension", "type" => "unitsml"}], "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -2, "symbol" => "T"}, "short" => "surface_tension", "names" => [{"value" => "surface tension", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L-0dot5I0M1H0T-2D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd38", "type" => "nist"}, {"id" => "d:heat_flux_density", "type" => "unitsml"}], "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -3, "symbol" => "T"}, "short" => "heat_flux_density", "names" => [{"value" => "heat flux density", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-3D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd39", "type" => "nist"}, {"id" => "d:heat_capacity", "type" => "unitsml"}], "length" => {"power" => 2, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -2, "symbol" => "T"}, "thermodynamic_temperature" => {"power" => -1, "symbol" => "Theta"}, "short" => "heat_capacity", "names" => [{"value" => "heat capacity", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H-1T-2D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd4", "type" => "nist"}, {"id" => "d:electric_current", "type" => "unitsml"}], "electric_current" => {"power" => 1, "symbol" => "I", "symbols" => [{"id" => "dim_I", "ascii" => "I", "html" => "𝖨", "latex" => "\\ensuremath{\\mathsf{I}}", "mathml" => "I", "unicode" => "𝖨"}]}, "short" => "electric_current", "names" => [{"value" => "electric current", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T0D-1", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd40", "type" => "nist"}, {"id" => "d:specific_heat_capacity", "type" => "unitsml"}], "length" => {"power" => 2, "symbol" => "L"}, "time" => {"power" => -2, "symbol" => "T"}, "thermodynamic_temperature" => {"power" => -1, "symbol" => "Theta"}, "short" => "specific_heat_capacity", "names" => [{"value" => "specific heat capacity", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H-1T-2D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd41", "type" => "nist"}, {"id" => "d:thermal_conductivity", "type" => "unitsml"}], "length" => {"power" => 1, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -3, "symbol" => "T"}, "thermodynamic_temperature" => {"power" => -1, "symbol" => "Theta"}, "short" => "thermal_conductivity", "names" => [{"value" => "thermal conductivity", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H-1T-3D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd42", "type" => "nist"}, {"id" => "d:electric_field_strength", "type" => "unitsml"}], "length" => {"power" => 1, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -3, "symbol" => "T"}, "electric_current" => {"power" => -1, "symbol" => "I"}, "short" => "electric_field_strength", "names" => [{"value" => "electric field strength", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E-1L1I0M1H0T-3D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd43", "type" => "nist"}, {"id" => "d:electric_charge_density", "type" => "unitsml"}], "length" => {"power" => -3, "symbol" => "L"}, "time" => {"power" => 1, "symbol" => "T"}, "electric_current" => {"power" => 1, "symbol" => "I"}, "short" => "electric_charge_density", "names" => [{"value" => "electric charge density", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E1L-3I0M0H0T1D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd44", "type" => "nist"}, {"id" => "d:electric_flux_density", "type" => "unitsml"}], "length" => {"power" => -2, "symbol" => "L"}, "time" => {"power" => 1, "symbol" => "T"}, "electric_current" => {"power" => 1, "symbol" => "I"}, "short" => "electric_flux_density", "names" => [{"value" => "electric flux density", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E1L-2I0M0H0T1D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd45", "type" => "nist"}, {"id" => "d:permittivity", "type" => "unitsml"}], "length" => {"power" => -3, "symbol" => "L"}, "mass" => {"power" => -1, "symbol" => "M"}, "time" => {"power" => 4, "symbol" => "T"}, "electric_current" => {"power" => 2, "symbol" => "I"}, "short" => "permittivity", "names" => [{"value" => "permittivity", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E2L-3I0M-1H0T4D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd46", "type" => "nist"}, {"id" => "d:permeability", "type" => "unitsml"}], "length" => {"power" => 1, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -2, "symbol" => "T"}, "electric_current" => {"power" => -2, "symbol" => "I"}, "short" => "permeability", "names" => [{"value" => "permeability", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E-2L1I0M1H0T-2D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd47", "type" => "nist"}, {"id" => "d:molar_energy", "type" => "unitsml"}], "length" => {"power" => 2, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -2, "symbol" => "T"}, "amount_of_substance" => {"power" => -1, "symbol" => "N"}, "short" => "molar_energy", "names" => [{"value" => "molar energy", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A-1E0L2I0M1H0T-2D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd48", "type" => "nist"}, {"id" => "d:molar_entropy", "type" => "unitsml"}], "length" => {"power" => 2, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -2, "symbol" => "T"}, "thermodynamic_temperature" => {"power" => -1, "symbol" => "Theta"}, "amount_of_substance" => {"power" => -1, "symbol" => "N"}, "short" => "molar_entropy", "names" => [{"value" => "molar entropy", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A-1E0L2I0M1H-1T-2D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd49", "type" => "nist"}, {"id" => "d:exposure", "type" => "unitsml"}], "mass" => {"power" => -1, "symbol" => "M"}, "time" => {"power" => 1, "symbol" => "T"}, "electric_current" => {"power" => 1, "symbol" => "I"}, "short" => "exposure", "names" => [{"value" => "exposure", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E1L0I0M-1H0T1D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd5", "type" => "nist"}, {"id" => "d:temperature", "type" => "unitsml"}], "thermodynamic_temperature" => {"power" => 1, "symbol" => "Theta", "symbols" => [{"id" => "dim_Theta", "ascii" => "Theta", "html" => "𝝠", "latex" => "\\ensuremath{\\mathsf{\\Theta}}", "mathml" => "Θ", "unicode" => "𝝧"}]}, "short" => "temperature", "names" => [{"value" => "temperature", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd50", "type" => "nist"}, {"id" => "d:absorbed_dose_rate", "type" => "unitsml"}], "length" => {"power" => 2, "symbol" => "L"}, "time" => {"power" => -3, "symbol" => "T"}, "short" => "absorbed_dose_rate", "names" => [{"value" => "absorbed dose rate", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-3D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd51", "type" => "nist"}, {"id" => "d:surface_density", "type" => "unitsml"}], "length" => {"power" => -2, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "short" => "surface_density", "names" => [{"value" => "surface density", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd52", "type" => "nist"}, {"id" => "d:fluidity", "type" => "unitsml"}], "length" => {"power" => 1, "symbol" => "L"}, "mass" => {"power" => -1, "symbol" => "M"}, "time" => {"power" => 1, "symbol" => "T"}, "short" => "fluidity", "names" => [{"value" => "fluidity", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H0T1D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd53", "type" => "nist"}, {"id" => "d:surface_charge_density", "type" => "unitsml"}], "mass" => {"power" => -2, "symbol" => "M"}, "time" => {"power" => 1, "symbol" => "T"}, "electric_current" => {"power" => 1, "symbol" => "I"}, "short" => "surface_charge_density", "names" => [{"value" => "surface charge density", "lang" => "en"}]}, {"identifiers" => [{"id" => "NISTd54", "type" => "nist"}, {"id" => "d:magnetizability", "type" => "unitsml"}], "length" => {"power" => 2, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => 2, "symbol" => "T"}, "electric_current" => {"power" => 2, "symbol" => "I"}, "short" => "magnetizability", "names" => [{"value" => "magnetizability", "lang" => "en"}]}, {"identifiers" => [{"id" => "NISTd55", "type" => "nist"}, {"id" => "d:catalytic_activity_concentration", "type" => "unitsml"}], "mass" => {"power" => -3, "symbol" => "M"}, "time" => {"power" => -1, "symbol" => "T"}, "amount_of_substance" => {"power" => 1, "symbol" => "N"}, "short" => "catalytic_activity_concentration", "names" => [{"value" => "catalytic activity concentration", "lang" => "en"}]}, {"identifiers" => [{"id" => "NISTd56", "type" => "nist"}, {"id" => "d:kinematic_viscosity", "type" => "unitsml"}], "length" => {"power" => 2, "symbol" => "L"}, "time" => {"power" => -1, "symbol" => "T"}, "short" => "kinematic_viscosity", "names" => [{"value" => "kinematic viscosity", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-1D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd57", "type" => "nist"}, {"id" => "d:area_moment_of_inertia", "type" => "unitsml"}], "length" => {"power" => 4, "symbol" => "L"}, "short" => "area_moment_of_inertia", "names" => [{"value" => "area moment of inertia", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L4I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd58", "type" => "nist"}, {"id" => "d:linear_density", "type" => "unitsml"}], "length" => {"power" => -1, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "short" => "linear_density", "names" => [{"value" => "linear density", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd59", "type" => "nist"}, {"id" => "d:mass_moment_of_inertia", "type" => "unitsml"}], "length" => {"power" => 2, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "short" => "mass_moment_of_inertia", "names" => [{"value" => "mass moment of inertia", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd6", "type" => "nist"}, {"id" => "d:substance_amount", "type" => "unitsml"}], "amount_of_substance" => {"power" => 1, "symbol" => "N", "symbols" => [{"id" => "dim_N", "ascii" => "N", "html" => "𝖭", "latex" => "\\ensuremath{\\mathsf{N}}", "mathml" => "N", "unicode" => "𝖭"}]}, "short" => "substance_amount", "names" => [{"value" => "substance amount", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd60", "type" => "nist"}, {"id" => "d:action", "type" => "unitsml"}], "length" => {"power" => 2, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -1, "symbol" => "T"}, "short" => "action", "names" => [{"value" => "action", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-1D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd61", "type" => "nist"}, {"id" => "d:momentum", "type" => "unitsml"}], "length" => {"power" => 1, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -1, "symbol" => "T"}, "short" => "momentum", "names" => [{"value" => "momentum", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-1D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd62", "type" => "nist"}, {"id" => "d:gravitational_constant", "type" => "unitsml"}], "length" => {"power" => 3, "symbol" => "L"}, "mass" => {"power" => -1, "symbol" => "M"}, "time" => {"power" => -2, "symbol" => "T"}, "short" => "gravitational_constant", "names" => [{"value" => "gravitational constant", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L3I0M-1H0T-2D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd63", "type" => "nist"}, {"id" => "d:compressibility", "type" => "unitsml"}], "length" => {"power" => 1, "symbol" => "L"}, "mass" => {"power" => -1, "symbol" => "M"}, "time" => {"power" => 2, "symbol" => "T"}, "short" => "compressibility", "names" => [{"value" => "compressibility", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H0T2D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd64", "type" => "nist"}, {"id" => "d:solid_angle", "type" => "unitsml"}], "dimensionless" => true, "plane_angle" => {"power" => 1, "symbol" => "phi"}, "short" => "solid_angle", "names" => [{"value" => "solid angle", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd65", "type" => "nist"}, {"id" => "d:mass_flow_rate", "type" => "unitsml"}], "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -1, "symbol" => "T"}, "short" => "mass_flow_rate", "names" => [{"value" => "mass flow rate", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd66", "type" => "nist"}, {"id" => "d:volume_flow_rate", "type" => "unitsml"}], "length" => {"power" => 3, "symbol" => "L"}, "time" => {"power" => -1, "symbol" => "T"}, "short" => "volume_flow_rate", "names" => [{"value" => "volume flow rate", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd67", "type" => "nist"}, {"id" => "d:logarithmic_ratio", "type" => "unitsml"}], "dimensionless" => true, "short" => "logarithmic_ratio", "names" => [{"value" => "logarithmic ratio", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd68", "type" => "nist"}, {"id" => "d:linear_expansion_coefficient", "type" => "unitsml"}], "thermodynamic_temperature" => {"power" => -1, "symbol" => "Theta"}, "short" => "linear_expansion_coefficient", "names" => [{"value" => "linear expansion coefficient", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H-1T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd69", "type" => "nist"}, {"id" => "d:pressure_coefficient", "type" => "unitsml"}], "length" => {"power" => -1, "symbol" => "L"}, "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -2, "symbol" => "T"}, "thermodynamic_temperature" => {"power" => -1, "symbol" => "Theta"}, "short" => "pressure_coefficient", "names" => [{"value" => "pressure coefficient", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H-1T-2D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd7", "type" => "nist"}, {"id" => "d:luminous_intensity", "type" => "unitsml"}], "luminous_intensity" => {"power" => 1, "symbol" => "J", "symbols" => [{"id" => "dim_J", "ascii" => "J", "html" => "𝖩", "latex" => "\\ensuremath{\\mathsf{J}}", "mathml" => "J", "unicode" => "𝖩"}]}, "short" => "luminous_intensity", "names" => [{"value" => "luminous intensity", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I1M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd70", "type" => "nist"}, {"id" => "d:isothermal_compressibility", "type" => "unitsml"}], "length" => {"power" => 1, "symbol" => "L"}, "mass" => {"power" => -1, "symbol" => "M"}, "time" => {"power" => 2, "symbol" => "T"}, "short" => "isothermal_compressibility", "names" => [{"value" => "isothermal compressibility", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H0T2D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd71", "type" => "nist"}, {"id" => "d:heat_transfer_coefficient", "type" => "unitsml"}], "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -3, "symbol" => "T"}, "thermodynamic_temperature" => {"power" => -1, "symbol" => "Theta"}, "short" => "heat_transfer_coefficient", "names" => [{"value" => "heat transfer coefficient", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-3D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd72", "type" => "nist"}, {"id" => "d:electric_dipole_moment", "type" => "unitsml"}], "length" => {"power" => 1, "symbol" => "L"}, "time" => {"power" => 1, "symbol" => "T"}, "electric_current" => {"power" => 1, "symbol" => "I"}, "short" => "electric_dipole_moment", "names" => [{"value" => "electric dipole moment", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E1L1I0M0H0T1D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd73", "type" => "nist"}, {"id" => "d:magnetic_dipole_moment", "type" => "unitsml"}], "length" => {"power" => 2, "symbol" => "L"}, "electric_current" => {"power" => 1, "symbol" => "I"}, "short" => "magnetic_dipole_moment", "names" => [{"value" => "magnetic dipole moment", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E1L2I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd74", "type" => "nist"}, {"id" => "d:electric_field_gradient", "type" => "unitsml"}], "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => -3, "symbol" => "T"}, "electric_current" => {"power" => -1, "symbol" => "I"}, "short" => "electric_field_gradient", "names" => [{"value" => "electric field gradient", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E-1L0I0M1H0T-3D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd75", "type" => "nist"}, {"id" => "d:electric_quadrupole_moment", "type" => "unitsml"}], "length" => {"power" => 2, "symbol" => "L"}, "time" => {"power" => 1, "symbol" => "T"}, "electric_current" => {"power" => 1, "symbol" => "I"}, "short" => "electric_quadrupole_moment", "names" => [{"value" => "electric quadrupole moment", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E1L2I0M0H0T1D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd76", "type" => "nist"}, {"id" => "d:polarizability", "type" => "unitsml"}], "mass" => {"power" => 1, "symbol" => "M"}, "time" => {"power" => 4, "symbol" => "T"}, "electric_current" => {"power" => 2, "symbol" => "I"}, "short" => "polarizability", "names" => [{"value" => "polarizability", "lang" => "en"}]}, {"identifiers" => [{"id" => "NISTd77", "type" => "nist"}, {"id" => "d:hyperpolarizability_1st", "type" => "unitsml"}], "length" => {"power" => -1, "symbol" => "L"}, "mass" => {"power" => -2, "symbol" => "M"}, "time" => {"power" => 7, "symbol" => "T"}, "electric_current" => {"power" => 3, "symbol" => "I"}, "short" => "hyperpolarizability_1st", "names" => [{"value" => "hyperpolarizability 1st", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E3L-1I0M-2H0T7D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd78", "type" => "nist"}, {"id" => "d:hyperpolarizability_2nd", "type" => "unitsml"}], "length" => {"power" => -2, "symbol" => "L"}, "mass" => {"power" => -3, "symbol" => "M"}, "time" => {"power" => 10, "symbol" => "T"}, "electric_current" => {"power" => 4, "symbol" => "I"}, "short" => "hyperpolarizability_2nd", "names" => [{"value" => "hyperpolarizability 2nd", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E4L-2I0M-3H0T10D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd79", "type" => "nist"}, {"id" => "d:molality", "type" => "unitsml"}], "mass" => {"power" => 1, "symbol" => "M"}, "amount_of_substance" => {"power" => 1, "symbol" => "N"}, "short" => "molality", "names" => [{"value" => "molality", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A1E0L0I0M1H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd8", "type" => "nist"}, {"id" => "d:area", "type" => "unitsml"}], "length" => {"power" => 2, "symbol" => "L"}, "short" => "area", "names" => [{"value" => "area", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd80", "type" => "nist"}, {"id" => "d:ratio_quantity", "type" => "unitsml"}], "dimensionless" => true, "short" => "ratio_quantity", "names" => [{"value" => "ratio quantity", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd83", "type" => "nist"}, {"id" => "d:level_of_field_quantity", "type" => "unitsml"}], "dimensionless" => true, "short" => "level_of_field_quantity", "names" => [{"value" => "level of field quantity", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd84", "type" => "nist"}, {"id" => "d:field_power_level", "type" => "unitsml"}], "dimensionless" => true, "short" => "field_power_level", "names" => [{"value" => "field power level", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd85", "type" => "nist"}, {"id" => "d:mass_mole_fraction", "type" => "unitsml"}], "dimensionless" => true, "short" => "mass_mole_fraction", "names" => [{"value" => "mass mole fraction", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd9", "type" => "nist"}, {"id" => "d:plane_angle", "type" => "unitsml"}], "dimensionless" => true, "plane_angle" => {"power" => 1, "symbol" => "phi", "symbols" => [{"id" => "dim_phi", "ascii" => "phi", "html" => "𝞅", "latex" => "\\ensuremath{\\mathsf{\\phi}}", "mathml" => "φ", "unicode" => "𝞅"}]}, "short" => "plane_angle", "names" => [{"value" => "plane angle", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd94", "type" => "nist"}, {"id" => "d:acidity_index", "type" => "unitsml"}], "dimensionless" => true, "short" => "acidity_index", "names" => [{"value" => "acidity index", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd95", "type" => "nist"}, {"id" => "d:storage_capacity", "type" => "unitsml"}], "dimensionless" => true, "short" => "storage_capacity", "names" => [{"value" => "storage capacity", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd96", "type" => "nist"}, {"id" => "d:fluence", "type" => "unitsml"}], "length" => {"power" => -2, "symbol" => "L"}, "short" => "fluence", "names" => [{"value" => "fluence", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd97", "type" => "nist"}, {"id" => "d:fluence_rate", "type" => "unitsml"}], "length" => {"power" => -2, "symbol" => "L"}, "time" => {"power" => -1, "symbol" => "T"}, "short" => "fluence_rate", "names" => [{"value" => "fluence_rate", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T-1D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd98", "type" => "nist"}, {"id" => "d:phase", "type" => "unitsml"}], "dimensionless" => true, "plane_angle" => {"power" => 1, "symbol" => "phi"}, "short" => "phase", "names" => [{"value" => "phase", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "NISTd99", "type" => "nist"}, {"id" => "d:fuel_efficiency", "type" => "unitsml"}], "length" => {"power" => -2, "symbol" => "L"}, "short" => "fuel_efficiency", "names" => [{"value" => "fuel efficiency", "lang" => "en"}], "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T0D0", "authority" => "qudt"}]}], "unit_systems" => [{"identifiers" => [{"id" => "SI_base", "type" => "nist"}, {"id" => "us:si-base", "type" => "unitsml"}], "names" => [{"value" => "SI base units", "lang" => "en"}], "short" => "si-base", "acceptable" => true, "references" => [{"type" => "informative", "uri" => "http://qudt.org/vocab/sou/SI", "authority" => "qudt"}]}, {"identifiers" => [{"id" => "SI_compatible", "type" => "nist"}, {"id" => "us:si-compatible", "type" => "unitsml"}], "names" => [{"value" => "Units compatible with SI", "lang" => "en"}], "short" => "si-compatible", "acceptable" => true}, {"identifiers" => [{"id" => "SI_derived_non-special", "type" => "nist"}, {"id" => "us:si-derived-nonspecial", "type" => "unitsml"}], "names" => [{"value" => "SI-derived units non-special", "lang" => "en"}], "short" => "si-derived-nonspecial", "acceptable" => true}, {"identifiers" => [{"id" => "SI_derived_special", "type" => "nist"}, {"id" => "us:si-derived-special", "type" => "unitsml"}], "names" => [{"value" => "SI-derived units special", "lang" => "en"}], "short" => "si-derived-special", "acceptable" => true}, {"identifiers" => [{"id" => "non-SI_acceptable", "type" => "nist"}, {"id" => "us:nonsi-acceptable", "type" => "unitsml"}], "names" => [{"value" => "non-SI but acceptable", "lang" => "en"}], "short" => "nonsi-acceptable", "acceptable" => true}, {"identifiers" => [{"id" => "non-SI_nist_acceptable", "type" => "nist"}, {"id" => "us:nonsi-nist-acceptable", "type" => "unitsml"}], "names" => [{"value" => "non-SI but acceptable by NIST SP 811", "lang" => "en"}], "short" => "nonsi-nist-acceptable", "acceptable" => true}, {"identifiers" => [{"id" => "non-SI_not_acceptable", "type" => "nist"}, {"id" => "us:nonsi-unacceptable", "type" => "unitsml"}], "names" => [{"value" => "non-SI and not acceptable", "lang" => "en"}], "short" => "nonsi-unacceptable", "acceptable" => false}]}.freeze) +Unitsml::Unitsdb::Database.const_set(:DATABASE, {"schema_version"=>"2.0.0","units"=>[{"identifiers"=>[{"id"=>"NISTu1","type"=>"nist"},{"id"=>"u:meter","type"=>"unitsml"}],"short"=>"meter","root"=>true,"unit_system_reference"=>[{"id"=>"si-base","type"=>"unitsml"}],"names"=>[{"value"=>"metre","lang"=>"en"},{"value"=>"meter","lang"=>"en"},{"value"=>"mètre","lang"=>"fr"}],"symbols"=>[{"id"=>"m","ascii"=>"m","html"=>"m","latex"=>"\\ensuremath{\\mathrm{m}}","mathml"=>"m","unicode"=>"m"}],"quantity_references"=>[{"id"=>"NISTq1","type"=>"nist"},{"id"=>"NISTq100","type"=>"nist"},{"id"=>"NISTq101","type"=>"nist"},{"id"=>"NISTq102","type"=>"nist"},{"id"=>"NISTq103","type"=>"nist"},{"id"=>"NISTq104","type"=>"nist"},{"id"=>"NISTq105","type"=>"nist"},{"id"=>"NISTq114","type"=>"nist"},{"id"=>"NISTq48","type"=>"nist"},{"id"=>"NISTq95","type"=>"nist"},{"id"=>"NISTq96","type"=>"nist"},{"id"=>"NISTq97","type"=>"nist"},{"id"=>"NISTq98","type"=>"nist"},{"id"=>"NISTq99","type"=>"nist"}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/metre","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:base-unit:code:m","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/M","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu1.u3e-1/1","type"=>"nist"},{"id"=>"u:meter_per_second","type"=>"unitsml"}],"short"=>"meter_per_second","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"meter per second","lang"=>"en"}],"symbols"=>[{"id"=>"m*s^-1","ascii"=>"m*s^-1","html"=>"m/s","latex"=>"\\ensuremath{\\mathrm{m/s}}","mathml"=>"m/s","unicode"=>"m·s⁻¹"}],"quantity_references"=>[{"id"=>"NISTq107","type"=>"nist"},{"id"=>"NISTq116","type"=>"nist"},{"id"=>"NISTq117","type"=>"nist"},{"id"=>"NISTq12","type"=>"nist"}],"root_units"=>[{"power"=>-1,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}},{"power"=>1,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu1.u3e-2/1","type"=>"nist"},{"id"=>"u:meter_per_second_squared","type"=>"unitsml"}],"short"=>"meter_per_second_squared","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"meter per second squared","lang"=>"en"}],"symbols"=>[{"id"=>"m*s^-2","ascii"=>"m*s^-2","html"=>"m/s2","latex"=>"\\ensuremath{\\mathrm{m/s^2}}","mathml"=>"m/s2","unicode"=>"m·s⁻²"}],"quantity_references"=>[{"id"=>"NISTq108","type"=>"nist"},{"id"=>"NISTq49","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}},{"power"=>-2,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu10","type"=>"nist"},{"id"=>"u:steradian","type"=>"unitsml"}],"short"=>"steradian","root"=>true,"unit_system_reference"=>[{"id"=>"SI_derived_special","type"=>"nist"}],"names"=>[{"value"=>"steradian","lang"=>"en"},{"value"=>"stéradian","lang"=>"fr"}],"symbols"=>[{"id"=>"sr","ascii"=>"sr","html"=>"sr","latex"=>"\\ensuremath{\\mathrm{sr}}","mathml"=>"sr","unicode"=>"sr"}],"quantity_references"=>[{"id"=>"NISTq11","type"=>"nist"}],"si_derived_bases"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/steradian","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:unit:si:code:sr","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/SR","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu100","type"=>"nist"},{"id"=>"u:rem","type"=>"unitsml"}],"short"=>"rem","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_nist_acceptable","type"=>"nist"},{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"rem","lang"=>"en"}],"symbols"=>[{"id"=>"rem","ascii"=>"rem","html"=>"rem","latex"=>"\\ensuremath{\\mathrm{rem}}","mathml"=>"rem","unicode"=>"rem"}],"quantity_references"=>[{"id"=>"NISTq39","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/REM","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu106","type"=>"nist"},{"id"=>"u:year_365","type"=>"unitsml"}],"short"=>"year_365","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_acceptable","type"=>"nist"}],"names"=>[{"value"=>"year (365 days)","lang"=>"en"},{"value"=>"year","lang"=>"en"}],"symbols"=>[{"id"=>"a_year","ascii"=>"a","html"=>"a","latex"=>"\\ensuremath{\\mathrm{a}}","mathml"=>"a","unicode"=>"a"}],"quantity_references"=>[{"id"=>"NISTq3","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:iso1000:code:a","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/YR","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu107","type"=>"nist"},{"id"=>"u:foot_per_minute","type"=>"unitsml"}],"short"=>"foot_per_minute","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"foot per minute","lang"=>"en"}],"symbols"=>[{"id"=>"ft*min^-1","ascii"=>"ft*min^-1","html"=>"ft/min","latex"=>"\\ensuremath{\\mathrm{ft/min}}","mathml"=>"ft/min","unicode"=>"ft·min⁻¹"}],"quantity_references"=>[{"id"=>"NISTq12","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu78","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu36","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/FT-PER-MIN","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu108","type"=>"nist"},{"id"=>"u:foot_per_second","type"=>"unitsml"}],"short"=>"foot_per_second","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"foot per second","lang"=>"en"}],"symbols"=>[{"id"=>"ft*s^-1","ascii"=>"ft*s^-1","html"=>"ft/s","latex"=>"\\ensuremath{\\mathrm{ft/s}}","mathml"=>"ft/s","unicode"=>"ft·s⁻¹"}],"quantity_references"=>[{"id"=>"NISTq12","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu78","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/FT-PER-SEC","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu109","type"=>"nist"},{"id"=>"u:inch_per_second","type"=>"unitsml"}],"short"=>"inch_per_second","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"inch per second","lang"=>"en"}],"symbols"=>[{"id"=>"in*s^-1","ascii"=>"in*s^-1","html"=>"in/s","latex"=>"\\ensuremath{\\mathrm{in/s}}","mathml"=>"in/s","unicode"=>"in·s⁻¹"}],"quantity_references"=>[{"id"=>"NISTq12","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu8","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/IN-PER-SEC","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu11","type"=>"nist"},{"id"=>"u:newton","type"=>"unitsml"}],"short"=>"newton","root"=>true,"unit_system_reference"=>[{"id"=>"SI_derived_special","type"=>"nist"}],"names"=>[{"value"=>"newton","lang"=>"en"},{"value"=>"newton","lang"=>"fr"}],"symbols"=>[{"id"=>"N","ascii"=>"N","html"=>"N","latex"=>"\\ensuremath{\\mathrm{N}}","mathml"=>"N","unicode"=>"N"}],"quantity_references"=>[{"id"=>"NISTq13","type"=>"nist"}],"si_derived_bases"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}},{"power"=>1,"unit_reference"=>{"id"=>"NISTu27","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_3","type"=>"nist"}},{"power"=>-2,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/newton","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:unit:si:code:N","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/N","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu11.u1","type"=>"nist"},{"id"=>"u:newton_meter","type"=>"unitsml"}],"short"=>"newton_meter","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"newton meter","lang"=>"en"}],"symbols"=>[{"id"=>"N*m","ascii"=>"N*m","html"=>"N · m","latex"=>"\\ensuremath{\\mathrm{N\\cdot m}}","mathml"=>"N·m","unicode"=>"N·m"}],"quantity_references"=>[{"id"=>"NISTq184","type"=>"nist"},{"id"=>"NISTq185","type"=>"nist"},{"id"=>"NISTq60","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu11","type"=>"nist"}},{"power"=>1,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/N-M","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu11.u1.u3","type"=>"nist"},{"id"=>"u:newton_meter_second","type"=>"unitsml"}],"short"=>"newton_meter_second","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"newton meter second","lang"=>"en"}],"symbols"=>[{"id"=>"N*m*s","ascii"=>"N*m*s","html"=>"N · m · s","latex"=>"\\ensuremath{\\mathrm{N\\cdot m\\cdot s}}","mathml"=>"N·m·s","unicode"=>"N·m·s"}],"quantity_references"=>[{"id"=>"NISTq133","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu11","type"=>"nist"}},{"power"=>1,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}},{"power"=>1,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/N-M-SEC","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu11.u1e-1/1","type"=>"nist"},{"id"=>"u:newton_per_meter","type"=>"unitsml"}],"short"=>"newton_per_meter","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"newton per meter","lang"=>"en"}],"symbols"=>[{"id"=>"N*m^-1","ascii"=>"N*m^-1","html"=>"N/m","latex"=>"\\ensuremath{\\mathrm{N/m}}","mathml"=>"N/m","unicode"=>"N/m"}],"quantity_references"=>[{"id"=>"NISTq61","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu11","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/N-PER-M","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu11.u1e2/1.u27p10'3e-2/1","type"=>"nist"},{"id"=>"u:newton_meter_squared_per_kilogram_squared","type"=>"unitsml"}],"short"=>"newton_meter_squared_per_kilogram_squared","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"newton meter squared per kilogram squared","lang"=>"en"}],"symbols"=>[{"id"=>"N*m^2*kg^-2","ascii"=>"N*m^2*kg^-2","html"=>"N · m2/kg 2","latex"=>"\\ensuremath{\\mathrm{N\\cdot m^2/kg^2}}","mathml"=>"N·m2/kg2","unicode"=>"N·m²/kg²"}],"quantity_references"=>[{"id"=>"NISTq130","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu11","type"=>"nist"}},{"power"=>2,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}},{"power"=>-2,"unit_reference"=>{"id"=>"NISTu27","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_3","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/N-M2-PER-KiloGM2","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu11.u3","type"=>"nist"},{"id"=>"u:newton_second","type"=>"unitsml"}],"short"=>"newton_second","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"newton second","lang"=>"en"}],"symbols"=>[{"id"=>"N*s","ascii"=>"N*s","html"=>"N · s","latex"=>"\\ensuremath{\\mathrm{N\\cdot s}}","mathml"=>"N·s","unicode"=>"N·s"}],"quantity_references"=>[{"id"=>"NISTq129","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu11","type"=>"nist"}},{"power"=>1,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/N-SEC","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu110","type"=>"nist"},{"id"=>"u:mile_per_hour","type"=>"unitsml"}],"short"=>"mile_per_hour","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"mile per hour","lang"=>"en"}],"symbols"=>[{"id"=>"mi*h^-1","ascii"=>"mi*h^-1","html"=>"mi/h","latex"=>"\\ensuremath{\\mathrm{mi/h}}","mathml"=>"mi/h","unicode"=>"mi·h⁻¹"}],"quantity_references"=>[{"id"=>"NISTq12","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu83","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu37","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/MI-PER-HR","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu111","type"=>"nist"},{"id"=>"u:mile_per_minute","type"=>"unitsml"}],"short"=>"mile_per_minute","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"mile per minute","lang"=>"en"}],"symbols"=>[{"id"=>"mi*min^-1","ascii"=>"mi*min^-1","html"=>"mi/min","latex"=>"\\ensuremath{\\mathrm{mi/min}}","mathml"=>"mi/min","unicode"=>"mi·min⁻¹"}],"quantity_references"=>[{"id"=>"NISTq12","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu83","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu36","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/MI-PER-MIN","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu112","type"=>"nist"},{"id"=>"u:mile_per_second","type"=>"unitsml"}],"short"=>"mile_per_second","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"mile per second","lang"=>"en"}],"symbols"=>[{"id"=>"mi*s^-1","ascii"=>"mi*s^-1","html"=>"mi/s","latex"=>"\\ensuremath{\\mathrm{mi/s}}","mathml"=>"mi/s","unicode"=>"mi·s⁻¹"}],"quantity_references"=>[{"id"=>"NISTq12","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu83","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/MI-PER-SEC","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu115","type"=>"nist"},{"id"=>"u:stere","type"=>"unitsml"}],"short"=>"stere","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"stere","lang"=>"en"}],"symbols"=>[{"id"=>"st","ascii"=>"st","html"=>"st","latex"=>"\\ensuremath{\\mathrm{st}}","mathml"=>"st","unicode"=>"st"}],"quantity_references"=>[{"id"=>"NISTq10","type"=>"nist"}],"root_units"=>[{"power"=>3,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:misc:code:st","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/STR","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu116","type"=>"nist"},{"id"=>"u:gamma","type"=>"unitsml"}],"short"=>"gamma","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"gamma","lang"=>"en"}],"symbols"=>[{"id"=>"gamma","ascii"=>"gamma","html"=>"γ","latex"=>"\\ensuremath{\\gamma}}","mathml"=>"γ","unicode"=>"γ"}],"quantity_references"=>[{"id"=>"NISTq14","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu21","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_-9","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/GAMMA","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu117","type"=>"nist"},{"id"=>"u:ec_therm","type"=>"unitsml"}],"short"=>"ec_therm","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"therm (EC)","lang"=>"en"}],"symbols"=>[{"id"=>"thm (EC)","ascii"=>"thm (EC)","html"=>"thm (EC)","latex"=>"\\ensuremath{\\mathrm{thm (EC)}}","mathml"=>"thm (EC)","unicode"=>"thm (EC)"}],"quantity_references"=>[{"id"=>"NISTq17","type"=>"nist"},{"id"=>"NISTq18","type"=>"nist"},{"id"=>"NISTq182","type"=>"nist"},{"id"=>"NISTq183","type"=>"nist"},{"id"=>"NISTq19","type"=>"nist"},{"id"=>"NISTq77","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/THERM_EC","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu118","type"=>"nist"},{"id"=>"u:roentgen","type"=>"unitsml"}],"short"=>"roentgen","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_nist_acceptable","type"=>"nist"},{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"roentgen","lang"=>"en"}],"symbols"=>[{"id"=>"R","ascii"=>"R","html"=>"R","latex"=>"\\ensuremath{\\mathrm{R}}","mathml"=>"R","unicode"=>"R"}],"quantity_references"=>[{"id"=>"NISTq75","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:cgs:code:R","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/R","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu119","type"=>"nist"},{"id"=>"u:gauss","type"=>"unitsml"}],"short"=>"gauss","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"gauss","lang"=>"en"}],"symbols"=>[{"id"=>"Gs","ascii"=>"Gs","html"=>"Gs","latex"=>"\\ensuremath{\\mathrm{Gs}}","mathml"=>"Gs","unicode"=>"Gs"},{"id"=>"G","ascii"=>"G","html"=>"G","latex"=>"\\ensuremath{\\mathrm{G}}","mathml"=>"G","unicode"=>"G"}],"quantity_references"=>[{"id"=>"NISTq14","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:cgs:code:G","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/GAUSS","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu12","type"=>"nist"},{"id"=>"u:pascal","type"=>"unitsml"}],"short"=>"pascal","root"=>true,"unit_system_reference"=>[{"id"=>"SI_derived_special","type"=>"nist"}],"names"=>[{"value"=>"pascal","lang"=>"en"},{"value"=>"pascal","lang"=>"fr"}],"symbols"=>[{"id"=>"Pa","ascii"=>"Pa","html"=>"Pa","latex"=>"\\ensuremath{\\mathrm{Pa}}","mathml"=>"Pa","unicode"=>"Pa"}],"quantity_references"=>[{"id"=>"NISTq134","type"=>"nist"},{"id"=>"NISTq135","type"=>"nist"},{"id"=>"NISTq141","type"=>"nist"},{"id"=>"NISTq142","type"=>"nist"},{"id"=>"NISTq143","type"=>"nist"},{"id"=>"NISTq15","type"=>"nist"},{"id"=>"NISTq16","type"=>"nist"}],"si_derived_bases"=>[{"power"=>-1,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}},{"power"=>1,"unit_reference"=>{"id"=>"NISTu27","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_3","type"=>"nist"}},{"power"=>-2,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/pascal","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:unit:si:code:Pa","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/PA","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu12.u3","type"=>"nist"},{"id"=>"u:pascal_second","type"=>"unitsml"}],"short"=>"pascal_second","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"pascal second","lang"=>"en"}],"symbols"=>[{"id"=>"Pa*s","ascii"=>"Pa*s","html"=>"Pa · s","latex"=>"\\ensuremath{\\mathrm{Pa\\cdot s}}","mathml"=>"Pa·s","unicode"=>"Pa·s"}],"quantity_references"=>[{"id"=>"NISTq59","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu12","type"=>"nist"}},{"power"=>1,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/PA-SEC","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu12.u5e-1/1","type"=>"nist"},{"id"=>"u:pascal_per_kelvin","type"=>"unitsml"}],"short"=>"pascal_per_kelvin","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"pascal per kelvin","lang"=>"en"}],"symbols"=>[{"id"=>"Pa*K^-1","ascii"=>"Pa*K^-1","html"=>"Pa/K","latex"=>"\\ensuremath{\\mathrm{Pa/K}}","mathml"=>"Pa/K","unicode"=>"Pa/K"}],"quantity_references"=>[{"id"=>"NISTq159","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu12","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu5","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/PA-PER-K","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu120","type"=>"nist"},{"id"=>"u:kayser","type"=>"unitsml"}],"short"=>"kayser","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"kayser","lang"=>"en"}],"symbols"=>[{"id"=>"kayser","ascii"=>"K","html"=>"K","latex"=>"\\ensuremath{\\mathrm{K}}","mathml"=>"K","unicode"=>"K"}],"quantity_references"=>[{"id"=>"NISTq50","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:cgs:code:Ky","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/KY","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu121","type"=>"nist"},{"id"=>"u:centistokes","type"=>"unitsml"}],"short"=>"centistokes","root"=>false,"prefixed"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"centistokes","lang"=>"en"}],"symbols"=>[{"id"=>"cSt","ascii"=>"cSt","html"=>"cSt","latex"=>"\\ensuremath{\\mathrm{cSt}}","mathml"=>"cSt","unicode"=>"cSt"}],"quantity_references"=>[{"id"=>"NISTq85","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu142","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_-2","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/CentiST","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu122","type"=>"nist"},{"id"=>"u:micron","type"=>"unitsml"}],"short"=>"micron","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"micron","lang"=>"en"}],"symbols"=>[{"id"=>"micron","ascii"=>"micron","html"=>"μ","latex"=>"\\ensuremath{\\mathrm{mu}}","mathml"=>"μ","unicode"=>"μ"}],"quantity_references"=>[{"id"=>"NISTq1","type"=>"nist"},{"id"=>"NISTq48","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_-6","type"=>"nist"}}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu123","type"=>"nist"},{"id"=>"u:mil (length)","type"=>"unitsml"}],"short"=>"mil (length)","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"mil (length)","lang"=>"en"},{"value"=>"mil","lang"=>"en"},{"value"=>"thou","lang"=>"en"}],"symbols"=>[{"id"=>"mil","ascii"=>"mil","html"=>"mil","latex"=>"\\ensuremath{\\mathrm{mil}}","mathml"=>"mil","unicode"=>"mil"},{"id"=>"thou","ascii"=>"thou","html"=>"thou","latex"=>"\\ensuremath{\\mathrm{thou}}","mathml"=>"thou","unicode"=>"thou"}],"quantity_references"=>[{"id"=>"NISTq1","type"=>"nist"},{"id"=>"NISTq48","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu8","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_-3","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:intcust:code:[mil_i]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/MilLength","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu124","type"=>"nist"},{"id"=>"u:stilb","type"=>"unitsml"}],"short"=>"stilb","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"stilb","lang"=>"en"}],"symbols"=>[{"id"=>"sb","ascii"=>"sb","html"=>"sb","latex"=>"\\ensuremath{\\mathrm{sb}}","mathml"=>"sb","unicode"=>"sb"}],"quantity_references"=>[{"id"=>"NISTq56","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:cgs:code:sb","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/STILB","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu125","type"=>"nist"},{"id"=>"u:kilogram_force_second_squared_per_meter","type"=>"unitsml"}],"short"=>"kilogram_force_second_squared_per_meter","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"kilogram-force second squared per meter","lang"=>"en"}],"symbols"=>[{"id"=>"kgf*s^2/m","ascii"=>"kgf*s^2/m","html"=>"kgf · s2/m","latex"=>"\\ensuremath{\\mathrm{kgf\\cdot s^2/m}}","mathml"=>"kgf·s","unicode"=>"kgf·s²m⁻¹"}],"quantity_references"=>[{"id"=>"NISTq2","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu196","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_3","type"=>"nist"}},{"power"=>2,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu126","type"=>"nist"},{"id"=>"u:kilogram_force_meter","type"=>"unitsml"}],"short"=>"kilogram_force_meter","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"kilogram-force meter","lang"=>"en"}],"symbols"=>[{"id"=>"kgf*m","ascii"=>"kgf*m","html"=>"kgf · m","latex"=>"\\ensuremath{\\mathrm{kgf\\cdot m}}","mathml"=>"kgf·m","unicode"=>"kgf·m"}],"quantity_references"=>[{"id"=>"NISTq17","type"=>"nist"},{"id"=>"NISTq18","type"=>"nist"},{"id"=>"NISTq184","type"=>"nist"},{"id"=>"NISTq185","type"=>"nist"},{"id"=>"NISTq60","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu196","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_3","type"=>"nist"}},{"power"=>1,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/KiloGM_F-M","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu127","type"=>"nist"},{"id"=>"u:electric_horsepower","type"=>"unitsml"}],"short"=>"electric_horsepower","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"horsepower, electric","lang"=>"en"},{"value"=>"electric horsepower","lang"=>"en"}],"symbols"=>[{"id"=>"hp_electric","ascii"=>"hp","html"=>"hp","latex"=>"\\ensuremath{\\mathrm{hp}}","mathml"=>"hp","unicode"=>"hp"}],"quantity_references"=>[{"id"=>"NISTq20","type"=>"nist"},{"id"=>"NISTq21","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/HP_Electric","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu128","type"=>"nist"},{"id"=>"u:poise","type"=>"unitsml"}],"short"=>"poise","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"poise","lang"=>"en"}],"symbols"=>[{"id"=>"P","ascii"=>"P","html"=>"P","latex"=>"\\ensuremath{\\mathrm{P}}","mathml"=>"P","unicode"=>"P"}],"quantity_references"=>[{"id"=>"NISTq59","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:cgs:code:P","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/POISE","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu129","type"=>"nist"},{"id"=>"u:rhe","type"=>"unitsml"}],"short"=>"rhe","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"rhe","lang"=>"en"}],"symbols"=>[{"id"=>"rhe","ascii"=>"rhe","html"=>"rhe","latex"=>"\\ensuremath{\\mathrm{rhe}}","mathml"=>"rhe","unicode"=>"rhe"}],"quantity_references"=>[{"id"=>"NISTq91","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/RHE","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu12e-1/1","type"=>"nist"},{"id"=>"u:pascal_to_the_power_minus_one","type"=>"unitsml"}],"short"=>"pascal_to_the_power_minus_one","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"pascal to the power minus one","lang"=>"en"}],"symbols"=>[{"id"=>"Pa^-1","ascii"=>"Pa^-1","html"=>"Pa-1","latex"=>"\\ensuremath{\\mathrm{Pa^{-1}}}","mathml"=>"Pa1","unicode"=>"Pa⁻¹"}],"quantity_references"=>[{"id"=>"NISTq139","type"=>"nist"},{"id"=>"NISTq160","type"=>"nist"}],"root_units"=>[{"power"=>-1,"unit_reference"=>{"id"=>"NISTu12","type"=>"nist"}}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu13","type"=>"nist"},{"id"=>"u:joule","type"=>"unitsml"}],"short"=>"joule","root"=>true,"unit_system_reference"=>[{"id"=>"SI_derived_special","type"=>"nist"}],"names"=>[{"value"=>"joule","lang"=>"en"},{"value"=>"joule","lang"=>"fr"}],"symbols"=>[{"id"=>"J","ascii"=>"J","html"=>"J","latex"=>"\\ensuremath{\\mathrm{J}}","mathml"=>"J","unicode"=>"J"}],"quantity_references"=>[{"id"=>"NISTq152","type"=>"nist"},{"id"=>"NISTq153","type"=>"nist"},{"id"=>"NISTq17","type"=>"nist"},{"id"=>"NISTq18","type"=>"nist"},{"id"=>"NISTq182","type"=>"nist"},{"id"=>"NISTq183","type"=>"nist"},{"id"=>"NISTq19","type"=>"nist"},{"id"=>"NISTq77","type"=>"nist"}],"si_derived_bases"=>[{"power"=>2,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}},{"power"=>1,"unit_reference"=>{"id"=>"NISTu27","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_3","type"=>"nist"}},{"power"=>-2,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/joule","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:unit:si:code:J","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/J","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu13.u1e-3/1","type"=>"nist"},{"id"=>"u:joule_per_cubic_meter","type"=>"unitsml"}],"short"=>"joule_per_cubic_meter","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"joule per cubic meter","lang"=>"en"}],"symbols"=>[{"id"=>"J*m^-3","ascii"=>"J*m^-3","html"=>"J/m3","latex"=>"\\ensuremath{\\mathrm{J/m^3}}","mathml"=>"J/m3","unicode"=>"J/m³"}],"quantity_references"=>[{"id"=>"NISTq67","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu13","type"=>"nist"}},{"power"=>-3,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/J-PER-M3","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu13.u27p10'3e-1/1","type"=>"nist"},{"id"=>"u:joule_per_kilogram","type"=>"unitsml"}],"short"=>"joule_per_kilogram","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"joule per kilogram","lang"=>"en"}],"symbols"=>[{"id"=>"J*kg^-1","ascii"=>"J*kg^-1","html"=>"J/kg","latex"=>"\\ensuremath{\\mathrm{J/kg}}","mathml"=>"J/kg","unicode"=>"J/kg"}],"quantity_references"=>[{"id"=>"NISTq65","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu13","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu27","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_3","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/J-PER-KiloGM","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu13.u27p10'3e-1/1.u5e-1/1","type"=>"nist"},{"id"=>"u:joule_per_kilogram_kelvin","type"=>"unitsml"}],"short"=>"joule_per_kilogram_kelvin","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"joule per kilogram kelvin","lang"=>"en"}],"symbols"=>[{"id"=>"J*kg^-1*K^-1","ascii"=>"J*kg^-1*K^-1","html"=>"J/(kg · K)","latex"=>"\\ensuremath{\\mathrm{J/(kg\\cdot K)}}","mathml"=>"J/(kg·K)","unicode"=>"J/(kg·K)"}],"quantity_references"=>[{"id"=>"NISTq64","type"=>"nist"},{"id"=>"NISTq80","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu13","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu27","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_3","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu5","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/J-PER-KiloGM-K","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu13.u3","type"=>"nist"},{"id"=>"u:joule_second","type"=>"unitsml"}],"short"=>"joule_second","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"joule second","lang"=>"en"}],"symbols"=>[{"id"=>"J*s","ascii"=>"J*s","html"=>"J · s","latex"=>"\\ensuremath{\\mathrm{J\\cdot s}}","mathml"=>"J·s","unicode"=>"J·s"}],"quantity_references"=>[{"id"=>"NISTq154","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu13","type"=>"nist"}},{"power"=>1,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/J-SEC","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu13.u5e-1/1","type"=>"nist"},{"id"=>"u:joule_per_kelvin","type"=>"unitsml"}],"short"=>"joule_per_kelvin","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"joule per kelvin","lang"=>"en"}],"symbols"=>[{"id"=>"J*K^-1","ascii"=>"J*K^-1","html"=>"J/K","latex"=>"\\ensuremath{\\mathrm{J/K}}","mathml"=>"J/K","unicode"=>"J/K"}],"quantity_references"=>[{"id"=>"NISTq63","type"=>"nist"},{"id"=>"NISTq79","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu13","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu5","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/J-PER-K","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu13.u6e-1/1","type"=>"nist"},{"id"=>"u:joule_per_mole","type"=>"unitsml"}],"short"=>"joule_per_mole","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"joule per mole","lang"=>"en"}],"symbols"=>[{"id"=>"J*mol^-1","ascii"=>"J*mol^-1","html"=>"J/mol","latex"=>"\\ensuremath{\\mathrm{J/mol}}","mathml"=>"J/mol","unicode"=>"J/mol"}],"quantity_references"=>[{"id"=>"NISTq73","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu13","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu6","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/J-PER-MOL","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu13.u6e-1/1.u5e-1/1","type"=>"nist"},{"id"=>"u:joule_per_mole_kelvin","type"=>"unitsml"}],"short"=>"joule_per_mole_kelvin","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"joule per mole kelvin","lang"=>"en"}],"symbols"=>[{"id"=>"J*mol^-1*K^-1","ascii"=>"J*mol^-1*K^-1","html"=>"J/(mol · K)","latex"=>"\\ensuremath{\\mathrm{J/(mol\\cdot K)}}","mathml"=>"J/(mol·K)","unicode"=>"J/(mol·K)"}],"quantity_references"=>[{"id"=>"NISTq74","type"=>"nist"},{"id"=>"NISTq83","type"=>"nist"}],"root_units"=>[{"power"=>-1,"unit_reference"=>{"id"=>"NISTu5","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/J-PER-MOL-K","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu130","type"=>"nist"},{"id"=>"u:liter","type"=>"unitsml"}],"short"=>"liter","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_acceptable","type"=>"nist"}],"names"=>[{"value"=>"litre","lang"=>"en"},{"value"=>"liter","lang"=>"en"},{"value"=>"litre","lang"=>"fr"}],"symbols"=>[{"id"=>"l","ascii"=>"l","html"=>"l","latex"=>"\\ensuremath{\\mathrm{l}}","mathml"=>"l","unicode"=>"l"},{"id"=>"L","ascii"=>"L","html"=>"L","latex"=>"\\ensuremath{\\mathrm{L}}","mathml"=>"L","unicode"=>"L"}],"quantity_references"=>[{"id"=>"NISTq10","type"=>"nist"}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/litre","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:unit:iso1000:code:l","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/L","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu131","type"=>"nist"},{"id"=>"u:nautical_mile","type"=>"unitsml"}],"short"=>"nautical_mile","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_acceptable","type"=>"nist"}],"names"=>[{"value"=>"nautical mile","lang"=>"en"}],"symbols"=>[{"id"=>"M","ascii"=>"M","html"=>"M","latex"=>"\\ensuremath{\\mathrm{M}}","mathml"=>"M","unicode"=>"M"}],"quantity_references"=>[{"id"=>"NISTq1","type"=>"nist"},{"id"=>"NISTq48","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:intcust:code:[nmi_i]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/MI_N","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu133","type"=>"nist"},{"id"=>"u:degree_Fahrenheit","type"=>"unitsml"}],"short"=>"degree_Fahrenheit","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"degree Fahrenheit","lang"=>"en"}],"symbols"=>[{"id"=>"degF","ascii"=>"degF","html"=>"°F","latex"=>"\\ensuremath{\\mathrm{^{\\circ}F}}","mathml"=>"°F","unicode"=>"°F"}],"quantity_references"=>[{"id"=>"NISTq175","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:heat:code:[degF]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/DEG_F","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_interval","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu134","type"=>"nist"},{"id"=>"u:standard_atmosphere","type"=>"unitsml"}],"short"=>"standard_atmosphere","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"standard atmosphere","lang"=>"en"}],"symbols"=>[{"id"=>"atm","ascii"=>"atm","html"=>"atm","latex"=>"\\ensuremath{\\mathrm{atm}}","mathml"=>"atm","unicode"=>"atm"}],"quantity_references"=>[{"id"=>"NISTq15","type"=>"nist"},{"id"=>"NISTq16","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:const:code:atm","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/ATM","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu135","type"=>"nist"},{"id"=>"u:technical_atmosphere","type"=>"unitsml"}],"short"=>"technical_atmosphere","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"technical atmosphere","lang"=>"en"}],"symbols"=>[{"id"=>"at","ascii"=>"at","html"=>"at","latex"=>"\\ensuremath{\\mathrm{at}}","mathml"=>"at","unicode"=>"at"}],"quantity_references"=>[{"id"=>"NISTq15","type"=>"nist"},{"id"=>"NISTq16","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:misc:code:att","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/ATM_T","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu14","type"=>"nist"},{"id"=>"u:watt","type"=>"unitsml"}],"short"=>"watt","root"=>true,"unit_system_reference"=>[{"id"=>"SI_derived_special","type"=>"nist"}],"names"=>[{"value"=>"watt","lang"=>"en"},{"value"=>"watt","lang"=>"fr"}],"symbols"=>[{"id"=>"W","ascii"=>"W","html"=>"W","latex"=>"\\ensuremath{\\mathrm{W}}","mathml"=>"W","unicode"=>"W"}],"quantity_references"=>[{"id"=>"NISTq20","type"=>"nist"},{"id"=>"NISTq21","type"=>"nist"}],"si_derived_bases"=>[{"power"=>2,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}},{"power"=>1,"unit_reference"=>{"id"=>"NISTu27","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_3","type"=>"nist"}},{"power"=>-3,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/watt","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:unit:si:code:W","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/W","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu14.u10e-1/1","type"=>"nist"},{"id"=>"u:watt_per_steradian","type"=>"unitsml"}],"short"=>"watt_per_steradian","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"watt per steradian","lang"=>"en"}],"symbols"=>[{"id"=>"W*sr^-1","ascii"=>"W*sr^-1","html"=>"W/sr","latex"=>"\\ensuremath{\\mathrm{W/sr}}","mathml"=>"W/sr","unicode"=>"W/sr"}],"quantity_references"=>[{"id"=>"NISTq88","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu14","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu10","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/W-PER-SR","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu14.u1e-1/1.u5e-1/1","type"=>"nist"},{"id"=>"u:watt_per_meter_kelvin","type"=>"unitsml"}],"short"=>"watt_per_meter_kelvin","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"watt per meter kelvin","lang"=>"en"}],"symbols"=>[{"id"=>"W*m^-1*K^-1","ascii"=>"W*m^-1*K^-1","html"=>"W/(m · K)","latex"=>"\\ensuremath{\\mathrm{W/(m\\cdot K)}}","mathml"=>"W/(m·K)","unicode"=>"W/(m·K)"}],"quantity_references"=>[{"id"=>"NISTq66","type"=>"nist"}],"root_units"=>[{"power"=>-1,"unit_reference"=>{"id"=>"NISTu5","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/W-PER-M-K","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu14.u1e-2/1","type"=>"nist"},{"id"=>"u:watt_per_square_meter","type"=>"unitsml"}],"short"=>"watt_per_square_meter","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"watt per square meter","lang"=>"en"}],"symbols"=>[{"id"=>"W*m^-2","ascii"=>"W*m^-2","html"=>"W/m2","latex"=>"\\ensuremath{\\mathrm{W/m^2}}","mathml"=>"W/m2","unicode"=>"W/m²"}],"quantity_references"=>[{"id"=>"NISTq62","type"=>"nist"},{"id"=>"NISTq78","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu14","type"=>"nist"}},{"power"=>-2,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/W-PER-M2","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu14.u1e-2/1.u10e-1/1","type"=>"nist"},{"id"=>"u:watt_per_square_meter_steradian","type"=>"unitsml"}],"short"=>"watt_per_square_meter_steradian","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"watt per square meter steradian","lang"=>"en"}],"symbols"=>[{"id"=>"W*m^-2*sr^-1","ascii"=>"W*m^-2*sr^-1","html"=>"W/(m^2 · sr)","latex"=>"\\ensuremath{\\mathrm{W/(m^2\\cdot sr)}}","mathml"=>"W/(m2·sr)","unicode"=>"W/(m²·sr)"}],"quantity_references"=>[{"id"=>"NISTq89","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu14","type"=>"nist"}},{"power"=>-2,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu10","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/W-PER-M2-SR","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu14.u3","type"=>"nist"},{"id"=>"u:watt_second","type"=>"unitsml"}],"short"=>"watt_second","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"watt second","lang"=>"en"}],"symbols"=>[{"id"=>"W*s","ascii"=>"W*s","html"=>"W · s","latex"=>"\\ensuremath{\\mathrm{W\\cdot s}}","mathml"=>"W·s","unicode"=>"W·s"}],"quantity_references"=>[{"id"=>"NISTq17","type"=>"nist"},{"id"=>"NISTq18","type"=>"nist"},{"id"=>"NISTq182","type"=>"nist"},{"id"=>"NISTq183","type"=>"nist"},{"id"=>"NISTq19","type"=>"nist"},{"id"=>"NISTq77","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu14","type"=>"nist"}},{"power"=>1,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/W-SEC","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu142","type"=>"nist"},{"id"=>"u:stokes","type"=>"unitsml"}],"short"=>"stokes","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"stokes","lang"=>"en"}],"symbols"=>[{"id"=>"St","ascii"=>"St","html"=>"St","latex"=>"\\ensuremath{\\mathrm{St}}","mathml"=>"St","unicode"=>"St"}],"quantity_references"=>[{"id"=>"NISTq85","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:cgs:code:St","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/ST","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu143","type"=>"nist"},{"id"=>"u:gal","type"=>"unitsml"}],"short"=>"gal","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"gal","lang"=>"en"}],"symbols"=>[{"id"=>"Gal","ascii"=>"Gal","html"=>"Gal","latex"=>"\\ensuremath{\\mathrm{Gal}}","mathml"=>"Gal","unicode"=>"Gal"}],"quantity_references"=>[{"id"=>"NISTq49","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:cgs:code:Gal","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/GALILEO","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu144","type"=>"nist"},{"id"=>"u:oersted","type"=>"unitsml"}],"short"=>"oersted","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_acceptable","type"=>"nist"}],"names"=>[{"value"=>"oersted","lang"=>"en"}],"symbols"=>[{"id"=>"Oe","ascii"=>"Oe","html"=>"Oe","latex"=>"\\ensuremath{\\mathrm{Oe}}","mathml"=>"Oe","unicode"=>"Oe"}],"quantity_references"=>[{"id"=>"NISTq87","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:cgs:code:Oe","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/OERSTED","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu147","type"=>"nist"},{"id"=>"u:arc_minute","type"=>"unitsml"}],"short"=>"arc_minute","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_acceptable","type"=>"nist"}],"names"=>[{"value"=>"arcminute","lang"=>"en"},{"value"=>"minute (minute of arc)","lang"=>"en"},{"value"=>"arcminute","lang"=>"fr"}],"symbols"=>[{"id"=>"'","ascii"=>"'","html"=>"′","latex"=>"\\ensuremath{\\mathrm{'}}","mathml"=>"","unicode"=>"′"},{"id"=>"prime","ascii"=>"'","html"=>"′","latex"=>"\\ensuremath{\\mathrm{'}}","mathml"=>"","unicode"=>"′"}],"quantity_references"=>[{"id"=>"NISTq9","type"=>"nist"}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/arcminute","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:unit:iso1000:code:'","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/ARCMIN","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu148","type"=>"nist"},{"id"=>"u:arc_second","type"=>"unitsml"}],"short"=>"arc_second","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_acceptable","type"=>"nist"}],"names"=>[{"value"=>"arcsecond","lang"=>"en"},{"value"=>"second (second of arc)","lang"=>"en"},{"value"=>"arcseconde","lang"=>"fr"}],"symbols"=>[{"id"=>"\"","ascii"=>"\"","html"=>"″","latex"=>"\\ensuremath{\\mathrm{''}}","mathml"=>"","unicode"=>"″"},{"id"=>"dprime","ascii"=>"\"","html"=>"″","latex"=>"\\ensuremath{\\mathrm{''}}","mathml"=>"","unicode"=>"″"},{"id"=>"as","ascii"=>"as","html"=>"as","latex"=>"\\ensuremath{\\mathrm{as}}","mathml"=>"as","unicode"=>"as"}],"quantity_references"=>[{"id"=>"NISTq9","type"=>"nist"}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/arcsecond","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/ARCSEC","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu149","type"=>"nist"},{"id"=>"u:arc_degree","type"=>"unitsml"}],"short"=>"arc_degree","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_acceptable","type"=>"nist"}],"names"=>[{"value"=>"degree (degree of arc)","lang"=>"en"},{"value"=>"degré","lang"=>"fr"}],"symbols"=>[{"id"=>"deg","ascii"=>"deg","html"=>"°","latex"=>"\\ensuremath{\\mathrm{^{\\circ}}}","mathml"=>"°","unicode"=>"º"}],"quantity_references"=>[{"id"=>"NISTq9","type"=>"nist"}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/degree","authority"=>"si-digital-framework"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu15","type"=>"nist"},{"id"=>"u:coulomb","type"=>"unitsml"}],"short"=>"coulomb","root"=>true,"unit_system_reference"=>[{"id"=>"SI_derived_special","type"=>"nist"}],"names"=>[{"value"=>"coulomb","lang"=>"en"},{"value"=>"coulomb","lang"=>"fr"}],"symbols"=>[{"id"=>"C","ascii"=>"C","html"=>"C","latex"=>"\\ensuremath{\\mathrm{C}}","mathml"=>"C","unicode"=>"C"}],"quantity_references"=>[{"id"=>"NISTq22","type"=>"nist"},{"id"=>"NISTq23","type"=>"nist"}],"si_derived_bases"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu2","type"=>"nist"}},{"power"=>1,"unit_reference"=>{"id"=>"NISTu4","type"=>"nist"}}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/coulomb","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:base-unit:code:C","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/C","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu15.u1e-2/1","type"=>"nist"},{"id"=>"u:coulomb_per_square_meter","type"=>"unitsml"}],"short"=>"coulomb_per_square_meter","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"coulomb per square meter","lang"=>"en"}],"symbols"=>[{"id"=>"C*m^-2","ascii"=>"C*m^-2","html"=>"C/m2","latex"=>"\\ensuremath{\\mathrm{C/m^2}}","mathml"=>"C/m2","unicode"=>"C/m²"}],"quantity_references"=>[{"id"=>"NISTq81","type"=>"nist"},{"id"=>"NISTq82","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu15","type"=>"nist"}},{"power"=>-2,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/C-PER-M2","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu15.u1e-3/1","type"=>"nist"},{"id"=>"u:coulomb_per_cubic_meter","type"=>"unitsml"}],"short"=>"coulomb_per_cubic_meter","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"coulomb per cubic meter","lang"=>"en"}],"symbols"=>[{"id"=>"C*m^-3","ascii"=>"C*m^-3","html"=>"C/m3","latex"=>"\\ensuremath{\\mathrm{C/m^3}}","mathml"=>"C/m3","unicode"=>"C/m³"}],"quantity_references"=>[{"id"=>"NISTq69","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu15","type"=>"nist"}},{"power"=>-3,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/C-PER-M3","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu15.u27p10'3e-1/1","type"=>"nist"},{"id"=>"u:coulomb_per_kilogram","type"=>"unitsml"}],"short"=>"coulomb_per_kilogram","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"coulomb per kilogram","lang"=>"en"}],"symbols"=>[{"id"=>"C*kg^-1","ascii"=>"C*kg^-1","html"=>"C/kg","latex"=>"\\ensuremath{\\mathrm{C/kg}}","mathml"=>"C/kg","unicode"=>"C/kg"}],"quantity_references"=>[{"id"=>"NISTq197","type"=>"nist"},{"id"=>"NISTq75","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu15","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu27","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_3","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/C-PER-KiloGM","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu152","type"=>"nist"},{"id"=>"u:knot","type"=>"unitsml"}],"short"=>"knot","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_acceptable","type"=>"nist"}],"names"=>[{"value"=>"nautical mile per hour","lang"=>"en"},{"value"=>"knot","lang"=>"en"}],"symbols"=>[{"id"=>"kn","ascii"=>"kn","html"=>"kn","latex"=>"\\ensuremath{\\mathrm{kn}}","mathml"=>"kn","unicode"=>"kn"}],"quantity_references"=>[{"id"=>"NISTq12","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:intcust:code:[kn_i]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/KN","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu153","type"=>"nist"},{"id"=>"u:neper","type"=>"unitsml"}],"short"=>"neper","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_acceptable","type"=>"nist"}],"names"=>[{"value"=>"neper","lang"=>"en"},{"value"=>"néper","lang"=>"fr"}],"symbols"=>[{"id"=>"Np","ascii"=>"Np","html"=>"Np","latex"=>"\\ensuremath{\\mathrm{Np}}","mathml"=>"Np","unicode"=>"Np"}],"quantity_references"=>[{"id"=>"NISTq118","type"=>"nist"},{"id"=>"NISTq119","type"=>"nist"},{"id"=>"NISTq121","type"=>"nist"},{"id"=>"NISTq90","type"=>"nist"}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/neper","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:unit:levels:code:Np","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/NP","authority"=>"qudt"}],"scale_reference"=>{"id"=>"logarithmic_field","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu154","type"=>"nist"},{"id"=>"u:bel","type"=>"unitsml"}],"short"=>"bel","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_acceptable","type"=>"nist"}],"names"=>[{"value"=>"bel","lang"=>"en"},{"value"=>"bel","lang"=>"fr"}],"symbols"=>[{"id"=>"bel_B","ascii"=>"B","html"=>"B","latex"=>"\\ensuremath{\\mathrm{B}}","mathml"=>"B","unicode"=>"B"}],"quantity_references"=>[{"id"=>"NISTq118","type"=>"nist"},{"id"=>"NISTq119","type"=>"nist"},{"id"=>"NISTq90","type"=>"nist"}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/bel","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:unit:levels:code:B","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/B","authority"=>"qudt"}],"scale_reference"=>{"id"=>"logarithmic_field","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu155","type"=>"nist"},{"id"=>"u:decibel","type"=>"unitsml"}],"short"=>"decibel","root"=>false,"prefixed"=>true,"unit_system_reference"=>[{"id"=>"non-SI_acceptable","type"=>"nist"}],"names"=>[{"value"=>"decibel","lang"=>"en"}],"symbols"=>[{"id"=>"dB","ascii"=>"dB","html"=>"dB","latex"=>"\\ensuremath{\\mathrm{dB}}","mathml"=>"dB","unicode"=>"dB"}],"quantity_references"=>[{"id"=>"NISTq90","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu154","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_-1","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/DeciB","authority"=>"qudt"}],"scale_reference"=>{"id"=>"logarithmic_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu156","type"=>"nist"},{"id"=>"u:mm_Hg","type"=>"unitsml"}],"short"=>"mm_Hg","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_acceptable","type"=>"nist"}],"names"=>[{"value"=>"conventional millimeter of mercury","lang"=>"en"},{"value"=>"millimeter of mercury, conventional","lang"=>"en"},{"value"=>"millimeter of mercury","lang"=>"en"}],"symbols"=>[{"id"=>"mmHg","ascii"=>"mmHg","html"=>"mmHg","latex"=>"\\ensuremath{\\mathrm{mmHg}}","mathml"=>"mmHg","unicode"=>"mmHg"}],"quantity_references"=>[{"id"=>"NISTq15","type"=>"nist"},{"id"=>"NISTq16","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/MilliM_HG","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu157","type"=>"nist"},{"id"=>"u:darcy","type"=>"unitsml"}],"short"=>"darcy","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"darcy","lang"=>"en"}],"symbols"=>[{"id"=>"darcy","ascii"=>"d","html"=>"d","latex"=>"\\ensuremath{\\mathrm{d}}","mathml"=>"d","unicode"=>"d"},{"id"=>"Darcy","ascii"=>"D","html"=>"D","latex"=>"\\ensuremath{\\mathrm{D}}","mathml"=>"D","unicode"=>"D"}],"quantity_references"=>[{"id"=>"NISTq72","type"=>"nist"},{"id"=>"NISTq92","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:iso1000:code:d","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/DARCY","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu159","type"=>"nist"},{"id"=>"u:gon","type"=>"unitsml"}],"short"=>"gon","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_acceptable","type"=>"nist"}],"names"=>[{"value"=>"gon","lang"=>"en"}],"symbols"=>[{"id"=>"gon","ascii"=>"gon","html"=>"gon","latex"=>"\\ensuremath{\\mathrm{gon}}","mathml"=>"gon","unicode"=>"gon"}],"quantity_references"=>[{"id"=>"NISTq9","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:iso1000:code:gon","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/GON","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu16","type"=>"nist"},{"id"=>"u:volt","type"=>"unitsml"}],"short"=>"volt","root"=>true,"unit_system_reference"=>[{"id"=>"SI_derived_special","type"=>"nist"}],"names"=>[{"value"=>"volt","lang"=>"en"},{"value"=>"volt","lang"=>"fr"}],"symbols"=>[{"id"=>"V","ascii"=>"V","html"=>"V","latex"=>"\\ensuremath{\\mathrm{V}}","mathml"=>"V","unicode"=>"V"}],"quantity_references"=>[{"id"=>"NISTq24","type"=>"nist"},{"id"=>"NISTq25","type"=>"nist"},{"id"=>"NISTq26","type"=>"nist"}],"si_derived_bases"=>[{"power"=>2,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}},{"power"=>1,"unit_reference"=>{"id"=>"NISTu27","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_3","type"=>"nist"}},{"power"=>-3,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu4","type"=>"nist"}}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/volt","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:unit:si:code:V","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/V","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu16.u1e-1/1","type"=>"nist"},{"id"=>"u:volt_per_meter","type"=>"unitsml"}],"short"=>"volt_per_meter","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"volt per meter","lang"=>"en"}],"symbols"=>[{"id"=>"V*m^-1","ascii"=>"V*m^-1","html"=>"V/m","latex"=>"\\ensuremath{\\mathrm{V/m}}","mathml"=>"V/m","unicode"=>"V/m"}],"quantity_references"=>[{"id"=>"NISTq68","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu16","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/V-PER-M","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu160","type"=>"nist"},{"id"=>"u:kilometer_per_hour","type"=>"unitsml"}],"short"=>"kilometer_per_hour","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_acceptable","type"=>"nist"}],"names"=>[{"value"=>"kilometer per hour","lang"=>"en"}],"symbols"=>[{"id"=>"km/h","ascii"=>"km/h","html"=>"kh/h","latex"=>"\\ensuremath{\\mathrm{kh/h}}","mathml"=>"kh/h","unicode"=>"km/h"}],"quantity_references"=>[{"id"=>"NISTq107","type"=>"nist"},{"id"=>"NISTq12","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_3","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu37","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/KiloM-PER-HR","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu163","type"=>"nist"},{"id"=>"u:neper_per_second","type"=>"unitsml"}],"short"=>"neper_per_second","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"neper per second","lang"=>"en"}],"symbols"=>[{"id"=>"Np*s^-1","ascii"=>"Np*s^-1","html"=>"Np/s","latex"=>"\\ensuremath{\\mathrm{Np/s}}","mathml"=>"Np/s","unicode"=>"Np/s"}],"quantity_references"=>[{"id"=>"NISTq120","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu153","type"=>"nist"}},{"power"=>-2,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/NP-PER-SEC","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu164","type"=>"nist"},{"id"=>"u:square_yard","type"=>"unitsml"}],"short"=>"square_yard","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"square yard","lang"=>"en"}],"symbols"=>[{"id"=>"yd^2","ascii"=>"yd^2","html"=>"yd2","latex"=>"\\ensuremath{\\mathrm{yd^2}}","mathml"=>"yd2","unicode"=>"yd²"}],"quantity_references"=>[{"id"=>"NISTq8","type"=>"nist"}],"root_units"=>[{"power"=>2,"unit_reference"=>{"id"=>"NISTu84","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:intcust:code:[syd_i]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/YD2","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu165","type"=>"nist"},{"id"=>"u:square_mile","type"=>"unitsml"}],"short"=>"square_mile","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"square mile","lang"=>"en"}],"symbols"=>[{"id"=>"mi^2","ascii"=>"mi^2","html"=>"mi2","latex"=>"\\ensuremath{\\mathrm{mi^2}}","mathml"=>"mi2","unicode"=>"mi²"}],"quantity_references"=>[{"id"=>"NISTq8","type"=>"nist"}],"root_units"=>[{"power"=>2,"unit_reference"=>{"id"=>"NISTu83","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:us-lengths:code:[smi_us]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/MI2","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu166","type"=>"nist"},{"id"=>"u:tons_of_tnt","type"=>"unitsml"}],"short"=>"tons_of_tnt","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"ton of TNT (energy equivalent)","lang"=>"en"},{"value"=>"ton","lang"=>"en"}],"symbols"=>[{"id"=>"ton_TNT","ascii"=>"ton","html"=>"ton","latex"=>"\\ensuremath{\\mathrm{ton}}","mathml"=>"ton","unicode"=>"ton"}],"quantity_references"=>[{"id"=>"NISTq17","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/TonEnergy","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu167","type"=>"nist"},{"id"=>"u:foot_per_second_squared","type"=>"unitsml"}],"short"=>"foot_per_second_squared","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"foot per second squared","lang"=>"en"}],"symbols"=>[{"id"=>"ft*s^-2","ascii"=>"ft*s^-2","html"=>"ft/s2","latex"=>"\\ensuremath{\\mathrm{ft/s^2}}","mathml"=>"ft/s2","unicode"=>"ft/s²"}],"quantity_references"=>[{"id"=>"NISTq49","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu78","type"=>"nist"}},{"power"=>-2,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/FT-PER-SEC2","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu168","type"=>"nist"},{"id"=>"u:cubic_inch","type"=>"unitsml"}],"short"=>"cubic_inch","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"cubic inch","lang"=>"en"}],"symbols"=>[{"id"=>"in^3","ascii"=>"in^3","html"=>"in3","latex"=>"\\ensuremath{\\mathrm{in^3}}","mathml"=>"in3","unicode"=>"in³"}],"quantity_references"=>[{"id"=>"NISTq10","type"=>"nist"}],"root_units"=>[{"power"=>3,"unit_reference"=>{"id"=>"NISTu8","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:intcust:code:[cin_i]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/IN3","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu169","type"=>"nist"},{"id"=>"u:cubic_foot","type"=>"unitsml"}],"short"=>"cubic_foot","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"cubic foot","lang"=>"en"}],"symbols"=>[{"id"=>"ft^3","ascii"=>"ft^3","html"=>"ft3","latex"=>"\\ensuremath{\\mathrm{ft^3}}","mathml"=>"ft3","unicode"=>"ft³"}],"quantity_references"=>[{"id"=>"NISTq10","type"=>"nist"}],"root_units"=>[{"power"=>3,"unit_reference"=>{"id"=>"NISTu78","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:intcust:code:[cft_i]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/FT3","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu17","type"=>"nist"},{"id"=>"u:farad","type"=>"unitsml"}],"short"=>"farad","root"=>true,"unit_system_reference"=>[{"id"=>"SI_derived_special","type"=>"nist"}],"names"=>[{"value"=>"farad","lang"=>"en"},{"value"=>"farad","lang"=>"fr"}],"symbols"=>[{"id"=>"F","ascii"=>"F","html"=>"F","latex"=>"\\ensuremath{\\mathrm{F}}","mathml"=>"F","unicode"=>"F"}],"quantity_references"=>[{"id"=>"NISTq27","type"=>"nist"}],"si_derived_bases"=>[{"power"=>-2,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu27","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_3","type"=>"nist"}},{"power"=>4,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}},{"power"=>2,"unit_reference"=>{"id"=>"NISTu4","type"=>"nist"}}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/farad","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:unit:si:code:F","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/F","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu17.u1e-1/1","type"=>"nist"},{"id"=>"u:farad_per_meter","type"=>"unitsml"}],"short"=>"farad_per_meter","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"farad per meter","lang"=>"en"}],"symbols"=>[{"id"=>"F*m^-1","ascii"=>"F*m^-1","html"=>"F/m","latex"=>"\\ensuremath{\\mathrm{F/m}}","mathml"=>"F/m","unicode"=>"F/m"}],"quantity_references"=>[{"id"=>"NISTq71","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu17","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/FARAD-PER-M","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu170","type"=>"nist"},{"id"=>"u:cubic_yard","type"=>"unitsml"}],"short"=>"cubic_yard","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"cubic yard","lang"=>"en"}],"symbols"=>[{"id"=>"yd^3","ascii"=>"yd^3","html"=>"yd3","latex"=>"\\ensuremath{\\mathrm{yd^3}}","mathml"=>"yd3","unicode"=>"yd³"}],"quantity_references"=>[{"id"=>"NISTq10","type"=>"nist"}],"root_units"=>[{"power"=>3,"unit_reference"=>{"id"=>"NISTu84","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:intcust:code:[cyd_i]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/YD3","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu171","type"=>"nist"},{"id"=>"u:imperial_gallon","type"=>"unitsml"}],"short"=>"imperial_gallon","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"gallon (UK)","lang"=>"en"},{"value"=>"imperial gallon","lang"=>"en"},{"value"=>"gallon","lang"=>"en"}],"symbols"=>[{"id"=>"gal (UK)","ascii"=>"gal (UK)","html"=>"gal (UK)","latex"=>"\\ensuremath{\\mathrm{gal (UK)}}","mathml"=>"gal (UK)","unicode"=>"gal (UK)"}],"quantity_references"=>[{"id"=>"NISTq10","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:brit-volumes:code:[gal_br]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/GAL_IMP","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu172","type"=>"nist"},{"id"=>"u:imperial_pint","type"=>"unitsml"}],"short"=>"imperial_pint","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"pint (UK)","lang"=>"en"},{"value"=>"pint","lang"=>"en"}],"symbols"=>[{"id"=>"pt (UK)","ascii"=>"pt (UK)","html"=>"pt (UK)","latex"=>"\\ensuremath{\\mathrm{pint~{UK}}","mathml"=>"pt (UK)","unicode"=>"pt (UK)"}],"quantity_references"=>[{"id"=>"NISTq10","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:us-volumes:code:[pt_us]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/PINT_UK","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu173","type"=>"nist"},{"id"=>"u:imperial_ounce","type"=>"unitsml"}],"short"=>"imperial_ounce","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"fluid ounce (UK)","lang"=>"en"},{"value"=>"fluid ounce","lang"=>"en"},{"value"=>"ounce","lang"=>"en"}],"symbols"=>[{"id"=>"fl oz (UK)","ascii"=>"fl oz (UK)","html"=>"fl oz (UK)","latex"=>"\\ensuremath{\\mathrm{fl oz (UK)}}","mathml"=>"fl oz (UK)","unicode"=>"fl oz (UK)"}],"quantity_references"=>[{"id"=>"NISTq10","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:us-volumes:code:[foz_us]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/OZ_VOL_UK","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu175","type"=>"nist"},{"id"=>"u:us_gallon","type"=>"unitsml"}],"short"=>"us_gallon","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"gallon (US)","lang"=>"en"},{"value"=>"gallon","lang"=>"en"}],"symbols"=>[{"id"=>"gal (US)","ascii"=>"gal (US)","html"=>"gal (US)","latex"=>"\\ensuremath{\\mathrm{gal (US)}}","mathml"=>"gal (US)","unicode"=>"gal (US)"}],"quantity_references"=>[{"id"=>"NISTq10","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:brit-volumes:code:[gal_br]","authority"=>"ucum"}],"scale_reference"=>{"id"=>"continuous_interval","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu176","type"=>"nist"},{"id"=>"u:us_pint","type"=>"unitsml"}],"short"=>"us_pint","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"liquid pint (US)","lang"=>"en"},{"value"=>"pint","lang"=>"en"}],"symbols"=>[{"id"=>"liq pint (US)","ascii"=>"liq pint (US)","html"=>"liq pint (US)","latex"=>"\\ensuremath{\\mathrm{liq pint (US)}}","mathml"=>"liq pint (US)","unicode"=>"liq pint (US)"}],"quantity_references"=>[{"id"=>"NISTq10","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:us-volumes:code:[pt_us]","authority"=>"ucum"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu177","type"=>"nist"},{"id"=>"u:us_fluid_ounce","type"=>"unitsml"}],"short"=>"us_fluid_ounce","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"fluid ounce (US)","lang"=>"en"},{"value"=>"fluid ounce","lang"=>"en"},{"value"=>"ounce","lang"=>"en"}],"symbols"=>[{"id"=>"fl oz (US)","ascii"=>"fl oz (US)","html"=>"fl oz (US)","latex"=>"\\ensuremath{\\mathrm{fl oz (US)}}","mathml"=>"fl oz (US)","unicode"=>"fl oz (US)"}],"quantity_references"=>[{"id"=>"NISTq10","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:us-volumes:code:[foz_us]","authority"=>"ucum"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu178","type"=>"nist"},{"id"=>"u:petro_barrel","type"=>"unitsml"}],"short"=>"petro_barrel","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"barrel (US) for petroleum","lang"=>"en"},{"value"=>"barrel","lang"=>"en"}],"symbols"=>[{"id"=>"bbl (US)","ascii"=>"bbl (US)","html"=>"bbl (US)","latex"=>"\\ensuremath{\\mathrm{bbl (US)}}","mathml"=>"bbl (US)","unicode"=>"bbl (US)"}],"quantity_references"=>[{"id"=>"NISTq10","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:us-volumes:code:[bbl_us]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/BBL","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu179","type"=>"nist"},{"id"=>"u:us_bushel","type"=>"unitsml"}],"short"=>"us_bushel","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"bushel (US)","lang"=>"en"},{"value"=>"bushel","lang"=>"en"}],"symbols"=>[{"id"=>"bu (US)","ascii"=>"bu (US)","html"=>"bu (US)","latex"=>"\\ensuremath{\\mathrm{bu (US)}}","mathml"=>"bu (US)","unicode"=>"bu (US)"}],"quantity_references"=>[{"id"=>"NISTq10","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:us-volumes:code:[bu_us]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/BU_US","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu18","type"=>"nist"},{"id"=>"u:ohm","type"=>"unitsml"}],"short"=>"ohm","root"=>true,"unit_system_reference"=>[{"id"=>"SI_derived_special","type"=>"nist"}],"names"=>[{"value"=>"ohm","lang"=>"en"},{"value"=>"ohm","lang"=>"fr"}],"symbols"=>[{"id"=>"Ohm","ascii"=>"Ohm","html"=>"Ω","latex"=>"\\ensuremath{\\mathrm{\\Omega}}","mathml"=>"","unicode"=>"Ω"}],"quantity_references"=>[{"id"=>"NISTq28","type"=>"nist"}],"si_derived_bases"=>[{"power"=>2,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}},{"power"=>1,"unit_reference"=>{"id"=>"NISTu27","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_3","type"=>"nist"}},{"power"=>4,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}},{"power"=>2,"unit_reference"=>{"id"=>"NISTu4","type"=>"nist"}}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/ohm","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:unit:si:code:Ohm","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/OHM","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu180","type"=>"nist"},{"id"=>"u:us_dry_pint","type"=>"unitsml"}],"short"=>"us_dry_pint","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"dry pint (US)","lang"=>"en"},{"value"=>"pint","lang"=>"en"}],"symbols"=>[{"id"=>"dry pt (US)","ascii"=>"dry pt (US)","html"=>"dry pt (US)","latex"=>"\\ensuremath{\\mathrm{dry pt (US)}}","mathml"=>"dry pt (US)","unicode"=>"dry pt (US)"}],"quantity_references"=>[{"id"=>"NISTq10","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:us-volumes:code:[pt_us]","authority"=>"ucum"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu182","type"=>"nist"},{"id"=>"u:light_year","type"=>"unitsml"}],"short"=>"light_year","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"light year","lang"=>"en"}],"symbols"=>[{"id"=>"l.y.","ascii"=>"l.y.","html"=>"l.y.","latex"=>"\\ensuremath{\\mathrm{l.y.}}","mathml"=>"l.y.","unicode"=>"l.y."}],"quantity_references"=>[{"id"=>"NISTq1","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:const:code:[ly]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/LY","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu183","type"=>"nist"},{"id"=>"u:astronomical_unit","type"=>"unitsml"}],"short"=>"astronomical_unit","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_acceptable","type"=>"nist"}],"names"=>[{"value"=>"astronomical unit","lang"=>"en"},{"value"=>"unité astronomique","lang"=>"fr"}],"symbols"=>[{"id"=>"ua","ascii"=>"ua","html"=>"ua","latex"=>"\\ensuremath{\\mathrm{ua}}","mathml"=>"ua","unicode"=>"ua"}],"quantity_references"=>[{"id"=>"NISTq1","type"=>"nist"}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/astronomicalunit","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/AU","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu184","type"=>"nist"},{"id"=>"u:parsec","type"=>"unitsml"}],"short"=>"parsec","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"parsec","lang"=>"en"}],"symbols"=>[{"id"=>"pc","ascii"=>"pc","html"=>"pc","latex"=>"\\ensuremath{\\mathrm{pc}}","mathml"=>"pc","unicode"=>"pc"}],"quantity_references"=>[{"id"=>"NISTq1","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:iso1000:code:pc","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/PARSEC","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu185","type"=>"nist"},{"id"=>"u:meter_to_the_power_four","type"=>"unitsml"}],"short"=>"meter_to_the_power_four","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"meter to the power four","lang"=>"en"}],"symbols"=>[{"id"=>"m^4","ascii"=>"m^4","html"=>"m4","latex"=>"\\ensuremath{\\mathrm{m^4}}","mathml"=>"m4","unicode"=>"m⁴"}],"quantity_references"=>[{"id"=>"NISTq144","type"=>"nist"},{"id"=>"NISTq145","type"=>"nist"}],"root_units"=>[{"power"=>4,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/M4","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu188","type"=>"nist"},{"id"=>"u:kilogram_per_liter","type"=>"unitsml"}],"short"=>"kilogram_per_liter","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_acceptable","type"=>"nist"}],"names"=>[{"value"=>"kilogram per liter","lang"=>"en"}],"symbols"=>[{"id"=>"kg*l^-1","ascii"=>"kg*l^-1","html"=>"kg/l","latex"=>"\\ensuremath{\\mathrm{kg/l}}","mathml"=>"kg/l","unicode"=>"kg/l"}],"quantity_references"=>[{"id"=>"NISTq51","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu27","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_3","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu130","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/KiloGM-PER-L","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu189","type"=>"nist"},{"id"=>"u:metric_ton_per_cubic_meter","type"=>"unitsml"}],"short"=>"metric_ton_per_cubic_meter","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_acceptable","type"=>"nist"}],"names"=>[{"value"=>"metric ton per cubic meter","lang"=>"en"}],"symbols"=>[{"id"=>"t*m^-3","ascii"=>"t*m^-3","html"=>"t/m3","latex"=>"\\ensuremath{\\mathrm{t/m^3}}","mathml"=>"t/m3","unicode"=>"t/m³"}],"quantity_references"=>[{"id"=>"NISTq51","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu88","type"=>"nist"}},{"power"=>-3,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/TONNE-PER-M3","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu19","type"=>"nist"},{"id"=>"u:siemens","type"=>"unitsml"}],"short"=>"siemens","root"=>true,"unit_system_reference"=>[{"id"=>"SI_derived_special","type"=>"nist"}],"names"=>[{"value"=>"siemens","lang"=>"en"},{"value"=>"siemens","lang"=>"fr"}],"symbols"=>[{"id"=>"S","ascii"=>"S","html"=>"S","latex"=>"\\ensuremath{\\mathrm{S}}","mathml"=>"S","unicode"=>"S"}],"quantity_references"=>[{"id"=>"NISTq29","type"=>"nist"}],"si_derived_bases"=>[{"power"=>-2,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu27","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_3","type"=>"nist"}},{"power"=>3,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}},{"power"=>2,"unit_reference"=>{"id"=>"NISTu4","type"=>"nist"}}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/siemens","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:unit:si:code:S","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/S","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu196","type"=>"nist"},{"id"=>"u:gram_force","type"=>"unitsml"}],"short"=>"gram_force","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"gram-force","lang"=>"en"}],"symbols"=>[{"id"=>"gf","ascii"=>"gf","html"=>"gf","latex"=>"\\ensuremath{\\mathrm{gf}}","mathml"=>"gf","unicode"=>"gf"}],"quantity_references"=>[{"id"=>"NISTq13","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu196","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_3","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:const:code:gf","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/GM_F","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu1e-1/1","type"=>"nist"},{"id"=>"u:meter_to_the_power_minus_one","type"=>"unitsml"}],"short"=>"meter_to_the_power_minus_one","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"meter to the power minus one","lang"=>"en"},{"value"=>"reciprocal meter","lang"=>"en"}],"symbols"=>[{"id"=>"m^-1","ascii"=>"m^-1","html"=>"m-1","latex"=>"\\ensuremath{\\mathrm{m^{-1}}}","mathml"=>"m1","unicode"=>"m⁻¹"}],"quantity_references"=>[{"id"=>"NISTq106","type"=>"nist"},{"id"=>"NISTq115","type"=>"nist"},{"id"=>"NISTq122","type"=>"nist"},{"id"=>"NISTq123","type"=>"nist"},{"id"=>"NISTq124","type"=>"nist"},{"id"=>"NISTq50","type"=>"nist"}],"root_units"=>[{"power"=>-1,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu1e-2/1","type"=>"nist"},{"id"=>"u:meter_to_the_power_minus_two","type"=>"unitsml"}],"short"=>"meter_to_the_power_minus_two","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"meter to the power minus two","lang"=>"en"},{"value"=>"reciprocal square meter","lang"=>"en"}],"symbols"=>[{"id"=>"m^-2","ascii"=>"m^-2","html"=>"m-2","latex"=>"\\ensuremath{\\mathrm{m^{-2}}}","mathml"=>"m2","unicode"=>"m⁻²"}],"quantity_references"=>[{"id"=>"NISTq190","type"=>"nist"}],"root_units"=>[{"power"=>-2,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu1e-2/1.u3e-1/1","type"=>"nist"},{"id"=>"u:meter_to_the_power_minus_two_per_second","type"=>"unitsml"}],"short"=>"meter_to_the_power_minus_two_per_second","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"meter to the power minus two per second","lang"=>"en"},{"value"=>"reciprocal square meter per second","lang"=>"en"}],"symbols"=>[{"id"=>"m^-2*s^-1","ascii"=>"m^-2*s^-1","html"=>"m-2/s","latex"=>"\\ensuremath{\\mathrm{m^{-2}/s}}","mathml"=>"m2/s","unicode"=>"m⁻²·s⁻¹"}],"quantity_references"=>[{"id"=>"NISTq191","type"=>"nist"}],"root_units"=>[{"power"=>-2,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu1e2/1","type"=>"nist"},{"id"=>"u:square_meter","type"=>"unitsml"}],"short"=>"square_meter","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"square meter","lang"=>"en"}],"symbols"=>[{"id"=>"m^2","ascii"=>"m^2","html"=>"m2","latex"=>"\\ensuremath{\\mathrm{m^2}}","mathml"=>"m2","unicode"=>"m²"}],"quantity_references"=>[{"id"=>"NISTq8","type"=>"nist"}],"root_units"=>[{"power"=>2,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/M2","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu1e2/1.u3e-1/1","type"=>"nist"},{"id"=>"u:meter_squared_per_second","type"=>"unitsml"}],"short"=>"meter_squared_per_second","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"meter squared per second","lang"=>"en"}],"symbols"=>[{"id"=>"m^2*s^-1","ascii"=>"m^2*s^-1","html"=>"m2/s","latex"=>"\\ensuremath{\\mathrm{m^2/s}}","mathml"=>"m2/s","unicode"=>"m²/s"}],"quantity_references"=>[{"id"=>"NISTq85","type"=>"nist"}],"root_units"=>[{"power"=>2,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/M2-PER-SEC","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu1e3/1","type"=>"nist"},{"id"=>"u:cubic_meter","type"=>"unitsml"}],"short"=>"cubic_meter","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"cubic meter","lang"=>"en"}],"symbols"=>[{"id"=>"m^3","ascii"=>"m^3","html"=>"m3","latex"=>"\\ensuremath{\\mathrm{m^3}}","mathml"=>"m3","unicode"=>"m³"}],"quantity_references"=>[{"id"=>"NISTq10","type"=>"nist"},{"id"=>"NISTq146","type"=>"nist"}],"root_units"=>[{"power"=>3,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/M3","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu1e3/1.u27p10'3","type"=>"nist"},{"id"=>"u:cubic_meter_per_kilogram","type"=>"unitsml"}],"short"=>"cubic_meter_per_kilogram","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"cubic meter per kilogram","lang"=>"en"}],"symbols"=>[{"id"=>"m^3*kg","ascii"=>"m^3*kg","html"=>"m3/kg","latex"=>"\\ensuremath{\\mathrm{m^3/kg}}","mathml"=>"m3/kg","unicode"=>"m³·kg"}],"quantity_references"=>[{"id"=>"NISTq52","type"=>"nist"}],"root_units"=>[{"power"=>3,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu27","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_3","type"=>"nist"}}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu1e3/1.u3e-1/1","type"=>"nist"},{"id"=>"u:cubic_meter_per_second","type"=>"unitsml"}],"short"=>"cubic_meter_per_second","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"cubic meter per second","lang"=>"en"}],"symbols"=>[{"id"=>"m^3*s^-1","ascii"=>"m^3*s^-1","html"=>"m3/s","latex"=>"\\ensuremath{\\mathrm{m^3/s}}","mathml"=>"m3/s","unicode"=>"m³/s"}],"quantity_references"=>[{"id"=>"NISTq151","type"=>"nist"}],"root_units"=>[{"power"=>3,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/M3-PER-SEC","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu2","type"=>"nist"},{"id"=>"u:kilogram","type"=>"unitsml"}],"short"=>"kilogram","root"=>false,"prefixed"=>true,"unit_system_reference"=>[{"id"=>"si-base","type"=>"unitsml"}],"names"=>[{"value"=>"kilogram","lang"=>"en"},{"value"=>"kilogramme","lang"=>"fr"}],"symbols"=>[{"id"=>"kg","ascii"=>"kg","html"=>"kg","latex"=>"\\ensuremath{\\mathrm{kg}}","mathml"=>"kg","unicode"=>"kg"}],"quantity_references"=>[{"id"=>"NISTq2","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu27","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_3","type"=>"nist"}}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/kilogram","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/KiloGM","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu20","type"=>"nist"},{"id"=>"u:weber","type"=>"unitsml"}],"short"=>"weber","root"=>true,"unit_system_reference"=>[{"id"=>"SI_derived_special","type"=>"nist"}],"names"=>[{"value"=>"weber","lang"=>"en"},{"value"=>"weber","lang"=>"fr"}],"symbols"=>[{"id"=>"Wb","ascii"=>"Wb","html"=>"Wb","latex"=>"\\ensuremath{\\mathrm{Wb}}","mathml"=>"Wb","unicode"=>"Wb"}],"quantity_references"=>[{"id"=>"NISTq30","type"=>"nist"}],"si_derived_bases"=>[{"power"=>2,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}},{"power"=>1,"unit_reference"=>{"id"=>"NISTu27","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_3","type"=>"nist"}},{"power"=>-2,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu4","type"=>"nist"}}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/weber","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:unit:si:code:Wb","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/WB","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu201","type"=>"nist"},{"id"=>"u:av_pound","type"=>"unitsml"}],"short"=>"av_pound","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"pound (avoirdupois)","lang"=>"en"},{"value"=>"avoirdupois pound","lang"=>"en"},{"value"=>"pound","lang"=>"en"}],"symbols"=>[{"id"=>"lb","ascii"=>"lb","html"=>"lb","latex"=>"\\ensuremath{\\mathrm{lb}}","mathml"=>"lb","unicode"=>"lb"}],"quantity_references"=>[{"id"=>"NISTq2","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:avoirdupois:code:[lb_av]","authority"=>"ucum"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu202","type"=>"nist"},{"id"=>"u:av_ounce","type"=>"unitsml"}],"short"=>"av_ounce","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"ounce (avoirdupois)","lang"=>"en"},{"value"=>"avoirdupois ounce","lang"=>"en"},{"value"=>"ounce","lang"=>"en"}],"symbols"=>[{"id"=>"oz","ascii"=>"oz","html"=>"oz","latex"=>"\\ensuremath{\\mathrm{oz}}","mathml"=>"oz","unicode"=>"oz"}],"quantity_references"=>[{"id"=>"NISTq2","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:avoirdupois:code:[oz_av]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/OZ-FT","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu203","type"=>"nist"},{"id"=>"u:gross_hundredweight","type"=>"unitsml"}],"short"=>"gross_hundredweight","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"hundredweight (long, 112 lb)","lang"=>"en"},{"value"=>"hundredweight","lang"=>"en"}],"symbols"=>[{"id"=>"cwt (UK)","ascii"=>"cwt (UK)","html"=>"cwt (UK)","latex"=>"\\ensuremath{\\mathrm{cwt (UK)}}","mathml"=>"cwt (UK)","unicode"=>"cwt (UK)"}],"quantity_references"=>[{"id"=>"NISTq2","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu204","type"=>"nist"},{"id"=>"u:pound_per_cubic_foot","type"=>"unitsml"}],"short"=>"pound_per_cubic_foot","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"pound per cubic foot","lang"=>"en"}],"symbols"=>[{"id"=>"lb*ft^-3","ascii"=>"lb*ft^-3","html"=>"lb/ft3","latex"=>"\\ensuremath{\\mathrm{lb/ft^3}}","mathml"=>"lb/ft3","unicode"=>"lb/ft³"}],"quantity_references"=>[{"id"=>"NISTq51","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu201","type"=>"nist"}},{"power"=>-3,"unit_reference"=>{"id"=>"NISTu78","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/LB-PER-FT3","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu205","type"=>"nist"},{"id"=>"u:pound_force","type"=>"unitsml"}],"short"=>"pound_force","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"pound-force","lang"=>"en"}],"symbols"=>[{"id"=>"lbf","ascii"=>"lbf","html"=>"lbf","latex"=>"\\ensuremath{\\mathrm{lbf}}","mathml"=>"lbf","unicode"=>"lbf"}],"quantity_references"=>[{"id"=>"NISTq128","type"=>"nist"},{"id"=>"NISTq13","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:const:code:[lbf_av]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/LB_F","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu206","type"=>"nist"},{"id"=>"u:foot_pound_force","type"=>"unitsml"}],"short"=>"foot_pound_force","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"foot pound-force","lang"=>"en"}],"symbols"=>[{"id"=>"ft*lbf","ascii"=>"ft*lbf","html"=>"ft · lbf","latex"=>"\\ensuremath{\\mathrm{ft\\cdot lbf}}","mathml"=>"ft·lbf","unicode"=>"ft·lbf"}],"quantity_references"=>[{"id"=>"NISTq17","type"=>"nist"},{"id"=>"NISTq18","type"=>"nist"},{"id"=>"NISTq182","type"=>"nist"},{"id"=>"NISTq183","type"=>"nist"},{"id"=>"NISTq184","type"=>"nist"},{"id"=>"NISTq185","type"=>"nist"},{"id"=>"NISTq60","type"=>"nist"},{"id"=>"NISTq77","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu78","type"=>"nist"}},{"power"=>1,"unit_reference"=>{"id"=>"NISTu205","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/FT-LB_F","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu207","type"=>"nist"},{"id"=>"u:pound_force_per_square_inch","type"=>"unitsml"}],"short"=>"pound_force_per_square_inch","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"pound-force per square inch","lang"=>"en"}],"symbols"=>[{"id"=>"lbf*in^-2","ascii"=>"lbf*in^-2","html"=>"lbf/in2","latex"=>"\\ensuremath{\\mathrm{lbf/in^2}}","mathml"=>"lbf/in2","unicode"=>"psi"},{"id"=>"psi","ascii"=>"psi","html"=>"psi","latex"=>"\\ensuremath{\\mathrm{psi}}","mathml"=>"psi","unicode"=>"lbf/in²"}],"quantity_references"=>[{"id"=>"NISTq15","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu205","type"=>"nist"}},{"power"=>-2,"unit_reference"=>{"id"=>"NISTu8","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:misc:code:[psi]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/LB_F-PER-IN2","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu208","type"=>"nist"},{"id"=>"u:inch_to_the_fourth_power","type"=>"unitsml"}],"short"=>"inch_to_the_fourth_power","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"inch to the fourth power","lang"=>"en"}],"symbols"=>[{"id"=>"in^4","ascii"=>"in^4","html"=>"in4","latex"=>"\\ensuremath{\\mathrm{in^4}}","mathml"=>"in4","unicode"=>"in⁴"}],"quantity_references"=>[{"id"=>"NISTq155","type"=>"nist"}],"root_units"=>[{"power"=>4,"unit_reference"=>{"id"=>"NISTu8","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/IN4","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu209","type"=>"nist"},{"id"=>"u:inch_cubed","type"=>"unitsml"}],"short"=>"inch_cubed","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"inch cubed","lang"=>"en"}],"symbols"=>[{"id"=>"in^3_section_modulus","ascii"=>"in^3","html"=>"in3","latex"=>"\\ensuremath{\\mathrm{in^3}}","mathml"=>"in3","unicode"=>"in³"}],"quantity_references"=>[{"id"=>"NISTq146","type"=>"nist"}],"root_units"=>[{"power"=>3,"unit_reference"=>{"id"=>"NISTu8","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/IN3","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu21","type"=>"nist"},{"id"=>"u:tesla","type"=>"unitsml"}],"short"=>"tesla","root"=>true,"unit_system_reference"=>[{"id"=>"SI_derived_special","type"=>"nist"}],"names"=>[{"value"=>"tesla","lang"=>"en"},{"value"=>"tesla","lang"=>"fr"}],"symbols"=>[{"id"=>"T","ascii"=>"T","html"=>"T","latex"=>"\\ensuremath{\\mathrm{T}}","mathml"=>"T","unicode"=>"T"}],"quantity_references"=>[{"id"=>"NISTq14","type"=>"nist"}],"si_derived_bases"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu27","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_3","type"=>"nist"}},{"power"=>-2,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu4","type"=>"nist"}}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/tesla","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:unit:si:code:T","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/T","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu210","type"=>"nist"},{"id"=>"u:foot_squared_per_second","type"=>"unitsml"}],"short"=>"foot_squared_per_second","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"foot squared per second","lang"=>"en"}],"symbols"=>[{"id"=>"ft^2*s^-1","ascii"=>"ft^2*s^-1","html"=>"ft2/s","latex"=>"\\ensuremath{\\mathrm{ft^2/s}}","mathml"=>"ft2/s","unicode"=>"ft²/s"}],"quantity_references"=>[{"id"=>"NISTq85","type"=>"nist"}],"root_units"=>[{"power"=>2,"unit_reference"=>{"id"=>"NISTu78","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/FT2-PER-SEC","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu211","type"=>"nist"},{"id"=>"u:foot_pound_force_per_second","type"=>"unitsml"}],"short"=>"foot_pound_force_per_second","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"foot pound-force per second","lang"=>"en"}],"symbols"=>[{"id"=>"ft*lbf*s^-1","ascii"=>"ft*lbf*s^-1","html"=>"ft · lbf/s","latex"=>"\\ensuremath{\\mathrm{ft\\cdot lbf/s}}","mathml"=>"ft·lbf/s","unicode"=>"ft·lbf/2"}],"quantity_references"=>[{"id"=>"NISTq20","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu78","type"=>"nist"}},{"power"=>1,"unit_reference"=>{"id"=>"NISTu205","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/FT-LB_F-PER-SEC","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu212","type"=>"nist"},{"id"=>"u:carat","type"=>"unitsml"}],"short"=>"carat","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"carat","lang"=>"en"},{"value"=>"metric carat","lang"=>"en"},{"value"=>"carat, metric","lang"=>"en"}],"symbols"=>[{"id"=>"ct","ascii"=>"ct","html"=>"ct","latex"=>"\\ensuremath{\\mathrm{ct}}","mathml"=>"ct","unicode"=>"ct"}],"quantity_references"=>[{"id"=>"NISTq2","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:misc:code:[car_m]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/CARAT","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu213","type"=>"nist"},{"id"=>"u:tex","type"=>"unitsml"}],"short"=>"tex","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"tex","lang"=>"en"}],"symbols"=>[{"id"=>"tex","ascii"=>"tex","html"=>"tex","latex"=>"\\ensuremath{\\mathrm{tex}}","mathml"=>"tex","unicode"=>"tex"}],"quantity_references"=>[{"id"=>"NISTq126","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:heat:code:tex","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/TEX","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu214","type"=>"nist"},{"id"=>"u:torr","type"=>"unitsml"}],"short"=>"torr","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"torr","lang"=>"en"}],"symbols"=>[{"id"=>"Torr","ascii"=>"Torr","html"=>"Torr","latex"=>"\\ensuremath{\\mathrm{torr}}","mathml"=>"Torr","unicode"=>"torr"}],"quantity_references"=>[{"id"=>"NISTq15","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/TORR","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu215","type"=>"nist"},{"id"=>"u:mm_water","type"=>"unitsml"}],"short"=>"mm_water","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"conventional millimeter of water","lang"=>"en"},{"value"=>"millimeter of water, conventional","lang"=>"en"},{"value"=>"millimeter of water","lang"=>"en"}],"symbols"=>[{"id"=>"mmH_2O","ascii"=>"mmH_2O","html"=>"mmH2O","latex"=>"\\ensuremath{\\mathrm{mmH_{2}O}}","mathml"=>"mmH2O","unicode"=>"mmH₂O"}],"quantity_references"=>[{"id"=>"NISTq15","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu216","type"=>"nist"},{"id"=>"u:thermo_btu","type"=>"unitsml"}],"short"=>"thermo_btu","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"British thermal unit_th","lang"=>"en"},{"value"=>"thermochemical Btu","lang"=>"en"}],"symbols"=>[{"id"=>"Btu_th","ascii"=>"Btu_th","html"=>"Btuth","latex"=>"\\ensuremath{\\mathrm{Btu_{th}}}","mathml"=>"Btuth","unicode"=>"Btu_th"}],"quantity_references"=>[{"id"=>"NISTq19","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu217","type"=>"nist"},{"id"=>"u:kilogram_force_meter_per_second","type"=>"unitsml"}],"short"=>"kilogram_force_meter_per_second","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"kilogram-force meter per second","lang"=>"en"}],"symbols"=>[{"id"=>"kgf*m*s^-1","ascii"=>"kgf*m*s^-1","html"=>"kgf · m/s","latex"=>"\\ensuremath{\\mathrm{kgf\\cdot m/s}}","mathml"=>"kgf·m/s","unicode"=>"kgf·m/s"}],"quantity_references"=>[{"id"=>"NISTq20","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu196","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_3","type"=>"nist"}},{"power"=>1,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/KiloGM_F-M-PER-SEC","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu218","type"=>"nist"},{"id"=>"u:metric_horsepower","type"=>"unitsml"}],"short"=>"metric_horsepower","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"horsepower, metric","lang"=>"en"},{"value"=>"metric horsepower","lang"=>"en"}],"symbols"=>[{"id"=>"hp_metric","ascii"=>"hp","html"=>"hp","latex"=>"\\ensuremath{\\mathrm{hp}}","mathml"=>"hp","unicode"=>"hp"}],"quantity_references"=>[{"id"=>"NISTq20","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/HP_Metric","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu22","type"=>"nist"},{"id"=>"u:henry","type"=>"unitsml"}],"short"=>"henry","root"=>true,"unit_system_reference"=>[{"id"=>"SI_derived_special","type"=>"nist"}],"names"=>[{"value"=>"henry","lang"=>"en"},{"value"=>"henry","lang"=>"fr"}],"symbols"=>[{"id"=>"H","ascii"=>"H","html"=>"H","latex"=>"\\ensuremath{\\mathrm{H}}","mathml"=>"H","unicode"=>"H"}],"quantity_references"=>[{"id"=>"NISTq32","type"=>"nist"}],"si_derived_bases"=>[{"power"=>2,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}},{"power"=>1,"unit_reference"=>{"id"=>"NISTu27","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_3","type"=>"nist"}},{"power"=>-2,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}},{"power"=>-2,"unit_reference"=>{"id"=>"NISTu4","type"=>"nist"}}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/henry","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:unit:si:code:H","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/H","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu22.u1e-1/1","type"=>"nist"},{"id"=>"u:henry_per_meter","type"=>"unitsml"}],"short"=>"henry_per_meter","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"henry per meter","lang"=>"en"}],"symbols"=>[{"id"=>"H*m^-1","ascii"=>"H*m^-1","html"=>"H/m","latex"=>"\\ensuremath{\\mathrm{H/m}}","mathml"=>"H/m","unicode"=>"H/m"}],"quantity_references"=>[{"id"=>"NISTq72","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu22","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/H-PER-M","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu221","type"=>"nist"},{"id"=>"u:watt_per_square_meter_kelvin","type"=>"unitsml"}],"short"=>"watt_per_square_meter_kelvin","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"watt per square meter kelvin","lang"=>"en"}],"symbols"=>[{"id"=>"W*m^-2*K^-1","ascii"=>"W*m^-2*K^-1","html"=>"W/(m 2 · K)","latex"=>"\\ensuremath{\\mathrm{W/(m^2\\cdot K)}}","mathml"=>"W/(m2·K)","unicode"=>"W/(m²·K)"}],"quantity_references"=>[{"id"=>"NISTq180","type"=>"nist"},{"id"=>"NISTq181","type"=>"nist"}],"root_units"=>[{"power"=>-1,"unit_reference"=>{"id"=>"NISTu5","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/W-PER-M2-K","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu222","type"=>"nist"},{"id"=>"u:lambert","type"=>"unitsml"}],"short"=>"lambert","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"lambert","lang"=>"en"}],"symbols"=>[{"id"=>"Lambert","ascii"=>"L","html"=>"L","latex"=>"\\ensuremath{\\mathrm{L}}","mathml"=>"L","unicode"=>"L"}],"quantity_references"=>[{"id"=>"NISTq56","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:cgs:code:Lmb","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/LA","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu223","type"=>"nist"},{"id"=>"u:gilbert","type"=>"unitsml"}],"short"=>"gilbert","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"gilbert","lang"=>"en"}],"symbols"=>[{"id"=>"Gi","ascii"=>"Gi","html"=>"Gi","latex"=>"\\ensuremath{\\mathrm{Gi}}","mathml"=>"Gi","unicode"=>"Gi"}],"quantity_references"=>[{"id"=>"NISTq161","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:cgs:code:Gb","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/GI","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu224","type"=>"nist"},{"id"=>"u:debye","type"=>"unitsml"}],"short"=>"debye","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"debye","lang"=>"en"}],"symbols"=>[{"id"=>"D","ascii"=>"D","html"=>"D","latex"=>"\\ensuremath{\\mathrm{D}}","mathml"=>"D","unicode"=>"D"}],"quantity_references"=>[{"id"=>"NISTq162","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/DEBYE","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu225","type"=>"nist"},{"id"=>"u:abwatt","type"=>"unitsml"}],"short"=>"abwatt","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"abwatt","lang"=>"en"}],"symbols"=>[{"id"=>"aW (Cardelli)","ascii"=>"aW (Cardelli)","html"=>"aW","latex"=>"\\ensuremath{\\mathrm{aW}}","mathml"=>"aW","unicode"=>"aW"}],"quantity_references"=>[{"id"=>"NISTq20","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu226","type"=>"nist"},{"id"=>"u:slug","type"=>"unitsml"}],"short"=>"slug","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"slug","lang"=>"en"}],"symbols"=>[{"id"=>"slug","ascii"=>"slug","html"=>"slug","latex"=>"\\ensuremath{\\mathrm{D}}","mathml"=>"slug","unicode"=>"slug"}],"quantity_references"=>[{"id"=>"NISTq2","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/SLUG","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu227","type"=>"nist"},{"id"=>"u:thermo_calorie","type"=>"unitsml"}],"short"=>"thermo_calorie","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"thermochemical calorie","lang"=>"en"},{"value"=>"calorie_th","lang"=>"en"},{"value"=>"calorie","lang"=>"en"}],"symbols"=>[{"id"=>"cal_th","ascii"=>"cal_th","html"=>"calth","latex"=>"\\ensuremath{\\mathrm{cal_th}}","mathml"=>"calth","unicode"=>"cal_th"},{"id"=>"cal","ascii"=>"cal","html"=>"cal","latex"=>"\\ensuremath{\\mathrm{cal}}","mathml"=>"cal","unicode"=>"cal"}],"quantity_references"=>[{"id"=>"NISTq17","type"=>"nist"},{"id"=>"NISTq18","type"=>"nist"},{"id"=>"NISTq182","type"=>"nist"},{"id"=>"NISTq183","type"=>"nist"},{"id"=>"NISTq19","type"=>"nist"},{"id"=>"NISTq77","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:heat:code:cal_th","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/CAL_TH","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu228","type"=>"nist"},{"id"=>"u:short_ton","type"=>"unitsml"}],"short"=>"short_ton","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"short ton","lang"=>"en"},{"value"=>"ton","lang"=>"en"}],"symbols"=>[{"id"=>"ton_short","ascii"=>"ton","html"=>"t","latex"=>"\\ensuremath{\\mathrm{t}}","mathml"=>"t","unicode"=>"t"}],"quantity_references"=>[{"id"=>"NISTq2","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:avoirdupois:code:[ston_av]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/TON_SHORT","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu229","type"=>"nist"},{"id"=>"u:long_ton","type"=>"unitsml"}],"short"=>"long_ton","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"long ton","lang"=>"en"},{"value"=>"ton","lang"=>"en"}],"symbols"=>[{"id"=>"ton_long","ascii"=>"ton","html"=>"t","latex"=>"\\ensuremath{\\mathrm{t}}","mathml"=>"t","unicode"=>"t"}],"quantity_references"=>[{"id"=>"NISTq2","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:avoirdupois:code:[lton_av]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/TON_LONG","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu23","type"=>"nist"},{"id"=>"u:degree_Celsius","type"=>"unitsml"}],"short"=>"degree_Celsius","root"=>true,"unit_system_reference"=>[{"id"=>"SI_derived_special","type"=>"nist"}],"names"=>[{"value"=>"degree Celsius","lang"=>"en"},{"value"=>"degré Celsius","lang"=>"fr"}],"symbols"=>[{"id"=>"degC","ascii"=>"degC","html"=>"°C","latex"=>"\\ensuremath{\\mathrm{^{\\circ}C}}","mathml"=>"°C","unicode"=>"°C"}],"quantity_references"=>[{"id"=>"NISTq192","type"=>"nist"},{"id"=>"NISTq34","type"=>"nist"}],"si_derived_bases"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu5","type"=>"nist"}}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/degreeCelsius","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:unit:si:code:Cel","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/DEG_C","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_interval","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu230","type"=>"nist"},{"id"=>"u:hundredweight","type"=>"unitsml"}],"short"=>"hundredweight","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"hundredweight (short, 100 lb)","lang"=>"en"},{"value"=>"hundredweight","lang"=>"en"}],"symbols"=>[{"id"=>"cwt (US)","ascii"=>"cwt (US)","html"=>"cwt (US)","latex"=>"\\ensuremath{\\mathrm{cwt (US)}}","mathml"=>"cwt (US)","unicode"=>"cwt (US)"}],"quantity_references"=>[{"id"=>"NISTq2","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu203","type"=>"nist"}}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu231","type"=>"nist"},{"id"=>"u:troy_ounce","type"=>"unitsml"}],"short"=>"troy_ounce","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"ounce (troy or apothecary)","lang"=>"en"},{"value"=>"troy ounce","lang"=>"en"},{"value"=>"ounce","lang"=>"en"}],"symbols"=>[{"id"=>"oz_troy","ascii"=>"oz","html"=>"oz","latex"=>"\\ensuremath{\\mathrm{oz}}","mathml"=>"oz","unicode"=>"oz"}],"quantity_references"=>[{"id"=>"NISTq2","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:avoirdupois:code:[oz_av]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/OZ","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu232","type"=>"nist"},{"id"=>"u:troy_pound","type"=>"unitsml"}],"short"=>"troy_pound","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"pound (troy or apothecary)","lang"=>"en"},{"value"=>"troy pound","lang"=>"en"},{"value"=>"pound","lang"=>"en"}],"symbols"=>[{"id"=>"lb_troy","ascii"=>"lb","html"=>"lb","latex"=>"\\ensuremath{\\mathrm{lb}}","mathml"=>"lb","unicode"=>"lb"}],"quantity_references"=>[{"id"=>"NISTq2","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:avoirdupois:code:[lb_av]","authority"=>"ucum"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu233","type"=>"nist"},{"id"=>"u:pennyweight","type"=>"unitsml"}],"short"=>"pennyweight","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"pennyweight","lang"=>"en"}],"symbols"=>[{"id"=>"dwt (troy)","ascii"=>"dwt (troy)","html"=>"dwt (troy)","latex"=>"\\ensuremath{\\mathrm{dwt (troy)}}","mathml"=>"dwt (troy)","unicode"=>"dwt (troy)"}],"quantity_references"=>[{"id"=>"NISTq2","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:troy:code:[pwt_tr]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/PENNYWEIGHT","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu234","type"=>"nist"},{"id"=>"u:apothecaries_dram","type"=>"unitsml"}],"short"=>"apothecaries_dram","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"dram (apothecary)","lang"=>"en"},{"value"=>"apothecary dram","lang"=>"en"},{"value"=>"dram","lang"=>"en"}],"symbols"=>[{"id"=>"dr","ascii"=>"dr","html"=>"dr","latex"=>"\\ensuremath{\\mathrm{dr}}","mathml"=>"dr","unicode"=>"dr"}],"quantity_references"=>[{"id"=>"NISTq2","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:avoirdupois:code:[dr_av]","authority"=>"ucum"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu235","type"=>"nist"},{"id"=>"u:scruple","type"=>"unitsml"}],"short"=>"scruple","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"scruple","lang"=>"en"},{"value"=>"apothecary scruple","lang"=>"en"}],"symbols"=>[{"id"=>"scr (ap.)","ascii"=>"scr (ap.)","html"=>"scr (ap.)","latex"=>"\\ensuremath{\\mathrm{scr (ap.)}}","mathml"=>"scr (ap.)","unicode"=>"scr (ap.)"}],"quantity_references"=>[{"id"=>"NISTq2","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:apoth:code:[sc_ap]","authority"=>"ucum"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu236","type"=>"nist"},{"id"=>"u:poundal","type"=>"unitsml"}],"short"=>"poundal","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"poundal","lang"=>"en"}],"symbols"=>[{"id"=>"pdl","ascii"=>"pdl","html"=>"pdl","latex"=>"\\ensuremath{\\mathrm{pdl}}","mathml"=>"pdl","unicode"=>"pdl"}],"quantity_references"=>[{"id"=>"NISTq128","type"=>"nist"},{"id"=>"NISTq13","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/PDL","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu237","type"=>"nist"},{"id"=>"u:kip","type"=>"unitsml"}],"short"=>"kip","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"kip","lang"=>"en"}],"symbols"=>[{"id"=>"kip","ascii"=>"kip","html"=>"kip","latex"=>"\\ensuremath{\\mathrm{kip}}","mathml"=>"kip","unicode"=>"kip"}],"quantity_references"=>[{"id"=>"NISTq2","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/KIP_F","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu238","type"=>"nist"},{"id"=>"u:ton_force","type"=>"unitsml"}],"short"=>"ton_force","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"ton-force (2000 lb)","lang"=>"en"}],"symbols"=>[{"id"=>"ton-force (2000 lb)","ascii"=>"ton-force (2000 lb)","html"=>"ton-force (2000 lb)","latex"=>"\\ensuremath{\\mathrm{ton-force (2000 lb)}}","mathml"=>"ton-force (2000 lb)","unicode"=>"ton-force (2000 lb)"}],"quantity_references"=>[{"id"=>"NISTq128","type"=>"nist"},{"id"=>"NISTq13","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu239","type"=>"nist"},{"id"=>"u:barye","type"=>"unitsml"}],"short"=>"barye","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"barye","lang"=>"en"}],"symbols"=>[{"id"=>"barye","ascii"=>"barye","html"=>"barye","latex"=>"\\ensuremath{\\mathrm{barye}}","mathml"=>"barye","unicode"=>"barye"}],"quantity_references"=>[{"id"=>"NISTq15","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/BARYE","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu240","type"=>"nist"},{"id"=>"u:electronvolt","type"=>"unitsml"}],"short"=>"electronvolt","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_acceptable","type"=>"nist"}],"names"=>[{"value"=>"electronvolt","lang"=>"en"},{"value"=>"électronvolt","lang"=>"fr"}],"symbols"=>[{"id"=>"eV","ascii"=>"eV","html"=>"eV","latex"=>"\\ensuremath{\\mathrm{eV}}","mathml"=>"eV","unicode"=>"eV"}],"quantity_references"=>[{"id"=>"NISTq17","type"=>"nist"}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/electronvolt","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:unit:iso1000:code:eV","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/EV","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu241","type"=>"nist"},{"id"=>"u:unified_atomic_mass_unit","type"=>"unitsml"}],"short"=>"unified_atomic_mass_unit","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_acceptable","type"=>"nist"}],"names"=>[{"value"=>"unified atomic mass unit","lang"=>"en"}],"symbols"=>[{"id"=>"u","ascii"=>"u","html"=>"u","latex"=>"\\ensuremath{\\mathrm{u}}","mathml"=>"u","unicode"=>"u"}],"quantity_references"=>[{"id"=>"NISTq2","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:iso1000:code:u","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/U","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu242","type"=>"nist"},{"id"=>"u:natural_unit_of_velocity","type"=>"unitsml"}],"short"=>"natural_unit_of_velocity","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"natural unit of velocity","lang"=>"en"}],"symbols"=>[{"id"=>"c_0","ascii"=>"c_0","html"=>"c0","latex"=>"\\ensuremath{\\mathit{c}_{0}}","mathml"=>"c0","unicode"=>"𝑐₀"},{"id"=>"c","ascii"=>"c","html"=>"c","latex"=>"\\ensuremath{\\mathit{c}}","mathml"=>"c","unicode"=>"𝑐"}],"quantity_references"=>[{"id"=>"NISTq12","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/C","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu243","type"=>"nist"},{"id"=>"u:natural_unit_of_action","type"=>"unitsml"}],"short"=>"natural_unit_of_action","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"natural unit of action","lang"=>"en"}],"symbols"=>[{"id"=>"h-bar","ascii"=>"h-bar","html"=>"ħ","latex"=>"\\ensuremath{\\mathit{\\hbar}}","mathml"=>"ħ","unicode"=>"ℏ"}],"quantity_references"=>[{"id"=>"NISTq154","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu244","type"=>"nist"},{"id"=>"u:natural_unit_of_mass","type"=>"unitsml"}],"short"=>"natural_unit_of_mass","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"natural unit of mass","lang"=>"en"}],"symbols"=>[{"id"=>"m_e","ascii"=>"m_e","html"=>"me","latex"=>"\\ensuremath{\\mathit{m}_\\mathrm{e}}","mathml"=>"me","unicode"=>"𝑚ₑ"}],"quantity_references"=>[{"id"=>"NISTq2","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu245","type"=>"nist"},{"id"=>"u:natural_unit_of_time","type"=>"unitsml"}],"short"=>"natural_unit_of_time","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"natural unit of time","lang"=>"en"}],"symbols"=>[{"id"=>"h-bar*(m_e*c^2)","ascii"=>"h-bar*(m_e*c^2)","html"=>"ħ/mec2","latex"=>"\\ensuremath{\\mathit{\\hbar}/(\\mathit{m}_\\mathrm{e}\\mathit{c}^\\mathrm{2}})","mathml"=>"ħ/mec2","unicode"=>"ℏ/𝑚ₑ𝑐²"}],"quantity_references"=>[{"id"=>"NISTq3","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu246","type"=>"nist"},{"id"=>"u:atomic_unit_of_charge","type"=>"unitsml"}],"short"=>"atomic_unit_of_charge","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"atomic unit of charge","lang"=>"en"}],"symbols"=>[{"id"=>"e","ascii"=>"e","html"=>"e","latex"=>"\\ensuremath{\\mathit{e}}","mathml"=>"e","unicode"=>"𝑒"}],"quantity_references"=>[{"id"=>"NISTq22","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/E","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu247","type"=>"nist"},{"id"=>"u:atomic_unit_of_mass","type"=>"unitsml"}],"short"=>"atomic_unit_of_mass","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"atomic unit of mass","lang"=>"en"}],"symbols"=>[{"id"=>"m_e_atomic","ascii"=>"m_e","html"=>"me","latex"=>"\\ensuremath{\\mathit{m}_\\mathrm{e}}","mathml"=>"me","unicode"=>"𝑚ₑ"}],"quantity_references"=>[{"id"=>"NISTq2","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu248","type"=>"nist"},{"id"=>"u:atomic_unit_of_action","type"=>"unitsml"}],"short"=>"atomic_unit_of_action","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"atomic unit of action","lang"=>"en"}],"symbols"=>[{"id"=>"h-bar_atomic","ascii"=>"h-bar","html"=>"ħ","latex"=>"\\ensuremath{\\mathit{\\hbar}}","mathml"=>"ħ","unicode"=>"ℏ"}],"quantity_references"=>[{"id"=>"NISTq154","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu249","type"=>"nist"},{"id"=>"u:atomic_unit_of_length","type"=>"unitsml"}],"short"=>"atomic_unit_of_length","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"atomic unit of length","lang"=>"en"}],"symbols"=>[{"id"=>"a_0","ascii"=>"a_0","html"=>"a0","latex"=>"\\ensuremath{\\mathit{a}_\\mathrm{0}}","mathml"=>"a0","unicode"=>"𝑎₀"}],"quantity_references"=>[{"id"=>"NISTq1","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu25","type"=>"nist"},{"id"=>"u:becquerel","type"=>"unitsml"}],"short"=>"becquerel","root"=>true,"unit_system_reference"=>[{"id"=>"SI_derived_special","type"=>"nist"}],"names"=>[{"value"=>"becquerel","lang"=>"en"},{"value"=>"becquerel","lang"=>"fr"}],"symbols"=>[{"id"=>"Bq","ascii"=>"Bq","html"=>"Bq","latex"=>"\\ensuremath{\\mathrm{Bq}}","mathml"=>"Bq","unicode"=>"Bq"}],"quantity_references"=>[{"id"=>"NISTq35","type"=>"nist"}],"si_derived_bases"=>[{"power"=>-1,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/becquerel","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:unit:si:code:Bq","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/BQ","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu250","type"=>"nist"},{"id"=>"u:atomic_unit_of_energy","type"=>"unitsml"}],"short"=>"atomic_unit_of_energy","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"atomic unit of energy","lang"=>"en"}],"symbols"=>[{"id"=>"E_h","ascii"=>"E_h","html"=>"Eh","latex"=>"\\ensuremath{\\mathit{E}_\\mathrm{h}}","mathml"=>"Eh","unicode"=>"𝐸ₕ"}],"quantity_references"=>[{"id"=>"NISTq17","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu251","type"=>"nist"},{"id"=>"u:atomic_unit_of_time","type"=>"unitsml"}],"short"=>"atomic_unit_of_time","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"atomic unit of time","lang"=>"en"}],"symbols"=>[{"id"=>"h-bar/E_h","ascii"=>"h-bar/E_h","html"=>"ħ/Eh","latex"=>"\\ensuremath{\\mathit{\\hbar}/\\mathit{E}_\\mathrm{h}}","mathml"=>"ħ/Eh","unicode"=>"ℏ/𝐸ₕ"}],"quantity_references"=>[{"id"=>"NISTq3","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu252","type"=>"nist"},{"id"=>"u:atomic_unit_of_magnetizability","type"=>"unitsml"}],"short"=>"atomic_unit_of_magnetizability","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"atomic unit of magnetizability","lang"=>"en"}],"symbols"=>[{"id"=>"e^2*a_0^2*m_e-1","ascii"=>"e^2*a_0^2*m_e-1","html"=>"e2a02/me","latex"=>"\\ensuremath{\\mathit{e}^2\\mathit{a}_0^2/\\mathit{m}_\\mathrm{e}}","mathml"=>"e2a02/me","unicode"=>"𝑒²𝑎₀²/𝑚ₑ"}],"quantity_references"=>[{"id"=>"NISTq163","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu253","type"=>"nist"},{"id"=>"u:atomic_unit_of_magnetic_flux_density","type"=>"unitsml"}],"short"=>"atomic_unit_of_magnetic_flux_density","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"atomic unit of magnetic flux density","lang"=>"en"}],"symbols"=>[{"id"=>"h-bar*(e*a_0^2)-1","ascii"=>"h-bar*(e*a_0^2)-1","html"=>"ħ/ea02","latex"=>"\\ensuremath{\\mathit{\\hbar}/\\mathit{e}a_0^2}","mathml"=>"ħ/ea02","unicode"=>"ℏ/𝑒𝑎₀²"}],"quantity_references"=>[{"id"=>"NISTq14","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu254","type"=>"nist"},{"id"=>"u:atomic_unit_of_magnetic_dipole_moment","type"=>"unitsml"}],"short"=>"atomic_unit_of_magnetic_dipole_moment","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"atomic unit of magnetic dipole moment","lang"=>"en"}],"symbols"=>[{"id"=>"h-bar*e*(m_e)-1","ascii"=>"h-bar*e*(m_e)-1","html"=>"ħe/me","latex"=>"\\ensuremath{\\mathit{\\hbar e}/\\mathit{m}_\\mathrm{e}}","mathml"=>"ħe/me","unicode"=>"ℏ𝑒/𝑚ₑ"}],"quantity_references"=>[{"id"=>"NISTq164","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu255","type"=>"nist"},{"id"=>"u:atomic_unit_of_momentum","type"=>"unitsml"}],"short"=>"atomic_unit_of_momentum","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"atomic unit of momentum","lang"=>"en"}],"symbols"=>[{"id"=>"h-bar*(a_0)-1","ascii"=>"h-bar*(a_0)-1","html"=>"ħ/a0","latex"=>"\\ensuremath{\\mathit{\\hbar}/\\mathit{a}_0}","mathml"=>"ħ/a0","unicode"=>"ℏ/𝑎₀"}],"quantity_references"=>[{"id"=>"NISTq131","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu256","type"=>"nist"},{"id"=>"u:atomic_unit_of_charge_density","type"=>"unitsml"}],"short"=>"atomic_unit_of_charge_density","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"atomic unit of charge density","lang"=>"en"}],"symbols"=>[{"id"=>"e*(a_0^3)","ascii"=>"e*(a_0^3)","html"=>"ea03","latex"=>"\\ensuremath{\\mathit{e}\\mathit{a}_0^{3}}","mathml"=>"ea03","unicode"=>"𝑒𝑎₀³"}],"quantity_references"=>[{"id"=>"NISTq69","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu257","type"=>"nist"},{"id"=>"u:atomic_unit_of_current","type"=>"unitsml"}],"short"=>"atomic_unit_of_current","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"atomic unit of current","lang"=>"en"}],"symbols"=>[{"id"=>"eE_h*h-bar^-1","ascii"=>"eE_h*h-bar^-1","html"=>"eEh/ħ","latex"=>"\\ensuremath{\\mathit{e}E_{h}/\\mathit{\\hbar}}","mathml"=>"eEh/ħ","unicode"=>"𝑒𝐸ₕ/ℏ"}],"quantity_references"=>[{"id"=>"NISTq4","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu258","type"=>"nist"},{"id"=>"u:atomic_unit_of_electric_dipole_moment","type"=>"unitsml"}],"short"=>"atomic_unit_of_electric_dipole_moment","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"atomic unit of electric dipole moment","lang"=>"en"}],"symbols"=>[{"id"=>"e*a_0","ascii"=>"e*a_0","html"=>"ea0","latex"=>"\\ensuremath{\\mathit{e}\\mathit{a}_0}","mathml"=>"ea0","unicode"=>"𝑒𝑎₀"}],"quantity_references"=>[{"id"=>"NISTq162","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu259","type"=>"nist"},{"id"=>"u:atomic_unit_of_electric_field","type"=>"unitsml"}],"short"=>"atomic_unit_of_electric_field","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"atomic unit of electric field","lang"=>"en"}],"symbols"=>[{"id"=>"E_h*(e*a_0)","ascii"=>"E_h*(e*a_0)","html"=>"Eh/ea0","latex"=>"\\ensuremath{\\mathit{E}_{h}/\\mathit{\\e}\\mathit{a}_0}","mathml"=>"Eh/ea0","unicode"=>"𝐸ₕ/𝑒𝑎₀"}],"quantity_references"=>[{"id"=>"NISTq68","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu26","type"=>"nist"},{"id"=>"u:fermi","type"=>"unitsml"}],"short"=>"fermi","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"fermi","lang"=>"en"}],"symbols"=>[{"id"=>"fermi","ascii"=>"fermi","html"=>"fermi","latex"=>"\\ensuremath{\\mathrm{fermi}}","mathml"=>"fermi","unicode"=>"fermi"}],"quantity_references"=>[{"id"=>"NISTq1","type"=>"nist"},{"id"=>"NISTq48","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_-15","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/FM","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu260","type"=>"nist"},{"id"=>"u:atomic_unit_of_electric_field_gradient","type"=>"unitsml"}],"short"=>"atomic_unit_of_electric_field_gradient","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"atomic unit of electric field gradient","lang"=>"en"}],"symbols"=>[{"id"=>"E_h*(e*a_0^2)","ascii"=>"E_h*(e*a_0^2)","html"=>"Eh/ea02","latex"=>"\\ensuremath{\\mathit{E}_{h}/\\mathit{\\e}\\mathit{a}_0^2}","mathml"=>"Eh/ea02","unicode"=>"𝐸ₕ/𝑒𝑎₀²"}],"quantity_references"=>[{"id"=>"NISTq165","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu261","type"=>"nist"},{"id"=>"u:atomic_unit_of_electric_potential","type"=>"unitsml"}],"short"=>"atomic_unit_of_electric_potential","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"atomic unit of electric potential","lang"=>"en"}],"symbols"=>[{"id"=>"E_h*e-1","ascii"=>"E_h*e-1","html"=>"Eh/e","latex"=>"\\ensuremath{\\mathit{E}_{h}/\\mathit{\\e}}","mathml"=>"Eh/e","unicode"=>"𝐸ₕ/𝑒"}],"quantity_references"=>[{"id"=>"NISTq166","type"=>"nist"},{"id"=>"NISTq24","type"=>"nist"},{"id"=>"NISTq26","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu262","type"=>"nist"},{"id"=>"u:atomic_unit_of_force","type"=>"unitsml"}],"short"=>"atomic_unit_of_force","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"atomic unit of force","lang"=>"en"}],"symbols"=>[{"id"=>"E_h*(a_0)-1","ascii"=>"E_h*(a_0)-1","html"=>"Eh/a0","latex"=>"\\ensuremath{\\mathit{E}_{h}/\\mathit{a}_0}","mathml"=>"Eh/a0","unicode"=>"𝐸ₕ/𝑎₀"}],"quantity_references"=>[{"id"=>"NISTq128","type"=>"nist"},{"id"=>"NISTq13","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu263","type"=>"nist"},{"id"=>"u:atomic_unit_of_electric_quadrupole_moment","type"=>"unitsml"}],"short"=>"atomic_unit_of_electric_quadrupole_moment","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"atomic unit of electric quadrupole moment","lang"=>"en"}],"symbols"=>[{"id"=>"e*a_0^2","ascii"=>"e*a_0^2","html"=>"ea02","latex"=>"\\ensuremath{\\mathit{e}\\mathit{a}_0^2}","mathml"=>"ea0>2","unicode"=>"𝑒𝑎₀²"}],"quantity_references"=>[{"id"=>"NISTq167","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu264","type"=>"nist"},{"id"=>"u:atomic_unit_of_electric_polarizability","type"=>"unitsml"}],"short"=>"atomic_unit_of_electric_polarizability","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"atomic unit of electric polarizability","lang"=>"en"}],"symbols"=>[{"id"=>"e^2*a_0^2*(E_h)^-1","ascii"=>"e^2*a_0^2*(E_h)^-1","html"=>"e2a02/Eh","latex"=>"\\ensuremath{\\mathit{e}\\mathit{a}_0^2/\\mathit{E}_h}","mathml"=>"e2a02/Eh","unicode"=>"𝑒²𝑎₀²/𝐸ₕ"}],"quantity_references"=>[{"id"=>"NISTq168","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu265","type"=>"nist"},{"id"=>"u:statohm","type"=>"unitsml"}],"short"=>"statohm","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"statohm","lang"=>"en"},{"value"=>"ESU of resistance","lang"=>"en"}],"symbols"=>[{"id"=>"statohm","ascii"=>"statohm","html"=>"statohm","latex"=>"\\ensuremath{\\mathrm{statohm}}","mathml"=>"statohm","unicode"=>"statohm"}],"quantity_references"=>[{"id"=>"NISTq28","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/OHM_Stat","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu266","type"=>"nist"},{"id"=>"u:statfarad","type"=>"unitsml"}],"short"=>"statfarad","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"statfarad","lang"=>"en"},{"value"=>"ESU of capacitance","lang"=>"en"}],"symbols"=>[{"id"=>"statF","ascii"=>"statF","html"=>"statF","latex"=>"\\ensuremath{\\mathrm{statF}}","mathml"=>"statF","unicode"=>"statF"}],"quantity_references"=>[{"id"=>"NISTq169","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/FARAD_Stat","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu267","type"=>"nist"},{"id"=>"u:statampere","type"=>"unitsml"}],"short"=>"statampere","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"statampere","lang"=>"en"},{"value"=>"ESU of current","lang"=>"en"}],"symbols"=>[{"id"=>"statA","ascii"=>"statA","html"=>"statA","latex"=>"\\ensuremath{\\mathrm{statA}}","mathml"=>"statA","unicode"=>"statA"}],"quantity_references"=>[{"id"=>"NISTq170","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/A_Stat","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu268","type"=>"nist"},{"id"=>"u:statvolt","type"=>"unitsml"}],"short"=>"statvolt","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"statvolt","lang"=>"en"},{"value"=>"ESU of Electric potential","lang"=>"en"}],"symbols"=>[{"id"=>"statV","ascii"=>"statV","html"=>"statV","latex"=>"statV","mathml"=>"statV","unicode"=>"statV"}],"quantity_references"=>[{"id"=>"NISTq166","type"=>"nist"},{"id"=>"NISTq24","type"=>"nist"},{"id"=>"NISTq26","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/V_Stat","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu269","type"=>"nist"},{"id"=>"u:stathenry","type"=>"unitsml"}],"short"=>"stathenry","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"stathenry","lang"=>"en"},{"value"=>"ESU of inductance","lang"=>"en"}],"symbols"=>[{"id"=>"statH","ascii"=>"statH","html"=>"statH","latex"=>"\\ensuremath{\\mathrm{statH}}","mathml"=>"statH","unicode"=>"statH"}],"quantity_references"=>[{"id"=>"NISTq171","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/H_Stat","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu27","type"=>"nist"},{"id"=>"u:gram","type"=>"unitsml"}],"short"=>"gram","root"=>true,"unit_system_reference"=>[{"id"=>"si-base","type"=>"unitsml"}],"names"=>[{"value"=>"gram","lang"=>"en"},{"value"=>"gramme","lang"=>"fr"}],"symbols"=>[{"id"=>"g","ascii"=>"g","html"=>"g","latex"=>"\\ensuremath{\\mathrm{g}}","mathml"=>"g","unicode"=>"g"}],"quantity_references"=>[{"id"=>"NISTq2","type"=>"nist"}],"si_derived_bases"=>[{"power"=>-3,"unit_reference"=>{"id"=>"NISTu2","type"=>"nist"}}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/gram","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:base-unit:code:g","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/GM","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu270","type"=>"nist"},{"id"=>"u:statmho","type"=>"unitsml"}],"short"=>"statmho","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"statmho","lang"=>"en"},{"value"=>"ESU of conductance","lang"=>"en"}],"symbols"=>[{"id"=>"statmho","ascii"=>"statmho","html"=>"statmho","latex"=>"\\ensuremath{\\mathrm{statmho}}","mathml"=>"statmho","unicode"=>"statmho"}],"quantity_references"=>[{"id"=>"NISTq29","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/MHO_Stat","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu271","type"=>"nist"},{"id"=>"u:statcoulomb","type"=>"unitsml"}],"short"=>"statcoulomb","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"statcoulomb","lang"=>"en"},{"value"=>"ESU of charge","lang"=>"en"}],"symbols"=>[{"id"=>"statcoulomb","ascii"=>"statcoulomb","html"=>"statcoulomb","latex"=>"\\ensuremath{\\mathrm{statcoulomb}}","mathml"=>"statcoulomb","unicode"=>"statcoulomb"}],"quantity_references"=>[{"id"=>"NISTq22","type"=>"nist"},{"id"=>"NISTq23","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/C_Stat","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu272","type"=>"nist"},{"id"=>"u:statweber","type"=>"unitsml"}],"short"=>"statweber","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"statweber","lang"=>"en"}],"symbols"=>[{"id"=>"statWb","ascii"=>"statWb","html"=>"statWb","latex"=>"\\ensuremath{\\mathrm{statWb}}","mathml"=>"statWb","unicode"=>"statWb"}],"quantity_references"=>[{"id"=>"NISTq30","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu273","type"=>"nist"},{"id"=>"u:stattesla","type"=>"unitsml"}],"short"=>"stattesla","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"stattesla","lang"=>"en"}],"symbols"=>[{"id"=>"statT","ascii"=>"statT","html"=>"statT","latex"=>"\\ensuremath{\\mathrm{statT}}","mathml"=>"statT","unicode"=>"statT"}],"quantity_references"=>[{"id"=>"NISTq14","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu274","type"=>"nist"},{"id"=>"u:statwatt","type"=>"unitsml"}],"short"=>"statwatt","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"statwatt","lang"=>"en"}],"symbols"=>[{"id"=>"statwatt","ascii"=>"statwatt","html"=>"statwatt","latex"=>"\\ensuremath{\\mathrm{statwatt}}","mathml"=>"statwatt","unicode"=>"statwatt"}],"quantity_references"=>[{"id"=>"NISTq20","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu275","type"=>"nist"},{"id"=>"u:av_dram","type"=>"unitsml"}],"short"=>"av_dram","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"dram (avoirdupois)","lang"=>"en"},{"value"=>"dram","lang"=>"en"}],"symbols"=>[{"id"=>"dr (avdp)","ascii"=>"dr (avdp)","html"=>"dr (avdp)","latex"=>"\\ensuremath{\\mathrm{dr~(avdp)}}","mathml"=>"dr (avdp)","unicode"=>"dr (avdp)"}],"quantity_references"=>[{"id"=>"NISTq2","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:avoirdupois:code:[dr_av]","authority"=>"ucum"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu276","type"=>"nist"},{"id"=>"u:footcandle","type"=>"unitsml"}],"short"=>"footcandle","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"footcandle","lang"=>"en"}],"symbols"=>[{"id"=>"ft.c","ascii"=>"ft.c","html"=>"ft.c","latex"=>"\\ensuremath{\\mathrm{ft.c}}","mathml"=>"ft.c","unicode"=>"ft.c"}],"quantity_references"=>[{"id"=>"NISTq47","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu277","type"=>"nist"},{"id"=>"u:footlambert","type"=>"unitsml"}],"short"=>"footlambert","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"footlambert","lang"=>"en"}],"symbols"=>[{"id"=>"ft.L","ascii"=>"ft.L","html"=>"ft.L","latex"=>"\\ensuremath{\\mathrm{ft.L}}","mathml"=>"ft.L","unicode"=>"ft.L"}],"quantity_references"=>[{"id"=>"NISTq56","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu278","type"=>"nist"},{"id"=>"u:computer_pica","type"=>"unitsml"}],"short"=>"computer_pica","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"pica (computer)","lang"=>"en"}],"symbols"=>[{"id"=>"pica_computer","ascii"=>"pc","html"=>"pc","latex"=>"\\ensuremath{\\mathrm{pc}}","mathml"=>"pc","unicode"=>"pc"}],"quantity_references"=>[{"id"=>"NISTq1","type"=>"nist"},{"id"=>"NISTq48","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:iso1000:code:pc","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/PARSEC","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu279","type"=>"nist"},{"id"=>"u:printers_pica","type"=>"unitsml"}],"short"=>"printers_pica","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"pica (printer's)","lang"=>"en"}],"symbols"=>[{"id"=>"pica_printer","ascii"=>"pc","html"=>"pc","latex"=>"\\ensuremath{\\mathrm{pc}}","mathml"=>"pc","unicode"=>"pc"}],"quantity_references"=>[{"id"=>"NISTq1","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:iso1000:code:pc","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/PARSEC","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu27p10'3.u1.u3e-1/1","type"=>"nist"},{"id"=>"u:kilogram_meter_per_second","type"=>"unitsml"}],"short"=>"kilogram_meter_per_second","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"kilogram meter per second","lang"=>"en"}],"symbols"=>[{"id"=>"kg*m*s^-1","ascii"=>"kg*m*s^-1","html"=>"kg · m/s","latex"=>"\\ensuremath{\\mathrm{kg\\cdot m/s}}","mathml"=>"kg·m/s","unicode"=>"N·m/s"}],"quantity_references"=>[{"id"=>"NISTq131","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu27","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_3","type"=>"nist"}},{"power"=>1,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu27p10'3.u1e-1/1","type"=>"nist"},{"id"=>"u:kilogram_per_meter","type"=>"unitsml"}],"short"=>"kilogram_per_meter","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"kilogram per meter","lang"=>"en"}],"symbols"=>[{"id"=>"kg*m^-1","ascii"=>"kg*m^-1","html"=>"kg/m","latex"=>"\\ensuremath{\\mathrm{kg/m}}","mathml"=>"kg/m","unicode"=>"kg/m"}],"quantity_references"=>[{"id"=>"NISTq126","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu27","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_3","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/KiloGM-PER-M","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu27p10'3.u1e-2/1","type"=>"nist"},{"id"=>"u:kilogram_per_square_meter","type"=>"unitsml"}],"short"=>"kilogram_per_square_meter","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"kilogram per square meter","lang"=>"en"}],"symbols"=>[{"id"=>"kg*m^-2","ascii"=>"kg*m^-2","html"=>"kg/m2","latex"=>"\\ensuremath{\\mathrm{kg/m^2}}","mathml"=>"kg/m2","unicode"=>"kg/m²"}],"quantity_references"=>[{"id"=>"NISTq31","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu27","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_3","type"=>"nist"}},{"power"=>-2,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/KiloGM-PER-M2","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu27p10'3.u1e-3/1","type"=>"nist"},{"id"=>"u:kilogram_per_cubic_meter","type"=>"unitsml"}],"short"=>"kilogram_per_cubic_meter","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"kilogram per cubic meter","lang"=>"en"}],"symbols"=>[{"id"=>"kg*m^-3","ascii"=>"kg*m^-3","html"=>"kg/m3","latex"=>"\\ensuremath{\\mathrm{kg/m^3}}","mathml"=>"kg/m3","unicode"=>"kg·m⁻³"}],"quantity_references"=>[{"id"=>"NISTq33","type"=>"nist"},{"id"=>"NISTq51","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu27","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_3","type"=>"nist"}},{"power"=>-3,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu27p10'3.u1e2/1","type"=>"nist"},{"id"=>"u:kilogram_meter_squared","type"=>"unitsml"}],"short"=>"kilogram_meter_squared","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"kilogram meter squared","lang"=>"en"}],"symbols"=>[{"id"=>"kg*m^2","ascii"=>"kg*m^2","html"=>"kg · m2","latex"=>"\\ensuremath{\\mathrm{kg\\cdot m^2}}","mathml"=>"kg·m2","unicode"=>"kg·m²"}],"quantity_references"=>[{"id"=>"NISTq127","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu27","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_3","type"=>"nist"}},{"power"=>-2,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/KiloGM-M2","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu27p10'3.u1e2/1.u3e-1/1","type"=>"nist"},{"id"=>"u:kilogram_meter_squared_per_second","type"=>"unitsml"}],"short"=>"kilogram_meter_squared_per_second","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"kilogram meter squared per second","lang"=>"en"}],"symbols"=>[{"id"=>"kg*m^2*s^-1","ascii"=>"kg*m^2*s^-1","html"=>"kg · m2/s","latex"=>"\\ensuremath{\\mathrm{kg\\cdot m^2/s}}","mathml"=>"kg·m2/s","unicode"=>"kg·m²/s"}],"quantity_references"=>[{"id"=>"NISTq132","type"=>"nist"},{"id"=>"NISTq132","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu27","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_3","type"=>"nist"}},{"power"=>2,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/KiloGM-M2-PER-SEC","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu27p10'3.u3e-1/1","type"=>"nist"},{"id"=>"u:kilogram_per_second","type"=>"unitsml"}],"short"=>"kilogram_per_second","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"kilogram per second","lang"=>"en"}],"symbols"=>[{"id"=>"kg*s^-1","ascii"=>"kg*s^-1","html"=>"kg/s","latex"=>"\\ensuremath{\\mathrm{kg/s}}","mathml"=>"kg/s","unicode"=>"kg/s"}],"quantity_references"=>[{"id"=>"NISTq150","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu27","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_3","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/KiloGM-PER-SEC","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu28","type"=>"nist"},{"id"=>"u:gray","type"=>"unitsml"}],"short"=>"gray","root"=>true,"unit_system_reference"=>[{"id"=>"SI_derived_special","type"=>"nist"}],"names"=>[{"value"=>"gray","lang"=>"en"},{"value"=>"gray","lang"=>"fr"}],"symbols"=>[{"id"=>"Gy","ascii"=>"Gy","html"=>"Gy","latex"=>"\\ensuremath{\\mathrm{Gy}}","mathml"=>"Gy","unicode"=>"Gy"}],"quantity_references"=>[{"id"=>"NISTq36","type"=>"nist"},{"id"=>"NISTq37","type"=>"nist"},{"id"=>"NISTq38","type"=>"nist"}],"si_derived_bases"=>[{"power"=>-2,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}},{"power"=>1,"unit_reference"=>{"id"=>"NISTu7","type"=>"nist"}}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/gray","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:unit:si:code:Gy","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/GRAY","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu28.u3e-1/1","type"=>"nist"},{"id"=>"u:gray_per_second","type"=>"unitsml"}],"short"=>"gray_per_second","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"gray per second","lang"=>"en"}],"symbols"=>[{"id"=>"Gy*s^-1","ascii"=>"Gy*s^-1","html"=>"Gy/s","latex"=>"\\ensuremath{\\mathrm{Gy/s}}","mathml"=>"Gy/s","unicode"=>"Gy/s"}],"quantity_references"=>[{"id"=>"NISTq194","type"=>"nist"},{"id"=>"NISTq76","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu28","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/GRAY-PER-SEC","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu280","type"=>"nist"},{"id"=>"u:computer_point","type"=>"unitsml"}],"short"=>"computer_point","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"point (computer)","lang"=>"en"}],"symbols"=>[{"id"=>"pt_computer","ascii"=>"pt","html"=>"pt","latex"=>"\\ensuremath{\\mathrm{pt}}","mathml"=>"pt","unicode"=>"pt"}],"quantity_references"=>[{"id"=>"NISTq1","type"=>"nist"},{"id"=>"NISTq48","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/PT","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu281","type"=>"nist"},{"id"=>"u:us_survey_rod","type"=>"unitsml"}],"short"=>"us_survey_rod","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"rod (based on US survey foot)","lang"=>"en"},{"value"=>"rod","lang"=>"en"}],"symbols"=>[{"id"=>"rd","ascii"=>"rd","html"=>"rd","latex"=>"rd","mathml"=>"rd","unicode"=>"rd"}],"quantity_references"=>[{"id"=>"NISTq1","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:us-lengths:code:[rd_us]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/ROD","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu282","type"=>"nist"},{"id"=>"u:us_survey_fathom","type"=>"unitsml"}],"short"=>"us_survey_fathom","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"fathom (based on US survey foot)","lang"=>"en"},{"value"=>"fathom","lang"=>"en"}],"symbols"=>[{"id"=>"fath","ascii"=>"fath","html"=>"fath","latex"=>"\\ensuremath{\\mathrm{fath}}","mathml"=>"fath","unicode"=>"fath"}],"quantity_references"=>[{"id"=>"NISTq1","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:intcust:code:[fth_i]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/FATH","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu283","type"=>"nist"},{"id"=>"u:circular_mil","type"=>"unitsml"}],"short"=>"circular_mil","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"circular mil","lang"=>"en"}],"symbols"=>[{"id"=>"cmil","ascii"=>"cmil","html"=>"cmil","latex"=>"\\ensuremath{\\mathrm{cmil}}","mathml"=>"cmil","unicode"=>"cmil"}],"quantity_references"=>[{"id"=>"NISTq8","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:intcust:code:[cml_i]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/MIL_Circ","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu284","type"=>"nist"},{"id"=>"u:horsepower","type"=>"unitsml"}],"short"=>"horsepower","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"horsepower","lang"=>"en"}],"symbols"=>[{"id"=>"hp","ascii"=>"hp","html"=>"hp","latex"=>"\\ensuremath{\\mathrm{hp}}","mathml"=>"hp","unicode"=>"hp"}],"quantity_references"=>[{"id"=>"NISTq20","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:heat:code:[HP]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/HP","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu285","type"=>"nist"},{"id"=>"u:boiler_horsepower","type"=>"unitsml"}],"short"=>"boiler_horsepower","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"horsepower, boiler","lang"=>"en"},{"value"=>"boiler horsepower","lang"=>"en"}],"symbols"=>[{"id"=>"hp_boiler","ascii"=>"hp","html"=>"hp","latex"=>"\\ensuremath{\\mathrm{hp}}","mathml"=>"hp","unicode"=>"hp"}],"quantity_references"=>[{"id"=>"NISTq20","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/HP_Boiler","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu286","type"=>"nist"},{"id"=>"u:water_horsepower","type"=>"unitsml"}],"short"=>"water_horsepower","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"horsepower, water","lang"=>"en"},{"value"=>"water horsepower","lang"=>"en"}],"symbols"=>[{"id"=>"hp_water","ascii"=>"hp","html"=>"hp","latex"=>"\\ensuremath{\\mathrm{hp}}","mathml"=>"hp","unicode"=>"hp"}],"quantity_references"=>[{"id"=>"NISTq20","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/HP_H2O","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu287","type"=>"nist"},{"id"=>"u:uk_horsepower","type"=>"unitsml"}],"short"=>"uk_horsepower","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"horsepower (UK)","lang"=>"en"}],"symbols"=>[{"id"=>"hp_UK","ascii"=>"hp","html"=>"hp","latex"=>"\\ensuremath{\\mathrm{hp}}","mathml"=>"hp","unicode"=>"hp"}],"quantity_references"=>[{"id"=>"NISTq20","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/HP","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu288","type"=>"nist"},{"id"=>"u:degree_Rankine","type"=>"unitsml"}],"short"=>"degree_Rankine","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"degree Rankine","lang"=>"en"}],"symbols"=>[{"id"=>"degR","ascii"=>"degR","html"=>"°R","latex"=>"\\ensuremath{mathrm{^{\\circ}R}}","mathml"=>"°R","unicode"=>"°R"}],"quantity_references"=>[{"id"=>"NISTq5","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:heat:code:[degR]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/DEG_R","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu289","type"=>"nist"},{"id"=>"u:dalton","type"=>"unitsml"}],"short"=>"dalton","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_acceptable","type"=>"nist"}],"names"=>[{"value"=>"dalton","lang"=>"en"},{"value"=>"dalton","lang"=>"fr"}],"symbols"=>[{"id"=>"Da","ascii"=>"Da","html"=>"Da","latex"=>"\\ensuremath{\\mathrm{Da}}","mathml"=>"Da","unicode"=>"Da"}],"quantity_references"=>[{"id"=>"NISTq2","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu241","type"=>"nist"}}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/dalton","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/DA","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu29","type"=>"nist"},{"id"=>"u:sievert","type"=>"unitsml"}],"short"=>"sievert","root"=>true,"unit_system_reference"=>[{"id"=>"SI_derived_special","type"=>"nist"}],"names"=>[{"value"=>"sievert","lang"=>"en"},{"value"=>"sievert","lang"=>"fr"}],"symbols"=>[{"id"=>"Sv","ascii"=>"Sv","html"=>"Sv","latex"=>"\\ensuremath{\\mathrm{Sv}}","mathml"=>"Sv","unicode"=>"Sv"}],"quantity_references"=>[{"id"=>"NISTq39","type"=>"nist"}],"si_derived_bases"=>[{"power"=>2,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}},{"power"=>-2,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/sievert","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:unit:si:code:Sv","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/SV","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu290","type"=>"nist"},{"id"=>"u:natural_unit_of_length","type"=>"unitsml"}],"short"=>"natural_unit_of_length","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"natural unit of length","lang"=>"en"}],"symbols"=>[{"id"=>"lambda-bar_C","ascii"=>"lambda-bar_C","html"=>"ƛC","latex"=>"\\ensuremath{\\lambdabar_C}","mathml"=>"ƛC","unicode"=>"ƛ_C"}],"quantity_references"=>[{"id"=>"NISTq1","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu291","type"=>"nist"},{"id"=>"u:atomic_unit_of_1st_hyperpolarizability","type"=>"unitsml"}],"short"=>"atomic_unit_of_1st_hyperpolarizability","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"atomic unit of 1st hyperpolarizability","lang"=>"en"}],"symbols"=>[{"id"=>"e^3a_0^3*(E_h^3)","ascii"=>"e^3a_0^3*(E_h^3)","html"=>"e3a03Eh3","latex"=>"\\ensuremath{\\mathit{e}^3/\\mathit(a}_0^3\\mathit{E}_h^3}","mathml"=>"e3a03Eh3","unicode"=>"𝑒³𝑎₀³𝐸ₕ³"}],"quantity_references"=>[{"id"=>"NISTq172","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu292","type"=>"nist"},{"id"=>"u:atomic_unit_of_2nd_hyperpolarizability","type"=>"unitsml"}],"short"=>"atomic_unit_of_2nd_hyperpolarizability","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"atomic unit of 2nd hyperpolarizability","lang"=>"en"}],"symbols"=>[{"id"=>"e^4a_0^4*(E_h^3)","ascii"=>"e^4a_0^4*(E_h^3)","html"=>"e4a04Eh3","latex"=>"\\ensuremath{\\mathit{e}^4/\\mathit(a}_0^4\\mathit{E}_h^3}","mathml"=>"e4a04Eh3","unicode"=>"𝑒⁴𝑎₀⁴𝐸ₕ⁴"}],"quantity_references"=>[{"id"=>"NISTq173","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu293","type"=>"nist"},{"id"=>"u:atomic_unit_of_permittivity","type"=>"unitsml"}],"short"=>"atomic_unit_of_permittivity","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"atomic unit of permittivity","lang"=>"en"}],"symbols"=>[{"id"=>"e^2*(a_0*E_h)-1","ascii"=>"e^2*(a_0*E_h)-1","html"=>"e2/a0Eh","latex"=>"\\ensuremath{\\mathit{e}^2/\\mathit(a}_0\\mathit{E}_h}","mathml"=>"e2/a0Eh","unicode"=>"𝑒²/𝑎₀𝐸ₕ"}],"quantity_references"=>[{"id"=>"NISTq71","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu294","type"=>"nist"},{"id"=>"u:atomic_unit_of_velocity","type"=>"unitsml"}],"short"=>"atomic_unit_of_velocity","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"atomic unit of velocity","lang"=>"en"}],"symbols"=>[{"id"=>"a_0*E_h*h-bar-1","ascii"=>"a_0*E_h*h-bar-1","html"=>"a0Eh/ħ","latex"=>"\\ensuremath{\\mathit{a}_\\mathrm{0}\\mathit{E}_{h}/\\mathit{\\hbar}}","mathml"=>"a0Eh/ħ","unicode"=>"𝑎₀𝐸ₕ/ℏ"}],"quantity_references"=>[{"id"=>"NISTq12","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu295","type"=>"nist"},{"id"=>"u:natural_unit_of_energy","type"=>"unitsml"}],"short"=>"natural_unit_of_energy","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"natural unit of energy","lang"=>"en"}],"symbols"=>[{"id"=>"m_e*c^2","ascii"=>"m_e*c^2","html"=>"mec2","latex"=>"\\ensuremath{\\mathit{m}_e\\mathit{c}^2}","mathml"=>"mec2","unicode"=>"𝑚ₑ𝑐²"}],"quantity_references"=>[{"id"=>"NISTq17","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu296","type"=>"nist"},{"id"=>"u:natural_unit_of_momentum","type"=>"unitsml"}],"short"=>"natural_unit_of_momentum","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"natural unit of momentum","lang"=>"en"}],"symbols"=>[{"id"=>"m_e*c","ascii"=>"m_e*c","html"=>"mec","latex"=>"\\ensuremath{\\mathit{m}_e\\mathit{c}}","mathml"=>"mec","unicode"=>"𝑚ₑ𝑐"}],"quantity_references"=>[{"id"=>"NISTq131","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu297","type"=>"nist"},{"id"=>"u:natural_unit_of_action_in_eV_s","type"=>"unitsml"}],"short"=>"natural_unit_of_action_in_eV_s","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"natural unit of action in eV s","lang"=>"en"}],"symbols"=>[{"id"=>"h-bar_eV_s","ascii"=>"h-bar","html"=>"ħ","latex"=>"\\ensuremath{mathrm{\\hbar}}","mathml"=>"ħ","unicode"=>"ℏ"}],"quantity_references"=>[{"id"=>"NISTq154","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu298","type"=>"nist"},{"id"=>"u:natural_unit_of_energy_in_MeV","type"=>"unitsml"}],"short"=>"natural_unit_of_energy_in_MeV","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"natural unit of energy in MeV","lang"=>"en"}],"symbols"=>[{"id"=>"m_e*c^2_MeV","ascii"=>"m_e*c^2","html"=>"mec2","latex"=>"\\ensuremath{\\mathit{m}_e\\mathit{c}^2}","mathml"=>"mec2","unicode"=>"𝑚ₑ𝑐²"}],"quantity_references"=>[{"id"=>"NISTq17","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu299","type"=>"nist"},{"id"=>"u:natural_unit_of_momentum_in_MeV_per_c","type"=>"unitsml"}],"short"=>"natural_unit_of_momentum_in_MeV_per_c","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"natural unit of momentum in MeV/c","lang"=>"en"}],"symbols"=>[{"id"=>"m_e*c_MeV/C","ascii"=>"m_e*c","html"=>"mec","latex"=>"\\ensuremath{\\mathit{m}_e\\mathit{c}}","mathml"=>"mec","unicode"=>"𝑚ₑ𝑐"}],"quantity_references"=>[{"id"=>"NISTq131","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu3","type"=>"nist"},{"id"=>"u:second","type"=>"unitsml"}],"short"=>"second","root"=>true,"unit_system_reference"=>[{"id"=>"si-base","type"=>"unitsml"}],"names"=>[{"value"=>"second","lang"=>"en"},{"value"=>"seconde","lang"=>"fr"}],"symbols"=>[{"id"=>"s","ascii"=>"s","html"=>"s","latex"=>"\\ensuremath{\\mathrm{s}}","mathml"=>"s","unicode"=>"s"},{"id"=>"\"_s","ascii"=>"\"","html"=>"″","latex"=>"\\ensuremath{\\mathrm{''}}","mathml"=>"","unicode"=>"″"},{"id"=>"dprime_s","ascii"=>"\"","html"=>"″","latex"=>"\\ensuremath{\\mathrm{''}}","mathml"=>"","unicode"=>"″"}],"quantity_references"=>[{"id"=>"NISTq109","type"=>"nist"},{"id"=>"NISTq110","type"=>"nist"},{"id"=>"NISTq3","type"=>"nist"}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/second","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:base-unit:code:s","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/SEC","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu30","type"=>"nist"},{"id"=>"u:katal","type"=>"unitsml"}],"short"=>"katal","root"=>true,"unit_system_reference"=>[{"id"=>"SI_derived_special","type"=>"nist"}],"names"=>[{"value"=>"katal","lang"=>"en"},{"value"=>"katal","lang"=>"fr"}],"symbols"=>[{"id"=>"kat","ascii"=>"kat","html"=>"kat","latex"=>"\\ensuremath{\\mathrm{kat}}","mathml"=>"kat","unicode"=>"kat"}],"quantity_references"=>[{"id"=>"NISTq44","type"=>"nist"}],"si_derived_bases"=>[{"power"=>-1,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}},{"power"=>1,"unit_reference"=>{"id"=>"NISTu6","type"=>"nist"}}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/katal","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:unit:chemical:code:kat","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/KAT","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu30.u1e-3/1","type"=>"nist"},{"id"=>"u:katal_per_cubic_meter","type"=>"unitsml"}],"short"=>"katal_per_cubic_meter","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"katal per cubic meter","lang"=>"en"}],"symbols"=>[{"id"=>"kat*m^-3","ascii"=>"kat*m^-3","html"=>"kat/m3","latex"=>"\\ensuremath{\\mathrm{kat/m^3}}","mathml"=>"kat/m3","unicode"=>"kat/m³"}],"quantity_references"=>[{"id"=>"NISTq84","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu30","type"=>"nist"}},{"power"=>-3,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/KAT-PER-M3","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu300","type"=>"nist"},{"id"=>"u:imperial_quart","type"=>"unitsml"}],"short"=>"imperial_quart","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"quart (UK)","lang"=>"en"},{"value"=>"quart","lang"=>"en"}],"symbols"=>[{"id"=>"qt (UK)","ascii"=>"qt (UK)","html"=>"qt (UK)","latex"=>"\\ensuremath{\\mathrm{qt (UK)}}","mathml"=>"qt (UK)","unicode"=>"qt (UK)"}],"quantity_references"=>[{"id"=>"NISTq10","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:us-volumes:code:[qt_us]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/QT_UK","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu301","type"=>"nist"},{"id"=>"u:us_dry_quart","type"=>"unitsml"}],"short"=>"us_dry_quart","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"dry quart (US)","lang"=>"en"},{"value"=>"quart","lang"=>"en"}],"symbols"=>[{"id"=>"dry qt (US)","ascii"=>"dry qt (US)","html"=>"dry qt (US)","latex"=>"\\ensuremath{\\mathrm{dry qt (US)}}","mathml"=>"dry qt (US)","unicode"=>"dry qt (US)"}],"quantity_references"=>[{"id"=>"NISTq10","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:us-volumes:code:[qt_us]","authority"=>"ucum"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu302","type"=>"nist"},{"id"=>"u:us_quart","type"=>"unitsml"}],"short"=>"us_quart","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"liquid quart (US)","lang"=>"en"},{"value"=>"quart","lang"=>"en"}],"symbols"=>[{"id"=>"liq qt (US)","ascii"=>"liq qt (US)","html"=>"liq qt (US)","latex"=>"\\ensuremath{\\mathrm{liq qt (US)}}","mathml"=>"liq qt (US)","unicode"=>"liq qt (US)"}],"quantity_references"=>[{"id"=>"NISTq10","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:us-volumes:code:[qt_us]","authority"=>"ucum"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu303","type"=>"nist"},{"id"=>"u:us_teaspoon","type"=>"unitsml"}],"short"=>"us_teaspoon","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"teaspoon","lang"=>"en"}],"symbols"=>[{"id"=>"tsp","ascii"=>"tsp","html"=>"tsp","latex"=>"\\ensuremath{\\mathrm{tsp}}","mathml"=>"tsp","unicode"=>"tsp"}],"quantity_references"=>[{"id"=>"NISTq10","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:us-volumes:code:[tsp_us]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/TSP","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu304","type"=>"nist"},{"id"=>"u:us_tablespoon","type"=>"unitsml"}],"short"=>"us_tablespoon","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"tablespoon","lang"=>"en"}],"symbols"=>[{"id"=>"tbsp","ascii"=>"tbsp","html"=>"tbsp","latex"=>"\\ensuremath{\\mathrm{tbsp}}","mathml"=>"tbsp","unicode"=>"tbsp"}],"quantity_references"=>[{"id"=>"NISTq10","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:us-volumes:code:[tbs_us]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/TBSP","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu305","type"=>"nist"},{"id"=>"u:us_label_tablespoon","type"=>"unitsml"}],"short"=>"us_label_tablespoon","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"tablespoon (FDA)","lang"=>"en"},{"value"=>"teaspoon","lang"=>"en"}],"symbols"=>[{"id"=>"tbsp_label","ascii"=>"tbsp","html"=>"tbsp","latex"=>"\\ensuremath{\\mathrm{tbsp}}","mathml"=>"tbsp","unicode"=>"tbsp"}],"quantity_references"=>[{"id"=>"NISTq10","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:us-volumes:code:[tsp_us]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/TBSP","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu306","type"=>"nist"},{"id"=>"u:us_label_teaspoon","type"=>"unitsml"}],"short"=>"us_label_teaspoon","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"teaspoon (FDA)","lang"=>"en"},{"value"=>"teaspoon","lang"=>"en"}],"symbols"=>[{"id"=>"tsp_label","ascii"=>"tsp","html"=>"tsp","latex"=>"\\ensuremath{\\mathrm{tsp}}","mathml"=>"tsp","unicode"=>"tsp"}],"quantity_references"=>[{"id"=>"NISTq10","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:us-volumes:code:[tsp_us]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/TSP","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu307","type"=>"nist"},{"id"=>"u:us_label_cup","type"=>"unitsml"}],"short"=>"us_label_cup","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"cup (FDA)","lang"=>"en"},{"value"=>"cup","lang"=>"en"}],"symbols"=>[{"id"=>"cup_label","ascii"=>"cup","html"=>"cup","latex"=>"\\ensuremath{\\mathrm{cup}}","mathml"=>"cup","unicode"=>"cup"}],"quantity_references"=>[{"id"=>"NISTq10","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:us-volumes:code:[cup_us]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/CUP","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu308","type"=>"nist"},{"id"=>"u:us_label_fluid_ounce","type"=>"unitsml"}],"short"=>"us_label_fluid_ounce","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"fluid ounce (FDA)","lang"=>"en"},{"value"=>"fluid ounce","lang"=>"en"},{"value"=>"ounce","lang"=>"en"}],"symbols"=>[{"id"=>"fl oz (US label)","ascii"=>"fl oz (US label)","html"=>"fl oz (US label)","latex"=>"\\ensuremath{\\mathrm{fl oz (US label)}}","mathml"=>"fl oz (US label)","unicode"=>"fl oz (US label)"}],"quantity_references"=>[{"id"=>"NISTq10","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:us-volumes:code:[foz_us]","authority"=>"ucum"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu309","type"=>"nist"},{"id"=>"u:us_label_ounce","type"=>"unitsml"}],"short"=>"us_label_ounce","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"ounce (FDA)","lang"=>"en"},{"value"=>"ounce","lang"=>"en"}],"symbols"=>[{"id"=>"oz (US label)","ascii"=>"oz (US label)","html"=>"oz (US label)","latex"=>"\\ensuremath{\\mathrm{oz (US label)}}","mathml"=>"oz (US label)","unicode"=>"oz (US label)"}],"quantity_references"=>[{"id"=>"NISTq2","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:avoirdupois:code:[oz_av]","authority"=>"ucum"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu31","type"=>"nist"},{"id"=>"u:hertz","type"=>"unitsml"}],"short"=>"hertz","root"=>true,"unit_system_reference"=>[{"id"=>"SI_derived_special","type"=>"nist"}],"names"=>[{"value"=>"hertz","lang"=>"en"},{"value"=>"hertz","lang"=>"fr"}],"symbols"=>[{"id"=>"Hz","ascii"=>"Hz","html"=>"Hz","latex"=>"\\ensuremath{\\mathrm{Hz}}","mathml"=>"Hz","unicode"=>"Hz"}],"quantity_references"=>[{"id"=>"NISTq45","type"=>"nist"}],"si_derived_bases"=>[{"power"=>-1,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/hertz","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:unit:si:code:Hz","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/HZ","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu310","type"=>"nist"},{"id"=>"u:us_survey_chain","type"=>"unitsml"}],"short"=>"us_survey_chain","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"chain (based on US survey foot)","lang"=>"en"},{"value"=>"surveyors chain","lang"=>"en"},{"value"=>"Gunter's chain","lang"=>"en"},{"value"=>"chain","lang"=>"en"}],"symbols"=>[{"id"=>"ch","ascii"=>"ch","html"=>"ch","latex"=>"\\ensuremath{\\mathrm{ch}}","mathml"=>"ch","unicode"=>"ch"}],"quantity_references"=>[{"id"=>"NISTq1","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:us-lengths:code:[ch_us]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/CH","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu311","type"=>"nist"},{"id"=>"u:us_survey_link","type"=>"unitsml"}],"short"=>"us_survey_link","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"link (based on US survey foot)","lang"=>"en"},{"value"=>"surveyors link","lang"=>"en"},{"value"=>"Gunter's link","lang"=>"en"},{"value"=>"link","lang"=>"en"}],"symbols"=>[{"id"=>"lnk","ascii"=>"lnk","html"=>"lnk","latex"=>"\\ensuremath{\\mathrm{lnk}}","mathml"=>"lnk","unicode"=>"lnk"}],"quantity_references"=>[{"id"=>"NISTq1","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu312","type"=>"nist"},{"id"=>"u:us_survey_furlong","type"=>"unitsml"}],"short"=>"us_survey_furlong","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"furlong (based on US survey foot)","lang"=>"en"},{"value"=>"furlong","lang"=>"en"}],"symbols"=>[{"id"=>"fur","ascii"=>"fur","html"=>"fur","latex"=>"\\ensuremath{\\mathrm{fur}}","mathml"=>"fur","unicode"=>"fur"}],"quantity_references"=>[{"id"=>"NISTq1","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:us-lengths:code:[fur_us]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/FUR","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu313","type"=>"nist"},{"id"=>"u:us_survey_mile","type"=>"unitsml"}],"short"=>"us_survey_mile","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"mile (based on US survey foot)","lang"=>"en"},{"value"=>"survey mile","lang"=>"en"},{"value"=>"mile","lang"=>"en"}],"symbols"=>[{"id"=>"mi_US_survey","ascii"=>"mi","html"=>"mi","latex"=>"\\ensuremath{\\mathrm{mi}}","mathml"=>"mi","unicode"=>"mi"}],"quantity_references"=>[{"id"=>"NISTq1","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:intcust:code:[mi_i]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/MI_US","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu314","type"=>"nist"},{"id"=>"u:us_survey_yard","type"=>"unitsml"}],"short"=>"us_survey_yard","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"yard (based on US survey foot)","lang"=>"en"},{"value"=>"yard","lang"=>"en"}],"symbols"=>[{"id"=>"yd_US_survey","ascii"=>"yd","html"=>"yd","latex"=>"\\ensuremath{\\mathrm{yd}}","mathml"=>"yd","unicode"=>"yd"}],"quantity_references"=>[{"id"=>"NISTq1","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:intcust:code:[yd_i]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/YD","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu315","type"=>"nist"},{"id"=>"u:us_survey_foot","type"=>"unitsml"}],"short"=>"us_survey_foot","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"foot (based on US survey foot)","lang"=>"en"},{"value"=>"survey foot","lang"=>"en"},{"value"=>"foot","lang"=>"en"}],"symbols"=>[{"id"=>"ft_US_survey","ascii"=>"ft","html"=>"ft","latex"=>"\\ensuremath{\\mathrm{ft}}","mathml"=>"ft","unicode"=>"ft"}],"quantity_references"=>[{"id"=>"NISTq1","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:intcust:code:[ft_i]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/FT_US","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu316","type"=>"nist"},{"id"=>"u:us_survey_inch","type"=>"unitsml"}],"short"=>"us_survey_inch","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"inch (based on US survey foot)","lang"=>"en"},{"value"=>"inch","lang"=>"en"}],"symbols"=>[{"id"=>"in_US_survey","ascii"=>"in","html"=>"in","latex"=>"\\ensuremath{\\mathrm{in}}","mathml"=>"in","unicode"=>"in"}],"quantity_references"=>[{"id"=>"NISTq1","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:intcust:code:[in_i]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/IN","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu317","type"=>"nist"},{"id"=>"u:us_acre","type"=>"unitsml"}],"short"=>"us_acre","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"acre (based on US survey foot)","lang"=>"en"},{"value"=>"acre","lang"=>"en"}],"symbols"=>[{"id"=>"ac","ascii"=>"ac","html"=>"ac","latex"=>"\\ensuremath{\\mathrm{ac}}","mathml"=>"ac","unicode"=>"ac"}],"quantity_references"=>[{"id"=>"NISTq8","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:us-lengths:code:[acr_us]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/AC","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu318","type"=>"nist"},{"id"=>"u:cm_Hg","type"=>"unitsml"}],"short"=>"cm_Hg","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"conventional centimeter of mercury","lang"=>"en"},{"value"=>"centimeter of mercury, conventional","lang"=>"en"},{"value"=>"centimeter of mercury","lang"=>"en"}],"symbols"=>[{"id"=>"cmHg","ascii"=>"cmHg","html"=>"cmHg","latex"=>"\\ensuremath{\\mathrm{cmHg}}","mathml"=>"cmHg","unicode"=>"cmHg"}],"quantity_references"=>[{"id"=>"NISTq15","type"=>"nist"},{"id"=>"NISTq16","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/CentiM_HG","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu319","type"=>"nist"},{"id"=>"u:0C_cm_Hg","type"=>"unitsml"}],"short"=>"0C_cm_Hg","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"centimeter of mercury (0 degC)","lang"=>"en"}],"symbols"=>[{"id"=>"cmHg_0degC","ascii"=>"cmHg","html"=>"cmHg","latex"=>"\\ensuremath{\\mathrm{cmHg}}","mathml"=>"cmHg","unicode"=>"cmHg"}],"quantity_references"=>[{"id"=>"NISTq15","type"=>"nist"},{"id"=>"NISTq16","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/CentiM_HG_0DEG_C","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu32","type"=>"nist"},{"id"=>"u:lumen","type"=>"unitsml"}],"short"=>"lumen","root"=>true,"unit_system_reference"=>[{"id"=>"SI_derived_special","type"=>"nist"}],"names"=>[{"value"=>"lumen","lang"=>"en"},{"value"=>"lumen","lang"=>"fr"}],"symbols"=>[{"id"=>"lm","ascii"=>"lm","html"=>"lm","latex"=>"\\ensuremath{\\mathrm{lm}}","mathml"=>"lm","unicode"=>"lm"}],"quantity_references"=>[{"id"=>"NISTq46","type"=>"nist"}],"si_derived_bases"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu7","type"=>"nist"}}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/lumen","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:unit:si:code:lm","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/LM","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu320","type"=>"nist"},{"id"=>"u:4C_cm_water","type"=>"unitsml"}],"short"=>"4C_cm_water","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"centimeter of water (4 degC)","lang"=>"en"}],"symbols"=>[{"id"=>"cmH_2O_4degC","ascii"=>"cmH_2O","html"=>"cmH2O","latex"=>"\\ensuremath{\\mathrm{cmH_{2}O}}","mathml"=>"cmH2O","unicode"=>"cmH₂O"}],"quantity_references"=>[{"id"=>"NISTq15","type"=>"nist"},{"id"=>"NISTq16","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu321","type"=>"nist"},{"id"=>"u:cm_water","type"=>"unitsml"}],"short"=>"cm_water","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"conventional centimeter of water","lang"=>"en"},{"value"=>"centimeter of water, conventional","lang"=>"en"},{"value"=>"centimeter of water","lang"=>"en"}],"symbols"=>[{"id"=>"cmH_2O","ascii"=>"cmH_2O","html"=>"cmH2O","latex"=>"\\ensuremath{\\mathrm{cmH_{2}O}}","mathml"=>"cmH2O","unicode"=>"cmH₂O"}],"quantity_references"=>[{"id"=>"NISTq15","type"=>"nist"},{"id"=>"NISTq16","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu322","type"=>"nist"},{"id"=>"u:in_water","type"=>"unitsml"}],"short"=>"in_water","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"conventional inch of water","lang"=>"en"},{"value"=>"inch of water, conventional","lang"=>"en"},{"value"=>"inch of water","lang"=>"en"}],"symbols"=>[{"id"=>"inH_2O","ascii"=>"inH_2O","html"=>"inH2O","latex"=>"\\ensuremath{\\mathrm{inH_{2}O}}","mathml"=>"inH2O","unicode"=>"inH₂O"}],"quantity_references"=>[{"id"=>"NISTq15","type"=>"nist"},{"id"=>"NISTq16","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/IN_H2O","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu323","type"=>"nist"},{"id"=>"u:39F_in_water","type"=>"unitsml"}],"short"=>"39F_in_water","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"inch of water (39.2 degF)","lang"=>"en"}],"symbols"=>[{"id"=>"inH_2O_39degF","ascii"=>"inH_2O","html"=>"inH2O","latex"=>"\\ensuremath{\\mathrm{inH_{2}O}}","mathml"=>"inH2O","unicode"=>"inH₂O"}],"quantity_references"=>[{"id"=>"NISTq15","type"=>"nist"},{"id"=>"NISTq16","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu324","type"=>"nist"},{"id"=>"u:60F_in_water","type"=>"unitsml"}],"short"=>"60F_in_water","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"inch of water (60 degF)","lang"=>"en"}],"symbols"=>[{"id"=>"inH_2O_60degF","ascii"=>"inH_2O","html"=>"inH2O","latex"=>"\\ensuremath{\\mathrm{inH_{2}O}}","mathml"=>"inH2O","unicode"=>"inH₂O"}],"quantity_references"=>[{"id"=>"NISTq15","type"=>"nist"},{"id"=>"NISTq16","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu325","type"=>"nist"},{"id"=>"u:ft_water","type"=>"unitsml"}],"short"=>"ft_water","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"conventional foot of water","lang"=>"en"},{"value"=>"foot of water, conventional","lang"=>"en"},{"value"=>"foot of water","lang"=>"en"}],"symbols"=>[{"id"=>"ftH_2O","ascii"=>"ftH_2O","html"=>"ftH2O","latex"=>"\\ensuremath{\\mathrm{ftH_{2}O}}","mathml"=>"ftH2O","unicode"=>"ftH₂O"}],"quantity_references"=>[{"id"=>"NISTq15","type"=>"nist"},{"id"=>"NISTq16","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/FT_H2O","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu326","type"=>"nist"},{"id"=>"u:39F_ft_water","type"=>"unitsml"}],"short"=>"39F_ft_water","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"foot of water (39.2 degF)","lang"=>"en"}],"symbols"=>[{"id"=>"ftH_2O_39degF","ascii"=>"ftH_2O","html"=>"ftH2O","latex"=>"\\ensuremath{\\mathrm{ftH_{2}O}}","mathml"=>"ftH2O","unicode"=>"ftH₂O"}],"quantity_references"=>[{"id"=>"NISTq15","type"=>"nist"},{"id"=>"NISTq16","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu327","type"=>"nist"},{"id"=>"u:32F_in_Hg","type"=>"unitsml"}],"short"=>"32F_in_Hg","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"inch of mercury (32 degF)","lang"=>"en"}],"symbols"=>[{"id"=>"inHg_32degF","ascii"=>"inHg","html"=>"inHg","latex"=>"\\ensuremath{\\mathrm{inHg}}","mathml"=>"inHg","unicode"=>"inHg"},{"id"=>"\"Hg_32degF","ascii"=>"\"Hg","html"=>"″Hg","latex"=>"\\ensuremath{\\mathrm{''Hg}}","mathml"=>"″Hg","unicode"=>"″Hg"},{"id"=>"dprime_Hg_32degF","ascii"=>"\"Hg","html"=>"″Hg","latex"=>"\\ensuremath{\\mathrm{''Hg}}","mathml"=>"″Hg","unicode"=>"″Hg"}],"quantity_references"=>[{"id"=>"NISTq15","type"=>"nist"},{"id"=>"NISTq16","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/IN_HG_32DEG_F","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu328","type"=>"nist"},{"id"=>"u:60F_in_Hg","type"=>"unitsml"}],"short"=>"60F_in_Hg","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"inch of mercury (60 degF)","lang"=>"en"}],"symbols"=>[{"id"=>"inHg_60degF","ascii"=>"inHg","html"=>"inHg","latex"=>"\\ensuremath{\\mathrm{inHg}}","mathml"=>"inHg","unicode"=>"inHg"},{"id"=>"\"Hg_60degF","ascii"=>"\"Hg","html"=>"″Hg","latex"=>"\\ensuremath{\\mathrm{''Hg}}","mathml"=>"″Hg","unicode"=>"″Hg"},{"id"=>"dprime_Hg_60degF","ascii"=>"\"Hg","html"=>"″Hg","latex"=>"\\ensuremath{\\mathrm{''Hg}}","mathml"=>"″Hg","unicode"=>"″Hg"}],"quantity_references"=>[{"id"=>"NISTq15","type"=>"nist"},{"id"=>"NISTq16","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/IN_HG_60DEG_F","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu329","type"=>"nist"},{"id"=>"u:in_Hg","type"=>"unitsml"}],"short"=>"in_Hg","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"conventional inch of mercury","lang"=>"en"},{"value"=>"inch of mercury, conventional","lang"=>"en"},{"value"=>"inch of mercury","lang"=>"en"}],"symbols"=>[{"id"=>"inHg","ascii"=>"inHg","html"=>"inHg","latex"=>"\\ensuremath{\\mathrm{inHg}}","mathml"=>"inHg","unicode"=>"inHg"},{"id"=>"\"Hg","ascii"=>"\"Hg","html"=>"″Hg","latex"=>"\\ensuremath{\\mathrm{''Hg}}","mathml"=>"″Hg","unicode"=>"″Hg"},{"id"=>"dprime_Hg","ascii"=>"\"Hg","html"=>"″Hg","latex"=>"\\ensuremath{\\mathrm{''Hg}}","mathml"=>"″Hg","unicode"=>"″Hg"}],"quantity_references"=>[{"id"=>"NISTq15","type"=>"nist"},{"id"=>"NISTq16","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/IN_HG","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu33","type"=>"nist"},{"id"=>"u:lux","type"=>"unitsml"}],"short"=>"lux","root"=>true,"unit_system_reference"=>[{"id"=>"SI_derived_special","type"=>"nist"}],"names"=>[{"value"=>"lux","lang"=>"en"},{"value"=>"lux","lang"=>"fr"}],"symbols"=>[{"id"=>"lx","ascii"=>"lx","html"=>"lx","latex"=>"\\ensuremath{\\mathrm{lx}}","mathml"=>"lx","unicode"=>"lx"}],"quantity_references"=>[{"id"=>"NISTq47","type"=>"nist"}],"si_derived_bases"=>[{"power"=>-2,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}},{"power"=>1,"unit_reference"=>{"id"=>"NISTu7","type"=>"nist"}}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/lux","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:unit:si:code:lx","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/LUX","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu330","type"=>"nist"},{"id"=>"u:ft_Hg","type"=>"unitsml"}],"short"=>"ft_Hg","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"conventional foot of mercury","lang"=>"en"},{"value"=>"foot of mercury, conventional","lang"=>"en"},{"value"=>"foot of mercury","lang"=>"en"}],"symbols"=>[{"id"=>"ftHg","ascii"=>"ftHg","html"=>"ftHg","latex"=>"\\ensuremath{\\mathrm{ftnHg}}","mathml"=>"ftHg","unicode"=>"ftHg"},{"id"=>"'Hg","ascii"=>"'Hg","html"=>"′Hg","latex"=>"\\ensuremath{\\mathrm{'Hg}}","mathml"=>"′Hg","unicode"=>"′Hg"},{"id"=>"prime_Hg","ascii"=>"'Hg","html"=>"′Hg","latex"=>"\\ensuremath{\\mathrm{'Hg}}","mathml"=>"′Hg","unicode"=>"′Hg"}],"quantity_references"=>[{"id"=>"NISTq15","type"=>"nist"},{"id"=>"NISTq16","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/FT_HG","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu331","type"=>"nist"},{"id"=>"u:us_therm","type"=>"unitsml"}],"short"=>"us_therm","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"therm (US)","lang"=>"en"}],"symbols"=>[{"id"=>"thm (US)","ascii"=>"thm (US)","html"=>"thm (US)","latex"=>"\\ensuremath{\\mathrm{thm (US)}}","mathml"=>"thm (US)","unicode"=>"thm (US)"}],"quantity_references"=>[{"id"=>"NISTq17","type"=>"nist"},{"id"=>"NISTq18","type"=>"nist"},{"id"=>"NISTq182","type"=>"nist"},{"id"=>"NISTq183","type"=>"nist"},{"id"=>"NISTq19","type"=>"nist"},{"id"=>"NISTq77","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/THM_US","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu332","type"=>"nist"},{"id"=>"u:pH","type"=>"unitsml"}],"short"=>"pH","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"pH","lang"=>"en"}],"symbols"=>[{"id"=>"pH","ascii"=>"pH","html"=>"pH","latex"=>"\\ensuremath{\\mathrm{pH}}","mathml"=>"pH","unicode"=>"pH"}],"quantity_references"=>[{"id"=>"NISTq174","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:chemical:code:[pH]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/PH","authority"=>"qudt"}],"scale_reference"=>{"id"=>"logarithmic_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu333","type"=>"nist"},{"id"=>"u:table_btu","type"=>"unitsml"}],"short"=>"table_btu","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"British thermal unit_IT","lang"=>"en"},{"value"=>"International Table Btu","lang"=>"en"},{"value"=>"British thermal unit","lang"=>"en"}],"symbols"=>[{"id"=>"Btu","ascii"=>"Btu","html"=>"Btu","latex"=>"\\ensuremath{\\mathrm{Btu}}","mathml"=>"Btu","unicode"=>"Btu"}],"quantity_references"=>[{"id"=>"NISTq19","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:heat:code:[Btu]","authority"=>"ucum"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu334","type"=>"nist"},{"id"=>"u:mean_btu","type"=>"unitsml"}],"short"=>"mean_btu","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"British thermal unit (mean)","lang"=>"en"}],"symbols"=>[{"id"=>"Btu_mean","ascii"=>"Btu","html"=>"Btu","latex"=>"\\ensuremath{\\mathrm{Btu}}","mathml"=>"Btu","unicode"=>"Btu"}],"quantity_references"=>[{"id"=>"NISTq19","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/BTU_MEAN","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu335","type"=>"nist"},{"id"=>"u:39F_btu","type"=>"unitsml"}],"short"=>"39F_btu","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"British thermal unit (39 degF)","lang"=>"en"}],"symbols"=>[{"id"=>"Btu_39degF","ascii"=>"Btu","html"=>"Btu","latex"=>"\\ensuremath{\\mathrm{Btu}}","mathml"=>"Btu","unicode"=>"Btu"}],"quantity_references"=>[{"id"=>"NISTq19","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu336","type"=>"nist"},{"id"=>"u:59F_btu","type"=>"unitsml"}],"short"=>"59F_btu","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"British thermal unit (59 degF)","lang"=>"en"}],"symbols"=>[{"id"=>"Btu_59degF","ascii"=>"Btu","html"=>"Btu","latex"=>"\\ensuremath{\\mathrm{Btu}}","mathml"=>"Btu","unicode"=>"Btu"}],"quantity_references"=>[{"id"=>"NISTq19","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu337","type"=>"nist"},{"id"=>"u:60F_btu","type"=>"unitsml"}],"short"=>"60F_btu","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"British thermal unit (60 degF)","lang"=>"en"}],"symbols"=>[{"id"=>"Btu_60degF","ascii"=>"Btu","html"=>"Btu","latex"=>"\\ensuremath{\\mathrm{Btu}}","mathml"=>"Btu","unicode"=>"Btu"}],"quantity_references"=>[{"id"=>"NISTq19","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu338","type"=>"nist"},{"id"=>"u:tropical_year","type"=>"unitsml"}],"short"=>"tropical_year","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"year, tropical","lang"=>"en"},{"value"=>"tropical year","lang"=>"en"},{"value"=>"year","lang"=>"en"}],"symbols"=>[{"id"=>"a_tropical_year","ascii"=>"a","html"=>"a","latex"=>"\\ensuremath{\\mathrm{a}}","mathml"=>"a","unicode"=>"a"}],"quantity_references"=>[{"id"=>"NISTq3","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:iso1000:code:a_t","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/YR_TROPICAL","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu339","type"=>"nist"},{"id"=>"u:sidereal_year","type"=>"unitsml"}],"short"=>"sidereal_year","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"year, sidereal","lang"=>"en"},{"value"=>"sidereal year","lang"=>"en"},{"value"=>"year","lang"=>"en"}],"symbols"=>[{"id"=>"a_sidereal_year","ascii"=>"a","html"=>"a","latex"=>"\\ensuremath{\\mathrm{a}}","mathml"=>"a","unicode"=>"a"}],"quantity_references"=>[{"id"=>"NISTq3","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:iso1000:code:a","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/YR_Sidereal","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu340","type"=>"nist"},{"id"=>"u:sidereal_day","type"=>"unitsml"}],"short"=>"sidereal_day","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"day, sidereal","lang"=>"en"},{"value"=>"sidereal day","lang"=>"en"},{"value"=>"day","lang"=>"en"}],"symbols"=>[{"id"=>"d_sidereal","ascii"=>"d","html"=>"d","latex"=>"\\ensuremath{\\mathrm{d}}","mathml"=>"d","unicode"=>"d"}],"quantity_references"=>[{"id"=>"NISTq3","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:iso1000:code:d","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/DAY_Sidereal","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu341","type"=>"nist"},{"id"=>"u:sidereal_hour","type"=>"unitsml"}],"short"=>"sidereal_hour","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"hour, sidereal","lang"=>"en"},{"value"=>"sidereal hour","lang"=>"en"},{"value"=>"hour","lang"=>"en"}],"symbols"=>[{"id"=>"h_sidereal","ascii"=>"h","html"=>"h","latex"=>"\\ensuremath{\\mathrm{h}}","mathml"=>"h","unicode"=>"h"}],"quantity_references"=>[{"id"=>"NISTq3","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:iso1000:code:h","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/HR_Sidereal","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu342","type"=>"nist"},{"id"=>"u:sidereal_minute","type"=>"unitsml"}],"short"=>"sidereal_minute","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"minute, sidereal","lang"=>"en"},{"value"=>"sidereal minute","lang"=>"en"},{"value"=>"minute","lang"=>"en"}],"symbols"=>[{"id"=>"min_sidereal","ascii"=>"min","html"=>"min","latex"=>"\\ensuremath{\\mathrm{min}}","mathml"=>"min","unicode"=>"min"}],"quantity_references"=>[{"id"=>"NISTq3","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:iso1000:code:'","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/MIN_Sidereal","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu343","type"=>"nist"},{"id"=>"u:sidereal_second","type"=>"unitsml"}],"short"=>"sidereal_second","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"second, sidereal","lang"=>"en"},{"value"=>"sidereal second","lang"=>"en"},{"value"=>"second","lang"=>"en"}],"symbols"=>[{"id"=>"s_sidereal","ascii"=>"s","html"=>"s","latex"=>"\\ensuremath{\\mathrm{s}}","mathml"=>"s","unicode"=>"s"}],"quantity_references"=>[{"id"=>"NISTq3","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/S","authority"=>"qudt"},{"type"=>"informative","uri"=>"ucum:base-unit:code:s","authority"=>"ucum"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu344","type"=>"nist"},{"id"=>"u:printers_point","type"=>"unitsml"}],"short"=>"printers_point","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"point (printer's)","lang"=>"en"}],"symbols"=>[{"id"=>"pt_printer","ascii"=>"pt","html"=>"pt","latex"=>"\\ensuremath{\\mathrm{pt}}","mathml"=>"pt","unicode"=>"pt"}],"quantity_references"=>[{"id"=>"NISTq1","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/PT_BIG","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu345","type"=>"nist"},{"id"=>"u:shake","type"=>"unitsml"}],"short"=>"shake","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"shake","lang"=>"en"}],"symbols"=>[{"id"=>"shake","ascii"=>"shake","html"=>"shake","latex"=>"\\ensuremath{\\mathrm{shake}}","mathml"=>"shake","unicode"=>"shake"}],"quantity_references"=>[{"id"=>"NISTq3","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/SH","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu346","type"=>"nist"},{"id"=>"u:denier","type"=>"unitsml"}],"short"=>"denier","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"denier","lang"=>"en"}],"symbols"=>[{"id"=>"den","ascii"=>"den","html"=>"den","latex"=>"\\ensuremath{\\mathrm{den}}","mathml"=>"den","unicode"=>"den"}],"quantity_references"=>[{"id"=>"NISTq176","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:heat:code:[den]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/DENIER","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu347","type"=>"nist"},{"id"=>"u:nato_mil","type"=>"unitsml"}],"short"=>"nato_mil","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"angular mil (NATO)","lang"=>"en"},{"value"=>"angular mil","lang"=>"en"},{"value"=>"mil","lang"=>"en"}],"symbols"=>[{"id"=>"mil_nato","ascii"=>"mil","html"=>"mil","latex"=>"\\ensuremath{\\mathrm{mil}}","mathml"=>"mil","unicode"=>"mil"}],"quantity_references"=>[{"id"=>"NISTq9","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:intcust:code:[mil_i]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/MilLength","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu348","type"=>"nist"},{"id"=>"u:pound_mole","type"=>"unitsml"}],"short"=>"pound_mole","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"pound-mole","lang"=>"en"},{"value"=>"pound mole","lang"=>"en"}],"symbols"=>[{"id"=>"lbmol","ascii"=>"lbmol","html"=>"lbmol","latex"=>"\\ensuremath{\\mathrm{lbmol}}","mathml"=>"lbmol","unicode"=>"lbmol"}],"quantity_references"=>[{"id"=>"NISTq6","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/MOL_LB","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu349","type"=>"nist"},{"id"=>"u:ton_refrigeration","type"=>"unitsml"}],"short"=>"ton_refrigeration","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"ton of refrigeration (12 000 Btu_IT/h)","lang"=>"en"},{"value"=>"ton of refrigeration","lang"=>"en"},{"value"=>"ton","lang"=>"en"}],"symbols"=>[{"id"=>"ton_refrigeration","ascii"=>"ton","html"=>"ton","latex"=>"\\ensuremath{\\mathrm{ton}}","mathml"=>"ton","unicode"=>"ton"}],"quantity_references"=>[{"id"=>"NISTq20","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/TON_FG","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu350","type"=>"nist"},{"id"=>"u:bit","type"=>"unitsml"}],"short"=>"bit","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"bit","lang"=>"en"}],"symbols"=>[{"id"=>"bit","ascii"=>"bit","html"=>"bit","latex"=>"\\ensuremath{\\mathrm{bit}}","mathml"=>"bit","unicode"=>"bit"}],"quantity_references"=>[{"id"=>"NISTq177","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:infotech:code:bit_s","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/BIT","authority"=>"qudt"}],"scale_reference"=>{"id"=>"discrete","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu351","type"=>"nist"},{"id"=>"u:byte","type"=>"unitsml"}],"short"=>"byte","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"byte","lang"=>"en"}],"symbols"=>[{"id"=>"byte_B","ascii"=>"B","html"=>"B","latex"=>"\\ensuremath{\\mathrm{B}}","mathml"=>"B","unicode"=>"B"}],"quantity_references"=>[{"id"=>"NISTq177","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:infotech:code:By","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/BYTE","authority"=>"qudt"}],"scale_reference"=>{"id"=>"discrete","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu352","type"=>"nist"},{"id"=>"u:us_peck","type"=>"unitsml"}],"short"=>"us_peck","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"peck","lang"=>"en"}],"symbols"=>[{"id"=>"pk","ascii"=>"pk","html"=>"pk","latex"=>"\\ensuremath{\\mathrm{pk}}","mathml"=>"pk","unicode"=>"pk"}],"quantity_references"=>[{"id"=>"NISTq10","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:us-volumes:code:[pk_us]","authority"=>"ucum"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu353","type"=>"nist"},{"id"=>"u:us_minim","type"=>"unitsml"}],"short"=>"us_minim","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"minim","lang"=>"en"}],"symbols"=>[{"id"=>"minim","ascii"=>"min","html"=>"min","latex"=>"\\ensuremath{\\mathrm{min}}","mathml"=>"min","unicode"=>"min"}],"quantity_references"=>[{"id"=>"NISTq10","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:us-volumes:code:[min_us]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/MIN","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu354","type"=>"nist"},{"id"=>"u:us_cup","type"=>"unitsml"}],"short"=>"us_cup","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"cup (US)","lang"=>"en"},{"value"=>"cup","lang"=>"en"}],"symbols"=>[{"id"=>"cup","ascii"=>"cup","html"=>"cup","latex"=>"\\ensuremath{\\mathrm{cup}}","mathml"=>"cup","unicode"=>"cup"}],"quantity_references"=>[{"id"=>"NISTq10","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:us-volumes:code:[cup_us]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/CUP_US","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu355","type"=>"nist"},{"id"=>"u:us_fluid_dram","type"=>"unitsml"}],"short"=>"us_fluid_dram","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"fluid dram","lang"=>"en"},{"value"=>"dram, fluid","lang"=>"en"},{"value"=>"dram","lang"=>"en"}],"symbols"=>[{"id"=>"fl dr","ascii"=>"fl dr","html"=>"fl dr","latex"=>"\\ensuremath{\\mathrm{fl dr}}","mathml"=>"fl dr","unicode"=>"fl dr"}],"quantity_references"=>[{"id"=>"NISTq10","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:us-volumes:code:[fdr_us]","authority"=>"ucum"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu356","type"=>"nist"},{"id"=>"u:us_gill","type"=>"unitsml"}],"short"=>"us_gill","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"gill (US)","lang"=>"en"},{"value"=>"gill","lang"=>"en"}],"symbols"=>[{"id"=>"gi","ascii"=>"gi","html"=>"gi","latex"=>"\\ensuremath{\\mathrm{gi}}","mathml"=>"gi","unicode"=>"gi"}],"quantity_references"=>[{"id"=>"NISTq10","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:us-volumes:code:[gil_us]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/GI_US","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu357","type"=>"nist"},{"id"=>"u:imperial_gill","type"=>"unitsml"}],"short"=>"imperial_gill","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"gill [Canadian and UK (Imperial)]","lang"=>"en"},{"value"=>"imperial gill","lang"=>"en"},{"value"=>"gill","lang"=>"en"}],"symbols"=>[{"id"=>"gi_imperial","ascii"=>"gi","html"=>"gi","latex"=>"\\ensuremath{\\mathrm{gi}}","mathml"=>"gi","unicode"=>"gi"}],"quantity_references"=>[{"id"=>"NISTq10","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:us-volumes:code:[gil_us]","authority"=>"ucum"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu358","type"=>"nist"},{"id"=>"u:cubic_foot_per_minute","type"=>"unitsml"}],"short"=>"cubic_foot_per_minute","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"cubic foot per minute","lang"=>"en"}],"symbols"=>[{"id"=>"ft^3*min^-1","ascii"=>"ft^3*min^-1","html"=>"ft3/min","latex"=>"\\ensuremath{\\mathrm{ft^3/min}}","mathml"=>"ft3/min","unicode"=>"ft³min"}],"quantity_references"=>[{"id"=>"NISTq151","type"=>"nist"}],"root_units"=>[{"power"=>3,"unit_reference"=>{"id"=>"NISTu78","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu36","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/FT3-PER-MIN","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu359","type"=>"nist"},{"id"=>"u:cubic_foot_per_second","type"=>"unitsml"}],"short"=>"cubic_foot_per_second","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"cubic foot per second","lang"=>"en"}],"symbols"=>[{"id"=>"ft^3*sec^-1","ascii"=>"ft^3*sec^-1","html"=>"ft3/sec","latex"=>"\\ensuremath{\\mathrm{ft^3/sec}}","mathml"=>"ft3/sec","unicode"=>"ft³sec"}],"quantity_references"=>[{"id"=>"NISTq151","type"=>"nist"}],"root_units"=>[{"power"=>3,"unit_reference"=>{"id"=>"NISTu78","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/FT3-PER-SEC","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu36","type"=>"nist"},{"id"=>"u:minute","type"=>"unitsml"}],"short"=>"minute","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_acceptable","type"=>"nist"}],"names"=>[{"value"=>"minute","lang"=>"en"},{"value"=>"minute","lang"=>"fr"}],"symbols"=>[{"id"=>"min","ascii"=>"min","html"=>"min","latex"=>"\\ensuremath{\\mathrm{min}}","mathml"=>"min","unicode"=>"min"},{"id"=>"'_min","ascii"=>"'","html"=>"′","latex"=>"\\ensuremath{\\mathrm{'}}","mathml"=>"","unicode"=>"′"},{"id"=>"prime_min","ascii"=>"'","html"=>"′","latex"=>"\\ensuremath{\\mathrm{'}}","mathml"=>"","unicode"=>"′"}],"quantity_references"=>[{"id"=>"NISTq3","type"=>"nist"}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/minute","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:unit:iso1000:code:'","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/MIN","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu360","type"=>"nist"},{"id"=>"u:cubic_inch_per_minute","type"=>"unitsml"}],"short"=>"cubic_inch_per_minute","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"cubic inch per minute","lang"=>"en"}],"symbols"=>[{"id"=>"in^3*min^-1","ascii"=>"in^3*min^-1","html"=>"in3/min","latex"=>"\\ensuremath{\\mathrm{in^3/min}}","mathml"=>"in3/min","unicode"=>"in³min"}],"quantity_references"=>[{"id"=>"NISTq151","type"=>"nist"}],"root_units"=>[{"power"=>3,"unit_reference"=>{"id"=>"NISTu8","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu36","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/IN3-PER-MIN","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu361","type"=>"nist"},{"id"=>"u:microinch","type"=>"unitsml"}],"short"=>"microinch","root"=>false,"prefixed"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"microinch","lang"=>"en"}],"symbols"=>[{"id"=>"uin","ascii"=>"uin","html"=>"μin","latex"=>"\\ensuremath{\\mathrm{mu}in}","mathml"=>"μin","unicode"=>"μin"}],"quantity_references"=>[{"id"=>"NISTq1","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu8","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_-6","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/MicroIN","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu362","type"=>"nist"},{"id"=>"u:millibar","type"=>"unitsml"}],"short"=>"millibar","root"=>false,"prefixed"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"millibar","lang"=>"en"}],"symbols"=>[{"id"=>"mbar","ascii"=>"mbar","html"=>"mbar","latex"=>"\\ensuremath{\\mathrm{mbar}}","mathml"=>"mbar","unicode"=>"mbar"}],"quantity_references"=>[{"id"=>"NISTq15","type"=>"nist"},{"id"=>"NISTq16","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu91","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_-3","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/MilliBAR","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu363","type"=>"nist"},{"id"=>"u:mile_per_gallon","type"=>"unitsml"}],"short"=>"mile_per_gallon","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"mile per gallon (US)","lang"=>"en"},{"value"=>"mile per gallon","lang"=>"en"}],"symbols"=>[{"id"=>"mpg","ascii"=>"mpg","html"=>"mpg","latex"=>"\\ensuremath{\\mathrm{mpg}}","mathml"=>"mpg","unicode"=>"mpg"},{"id"=>"mi/gal","ascii"=>"mi/gal","html"=>"mi/gal","latex"=>"\\ensuremath{\\mathrm{mi/gal}}","mathml"=>"mi/gal","unicode"=>"mi/gal"}],"quantity_references"=>[{"id"=>"NISTq198","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu83","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu175","type"=>"nist"}}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu364","type"=>"nist"},{"id"=>"u:gallon_per_minute","type"=>"unitsml"}],"short"=>"gallon_per_minute","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"gallon (US) per minute","lang"=>"en"},{"value"=>"gallon per minute","lang"=>"en"}],"symbols"=>[{"id"=>"gpm","ascii"=>"gpm","html"=>"gpm","latex"=>"\\ensurement{\\mathrm{gpm}}","mathml"=>"gpm","unicode"=>"gal/min"},{"id"=>"gal*min^-1","ascii"=>"gal*min^-1","html"=>"gal/min","latex"=>"\\ensurement{\\mathrm{gal/min}}","mathml"=>"gal/min","unicode"=>"gpm"}],"quantity_references"=>[{"id"=>"NISTq151","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu175","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu36","type"=>"nist"}}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu365","type"=>"nist"},{"id"=>"u:milliliter","type"=>"unitsml"}],"short"=>"milliliter","root"=>false,"prefixed"=>true,"unit_system_reference"=>[{"id"=>"non-SI_acceptable","type"=>"nist"}],"names"=>[{"value"=>"milliliter","lang"=>"en"}],"symbols"=>[{"id"=>"mL","ascii"=>"mL","html"=>"mL","latex"=>"\\ensuremath{\\mathrm{mL}}","mathml"=>"mL","unicode"=>"mL"},{"id"=>"ml","ascii"=>"ml","html"=>"ml","latex"=>"\\ensuremath{\\mathrm{ml}}","mathml"=>"ml","unicode"=>"ml"}],"quantity_references"=>[{"id"=>"NISTq10","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu130","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_-3","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/MilliL","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu366","type"=>"nist"},{"id"=>"u:mole_per_liter","type"=>"unitsml"}],"short"=>"mole_per_liter","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"mole per liter","lang"=>"en"}],"symbols"=>[{"id"=>"mol*l^-1","ascii"=>"mol*l^-1","html"=>"mol/l","latex"=>"\\ensuremath{\\mathrm{mol/l}}","mathml"=>"mol/l","unicode"=>"mol/l"},{"id"=>"mol*L^-1","ascii"=>"mol*L^-1","html"=>"mol/L","latex"=>"\\ensuremath{\\mathrm{mol/L}}","mathml"=>"mol/L","unicode"=>"mol/L"}],"quantity_references"=>[{"id"=>"NISTq55","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu6","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu130","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/MOL-PER-L","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu37","type"=>"nist"},{"id"=>"u:hour","type"=>"unitsml"}],"short"=>"hour","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_acceptable","type"=>"nist"}],"names"=>[{"value"=>"hour","lang"=>"en"},{"value"=>"heure","lang"=>"fr"}],"symbols"=>[{"id"=>"h","ascii"=>"h","html"=>"h","latex"=>"\\ensuremath{\\mathrm{h}}","mathml"=>"h","unicode"=>"h"}],"quantity_references"=>[{"id"=>"NISTq3","type"=>"nist"}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/hour","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:unit:iso1000:code:h","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/HR","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu376","type"=>"nist"},{"id"=>"u:light_week","type"=>"unitsml"}],"short"=>"light_week","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"light week","lang"=>"en"}],"symbols"=>[{"id"=>"l.w.","ascii"=>"l.w.","html"=>"l.w.","latex"=>"\\ensuremath{\\mathrm{l.w.}}","mathml"=>"l.w.","unicode"=>"l.w."}],"quantity_references"=>[{"id"=>"NISTq1","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu377","type"=>"nist"},{"id"=>"u:light_hour","type"=>"unitsml"}],"short"=>"light_hour","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"light hour","lang"=>"en"}],"symbols"=>[{"id"=>"l.h.","ascii"=>"l.h.","html"=>"l.h.","latex"=>"\\ensuremath{\\mathrm{l.h.}}","mathml"=>"l.h.","unicode"=>"l.h."}],"quantity_references"=>[{"id"=>"NISTq1","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu378","type"=>"nist"},{"id"=>"u:light_minute","type"=>"unitsml"}],"short"=>"light_minute","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"light minute","lang"=>"en"}],"symbols"=>[{"id"=>"l.m.","ascii"=>"l.m.","html"=>"l.m.","latex"=>"\\ensuremath{\\mathrm{l.m.}}","mathml"=>"l.m.","unicode"=>"l.m."}],"quantity_references"=>[{"id"=>"NISTq1","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu379","type"=>"nist"},{"id"=>"u:light_second","type"=>"unitsml"}],"short"=>"light_second","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"light second","lang"=>"en"}],"symbols"=>[{"id"=>"l.s.","ascii"=>"l.s.","html"=>"l.s.","latex"=>"\\ensuremath{\\mathrm{l.s.}}","mathml"=>"l.s.","unicode"=>"l.s."}],"quantity_references"=>[{"id"=>"NISTq1","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu38","type"=>"nist"},{"id"=>"u:day","type"=>"unitsml"}],"short"=>"day","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_acceptable","type"=>"nist"}],"names"=>[{"value"=>"day","lang"=>"en"},{"value"=>"jour","lang"=>"fr"}],"symbols"=>[{"id"=>"d","ascii"=>"d","html"=>"d","latex"=>"\\ensuremath{\\mathrm{d}}","mathml"=>"d","unicode"=>"d"}],"quantity_references"=>[{"id"=>"NISTq3","type"=>"nist"}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/day","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:unit:iso1000:code:d","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/DAY","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu380","type"=>"nist"},{"id"=>"u:kilometer_per_liter","type"=>"unitsml"}],"short"=>"kilometer_per_liter","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_acceptable","type"=>"nist"}],"names"=>[{"value"=>"kilometer per liter","lang"=>"en"}],"symbols"=>[{"id"=>"km/l","ascii"=>"km/l","html"=>"km/l","latex"=>"\\ensuremath{\\mathrm{km/l}}","mathml"=>"km/l","unicode"=>"km/l"},{"id"=>"km/L","ascii"=>"km/L","html"=>"km/L","latex"=>"\\ensuremath{\\mathrm{km/L}}","mathml"=>"km/L","unicode"=>"km/L"}],"quantity_references"=>[{"id"=>"NISTq198","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_3","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu130","type"=>"nist"}}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu381","type"=>"nist"},{"id"=>"u:decibel_milliwatt","type"=>"unitsml"}],"short"=>"decibel_milliwatt","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"dBm","lang"=>"en"},{"value"=>"decibel-milliwatt","lang"=>"en"}],"symbols"=>[{"id"=>"dBm","ascii"=>"dBm","html"=>"dBm","latex"=>"\\ensuremath{\\mathrm{dBm}}","mathml"=>"dBm","unicode"=>"dBm"},{"id"=>"dB_mW","ascii"=>"dB_mW","html"=>"dBmW","latex"=>"\\ensuremath{\\mathrm{dB_{mW}}}","mathml"=>"dBmW","unicode"=>"dB_mW"}],"quantity_references"=>[{"id"=>"NISTq90","type"=>"nist"}],"scale_reference"=>{"id"=>"logarithmic_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu382","type"=>"nist"},{"id"=>"u:relative_humidity","type"=>"unitsml"}],"short"=>"relative_humidity","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"relative humidity","lang"=>"en"},{"value"=>"percent relative humidity","lang"=>"en"}],"symbols"=>[{"id"=>"rh","ascii"=>"RH","html"=>"RH","latex"=>"\\ensuremath{\\mathrm{RH}}","mathml"=>"RH","unicode"=>"RH"},{"id"=>"rh_percent","ascii"=>"%rh","html"=>"%rh","latex"=>"\\ensuremath{\\mathrm{\\%rh}}","mathml"=>"%rh","unicode"=>"%rh"}],"quantity_references"=>[{"id"=>"NISTq199","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/PERCENT_RH","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu383","type"=>"nist"},{"id"=>"u:octave","type"=>"unitsml"}],"short"=>"octave","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"octave","lang"=>"en"}],"symbols"=>[{"id"=>"oct","ascii"=>"oct","html"=>"oct","latex"=>"\\ensuremath{\\mathrm{oct}}","mathml"=>"oct","unicode"=>"oct"}],"quantity_references"=>[{"id"=>"NISTq200","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu384","type"=>"nist"},{"id"=>"u:decade","type"=>"unitsml"}],"short"=>"decade","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"decade","lang"=>"en"}],"symbols"=>[{"id"=>"dec","ascii"=>"dec","html"=>"dec","latex"=>"\\ensuremath{\\mathrm{dec}}","mathml"=>"dec","unicode"=>"dec"}],"quantity_references"=>[{"id"=>"NISTq200","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/DECADE","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu385","type"=>"nist"},{"id"=>"u:erlang","type"=>"unitsml"}],"short"=>"erlang","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"erlang","lang"=>"en"}],"symbols"=>[{"id"=>"E_erlang","ascii"=>"E","html"=>"E","latex"=>"\\ensuremath{\\mathrm{E}}","mathml"=>"E","unicode"=>"E"}],"quantity_references"=>[{"id"=>"NISTq201","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/ERLANG","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu386","type"=>"nist"},{"id"=>"u:baud","type"=>"unitsml"}],"short"=>"baud","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"baud","lang"=>"en"}],"symbols"=>[{"id"=>"Bd","ascii"=>"Bd","html"=>"Bd","latex"=>"\\ensuremath{\\mathrm{Bd}}","mathml"=>"Bd","unicode"=>"Bd"}],"quantity_references"=>[{"id"=>"NISTq202","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:infotech:code:Bd","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/BAUD","authority"=>"qudt"}],"scale_reference"=>{"id"=>"discrete","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu387","type"=>"nist"},{"id"=>"u:shannon","type"=>"unitsml"}],"short"=>"shannon","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"shannon","lang"=>"en"}],"symbols"=>[{"id"=>"Sh","ascii"=>"Sh","html"=>"Sh","latex"=>"\\ensuremath{\\mathrm{Sh}}","mathml"=>"Sh","unicode"=>"Sh"}],"quantity_references"=>[{"id"=>"NISTq203","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/SHANNON","authority"=>"qudt"}],"scale_reference"=>{"id"=>"discrete","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu388","type"=>"nist"},{"id"=>"u:hartley","type"=>"unitsml"}],"short"=>"hartley","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"hartley","lang"=>"en"}],"symbols"=>[{"id"=>"Hart","ascii"=>"Hart","html"=>"Hart","latex"=>"\\ensuremath{\\mathrm{Hart}}","mathml"=>"Hart","unicode"=>"Hart"}],"quantity_references"=>[{"id"=>"NISTq203","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/HART","authority"=>"qudt"}],"scale_reference"=>{"id"=>"discrete","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu39","type"=>"nist"},{"id"=>"u:angstrom","type"=>"unitsml"}],"short"=>"angstrom","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_acceptable","type"=>"nist"}],"names"=>[{"value"=>"ångström","lang"=>"en"}],"symbols"=>[{"id"=>"Aring","ascii"=>"Aring","html"=>"Å","latex"=>"\\ensuremath{\\mathrm{\\AA}}","mathml"=>"Å","unicode"=>"Å"}],"quantity_references"=>[{"id"=>"NISTq1","type"=>"nist"},{"id"=>"NISTq48","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:misc:code:Ao","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/ANGSTROM","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu3e-1/1","type"=>"nist"},{"id"=>"u:second_to_the_power_minus_one","type"=>"unitsml"}],"short"=>"second_to_the_power_minus_one","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"second to the power minus one","lang"=>"en"}],"symbols"=>[{"id"=>"s^-1","ascii"=>"s^-1","html"=>"s-1","latex"=>"\\ensuremath{\\mathrm{s^{-1}}}","mathml"=>"s1","unicode"=>"s⁻¹"}],"quantity_references"=>[{"id"=>"NISTq112","type"=>"nist"},{"id"=>"NISTq113","type"=>"nist"},{"id"=>"NISTq120","type"=>"nist"},{"id"=>"NISTq189","type"=>"nist"}],"root_units"=>[{"power"=>-1,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu4","type"=>"nist"},{"id"=>"u:ampere","type"=>"unitsml"}],"short"=>"ampere","root"=>true,"unit_system_reference"=>[{"id"=>"si-base","type"=>"unitsml"}],"names"=>[{"value"=>"ampere","lang"=>"en"},{"value"=>"ampère","lang"=>"fr"}],"symbols"=>[{"id"=>"A","ascii"=>"A","html"=>"A","latex"=>"\\ensuremath{\\mathrm{A}}","mathml"=>"A","unicode"=>"A"}],"quantity_references"=>[{"id"=>"NISTq4","type"=>"nist"}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/ampere","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:unit:si:code:A","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/A","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu4.u1e-1/1","type"=>"nist"},{"id"=>"u:ampere_per_meter","type"=>"unitsml"}],"short"=>"ampere_per_meter","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"ampere per meter","lang"=>"en"}],"symbols"=>[{"id"=>"A*m^-1","ascii"=>"A*m^-1","html"=>"A/m","latex"=>"\\ensuremath{\\mathrm{A/m}}","mathml"=>"A/m","unicode"=>"A·m⁻¹"}],"quantity_references"=>[{"id"=>"NISTq54","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu4","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu4.u1e-2/1","type"=>"nist"},{"id"=>"u:ampere_per_square_meter","type"=>"unitsml"}],"short"=>"ampere_per_square_meter","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"ampere per square meter","lang"=>"en"}],"symbols"=>[{"id"=>"A*m^-2","ascii"=>"A*m^-2","html"=>"A/m2","latex"=>"\\ensuremath{\\mathrm{A/m^2}}","mathml"=>"A/m2","unicode"=>"A·m⁻²"}],"quantity_references"=>[{"id"=>"NISTq53","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu4","type"=>"nist"}},{"power"=>-2,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu400","type"=>"nist"},{"id"=>"u:parts_per_million","type"=>"unitsml"}],"short"=>"parts_per_million","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"parts per million","lang"=>"en"}],"symbols"=>[{"id"=>"ppm","ascii"=>"ppm","html"=>"ppm","latex"=>"\\ensuremath{\\mathrm{ppm}}","mathml"=>"ppm","unicode"=>"ppm"}],"quantity_references"=>[{"id"=>"NISTq186","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:dimless:code:[ppm]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/PPM","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu401","type"=>"nist"},{"id"=>"u:var","type"=>"unitsml"}],"short"=>"var","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"var","lang"=>"en"}],"symbols"=>[{"id"=>"var","ascii"=>"var","html"=>"var","latex"=>"\\ensuremath{\\mathrm{var}}","mathml"=>"var","unicode"=>"var"}],"quantity_references"=>[{"id"=>"NISTq187","type"=>"nist"}],"si_derived_bases"=>[{"power"=>2,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}},{"power"=>1,"unit_reference"=>{"id"=>"NISTu27","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_3","type"=>"nist"}},{"power"=>-3,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu16","type"=>"nist"}},{"power"=>1,"unit_reference"=>{"id"=>"NISTu4","type"=>"nist"}}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu42","type"=>"nist"},{"id"=>"u:are","type"=>"unitsml"}],"short"=>"are","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_nist_acceptable","type"=>"nist"},{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"are","lang"=>"en"}],"symbols"=>[{"id"=>"a","ascii"=>"a","html"=>"a","latex"=>"\\ensuremath{\\mathrm{a}}","mathml"=>"a","unicode"=>"a"}],"quantity_references"=>[{"id"=>"NISTq8","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:iso1000:code:ar","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/ARE","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu43","type"=>"nist"},{"id"=>"u:barn","type"=>"unitsml"}],"short"=>"barn","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_acceptable","type"=>"nist"}],"names"=>[{"value"=>"barn","lang"=>"en"}],"symbols"=>[{"id"=>"barn","ascii"=>"b","html"=>"b","latex"=>"\\ensuremath{\\mathrm{b}}","mathml"=>"b","unicode"=>"b"}],"quantity_references"=>[{"id"=>"NISTq8","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:misc:code:b","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/BARN","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu44","type"=>"nist"},{"id"=>"u:hectare","type"=>"unitsml"}],"short"=>"hectare","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_acceptable","type"=>"nist"}],"names"=>[{"value"=>"hectare","lang"=>"en"},{"value"=>"hectare","lang"=>"fr"}],"symbols"=>[{"id"=>"ha","ascii"=>"ha","html"=>"ha","latex"=>"\\ensuremath{\\mathrm{ha}}","mathml"=>"ha","unicode"=>"ha"}],"quantity_references"=>[{"id"=>"NISTq8","type"=>"nist"}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/hectare","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/HA","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu45","type"=>"nist"},{"id"=>"u:square_foot","type"=>"unitsml"}],"short"=>"square_foot","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"square foot","lang"=>"en"}],"symbols"=>[{"id"=>"ft^2","ascii"=>"ft^2","html"=>"ft2","latex"=>"\\ensuremath{\\mathrm{ft^2}}","mathml"=>"ft2","unicode"=>"ft²"}],"quantity_references"=>[{"id"=>"NISTq8","type"=>"nist"}],"root_units"=>[{"power"=>2,"unit_reference"=>{"id"=>"NISTu78","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:intcust:code:[sft_i]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/FT2","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu46","type"=>"nist"},{"id"=>"u:square_inch","type"=>"unitsml"}],"short"=>"square_inch","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"square inch","lang"=>"en"}],"symbols"=>[{"id"=>"in^2","ascii"=>"in^2","html"=>"in2","latex"=>"\\ensuremath{\\mathrm{in^2}}","mathml"=>"in2","unicode"=>"in²"}],"quantity_references"=>[{"id"=>"NISTq8","type"=>"nist"}],"root_units"=>[{"power"=>2,"unit_reference"=>{"id"=>"NISTu8","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:intcust:code:[sin_i]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/IN2","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu47","type"=>"nist"},{"id"=>"u:abampere","type"=>"unitsml"}],"short"=>"abampere","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"abampere","lang"=>"en"},{"value"=>"EMU of current","lang"=>"en"}],"symbols"=>[{"id"=>"abA","ascii"=>"abA","html"=>"abA","latex"=>"\\ensuremath{\\mathrm{abA}}","mathml"=>"abA","unicode"=>"abA"}],"quantity_references"=>[{"id"=>"NISTq4","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/A_Ab","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu48","type"=>"nist"},{"id"=>"u:abcoulomb","type"=>"unitsml"}],"short"=>"abcoulomb","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"abcoulomb","lang"=>"en"}],"symbols"=>[{"id"=>"abC","ascii"=>"abC","html"=>"abC","latex"=>"\\ensuremath{\\mathrm{abC}}","mathml"=>"abC","unicode"=>"abC"}],"quantity_references"=>[{"id"=>"NISTq22","type"=>"nist"},{"id"=>"NISTq23","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/C_Ab","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu49","type"=>"nist"},{"id"=>"u:abfarad","type"=>"unitsml"}],"short"=>"abfarad","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"abfarad","lang"=>"en"},{"value"=>"EMU of capacitance","lang"=>"en"}],"symbols"=>[{"id"=>"abF","ascii"=>"abF","html"=>"abF","latex"=>"\\ensuremath{\\mathrm{abF}}","mathml"=>"abF","unicode"=>"abF"}],"quantity_references"=>[{"id"=>"NISTq27","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/FARAD_Ab","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu5","type"=>"nist"},{"id"=>"u:kelvin","type"=>"unitsml"}],"short"=>"kelvin","root"=>true,"unit_system_reference"=>[{"id"=>"si-base","type"=>"unitsml"}],"names"=>[{"value"=>"kelvin","lang"=>"en"},{"value"=>"kelvin","lang"=>"fr"}],"symbols"=>[{"id"=>"K","ascii"=>"K","html"=>"K","latex"=>"\\ensuremath{\\mathrm{K}}","mathml"=>"K","unicode"=>"K"},{"id"=>"degK","ascii"=>"degK","html"=>"°K","latex"=>"\\ensuremath{\\mathrm{^{\\circ}K}}","mathml"=>"°K","unicode"=>"°K"}],"quantity_references"=>[{"id"=>"NISTq193","type"=>"nist"},{"id"=>"NISTq196","type"=>"nist"},{"id"=>"NISTq5","type"=>"nist"}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/kelvin","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:base-unit:code:K","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/K","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu50","type"=>"nist"},{"id"=>"u:abhenry","type"=>"unitsml"}],"short"=>"abhenry","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"abhenry","lang"=>"en"},{"value"=>"EMU of inductance","lang"=>"en"}],"symbols"=>[{"id"=>"abH","ascii"=>"abH","html"=>"abH","latex"=>"\\ensuremath{\\mathrm{abH}}","mathml"=>"abH","unicode"=>"abH"}],"quantity_references"=>[{"id"=>"NISTq32","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/H_Ab","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu51","type"=>"nist"},{"id"=>"u:abmho","type"=>"unitsml"}],"short"=>"abmho","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"abmho","lang"=>"en"}],"symbols"=>[{"id"=>"abS","ascii"=>"abS","html"=>"(abΩ)-1","latex"=>"\\ensuremath{\\mathrm{(ab\\Omega)^{-1}}","mathml"=>"(abΩ)-1","unicode"=>"(abΩ)⁻¹"}],"quantity_references"=>[{"id"=>"NISTq29","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu52","type"=>"nist"},{"id"=>"u:abohm","type"=>"unitsml"}],"short"=>"abohm","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"abohm","lang"=>"en"},{"value"=>"EMU of resistance","lang"=>"en"}],"symbols"=>[{"id"=>"abohm","ascii"=>"abohm","html"=>"abΩ","latex"=>"\\ensuremath{\\mathrm{ab\\Omega}}","mathml"=>"abΩ","unicode"=>"abΩ"}],"quantity_references"=>[{"id"=>"NISTq28","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/OHM_Ab","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu53","type"=>"nist"},{"id"=>"u:abvolt","type"=>"unitsml"}],"short"=>"abvolt","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"abvolt","lang"=>"en"},{"value"=>"EMU of electric potential","lang"=>"en"}],"symbols"=>[{"id"=>"abV","ascii"=>"abV","html"=>"abV","latex"=>"\\ensuremath{\\mathrm{abV}}","mathml"=>"abV","unicode"=>"abV"}],"quantity_references"=>[{"id"=>"NISTq24","type"=>"nist"},{"id"=>"NISTq25","type"=>"nist"},{"id"=>"NISTq26","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/V_Ab","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu54","type"=>"nist"},{"id"=>"u:ampere_hour","type"=>"unitsml"}],"short"=>"ampere_hour","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_acceptable","type"=>"nist"}],"names"=>[{"value"=>"ampere hour","lang"=>"en"}],"symbols"=>[{"id"=>"A*h","ascii"=>"A*h","html"=>"A · h","latex"=>"\\ensuremath{\\mathrm{A\\cdot h}}","mathml"=>"A·h","unicode"=>"A·h"}],"quantity_references"=>[{"id"=>"NISTq22","type"=>"nist"},{"id"=>"NISTq23","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu4","type"=>"nist"}},{"power"=>1,"unit_reference"=>{"id"=>"NISTu37","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/A-HR","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu55","type"=>"nist"},{"id"=>"u:biot","type"=>"unitsml"}],"short"=>"biot","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"biot","lang"=>"en"}],"symbols"=>[{"id"=>"Bi","ascii"=>"Bi","html"=>"Bi","latex"=>"\\ensuremath{\\mathrm{Bi}}","mathml"=>"Bi","unicode"=>"Bi"}],"quantity_references"=>[{"id"=>"NISTq4","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu47","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:cgs:code:Bi","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/BIOT","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu57","type"=>"nist"},{"id"=>"u:us_survey_acre_foot","type"=>"unitsml"}],"short"=>"us_survey_acre_foot","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"acre-foot (based on US survey foot)","lang"=>"en"},{"value"=>"acre-foot","lang"=>"en"}],"symbols"=>[{"id"=>"ac*ft","ascii"=>"ac*ft","html"=>"ac · ft","latex"=>"\\ensuremath{\\mathrm{ac\\cdot ft}}","mathml"=>"ac·ft","unicode"=>"ac·ft"}],"quantity_references"=>[{"id"=>"NISTq10","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu317","type"=>"nist"}},{"power"=>1,"unit_reference"=>{"id"=>"NISTu78","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/AC-FT","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu58","type"=>"nist"},{"id"=>"u:maxwell","type"=>"unitsml"}],"short"=>"maxwell","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"maxwell","lang"=>"en"}],"symbols"=>[{"id"=>"Mx","ascii"=>"Mx","html"=>"Mx","latex"=>"\\ensuremath{\\mathrm{Mx}}","mathml"=>"Mx","unicode"=>"Mx"}],"quantity_references"=>[{"id"=>"NISTq30","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:cgs:code:Mx","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/MX","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu5e-1/1","type"=>"nist"},{"id"=>"u:kelvin_to_the_power_minus_one","type"=>"unitsml"}],"short"=>"kelvin_to_the_power_minus_one","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"kelvin to the power minus one","lang"=>"en"}],"symbols"=>[{"id"=>"K^-1","ascii"=>"K^-1","html"=>"K-1","latex"=>"\\ensuremath{\\mathrm{K^{-1}}}","mathml"=>"K1","unicode"=>"K⁻¹"}],"quantity_references"=>[{"id"=>"NISTq156","type"=>"nist"},{"id"=>"NISTq157","type"=>"nist"},{"id"=>"NISTq158","type"=>"nist"}],"root_units"=>[{"power"=>-1,"unit_reference"=>{"id"=>"NISTu5","type"=>"nist"}}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu6","type"=>"nist"},{"id"=>"u:mole","type"=>"unitsml"}],"short"=>"mole","root"=>true,"unit_system_reference"=>[{"id"=>"si-base","type"=>"unitsml"}],"names"=>[{"value"=>"mole","lang"=>"en"},{"value"=>"mole","lang"=>"fr"}],"symbols"=>[{"id"=>"mol","ascii"=>"mol","html"=>"mol","latex"=>"\\ensuremath{\\mathrm{mol}}","mathml"=>"mol","unicode"=>"mol"}],"quantity_references"=>[{"id"=>"NISTq6","type"=>"nist"}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/mole","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:unit:si:code:mol","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/MOL","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu6.u1e-3/1","type"=>"nist"},{"id"=>"u:mole_per_cubic_meter","type"=>"unitsml"}],"short"=>"mole_per_cubic_meter","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"mole per cubic meter","lang"=>"en"}],"symbols"=>[{"id"=>"mol*m^-3","ascii"=>"mol*m^-3","html"=>"mol/m3","latex"=>"\\ensuremath{\\mathrm{mol/m^3}}","mathml"=>"mol/m3","unicode"=>"mol·m⁻³"}],"quantity_references"=>[{"id"=>"NISTq55","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu6","type"=>"nist"}},{"power"=>-3,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu6.u27p10'3e-1/1","type"=>"nist"},{"id"=>"u:mole_per_kilogram","type"=>"unitsml"}],"short"=>"mole_per_kilogram","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"mole per kilogram","lang"=>"en"}],"symbols"=>[{"id"=>"mol*kg^-1","ascii"=>"mol*kg^-1","html"=>"mol/kg","latex"=>"\\ensuremath{\\mathrm{mol/kg}}","mathml"=>"mol/kg","unicode"=>"mol/kg"}],"quantity_references"=>[{"id"=>"NISTq179","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu6","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu27","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_3","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/MOL-PER-KiloGM","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu60","type"=>"nist"},{"id"=>"u:table_calorie","type"=>"unitsml"}],"short"=>"table_calorie","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"I.T. calorie","lang"=>"en"},{"value"=>"calorie_IT","lang"=>"en"},{"value"=>"calorie","lang"=>"en"}],"symbols"=>[{"id"=>"cal_IT","ascii"=>"cal_IT","html"=>"calIT","latex"=>"\\ensuremath{\\mathrm{cal_{IT}}}","mathml"=>"calIT","unicode"=>"cal_IT"}],"quantity_references"=>[{"id"=>"NISTq17","type"=>"nist"},{"id"=>"NISTq18","type"=>"nist"},{"id"=>"NISTq182","type"=>"nist"},{"id"=>"NISTq183","type"=>"nist"},{"id"=>"NISTq19","type"=>"nist"},{"id"=>"NISTq77","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:heat:code:cal","authority"=>"ucum"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu61","type"=>"nist"},{"id"=>"u:one","type"=>"unitsml"}],"short"=>"one","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"one","lang"=>"en"}],"symbols"=>[{"id"=>"1","ascii"=>"1","html"=>"1","latex"=>"\\ensuremath{\\mathrm{1}}","mathml"=>"1","unicode"=>"1"}],"quantity_references"=>[{"id"=>"NISTq111","type"=>"nist"},{"id"=>"NISTq121","type"=>"nist"},{"id"=>"NISTq125","type"=>"nist"},{"id"=>"NISTq136","type"=>"nist"},{"id"=>"NISTq137","type"=>"nist"},{"id"=>"NISTq138","type"=>"nist"},{"id"=>"NISTq140","type"=>"nist"},{"id"=>"NISTq147","type"=>"nist"},{"id"=>"NISTq188","type"=>"nist"},{"id"=>"NISTq93","type"=>"nist"},{"id"=>"NISTq94","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/ONE","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu62","type"=>"nist"},{"id"=>"u:erg","type"=>"unitsml"}],"short"=>"erg","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"erg","lang"=>"en"}],"symbols"=>[{"id"=>"erg","ascii"=>"erg","html"=>"erg","latex"=>"\\ensuremath{\\mathrm{erg}}","mathml"=>"erg","unicode"=>"erg"}],"quantity_references"=>[{"id"=>"NISTq17","type"=>"nist"},{"id"=>"NISTq18","type"=>"nist"},{"id"=>"NISTq182","type"=>"nist"},{"id"=>"NISTq183","type"=>"nist"},{"id"=>"NISTq19","type"=>"nist"},{"id"=>"NISTq77","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:cgs:code:erg","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/ERG","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu63","type"=>"nist"},{"id"=>"u:table_kg_calorie","type"=>"unitsml"}],"short"=>"table_kg_calorie","root"=>true,"prefixed"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"kilocalorie_IT","lang"=>"en"}],"symbols"=>[{"id"=>"kcal_IT","ascii"=>"kcal_IT","html"=>"kcalIT","latex"=>"\\ensuremath{\\mathrm{kcal_{IT}}}","mathml"=>"kcalIT","unicode"=>"kcal_IT"}],"quantity_references"=>[{"id"=>"NISTq17","type"=>"nist"},{"id"=>"NISTq18","type"=>"nist"},{"id"=>"NISTq182","type"=>"nist"},{"id"=>"NISTq183","type"=>"nist"},{"id"=>"NISTq19","type"=>"nist"},{"id"=>"NISTq77","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu64","type"=>"nist"},{"id"=>"u:thermo_kg_calorie","type"=>"unitsml"}],"short"=>"thermo_kg_calorie","root"=>true,"prefixed"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"kilocalorie_th","lang"=>"en"}],"symbols"=>[{"id"=>"kcal_th","ascii"=>"kcal_th","html"=>"kcalth","latex"=>"\\ensuremath{\\mathrm{kcal_{th}}}","mathml"=>"kcalth","unicode"=>"kcal_th"}],"quantity_references"=>[{"id"=>"NISTq17","type"=>"nist"},{"id"=>"NISTq18","type"=>"nist"},{"id"=>"NISTq182","type"=>"nist"},{"id"=>"NISTq183","type"=>"nist"},{"id"=>"NISTq19","type"=>"nist"},{"id"=>"NISTq77","type"=>"nist"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu65","type"=>"nist"},{"id"=>"u:kilowatt_hour","type"=>"unitsml"}],"short"=>"kilowatt_hour","root"=>false,"prefixed"=>true,"unit_system_reference"=>[{"id"=>"non-SI_acceptable","type"=>"nist"}],"names"=>[{"value"=>"kilowatt hour","lang"=>"en"}],"symbols"=>[{"id"=>"kW*h","ascii"=>"kW*h","html"=>"kW · h","latex"=>"\\ensuremath{\\mathrm{kW\\cdot h}}","mathml"=>"kW·h","unicode"=>"kW·h"}],"quantity_references"=>[{"id"=>"NISTq17","type"=>"nist"},{"id"=>"NISTq18","type"=>"nist"},{"id"=>"NISTq182","type"=>"nist"},{"id"=>"NISTq183","type"=>"nist"},{"id"=>"NISTq19","type"=>"nist"},{"id"=>"NISTq77","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu14","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_3","type"=>"nist"}},{"power"=>1,"unit_reference"=>{"id"=>"NISTu37","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/KiloW-HR","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu69","type"=>"nist"},{"id"=>"u:watt_hour","type"=>"unitsml"}],"short"=>"watt_hour","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_acceptable","type"=>"nist"}],"names"=>[{"value"=>"watt hour","lang"=>"en"}],"symbols"=>[{"id"=>"W*h","ascii"=>"W*h","html"=>"W · h","latex"=>"\\ensuremath{\\mathrm{W\\cdot h}}","mathml"=>"W·h","unicode"=>"W·h"}],"quantity_references"=>[{"id"=>"NISTq17","type"=>"nist"},{"id"=>"NISTq18","type"=>"nist"},{"id"=>"NISTq182","type"=>"nist"},{"id"=>"NISTq183","type"=>"nist"},{"id"=>"NISTq19","type"=>"nist"},{"id"=>"NISTq77","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu14","type"=>"nist"}},{"power"=>1,"unit_reference"=>{"id"=>"NISTu37","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/W-HR","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu7","type"=>"nist"},{"id"=>"u:candela","type"=>"unitsml"}],"short"=>"candela","root"=>true,"unit_system_reference"=>[{"id"=>"si-base","type"=>"unitsml"}],"names"=>[{"value"=>"candela","lang"=>"en"},{"value"=>"candela","lang"=>"fr"}],"symbols"=>[{"id"=>"cd","ascii"=>"cd","html"=>"cd","latex"=>"\\ensuremath{\\mathrm{cd}}","mathml"=>"cd","unicode"=>"cd"}],"quantity_references"=>[{"id"=>"NISTq7","type"=>"nist"}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/candela","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:base-unit:code:cd","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/CD","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu7.u1e-2/1","type"=>"nist"},{"id"=>"u:candela_per_square_meter","type"=>"unitsml"}],"short"=>"candela_per_square_meter","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"candela per square meter","lang"=>"en"}],"symbols"=>[{"id"=>"cd*m^-2","ascii"=>"cd*m^-2","html"=>"cd/m2","latex"=>"\\ensuremath{\\mathrm{cd/m^2}}","mathml"=>"cd/m2","unicode"=>"cd·m⁻²"}],"quantity_references"=>[{"id"=>"NISTq56","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu7","type"=>"nist"}},{"power"=>-2,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu71","type"=>"nist"},{"id"=>"u:dyne","type"=>"unitsml"}],"short"=>"dyne","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"dyne","lang"=>"en"}],"symbols"=>[{"id"=>"dyn","ascii"=>"dyn","html"=>"dyn","latex"=>"\\ensuremath{\\mathrm{dyn}}","mathml"=>"dyn","unicode"=>"dyn"}],"quantity_references"=>[{"id"=>"NISTq13","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:cgs:code:dyn","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/DYN","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu72","type"=>"nist"},{"id"=>"u:kilogram_force","type"=>"unitsml"}],"short"=>"kilogram_force","root"=>false,"prefixed"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"kilogram-force","lang"=>"en"}],"symbols"=>[{"id"=>"kgf","ascii"=>"kgf","html"=>"kgf","latex"=>"\\ensuremath{\\mathrm{kgf}}","mathml"=>"kgf","unicode"=>"kgf"}],"quantity_references"=>[{"id"=>"NISTq13","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu196","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_3","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/KiloGM_F","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu73","type"=>"nist"},{"id"=>"u:kilopond","type"=>"unitsml"}],"short"=>"kilopond","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"kilopond","lang"=>"en"}],"symbols"=>[{"id"=>"kp","ascii"=>"kp","html"=>"kp","latex"=>"\\ensuremath{\\mathrm{kp}}","mathml"=>"kp","unicode"=>"kp"}],"quantity_references"=>[{"id"=>"NISTq13","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu196","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/KiloPOND","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu74","type"=>"nist"},{"id"=>"u:calorie_th_per_second","type"=>"unitsml"}],"short"=>"calorie_th_per_second","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"calorie_th per second","lang"=>"en"}],"symbols"=>[{"id"=>"cal_th*s^-1","ascii"=>"cal_th*s^-1","html"=>"calth/s","latex"=>"\\ensuremath{\\mathrm{cal_{th}}}","mathml"=>"calth/s","unicode"=>"cal_th/s"}],"quantity_references"=>[{"id"=>"NISTq20","type"=>"nist"},{"id"=>"NISTq21","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu227","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu75","type"=>"nist"},{"id"=>"u:kilocalorie_th_per_second","type"=>"unitsml"}],"short"=>"kilocalorie_th_per_second","root"=>false,"prefixed"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"kilocalorie_th per second","lang"=>"en"}],"symbols"=>[{"id"=>"kcal_th*s^-1","ascii"=>"kcal_th*s^-1","html"=>"kcalth/s","latex"=>"\\ensuremath{\\mathrm{kcal_{th}}}","mathml"=>"kcalth/s","unicode"=>"kcal_th/s"}],"quantity_references"=>[{"id"=>"NISTq20","type"=>"nist"},{"id"=>"NISTq21","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu227","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_3","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu78","type"=>"nist"},{"id"=>"u:foot","type"=>"unitsml"}],"short"=>"foot","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"foot","lang"=>"en"}],"symbols"=>[{"id"=>"ft","ascii"=>"ft","html"=>"ft","latex"=>"\\ensuremath{\\mathrm{ft}}","mathml"=>"ft","unicode"=>"ft"},{"id"=>"'_ft","ascii"=>"'","html"=>"′","latex"=>"\\ensuremath{\\mathrm{'}}","mathml"=>"","unicode"=>"′"},{"id"=>"prime_ft","ascii"=>"'","html"=>"′","latex"=>"\\ensuremath{\\mathrm{'}}","mathml"=>"","unicode"=>"′"}],"quantity_references"=>[{"id"=>"NISTq1","type"=>"nist"},{"id"=>"NISTq48","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:intcust:code:[ft_i]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/FT","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu8","type"=>"nist"},{"id"=>"u:inch","type"=>"unitsml"}],"short"=>"inch","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"inch","lang"=>"en"}],"symbols"=>[{"id"=>"in","ascii"=>"in","html"=>"in","latex"=>"\\ensuremath{\\mathrm{in}}","mathml"=>"in","unicode"=>"in"},{"id"=>"\"_in","ascii"=>"\"","html"=>"″","latex"=>"\\ensuremath{\\mathrm{''}}","mathml"=>"","unicode"=>"″"},{"id"=>"dprime_in","ascii"=>"\"","html"=>"″","latex"=>"\\ensuremath{\\mathrm{''}}","mathml"=>"","unicode"=>"″"}],"quantity_references"=>[{"id"=>"NISTq1","type"=>"nist"},{"id"=>"NISTq48","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:intcust:code:[in_i]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/IN","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu83","type"=>"nist"},{"id"=>"u:mile","type"=>"unitsml"}],"short"=>"mile","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"mile","lang"=>"en"}],"symbols"=>[{"id"=>"mi","ascii"=>"mi","html"=>"mi","latex"=>"\\ensuremath{\\mathrm{mi}}","mathml"=>"mi","unicode"=>"mi"}],"quantity_references"=>[{"id"=>"NISTq1","type"=>"nist"},{"id"=>"NISTq48","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:intcust:code:[mi_i]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/MI","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu84","type"=>"nist"},{"id"=>"u:yard","type"=>"unitsml"}],"short"=>"yard","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"yard","lang"=>"en"}],"symbols"=>[{"id"=>"yd","ascii"=>"yd","html"=>"yd","latex"=>"\\ensuremath{\\mathrm{yd}}","mathml"=>"yd","unicode"=>"yd"}],"quantity_references"=>[{"id"=>"NISTq1","type"=>"nist"},{"id"=>"NISTq48","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:intcust:code:[yd_i]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/YD","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu85","type"=>"nist"},{"id"=>"u:phot","type"=>"unitsml"}],"short"=>"phot","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"phot","lang"=>"en"}],"symbols"=>[{"id"=>"ph","ascii"=>"ph","html"=>"ph","latex"=>"\\ensuremath{\\mathrm{ph}}","mathml"=>"ph","unicode"=>"ph"}],"quantity_references"=>[{"id"=>"NISTq47","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:cgs:code:ph","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/PHOT","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu86","type"=>"nist"},{"id"=>"u:grain","type"=>"unitsml"}],"short"=>"grain","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"grain (troy or apothecary)","lang"=>"en"},{"value"=>"troy grain","lang"=>"en"},{"value"=>"apothecary grain","lang"=>"en"},{"value"=>"grain","lang"=>"en"}],"symbols"=>[{"id"=>"gr","ascii"=>"gr","html"=>"gr","latex"=>"\\ensuremath{\\mathrm{gr}}","mathml"=>"gr","unicode"=>"gr"}],"quantity_references"=>[{"id"=>"NISTq2","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:avoirdupois:code:[gr]","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/GRAIN","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu88","type"=>"nist"},{"id"=>"u:metric_ton","type"=>"unitsml"}],"short"=>"metric_ton","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_acceptable","type"=>"nist"}],"names"=>[{"value"=>"tonne","lang"=>"en"},{"value"=>"metric ton","lang"=>"en"},{"value"=>"ton","lang"=>"en"},{"value"=>"tonne","lang"=>"fr"}],"symbols"=>[{"id"=>"t","ascii"=>"t","html"=>"t","latex"=>"\\ensuremath{\\mathrm{t}}","mathml"=>"t","unicode"=>"t"}],"quantity_references"=>[{"id"=>"NISTq2","type"=>"nist"}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/tonne","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:unit:iso1000:code:t","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/TON_Metric","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu89","type"=>"nist"},{"id"=>"u:erg_per_second","type"=>"unitsml"}],"short"=>"erg_per_second","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"erg per second","lang"=>"en"}],"symbols"=>[{"id"=>"erg*s^-1","ascii"=>"erg*s^-1","html"=>"erg/s","latex"=>"\\ensuremath{\\mathrm{erg/s}}","mathml"=>"erg/s","unicode"=>"erg·s⁻¹"}],"quantity_references"=>[{"id"=>"NISTq20","type"=>"nist"},{"id"=>"NISTq21","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu62","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/ERG-PER-SEC","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu9","type"=>"nist"},{"id"=>"u:radian","type"=>"unitsml"}],"short"=>"radian","root"=>true,"unit_system_reference"=>[{"id"=>"SI_derived_special","type"=>"nist"}],"names"=>[{"value"=>"radian","lang"=>"en"},{"value"=>"radian","lang"=>"fr"}],"symbols"=>[{"id"=>"rad","ascii"=>"rad","html"=>"rad","latex"=>"\\ensuremath{\\mathrm{rad}}","mathml"=>"rad","unicode"=>"rad"}],"quantity_references"=>[{"id"=>"NISTq195","type"=>"nist"},{"id"=>"NISTq9","type"=>"nist"}],"si_derived_bases"=>[{"power"=>2,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}},{"power"=>-2,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}}],"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/units/radian","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:base-unit:code:rad","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/RAD","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu9.u1e-1/1","type"=>"nist"},{"id"=>"u:radian_per_meter","type"=>"unitsml"}],"short"=>"radian_per_meter","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"radian per meter","lang"=>"en"}],"symbols"=>[{"id"=>"rad*m^-1","ascii"=>"rad*m^-1","html"=>"rad/m","latex"=>"\\ensuremath{\\mathrm{rad/m}}","mathml"=>"rad/m","unicode"=>"rad/m"}],"quantity_references"=>[{"id"=>"NISTq115","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu9","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/RAD-PER-M","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu9.u3e-1/1","type"=>"nist"},{"id"=>"u:radian_per_second","type"=>"unitsml"}],"short"=>"radian_per_second","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"radian per second","lang"=>"en"}],"symbols"=>[{"id"=>"rad*s^-1","ascii"=>"rad*s^-1","html"=>"rad/s","latex"=>"\\ensuremath{\\mathrm{rad/s}}","mathml"=>"rad/s","unicode"=>"rad/s"}],"quantity_references"=>[{"id"=>"NISTq113","type"=>"nist"},{"id"=>"NISTq57","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu9","type"=>"nist"}},{"power"=>-1,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/RAD-PER-SEC","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu9.u3e-2/1","type"=>"nist"},{"id"=>"u:radian_per_second_squared","type"=>"unitsml"}],"short"=>"radian_per_second_squared","root"=>false,"unit_system_reference"=>[{"id"=>"SI_derived_non-special","type"=>"nist"}],"names"=>[{"value"=>"radian per second squared","lang"=>"en"}],"symbols"=>[{"id"=>"rad*s^-2","ascii"=>"rad*s^-2","html"=>"rad/s2","latex"=>"\\ensuremath{\\mathrm{rad/s^2}}","mathml"=>"rad/s2","unicode"=>"rad/s²"}],"quantity_references"=>[{"id"=>"NISTq58","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu9","type"=>"nist"}},{"power"=>-2,"unit_reference"=>{"id"=>"NISTu3","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/RAD-PER-SEC2","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu91","type"=>"nist"},{"id"=>"u:bar","type"=>"unitsml"}],"short"=>"bar","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_acceptable","type"=>"nist"}],"names"=>[{"value"=>"bar","lang"=>"en"}],"symbols"=>[{"id"=>"bar","ascii"=>"bar","html"=>"bar","latex"=>"\\ensuremath{\\mathrm{bar}}","mathml"=>"bar","unicode"=>"bar"}],"quantity_references"=>[{"id"=>"NISTq15","type"=>"nist"},{"id"=>"NISTq16","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:iso1000:code:bar","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/BAR","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu92","type"=>"nist"},{"id"=>"u:dyne_per_square_centimeter","type"=>"unitsml"}],"short"=>"dyne_per_square_centimeter","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"dyne per square centimeter","lang"=>"en"}],"symbols"=>[{"id"=>"dyn*cm^-2","ascii"=>"dyn*cm^-2","html"=>"dyn/cm2","latex"=>"\\ensuremath{\\mathrm{dyn/cm^2}}","mathml"=>"dyn/cm2","unicode"=>"dyn·cm⁻²"}],"quantity_references"=>[{"id"=>"NISTq15","type"=>"nist"},{"id"=>"NISTq16","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu71","type"=>"nist"}},{"power"=>-2,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_-2","type"=>"nist"}}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu93","type"=>"nist"},{"id"=>"u:gram_force_per_square_centimeter","type"=>"unitsml"}],"short"=>"gram_force_per_square_centimeter","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"gram-force per square centimeter","lang"=>"en"}],"symbols"=>[{"id"=>"gf*cm^-2","ascii"=>"gf*cm^-2","html"=>"gf/cm2","latex"=>"\\ensuremath{\\mathrm{gf/cm^2}}","mathml"=>"gf/cm2","unicode"=>"gf·cm⁻²"}],"quantity_references"=>[{"id"=>"NISTq15","type"=>"nist"},{"id"=>"NISTq16","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu196","type"=>"nist"}},{"power"=>-2,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_-2","type"=>"nist"}}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu94","type"=>"nist"},{"id"=>"u:kilogram_force_per_square_centimeter","type"=>"unitsml"}],"short"=>"kilogram_force_per_square_centimeter","root"=>false,"prefixed"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"kilogram-force per square centimeter","lang"=>"en"}],"symbols"=>[{"id"=>"kgf*cm^-2","ascii"=>"kgf*cm^-2","html"=>"kgf/cm2","latex"=>"\\ensuremath{\\mathrm{kgf/cm^2}}","mathml"=>"kgf/cm2","unicode"=>"kgf·cm⁻²"}],"quantity_references"=>[{"id"=>"NISTq15","type"=>"nist"},{"id"=>"NISTq16","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu196","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_3","type"=>"nist"}},{"power"=>-2,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_-2","type"=>"nist"}}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu95","type"=>"nist"},{"id"=>"u:kilogram_force_per_square_meter","type"=>"unitsml"}],"short"=>"kilogram_force_per_square_meter","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"kilogram-force per square meter","lang"=>"en"}],"symbols"=>[{"id"=>"kgf*m^-2","ascii"=>"kgf*m^-2","html"=>"kgf/m2","latex"=>"\\ensuremath{\\mathrm{kgf/m^2}}","mathml"=>"kgf/m2","unicode"=>"kgf·m⁻²"}],"quantity_references"=>[{"id"=>"NISTq15","type"=>"nist"},{"id"=>"NISTq16","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu196","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_3","type"=>"nist"}},{"power"=>-2,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"}}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu96","type"=>"nist"},{"id"=>"u:kilogram_force_per_square_millimeter","type"=>"unitsml"}],"short"=>"kilogram_force_per_square_millimeter","root"=>false,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"kilogram-force per square millimeter","lang"=>"en"}],"symbols"=>[{"id"=>"kgf*mm^-2","ascii"=>"kgf*mm^-2","html"=>"kgf/mm2","latex"=>"\\ensuremath{\\mathrm{kgf/mm^2}}","mathml"=>"kgf/mm2","unicode"=>"kgf·mm⁻²"}],"quantity_references"=>[{"id"=>"NISTq15","type"=>"nist"},{"id"=>"NISTq16","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu196","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_3","type"=>"nist"}},{"power"=>-2,"unit_reference"=>{"id"=>"NISTu1","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_-3","type"=>"nist"}}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu97","type"=>"nist"},{"id"=>"u:centipoise","type"=>"unitsml"}],"short"=>"centipoise","root"=>false,"prefixed"=>true,"unit_system_reference"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"centipoise","lang"=>"en"}],"symbols"=>[{"id"=>"cP","ascii"=>"cP","html"=>"cP","latex"=>"\\ensuremath{\\mathrm{cP}}","mathml"=>"cP","unicode"=>"cP"}],"quantity_references"=>[{"id"=>"NISTq59","type"=>"nist"}],"root_units"=>[{"power"=>1,"unit_reference"=>{"id"=>"NISTu128","type"=>"nist"},"prefix_reference"=>{"id"=>"NISTp10_-2","type"=>"nist"}}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/CentiPOISE","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu98","type"=>"nist"},{"id"=>"u:curie","type"=>"unitsml"}],"short"=>"curie","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_nist_acceptable","type"=>"nist"},{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"curie","lang"=>"en"}],"symbols"=>[{"id"=>"Ci","ascii"=>"Ci","html"=>"Ci","latex"=>"\\ensuremath{\\mathrm{Ci}}","mathml"=>"Ci","unicode"=>"Ci"}],"quantity_references"=>[{"id"=>"NISTq35","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:unit:cgs:code:Ci","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/CI","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}},{"identifiers"=>[{"id"=>"NISTu99","type"=>"nist"},{"id"=>"u:rad","type"=>"unitsml"}],"short"=>"rad","root"=>true,"unit_system_reference"=>[{"id"=>"non-SI_nist_acceptable","type"=>"nist"},{"id"=>"non-SI_not_acceptable","type"=>"nist"}],"names"=>[{"value"=>"rad (absorbed dose)","lang"=>"en"}],"symbols"=>[{"id"=>"rad_radiation","ascii"=>"rad","html"=>"rad","latex"=>"\\ensuremath{\\mathrm{rad}}","mathml"=>"rad","unicode"=>"rad"}],"quantity_references"=>[{"id"=>"NISTq36","type"=>"nist"}],"references"=>[{"type"=>"informative","uri"=>"ucum:base-unit:code:rad","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/RAD_R","authority"=>"qudt"}],"scale_reference"=>{"id"=>"continuous_ratio","type"=>"unitsml"}}],"prefixes"=>[{"identifiers"=>[{"id"=>"NISTp10_-1","type"=>"nist"},{"id"=>"p:deci","type"=>"unitsml"}],"names"=>[{"value"=>"deci","lang"=>"en"}],"short"=>"deci","symbols"=>[{"id"=>"deci","ascii"=>"d","html"=>"d","latex"=>"d","mathml"=>"d","unicode"=>"d"}],"base"=>10,"power"=>-1,"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/prefixes/deci","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:prefix:code:d","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/Deci","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTp10_-12","type"=>"nist"},{"id"=>"p:pico","type"=>"unitsml"}],"names"=>[{"value"=>"pico","lang"=>"en"}],"short"=>"pico","symbols"=>[{"id"=>"pico","ascii"=>"p","html"=>"p","latex"=>"p","mathml"=>"p","unicode"=>"p"}],"base"=>10,"power"=>-12,"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/prefixes/pico","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:prefix:code:p","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/Pico","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTp10_-15","type"=>"nist"},{"id"=>"p:femto","type"=>"unitsml"}],"names"=>[{"value"=>"femto","lang"=>"en"}],"short"=>"femto","symbols"=>[{"id"=>"femto","ascii"=>"f","html"=>"f","latex"=>"f","mathml"=>"f","unicode"=>"f"}],"base"=>10,"power"=>-15,"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/prefixes/femto","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:prefix:code:f","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/Femto","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTp10_-18","type"=>"nist"},{"id"=>"p:atto","type"=>"unitsml"}],"names"=>[{"value"=>"atto","lang"=>"en"}],"short"=>"atto","symbols"=>[{"id"=>"atto","ascii"=>"a","html"=>"a","latex"=>"a","mathml"=>"a","unicode"=>"a"}],"base"=>10,"power"=>-18,"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/prefixes/atto","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:prefix:code:a","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/Atto","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTp10_-2","type"=>"nist"},{"id"=>"p:centi","type"=>"unitsml"}],"names"=>[{"value"=>"centi","lang"=>"en"}],"short"=>"centi","symbols"=>[{"id"=>"centi","ascii"=>"c","html"=>"c","latex"=>"c","mathml"=>"c","unicode"=>"c"}],"base"=>10,"power"=>-2,"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/prefixes/centi","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:prefix:code:c","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/Centi","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTp10_-21","type"=>"nist"},{"id"=>"p:zepto","type"=>"unitsml"}],"names"=>[{"value"=>"zepto","lang"=>"en"}],"short"=>"zepto","symbols"=>[{"id"=>"zepto","ascii"=>"z","html"=>"z","latex"=>"z","mathml"=>"z","unicode"=>"z"}],"base"=>10,"power"=>-21,"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/prefixes/zepto","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:prefix:code:z","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/Zepto","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTp10_-24","type"=>"nist"},{"id"=>"p:yocto","type"=>"unitsml"}],"names"=>[{"value"=>"yocto","lang"=>"en"}],"short"=>"yocto","symbols"=>[{"id"=>"yocto","ascii"=>"y","html"=>"y","latex"=>"y","mathml"=>"y","unicode"=>"y"}],"base"=>10,"power"=>-24,"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/prefixes/yocto","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:prefix:code:y","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/Yocto","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTp10_-27","type"=>"nist"},{"id"=>"p:ronto","type"=>"unitsml"}],"names"=>[{"value"=>"ronto","lang"=>"en"}],"short"=>"ronto","symbols"=>[{"id"=>"ronto","ascii"=>"r","html"=>"r","latex"=>"r","mathml"=>"r","unicode"=>"r"}],"base"=>10,"power"=>-27,"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/prefixes/ronto","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/Ronto","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTp10_-3","type"=>"nist"},{"id"=>"p:milli","type"=>"unitsml"}],"names"=>[{"value"=>"milli","lang"=>"en"}],"short"=>"milli","symbols"=>[{"id"=>"milli","ascii"=>"m","html"=>"m","latex"=>"m","mathml"=>"m","unicode"=>"m"}],"base"=>10,"power"=>-3,"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/prefixes/milli","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:prefix:code:m","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/Milli","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTp10_-30","type"=>"nist"},{"id"=>"p:quecto","type"=>"unitsml"}],"names"=>[{"value"=>"quecto","lang"=>"en"}],"short"=>"quecto","symbols"=>[{"id"=>"quecto","ascii"=>"q","html"=>"q","latex"=>"q","mathml"=>"q","unicode"=>"q"}],"base"=>10,"power"=>-30,"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/prefixes/quecto","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/Quecto","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTp10_-6","type"=>"nist"},{"id"=>"p:micro","type"=>"unitsml"}],"names"=>[{"value"=>"micro","lang"=>"en"}],"short"=>"micro","symbols"=>[{"id"=>"micro","ascii"=>"u","html"=>"µ","latex"=>"$mu$","mathml"=>"µ","unicode"=>"μ"}],"base"=>10,"power"=>-6,"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/prefixes/micro","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:prefix:code:u","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/Micro","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTp10_-9","type"=>"nist"},{"id"=>"p:nano","type"=>"unitsml"}],"names"=>[{"value"=>"nano","lang"=>"en"}],"short"=>"nano","symbols"=>[{"id"=>"nano","ascii"=>"n","html"=>"n","latex"=>"n","mathml"=>"n","unicode"=>"n"}],"base"=>10,"power"=>-9,"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/prefixes/nano","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:prefix:code:n","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/Nano","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTp10_0","type"=>"nist"},{"id"=>"p:none","type"=>"unitsml"}],"names"=>[{"value"=>"none","lang"=>"en"}],"short"=>"none","symbols"=>[{"id"=>"unity","ascii"=>"1","html"=>"1","latex"=>"1","mathml"=>"1","unicode"=>"1"}],"base"=>10,"power"=>0,"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/prefixes/none","authority"=>"si-digital-framework"}]},{"identifiers"=>[{"id"=>"NISTp10_1","type"=>"nist"},{"id"=>"p:deka","type"=>"unitsml"}],"names"=>[{"value"=>"deka","lang"=>"en"}],"short"=>"deka","symbols"=>[{"id"=>"deka","ascii"=>"da","html"=>"da","latex"=>"da","mathml"=>"da","unicode"=>"da"}],"base"=>10,"power"=>1,"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/prefixes/deca","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:prefix:code:da","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/Deca","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTp10_12","type"=>"nist"},{"id"=>"p:tera","type"=>"unitsml"}],"names"=>[{"value"=>"tera","lang"=>"en"}],"short"=>"tera","symbols"=>[{"id"=>"tera","ascii"=>"T","html"=>"T","latex"=>"T","mathml"=>"T","unicode"=>"T"}],"base"=>10,"power"=>12,"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/prefixes/tera","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:prefix:code:T","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/Tera","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTp10_15","type"=>"nist"},{"id"=>"p:peta","type"=>"unitsml"}],"names"=>[{"value"=>"peta","lang"=>"en"}],"short"=>"peta","symbols"=>[{"id"=>"peta","ascii"=>"P","html"=>"P","latex"=>"P","mathml"=>"P","unicode"=>"P"}],"base"=>10,"power"=>15,"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/prefixes/peta","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:prefix:code:P","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/Peta","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTp10_18","type"=>"nist"},{"id"=>"p:exa","type"=>"unitsml"}],"names"=>[{"value"=>"exa","lang"=>"en"}],"short"=>"exa","symbols"=>[{"id"=>"exa","ascii"=>"E","html"=>"E","latex"=>"E","mathml"=>"E","unicode"=>"E"}],"base"=>10,"power"=>18,"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/prefixes/exa","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:prefix:code:E","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/Exa","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTp10_2","type"=>"nist"},{"id"=>"p:hecto","type"=>"unitsml"}],"names"=>[{"value"=>"hecto","lang"=>"en"}],"short"=>"hecto","symbols"=>[{"id"=>"hecto","ascii"=>"h","html"=>"h","latex"=>"h","mathml"=>"h","unicode"=>"h"}],"base"=>10,"power"=>2,"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/prefixes/hecto","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:prefix:code:h","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/Hecto","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTp10_21","type"=>"nist"},{"id"=>"p:zetta","type"=>"unitsml"}],"names"=>[{"value"=>"zetta","lang"=>"en"}],"short"=>"zetta","symbols"=>[{"id"=>"zetta","ascii"=>"Z","html"=>"Z","latex"=>"Z","mathml"=>"Z","unicode"=>"Z"}],"base"=>10,"power"=>21,"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/prefixes/zetta","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:prefix:code:Z","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/Zetta","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTp10_24","type"=>"nist"},{"id"=>"p:yotta","type"=>"unitsml"}],"names"=>[{"value"=>"yotta","lang"=>"en"}],"short"=>"yotta","symbols"=>[{"id"=>"yotta","ascii"=>"Y","html"=>"Y","latex"=>"Y","mathml"=>"Y","unicode"=>"Y"}],"base"=>10,"power"=>24,"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/prefixes/yotta","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:prefix:code:Y","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/Yotta","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTp10_27","type"=>"nist"},{"id"=>"p:ronna","type"=>"unitsml"}],"names"=>[{"value"=>"ronna","lang"=>"en"}],"short"=>"ronna","symbols"=>[{"id"=>"ronna","ascii"=>"R","html"=>"R","latex"=>"R","mathml"=>"R","unicode"=>"R"}],"base"=>10,"power"=>27,"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/prefixes/ronna","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/Ronna","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTp10_3","type"=>"nist"},{"id"=>"p:kilo","type"=>"unitsml"}],"names"=>[{"value"=>"kilo","lang"=>"en"}],"short"=>"kilo","symbols"=>[{"id"=>"kilo","ascii"=>"k","html"=>"k","latex"=>"k","mathml"=>"k","unicode"=>"k"}],"base"=>10,"power"=>3,"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/prefixes/kilo","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:prefix:code:k","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/Kilo","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTp10_30","type"=>"nist"},{"id"=>"p:quetta","type"=>"unitsml"}],"names"=>[{"value"=>"quetta","lang"=>"en"}],"short"=>"quetta","symbols"=>[{"id"=>"quetta","ascii"=>"Q","html"=>"Q","latex"=>"Q","mathml"=>"Q","unicode"=>"Q"}],"base"=>10,"power"=>30,"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/prefixes/quetta","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/Quetta","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTp10_6","type"=>"nist"},{"id"=>"p:mega","type"=>"unitsml"}],"names"=>[{"value"=>"mega","lang"=>"en"}],"short"=>"mega","symbols"=>[{"id"=>"mega","ascii"=>"M","html"=>"M","latex"=>"M","mathml"=>"M","unicode"=>"M"}],"base"=>10,"power"=>6,"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/prefixes/mega","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:prefix:code:M","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/Mega","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTp10_9","type"=>"nist"},{"id"=>"p:giga","type"=>"unitsml"}],"names"=>[{"value"=>"giga","lang"=>"en"}],"short"=>"giga","symbols"=>[{"id"=>"giga","ascii"=>"G","html"=>"G","latex"=>"G","mathml"=>"G","unicode"=>"G"}],"base"=>10,"power"=>9,"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/SI/prefixes/giga","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"ucum:prefix:code:G","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/unit/Giga","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTp2_10","type"=>"nist"},{"id"=>"p:kibi","type"=>"unitsml"}],"names"=>[{"value"=>"kibi","lang"=>"en"}],"short"=>"kibi","symbols"=>[{"id"=>"kibi","ascii"=>"Ki","html"=>"Ki","latex"=>"Ki","mathml"=>"Ki","unicode"=>"Ki"}],"base"=>2,"power"=>10,"references"=>[{"type"=>"informative","uri"=>"ucum:prefix:code:Ki","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/prefix/Kibi","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTp2_20","type"=>"nist"},{"id"=>"p:mebi","type"=>"unitsml"}],"names"=>[{"value"=>"mebi","lang"=>"en"}],"short"=>"mebi","symbols"=>[{"id"=>"mebi","ascii"=>"Mi","html"=>"Mi","latex"=>"Mi","mathml"=>"Mi","unicode"=>"Mi"}],"base"=>2,"power"=>20,"references"=>[{"type"=>"informative","uri"=>"ucum:prefix:code:Mi","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/prefix/Mebi","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTp2_30","type"=>"nist"},{"id"=>"p:gibi","type"=>"unitsml"}],"names"=>[{"value"=>"gibi","lang"=>"en"}],"short"=>"gibi","symbols"=>[{"id"=>"gibi","ascii"=>"Gi","html"=>"Gi","latex"=>"Gi","mathml"=>"Gi","unicode"=>"Gi"}],"base"=>2,"power"=>30,"references"=>[{"type"=>"informative","uri"=>"ucum:prefix:code:Gi","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/prefix/Gibi","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTp2_40","type"=>"nist"},{"id"=>"p:tebi","type"=>"unitsml"}],"names"=>[{"value"=>"tebi","lang"=>"en"}],"short"=>"tebi","symbols"=>[{"id"=>"tebi","ascii"=>"Ti","html"=>"Ti","latex"=>"Ti","mathml"=>"Ti","unicode"=>"Ti"}],"base"=>2,"power"=>40,"references"=>[{"type"=>"informative","uri"=>"ucum:prefix:code:Ti","authority"=>"ucum"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/prefix/Tebi","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTp2_50","type"=>"nist"},{"id"=>"p:pebi","type"=>"unitsml"}],"names"=>[{"value"=>"pebi","lang"=>"en"}],"short"=>"pebi","symbols"=>[{"id"=>"pebi","ascii"=>"Pi","html"=>"Pi","latex"=>"Pi","mathml"=>"Pi","unicode"=>"Pi"}],"base"=>2,"power"=>50,"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/prefix/Pebi","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTp2_60","type"=>"nist"},{"id"=>"p:exbi","type"=>"unitsml"}],"names"=>[{"value"=>"exbi","lang"=>"en"}],"short"=>"exbi","symbols"=>[{"id"=>"exbi","ascii"=>"Ei","html"=>"Ei","latex"=>"Ei","mathml"=>"Ei","unicode"=>"Ei"}],"base"=>2,"power"=>60,"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/prefix/Exbi","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTp2_70","type"=>"nist"},{"id"=>"p:zebi","type"=>"unitsml"}],"names"=>[{"value"=>"zebi","lang"=>"en"}],"short"=>"zebi","symbols"=>[{"id"=>"zebi","ascii"=>"Zi","html"=>"Zi","latex"=>"Zi","mathml"=>"Zi","unicode"=>"Zi"}],"base"=>2,"power"=>70,"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/prefix/Zebi","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTp2_80","type"=>"nist"},{"id"=>"p:yobi","type"=>"unitsml"}],"names"=>[{"value"=>"yobi","lang"=>"en"}],"short"=>"yobi","symbols"=>[{"id"=>"yobi","ascii"=>"Yi","html"=>"Yi","latex"=>"Yi","mathml"=>"Yi","unicode"=>"Yi"}],"base"=>2,"power"=>80,"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/prefix/Yobi","authority"=>"qudt"}]}],"quantities"=>[{"identifiers"=>[{"id"=>"NISTq1","type"=>"nist"},{"id"=>"q:length","type"=>"unitsml"}],"quantity_type"=>"base","names"=>[{"value"=>"length","lang"=>"en"},{"value"=>"longueur","lang"=>"fr"}],"short"=>"length","dimension_reference"=>{"id"=>"NISTd1","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/LENG","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Length","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq10","type"=>"nist"},{"id"=>"q:volume","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"volume","lang"=>"en"},{"value"=>"volume","lang"=>"fr"}],"short"=>"volume","dimension_reference"=>{"id"=>"NISTd10","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/VOLU","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Volume","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq100","type"=>"nist"},{"id"=>"q:diameter","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"diameter","lang"=>"en"}],"short"=>"diameter","dimension_reference"=>{"id"=>"NISTd1","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Diameter","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq101","type"=>"nist"},{"id"=>"q:length_of_path","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"length of path","lang"=>"en"}],"short"=>"length_of_path","dimension_reference"=>{"id"=>"NISTd1","type"=>"nist"}},{"identifiers"=>[{"id"=>"NISTq102","type"=>"nist"},{"id"=>"q:cartesian_coordinates","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"cartesian coordinates","lang"=>"en"}],"short"=>"cartesian_coordinates","dimension_reference"=>{"id"=>"NISTd1","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/CartesianCoordinates","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq103","type"=>"nist"},{"id"=>"q:position_vector","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"position vector","lang"=>"en"}],"short"=>"position_vector","dimension_reference"=>{"id"=>"NISTd1","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/PositionVector","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq104","type"=>"nist"},{"id"=>"q:displacement","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"displacement","lang"=>"en"}],"short"=>"displacement","dimension_reference"=>{"id"=>"NISTd1","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Displacement","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq105","type"=>"nist"},{"id"=>"q:radius_of_curvature","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"radius of curvature","lang"=>"en"}],"short"=>"radius_of_curvature","dimension_reference"=>{"id"=>"NISTd1","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/RadiusOfCurvature","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq106","type"=>"nist"},{"id"=>"q:curvature","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"curvature","lang"=>"en"}],"short"=>"curvature","dimension_reference"=>{"id"=>"NISTd29","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Curvature","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq107","type"=>"nist"},{"id"=>"q:speed_of_propagation_of_waves","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"speed of propagation of waves","lang"=>"en"}],"short"=>"speed_of_propagation_of_waves","dimension_reference"=>{"id"=>"NISTd11","type"=>"nist"}},{"identifiers"=>[{"id"=>"NISTq108","type"=>"nist"},{"id"=>"q:acceleration_of_free_fall","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"acceleration of free fall","lang"=>"en"}],"short"=>"acceleration_of_free_fall","dimension_reference"=>{"id"=>"NISTd28","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/AccelerationOfGravity","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq109","type"=>"nist"},{"id"=>"q:period_duration","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"period duration","lang"=>"en"},{"value"=>"period","lang"=>"en"}],"short"=>"period_duration","dimension_reference"=>{"id"=>"NISTd3","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Period","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq11","type"=>"nist"},{"id"=>"q:solid_angle","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"solid angle","lang"=>"en"},{"value"=>"angle solide","lang"=>"fr"}],"short"=>"solid_angle","dimension_reference"=>{"id"=>"NISTd64","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/ANGS","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/SolidAngle","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq110","type"=>"nist"},{"id"=>"q:time_constant","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"time constant","lang"=>"en"}],"short"=>"time_constant","dimension_reference"=>{"id"=>"NISTd3","type"=>"nist"}},{"identifiers"=>[{"id"=>"NISTq111","type"=>"nist"},{"id"=>"q:rotation","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"rotation","lang"=>"en"}],"short"=>"rotation","dimension_reference"=>{"id"=>"NISTd80","type"=>"nist"}},{"identifiers"=>[{"id"=>"NISTq112","type"=>"nist"},{"id"=>"q:rotational_frequency","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"rotational frequency","lang"=>"en"}],"short"=>"rotational_frequency","dimension_reference"=>{"id"=>"NISTd24","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/RotationalFrequency","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq113","type"=>"nist"},{"id"=>"q:angular_frequency","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"angular frequency","lang"=>"en"}],"short"=>"angular_frequency","dimension_reference"=>{"id"=>"NISTd24","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/AngularFrequency","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq114","type"=>"nist"},{"id"=>"q:wavelength","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"wavelength","lang"=>"en"}],"short"=>"wavelength","dimension_reference"=>{"id"=>"NISTd1","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Wavelength","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq115","type"=>"nist"},{"id"=>"q:angular_wavenumber","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"angular wavenumber","lang"=>"en"},{"value"=>"angular repetency","lang"=>"en"}],"short"=>"angular_wavenumber","dimension_reference"=>{"id"=>"NISTd29","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/AngularWavenumber","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq116","type"=>"nist"},{"id"=>"q:phase_velocity","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"phase velocity","lang"=>"en"},{"value"=>"phase speed","lang"=>"en"}],"short"=>"phase_velocity","dimension_reference"=>{"id"=>"NISTd11","type"=>"nist"}},{"identifiers"=>[{"id"=>"NISTq117","type"=>"nist"},{"id"=>"q:group_velocity","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"group velocity","lang"=>"en"},{"value"=>"group speed","lang"=>"en"}],"short"=>"group_velocity","dimension_reference"=>{"id"=>"NISTd11","type"=>"nist"}},{"identifiers"=>[{"id"=>"NISTq118","type"=>"nist"},{"id"=>"q:level_of_a_field_quantity","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"level of a field quantity","lang"=>"en"}],"short"=>"level_of_a_field_quantity","dimension_reference"=>{"id"=>"NISTd83","type"=>"nist"}},{"identifiers"=>[{"id"=>"NISTq119","type"=>"nist"},{"id"=>"q:level_of_a_power_quantity","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"level of a power quantity","lang"=>"en"}],"short"=>"level_of_a_power_quantity","dimension_reference"=>{"id"=>"NISTd84","type"=>"nist"}},{"identifiers"=>[{"id"=>"NISTq12","type"=>"nist"},{"id"=>"q:velocity","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"velocity","lang"=>"en"},{"value"=>"speed","lang"=>"en"},{"value"=>"vitesse","lang"=>"fr"}],"short"=>"velocity","dimension_reference"=>{"id"=>"NISTd11","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/VELO","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Speed","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq120","type"=>"nist"},{"id"=>"q:damping_coefficient","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"damping coefficient","lang"=>"en"}],"short"=>"damping_coefficient","dimension_reference"=>{"id"=>"NISTd24","type"=>"nist"}},{"identifiers"=>[{"id"=>"NISTq121","type"=>"nist"},{"id"=>"q:logarithmic_decrement","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"ratio logarithm (Np)","lang"=>"en"},{"value"=>"logarithmic decrement (field quantities using natural logarithms)","lang"=>"en"},{"value"=>"logarithme d'un rapport (Np)","lang"=>"fr"}],"short"=>"logarithmic_decrement","dimension_reference"=>{"id"=>"NISTd67","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/RLGN","authority"=>"si-digital-framework"}]},{"identifiers"=>[{"id"=>"NISTq122","type"=>"nist"},{"id"=>"q:attenuation_coefficient","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"attenuation coefficient","lang"=>"en"}],"short"=>"attenuation_coefficient","dimension_reference"=>{"id"=>"NISTd29","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/AttenuationCoefficient","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq123","type"=>"nist"},{"id"=>"q:phase_coefficient","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"phase coefficient","lang"=>"en"}],"short"=>"phase_coefficient","dimension_reference"=>{"id"=>"NISTd29","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/PhaseCoefficient","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq124","type"=>"nist"},{"id"=>"q:propagation_coefficient","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"propagation coefficient","lang"=>"en"}],"short"=>"propagation_coefficient","dimension_reference"=>{"id"=>"NISTd29","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/PropagationCoefficient","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq125","type"=>"nist"},{"id"=>"q:relative_mass_density","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"relative mass density","lang"=>"en"},{"value"=>"relative density","lang"=>"en"}],"short"=>"relative_mass_density","dimension_reference"=>{"id"=>"NISTd80","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/RelativeMassDensity","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq126","type"=>"nist"},{"id"=>"q:linear_density","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"linear density","lang"=>"en"},{"value"=>"lineic mass","lang"=>"en"}],"short"=>"linear_density","dimension_reference"=>{"id"=>"NISTd58","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/LinearDensity","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq127","type"=>"nist"},{"id"=>"q:mass_moment_of_inertia","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"mass moment of inertia","lang"=>"en"},{"value"=>"moment of inertia","lang"=>"en"}],"short"=>"mass_moment_of_inertia","dimension_reference"=>{"id"=>"NISTd59","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/SecondAxialMomentOfArea","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq128","type"=>"nist"},{"id"=>"q:weight","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"weight","lang"=>"en"}],"short"=>"weight","dimension_reference"=>{"id"=>"NISTd12","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Weight","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq129","type"=>"nist"},{"id"=>"q:impulse","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"impulse","lang"=>"en"}],"short"=>"impulse","dimension_reference"=>{"id"=>"NISTd61","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Impulse","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq13","type"=>"nist"},{"id"=>"q:force","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"force","lang"=>"en"},{"value"=>"force","lang"=>"fr"}],"short"=>"force","dimension_reference"=>{"id"=>"NISTd12","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/FORC","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Force","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq130","type"=>"nist"},{"id"=>"q:gravitational_constant","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"gravitational constant","lang"=>"en"}],"short"=>"gravitational_constant","dimension_reference"=>{"id"=>"NISTd62","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/GravitationalAttraction","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq131","type"=>"nist"},{"id"=>"q:momentum","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"momentum","lang"=>"en"}],"short"=>"momentum","dimension_reference"=>{"id"=>"NISTd61","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Momentum","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq132","type"=>"nist"},{"id"=>"q:moment_of_momentum","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"moment of momentum","lang"=>"en"},{"value"=>"angular momentum","lang"=>"en"}],"short"=>"moment_of_momentum","dimension_reference"=>{"id"=>"NISTd60","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/AngularMomentum","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq133","type"=>"nist"},{"id"=>"q:angular_impulse","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"angular impulse","lang"=>"en"}],"short"=>"angular_impulse","dimension_reference"=>{"id"=>"NISTd60","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/AngularImpulse","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq134","type"=>"nist"},{"id"=>"q:normal_stress","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"normal stress","lang"=>"en"}],"short"=>"normal_stress","dimension_reference"=>{"id"=>"NISTd14","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/NormalStress","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq135","type"=>"nist"},{"id"=>"q:shear_stress","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"shear stress","lang"=>"en"}],"short"=>"shear_stress","dimension_reference"=>{"id"=>"NISTd14","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/ShearStress","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq136","type"=>"nist"},{"id"=>"q:linear_strain","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"linear strain","lang"=>"en"}],"short"=>"linear_strain","dimension_reference"=>{"id"=>"NISTd80","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/LinearStrain","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq137","type"=>"nist"},{"id"=>"q:shear_strain","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"shear strain","lang"=>"en"}],"short"=>"shear_strain","dimension_reference"=>{"id"=>"NISTd80","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/ShearStrain","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq138","type"=>"nist"},{"id"=>"q:volume_strain","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"volume strain","lang"=>"en"}],"short"=>"volume_strain","dimension_reference"=>{"id"=>"NISTd80","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/VolumeStrain","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq139","type"=>"nist"},{"id"=>"q:compressibility","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"compressibility","lang"=>"en"}],"short"=>"compressibility","dimension_reference"=>{"id"=>"NISTd63","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Compressibility","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq14","type"=>"nist"},{"id"=>"q:magnetic_flux_density","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"magnetic flux density","lang"=>"en"},{"value"=>"induction magnétique","lang"=>"fr"}],"short"=>"magnetic_flux_density","dimension_reference"=>{"id"=>"NISTd13","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/MGFD","authority"=>"si-digital-framework"}]},{"identifiers"=>[{"id"=>"NISTq140","type"=>"nist"},{"id"=>"q:poisson_number","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"Poisson number","lang"=>"en"}],"short"=>"poisson_number","dimension_reference"=>{"id"=>"NISTd80","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/PoissonRatio","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq141","type"=>"nist"},{"id"=>"q:modulus_of_elasticity","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"modulus of elasticity","lang"=>"en"}],"short"=>"modulus_of_elasticity","dimension_reference"=>{"id"=>"NISTd14","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/ModulusOfElasticity","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq142","type"=>"nist"},{"id"=>"q:modulus_of_rigidity","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"modulus of rigidity","lang"=>"en"},{"value"=>"shear modulus","lang"=>"en"}],"short"=>"modulus_of_rigidity","dimension_reference"=>{"id"=>"NISTd14","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/ShearModulus","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq143","type"=>"nist"},{"id"=>"q:modulus_of_compression","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"modulus of compression","lang"=>"en"},{"value"=>"bulk modulus","lang"=>"en"}],"short"=>"modulus_of_compression","dimension_reference"=>{"id"=>"NISTd14","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/BulkModulus","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq144","type"=>"nist"},{"id"=>"q:second_axial_moment_of_area","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"second axial moment of area","lang"=>"en"}],"short"=>"second_axial_moment_of_area","dimension_reference"=>{"id"=>"NISTd57","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/SecondAxialMomentOfArea","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq145","type"=>"nist"},{"id"=>"q:second_polar_moment_of_area","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"second polar moment of area","lang"=>"en"}],"short"=>"second_polar_moment_of_area","dimension_reference"=>{"id"=>"NISTd57","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/SecondPolarMomentOfArea","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq146","type"=>"nist"},{"id"=>"q:section_modulus","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"section modulus","lang"=>"en"}],"short"=>"section_modulus","dimension_reference"=>{"id"=>"NISTd10","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/SectionModulus","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq147","type"=>"nist"},{"id"=>"q:dynamic_friction_factor","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"dynamic friction factor","lang"=>"en"}],"short"=>"dynamic_friction_factor","dimension_reference"=>{"id"=>"NISTd80","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/DynamicFriction","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq15","type"=>"nist"},{"id"=>"q:pressure","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"pressure","lang"=>"en"},{"value"=>"pression, contrainte","lang"=>"fr"}],"short"=>"pressure","dimension_reference"=>{"id"=>"NISTd14","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/PRES","authority"=>"si-digital-framework"}]},{"identifiers"=>[{"id"=>"NISTq150","type"=>"nist"},{"id"=>"q:mass_flow_rate","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"mass flow rate","lang"=>"en"}],"short"=>"mass_flow_rate","dimension_reference"=>{"id"=>"NISTd65","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/MassFlowRate","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq151","type"=>"nist"},{"id"=>"q:volume_flow_rate","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"volume flow rate","lang"=>"en"}],"short"=>"volume_flow_rate","dimension_reference"=>{"id"=>"NISTd66","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/VolumeFlowRate","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq152","type"=>"nist"},{"id"=>"q:lagrange_function","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"Lagrange function","lang"=>"en"}],"short"=>"lagrange_function","dimension_reference"=>{"id"=>"NISTd15","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/LagrangeFunction","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq153","type"=>"nist"},{"id"=>"q:hamilton_function","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"Hamilton function","lang"=>"en"}],"short"=>"hamilton_function","dimension_reference"=>{"id"=>"NISTd15","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/HamiltonFunction","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq154","type"=>"nist"},{"id"=>"q:action","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"action","lang"=>"en"}],"short"=>"action","dimension_reference"=>{"id"=>"NISTd60","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Action","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq155","type"=>"nist"},{"id"=>"q:area_moment_of_inertia","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"area moment of inertia","lang"=>"en"},{"value"=>"second moment of area","lang"=>"en"}],"short"=>"area_moment_of_inertia","dimension_reference"=>{"id"=>"NISTd57","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/PolarMomentOfInertia","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq156","type"=>"nist"},{"id"=>"q:linear_expansion_coefficient","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"linear expansion coefficient","lang"=>"en"}],"short"=>"linear_expansion_coefficient","dimension_reference"=>{"id"=>"NISTd68","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/LinearExpansionCoefficient","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq157","type"=>"nist"},{"id"=>"q:cubic_expansion_coefficient","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"cubic expansion coefficient","lang"=>"en"}],"short"=>"cubic_expansion_coefficient","dimension_reference"=>{"id"=>"NISTd68","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/CubicExpansionCoefficient","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq158","type"=>"nist"},{"id"=>"q:relative_pressure_coefficient","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"relative pressure coefficient","lang"=>"en"}],"short"=>"relative_pressure_coefficient","dimension_reference"=>{"id"=>"NISTd68","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/RelativePressureCoefficient","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq159","type"=>"nist"},{"id"=>"q:pressure_coefficient","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"pressure coefficient","lang"=>"en"}],"short"=>"pressure_coefficient","dimension_reference"=>{"id"=>"NISTd69","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/PressureCoefficient","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq16","type"=>"nist"},{"id"=>"q:stress","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"stress","lang"=>"en"}],"short"=>"stress","dimension_reference"=>{"id"=>"NISTd14","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Stress","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq160","type"=>"nist"},{"id"=>"q:isothermal_compressibility","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"isothermal compressibility","lang"=>"en"}],"short"=>"isothermal_compressibility","dimension_reference"=>{"id"=>"NISTd70","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/IsothermalCompressibility","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq161","type"=>"nist"},{"id"=>"q:magnetomotive_force","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"magnetomotive force (Cardelli) (-SP811)","lang"=>"en"}],"short"=>"magnetomotive_force","dimension_reference"=>{"id"=>"NISTd4","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/MagnetomotiveForce","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq162","type"=>"nist"},{"id"=>"q:electric_dipole_moment","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"electric dipole moment","lang"=>"en"}],"short"=>"electric_dipole_moment","dimension_reference"=>{"id"=>"NISTd72","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/ElectricDipoleMoment","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq163","type"=>"nist"},{"id"=>"q:magnetizability","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"magnetizability","lang"=>"en"}],"short"=>"magnetizability","dimension_reference"=>{"id"=>"NISTd54","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Magnetization","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq164","type"=>"nist"},{"id"=>"q:magnetic_dipole_moment","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"magnetic dipole moment","lang"=>"en"}],"short"=>"magnetic_dipole_moment","dimension_reference"=>{"id"=>"NISTd73","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/MagneticDipoleMoment","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq165","type"=>"nist"},{"id"=>"q:electric_field_gradient","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"electric field gradient","lang"=>"en"}],"short"=>"electric_field_gradient","dimension_reference"=>{"id"=>"NISTd74","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/ElectricField","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq166","type"=>"nist"},{"id"=>"q:electric_potential","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"electric potential","lang"=>"en"}],"short"=>"electric_potential","dimension_reference"=>{"id"=>"NISTd18","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/ElectricPotential","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq167","type"=>"nist"},{"id"=>"q:electric_quadrupole_moment","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"electric quadrupole moment","lang"=>"en"}],"short"=>"electric_quadrupole_moment","dimension_reference"=>{"id"=>"NISTd75","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/ElectricQuadrupoleMoment","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq168","type"=>"nist"},{"id"=>"q:polarizability","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"polarizability","lang"=>"en"}],"short"=>"polarizability","dimension_reference"=>{"id"=>"NISTd76","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Polarizability","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq169","type"=>"nist"},{"id"=>"q:electric_capacitance","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"electric capacitance","lang"=>"en"}],"short"=>"electric_capacitance","dimension_reference"=>{"id"=>"NISTd19","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Capacitance","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq17","type"=>"nist"},{"id"=>"q:energy","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"energy","lang"=>"en"},{"value"=>"énergie","lang"=>"fr"}],"short"=>"energy","dimension_reference"=>{"id"=>"NISTd15","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/ENGY","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Energy","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq170","type"=>"nist"},{"id"=>"q:electric_current_intensity","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"electric current intensity","lang"=>"en"}],"short"=>"electric_current_intensity","dimension_reference"=>{"id"=>"NISTd4","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/ElectricCurrentIntensity","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq171","type"=>"nist"},{"id"=>"q:electric_inductance","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"electric inductance","lang"=>"en"}],"short"=>"electric_inductance","dimension_reference"=>{"id"=>"NISTd23","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Inductance","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq172","type"=>"nist"},{"id"=>"q:first_hyperpolarizability","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"1st hyperpolarizability","lang"=>"en"}],"short"=>"first_hyperpolarizability","dimension_reference"=>{"id"=>"NISTd77","type"=>"nist"}},{"identifiers"=>[{"id"=>"NISTq173","type"=>"nist"},{"id"=>"q:second_hyperpolarizability","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"2nd hyperpolarizability","lang"=>"en"}],"short"=>"second_hyperpolarizability","dimension_reference"=>{"id"=>"NISTd78","type"=>"nist"}},{"identifiers"=>[{"id"=>"NISTq174","type"=>"nist"},{"id"=>"q:index_of_acidity","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"index of acidity","lang"=>"en"}],"short"=>"index_of_acidity","dimension_reference"=>{"id"=>"NISTd94","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Acidity","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq175","type"=>"nist"},{"id"=>"q:fahrenheit_temperature","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"Fahrenheit temperature","lang"=>"en"}],"short"=>"fahrenheit_temperature","dimension_reference"=>{"id"=>"NISTd5","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/FahrenheitTemperature","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq176","type"=>"nist"},{"id"=>"q:mass_divided_by_length","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"mass divided by length","lang"=>"en"}],"short"=>"mass_divided_by_length","dimension_reference"=>{"id"=>"NISTd58","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/LineicMass","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq177","type"=>"nist"},{"id"=>"q:storage_capacity","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"storage capacity","lang"=>"en"},{"value"=>"storage size","lang"=>"en"}],"short"=>"storage_capacity","dimension_reference"=>{"id"=>"NISTd95","type"=>"nist"}},{"identifiers"=>[{"id"=>"NISTq179","type"=>"nist"},{"id"=>"q:molality_of_solute_B","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"molality of solute B","lang"=>"en"}],"short"=>"molality_of_solute_B","dimension_reference"=>{"id"=>"NISTd79","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/MolalityOfSolute","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq18","type"=>"nist"},{"id"=>"q:work","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"work","lang"=>"en"}],"short"=>"work","dimension_reference"=>{"id"=>"NISTd15","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Work","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq180","type"=>"nist"},{"id"=>"q:coefficient_of_heat_transfer","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"coefficient of heat transfer","lang"=>"en"}],"short"=>"coefficient_of_heat_transfer","dimension_reference"=>{"id"=>"NISTd71","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/CoefficientOfHeatTransfer","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq181","type"=>"nist"},{"id"=>"q:surface_coefficient_of_heat_transfer","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"surface coefficient of heat transfer","lang"=>"en"}],"short"=>"surface_coefficient_of_heat_transfer","dimension_reference"=>{"id"=>"NISTd71","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/SurfaceCoefficientOfHeatTransfer","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq182","type"=>"nist"},{"id"=>"q:kinetic_energy","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"kinetic energy","lang"=>"en"}],"short"=>"kinetic_energy","dimension_reference"=>{"id"=>"NISTd15","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/KineticEnergy","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq183","type"=>"nist"},{"id"=>"q:mechanical_energy","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"mechanical energy","lang"=>"en"}],"short"=>"mechanical_energy","dimension_reference"=>{"id"=>"NISTd15","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/MechanicalEnergy","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq184","type"=>"nist"},{"id"=>"q:torque","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"torque","lang"=>"en"}],"short"=>"torque","dimension_reference"=>{"id"=>"NISTd15","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Torque","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq185","type"=>"nist"},{"id"=>"q:bending_moment_of_force","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"bending moment of force","lang"=>"en"}],"short"=>"bending_moment_of_force","dimension_reference"=>{"id"=>"NISTd15","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/BendingMomentOfForce","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq186","type"=>"nist"},{"id"=>"q:mass_fraction","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"mass fraction","lang"=>"en"},{"value"=>"mole fraction","lang"=>"en"}],"short"=>"mass_fraction","dimension_reference"=>{"id"=>"NISTd85","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/MassFraction","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq187","type"=>"nist"},{"id"=>"q:apparent_power","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"apparent power","lang"=>"en"}],"short"=>"apparent_power","dimension_reference"=>{"id"=>"NISTd16","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/ApparentPower","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq188","type"=>"nist"},{"id"=>"q:nil","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"nil","lang"=>"en"}],"short"=>"nil","dimension_reference"=>{"id"=>"NISTd80","type"=>"nist"}},{"identifiers"=>[{"id"=>"NISTq189","type"=>"nist"},{"id"=>"q:emission_rate","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"emission rate","lang"=>"en"},{"value"=>"taux d'émission","lang"=>"fr"}],"short"=>"emission_rate","dimension_reference"=>{"id"=>"NISTd24","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/EMIR","authority"=>"si-digital-framework"}]},{"identifiers"=>[{"id"=>"NISTq19","type"=>"nist"},{"id"=>"q:amount_of_heat","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"amount of heat","lang"=>"en"},{"value"=>"heat","lang"=>"en"}],"short"=>"amount_of_heat","dimension_reference"=>{"id"=>"NISTd15","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Heat","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq190","type"=>"nist"},{"id"=>"q:fluence","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"fluence","lang"=>"en"},{"value"=>"fluence","lang"=>"fr"}],"short"=>"fluence","dimension_reference"=>{"id"=>"NISTd96","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/FLUE","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/EnergyFluence","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq191","type"=>"nist"},{"id"=>"q:fluence_rate","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"fluence rate","lang"=>"en"},{"value"=>"débit de fluence","lang"=>"fr"}],"short"=>"fluence_rate","dimension_reference"=>{"id"=>"NISTd97","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/FLUR","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/EnergyFluenceRate","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq192","type"=>"nist"},{"id"=>"q:ITS-90_temperature_celsius","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"ITS-90 temperature (°C)","lang"=>"en"},{"value"=>"température ITS-90 (℃)","lang"=>"fr"}],"short"=>"ITS-90_temperature_celsius","dimension_reference"=>{"id"=>"NISTd5","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/ITSC","authority"=>"si-digital-framework"}]},{"identifiers"=>[{"id"=>"NISTq193","type"=>"nist"},{"id"=>"q:ITS-90_temperature_kelvin","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"ITS-90 temperature (K)","lang"=>"en"},{"value"=>"température ITS-90 (K)","lang"=>"fr"}],"short"=>"ITS-90_temperature_kelvin","dimension_reference"=>{"id"=>"NISTd5","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/ITSK","authority"=>"si-digital-framework"}]},{"identifiers"=>[{"id"=>"NISTq194","type"=>"nist"},{"id"=>"q:kerma_rate","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"kerma rate","lang"=>"en"},{"value"=>"kerma rate","lang"=>"fr"}],"short"=>"kerma_rate","dimension_reference"=>{"id"=>"NISTd50","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/KRMR","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/KermaRate","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq195","type"=>"nist"},{"id"=>"q:phase","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"phase","lang"=>"en"},{"value"=>"phase","lang"=>"fr"}],"short"=>"phase","dimension_reference"=>{"id"=>"NISTd98","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/PHAS","authority"=>"si-digital-framework"}]},{"identifiers"=>[{"id"=>"NISTq196","type"=>"nist"},{"id"=>"q:PLTS-2000_temperature","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"PLTS-2000 temperature (K)","lang"=>"en"},{"value"=>"température PLTS-2000 (K)","lang"=>"fr"}],"short"=>"PLTS-2000_temperature","dimension_reference"=>{"id"=>"NISTd5","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/PLTS","authority"=>"si-digital-framework"}]},{"identifiers"=>[{"id"=>"NISTq197","type"=>"nist"},{"id"=>"q:exposure","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"exposure","lang"=>"en"},{"value"=>"exposition (rayons x et γ)","lang"=>"fr"}],"short"=>"exposure","dimension_reference"=>{"id"=>"NISTd49","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/XPOS","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Exposure","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq198","type"=>"nist"},{"id"=>"q:fuel_efficiency","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"fuel efficiency","lang"=>"en"},{"value"=>"fuel economy","lang"=>"en"}],"short"=>"fuel_efficiency","dimension_reference"=>{"id"=>"NISTd99","type"=>"nist"}},{"identifiers"=>[{"id"=>"NISTq199","type"=>"nist"},{"id"=>"q:relative_humidity","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"relative humidity","lang"=>"en"}],"short"=>"relative_humidity","dimension_reference"=>{"id"=>"NISTd80","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/RelativeHumidity","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq2","type"=>"nist"},{"id"=>"q:mass","type"=>"unitsml"}],"quantity_type"=>"base","names"=>[{"value"=>"mass","lang"=>"en"},{"value"=>"masse","lang"=>"fr"}],"short"=>"mass","dimension_reference"=>{"id"=>"NISTd2","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/MASS","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Mass","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq20","type"=>"nist"},{"id"=>"q:power","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"power","lang"=>"en"},{"value"=>"puissance, flux énergétique","lang"=>"fr"}],"short"=>"power","dimension_reference"=>{"id"=>"NISTd16","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/POWR","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Power","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq200","type"=>"nist"},{"id"=>"q:logarithmic_frequency_range","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"logarithmic frequency range","lang"=>"en"}],"short"=>"logarithmic_frequency_range","dimension_reference"=>{"id"=>"NISTd67","type"=>"nist"}},{"identifiers"=>[{"id"=>"NISTq201","type"=>"nist"},{"id"=>"q:traffic_intensity","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"traffic intensity","lang"=>"en"}],"short"=>"traffic_intensity","dimension_reference"=>{"id"=>"NISTd100","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/TrafficIntensity","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq202","type"=>"nist"},{"id"=>"q:symbol_rate","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"symbol rate","lang"=>"en"}],"short"=>"symbol_rate","dimension_reference"=>{"id"=>"NISTd101","type"=>"nist"}},{"identifiers"=>[{"id"=>"NISTq203","type"=>"nist"},{"id"=>"q:information_content","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"information content","lang"=>"en"},{"value"=>"information entropy","lang"=>"en"}],"short"=>"information_content","dimension_reference"=>{"id"=>"NISTd102","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/InformationContent","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq21","type"=>"nist"},{"id"=>"q:radiant_flux","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"radiant flux","lang"=>"en"}],"short"=>"radiant_flux","dimension_reference"=>{"id"=>"NISTd16","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/RadiantFlux","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq22","type"=>"nist"},{"id"=>"q:electric_charge","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"electric charge","lang"=>"en"},{"value"=>"charge électrique","lang"=>"fr"}],"short"=>"electric_charge","dimension_reference"=>{"id"=>"NISTd17","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/ELCH","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/ElectricCharge","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq23","type"=>"nist"},{"id"=>"q:amount_of_electricity","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"amount of electricity","lang"=>"en"}],"short"=>"amount_of_electricity","dimension_reference"=>{"id"=>"NISTd17","type"=>"nist"}},{"identifiers"=>[{"id"=>"NISTq24","type"=>"nist"},{"id"=>"q:electric_potential_difference","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"electric potential difference","lang"=>"en"},{"value"=>"différence de potentiel électrique","lang"=>"fr"}],"short"=>"electric_potential_difference","dimension_reference"=>{"id"=>"NISTd18","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/ELPD","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/ElectricPotentialDifference","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq25","type"=>"nist"},{"id"=>"q:potential_difference","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"potential difference","lang"=>"en"}],"short"=>"potential_difference","dimension_reference"=>{"id"=>"NISTd18","type"=>"nist"}},{"identifiers"=>[{"id"=>"NISTq26","type"=>"nist"},{"id"=>"q:electromotive_force","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"electromotive force","lang"=>"en"}],"short"=>"electromotive_force","dimension_reference"=>{"id"=>"NISTd18","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/ElectromotiveForce","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq27","type"=>"nist"},{"id"=>"q:capacitance","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"capacitance","lang"=>"en"},{"value"=>"capacité électrique","lang"=>"fr"}],"short"=>"capacitance","dimension_reference"=>{"id"=>"NISTd19","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/ELCA","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Capacitance","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq28","type"=>"nist"},{"id"=>"q:electric_resistance","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"electric resistance","lang"=>"en"},{"value"=>"résistance électrique","lang"=>"fr"}],"short"=>"electric_resistance","dimension_reference"=>{"id"=>"NISTd20","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/ELRE","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Resistance","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq29","type"=>"nist"},{"id"=>"q:electric_conductance","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"electric conductance","lang"=>"en"},{"value"=>"conductance électrique","lang"=>"fr"}],"short"=>"electric_conductance","dimension_reference"=>{"id"=>"NISTd21","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/ELCO","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Conductance","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq3","type"=>"nist"},{"id"=>"q:time","type"=>"unitsml"}],"quantity_type"=>"base","names"=>[{"value"=>"time","lang"=>"en"},{"value"=>"duration","lang"=>"en"},{"value"=>"temps","lang"=>"fr"}],"short"=>"time","dimension_reference"=>{"id"=>"NISTd3","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/TIME","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Time","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq30","type"=>"nist"},{"id"=>"q:magnetic_flux","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"magnetic flux","lang"=>"en"},{"value"=>"flux d'induction magnétique","lang"=>"fr"}],"short"=>"magnetic_flux","dimension_reference"=>{"id"=>"NISTd22","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/MGFL","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/MagneticFlux","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq31","type"=>"nist"},{"id"=>"q:surface_density","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"surface density","lang"=>"en"},{"value"=>"areic mass","lang"=>"en"},{"value"=>"masse surfacique","lang"=>"fr"}],"short"=>"surface_density","dimension_reference"=>{"id"=>"NISTd51","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/SUDE","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/AreaMass","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq32","type"=>"nist"},{"id"=>"q:inductance","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"inductance","lang"=>"en"},{"value"=>"inductance","lang"=>"fr"}],"short"=>"inductance","dimension_reference"=>{"id"=>"NISTd23","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/ELIN","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Inductance","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq33","type"=>"nist"},{"id"=>"q:mass_concentration","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"mass concentration","lang"=>"en"},{"value"=>"concentration massique","lang"=>"fr"}],"short"=>"mass_concentration","dimension_reference"=>{"id"=>"NISTd30","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/MACO","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/MassConcentration","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq34","type"=>"nist"},{"id"=>"q:celsius_temperature","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"Celsius temperature","lang"=>"en"},{"value"=>"température Celsius","lang"=>"fr"}],"short"=>"celsius_temperature","dimension_reference"=>{"id"=>"NISTd5","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/TEMC","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/CelsiusTemperature","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq35","type"=>"nist"},{"id"=>"q:activity_referred_to_a_radionuclide","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"activity referred to a radionuclide","lang"=>"en"},{"value"=>"activité d'un radionucléide","lang"=>"fr"}],"short"=>"activity_referred_to_a_radionuclide","dimension_reference"=>{"id"=>"NISTd24","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/ARRN","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Activity","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq36","type"=>"nist"},{"id"=>"q:absorbed_dose","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"absorbed dose","lang"=>"en"},{"value"=>"dose absorbée","lang"=>"fr"}],"short"=>"absorbed_dose","dimension_reference"=>{"id"=>"NISTd25","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/ABDO","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/AbsorbedDose","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq37","type"=>"nist"},{"id"=>"q:specific_energy_imparted","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"specific energy imparted","lang"=>"en"}],"short"=>"specific_energy_imparted","dimension_reference"=>{"id"=>"NISTd25","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/SpecificEnergyImparted","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq38","type"=>"nist"},{"id"=>"q:kerma","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"kerma","lang"=>"en"},{"value"=>"kerma","lang"=>"fr"}],"short"=>"kerma","dimension_reference"=>{"id"=>"NISTd25","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/KRMA","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Kerma","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq39","type"=>"nist"},{"id"=>"q:dose_equivalent","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"dose equivalent","lang"=>"en"},{"value"=>"équivalent de dose","lang"=>"fr"}],"short"=>"dose_equivalent","dimension_reference"=>{"id"=>"NISTd25","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/DOEQ","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/DoseEquivalent","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq4","type"=>"nist"},{"id"=>"q:electric_current","type"=>"unitsml"}],"quantity_type"=>"base","names"=>[{"value"=>"electric current","lang"=>"en"},{"value"=>"courant électrique","lang"=>"fr"}],"short"=>"electric_current","dimension_reference"=>{"id"=>"NISTd4","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/ELCU","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/ElectricCurrent","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq40","type"=>"nist"},{"id"=>"q:ambient_dose_equivalent","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"ambient dose equivalent","lang"=>"en"}],"short"=>"ambient_dose_equivalent","dimension_reference"=>{"id"=>"NISTd25","type"=>"nist"}},{"identifiers"=>[{"id"=>"NISTq41","type"=>"nist"},{"id"=>"q:directional_dose_equivalent","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"directional dose equivalent","lang"=>"en"}],"short"=>"directional_dose_equivalent","dimension_reference"=>{"id"=>"NISTd25","type"=>"nist"}},{"identifiers"=>[{"id"=>"NISTq42","type"=>"nist"},{"id"=>"q:personal_dose_equivalent","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"personal dose equivalent","lang"=>"en"}],"short"=>"personal_dose_equivalent","dimension_reference"=>{"id"=>"NISTd25","type"=>"nist"}},{"identifiers"=>[{"id"=>"NISTq43","type"=>"nist"},{"id"=>"q:organ_dose_equivalent","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"organ dose equivalent","lang"=>"en"}],"short"=>"organ_dose_equivalent","dimension_reference"=>{"id"=>"NISTd25","type"=>"nist"}},{"identifiers"=>[{"id"=>"NISTq44","type"=>"nist"},{"id"=>"q:catalytic_activity","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"catalytic activity","lang"=>"en"},{"value"=>"activité catalytique","lang"=>"fr"}],"short"=>"catalytic_activity","dimension_reference"=>{"id"=>"NISTd26","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/CATA","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/CatalyticActivity","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq45","type"=>"nist"},{"id"=>"q:frequency","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"frequency","lang"=>"en"},{"value"=>"fréquence","lang"=>"fr"}],"short"=>"frequency","dimension_reference"=>{"id"=>"NISTd24","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/FREQ","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Frequency","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq46","type"=>"nist"},{"id"=>"q:luminous_flux","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"luminous flux","lang"=>"en"},{"value"=>"flux lumineux","lang"=>"fr"}],"short"=>"luminous_flux","dimension_reference"=>{"id"=>"NISTd7","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/LUFL","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/LuminousFlux","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq47","type"=>"nist"},{"id"=>"q:illuminance","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"illuminance","lang"=>"en"},{"value"=>"éclairement lumineux","lang"=>"fr"}],"short"=>"illuminance","dimension_reference"=>{"id"=>"NISTd27","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/ILLU","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Illuminance","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq48","type"=>"nist"},{"id"=>"q:distance","type"=>"unitsml"}],"quantity_type"=>"base","names"=>[{"value"=>"distance","lang"=>"en"}],"short"=>"distance","dimension_reference"=>{"id"=>"NISTd1","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Distance","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq49","type"=>"nist"},{"id"=>"q:acceleration","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"acceleration","lang"=>"en"},{"value"=>"accélération","lang"=>"fr"}],"short"=>"acceleration","dimension_reference"=>{"id"=>"NISTd28","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/ACCE","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Acceleration","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq5","type"=>"nist"},{"id"=>"q:temperature","type"=>"unitsml"}],"quantity_type"=>"base","names"=>[{"value"=>"thermodynamic temperature","lang"=>"en"},{"value"=>"température thermodynamique","lang"=>"fr"}],"short"=>"temperature","dimension_reference"=>{"id"=>"NISTd5","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/TEMT","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/ThermodynamicTemperature","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq50","type"=>"nist"},{"id"=>"q:wavenumber","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"wavenumber","lang"=>"en"},{"value"=>"repetency","lang"=>"en"},{"value"=>"nombre d'ondes","lang"=>"fr"}],"short"=>"wavenumber","dimension_reference"=>{"id"=>"NISTd29","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/WANU","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Repetency","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq51","type"=>"nist"},{"id"=>"q:density","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"density","lang"=>"en"},{"value"=>"mass density","lang"=>"en"},{"value"=>"masse volumique","lang"=>"fr"}],"short"=>"density","dimension_reference"=>{"id"=>"NISTd30","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/DENS","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Density","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq52","type"=>"nist"},{"id"=>"q:specific_volume","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"specific volume","lang"=>"en"},{"value"=>"massic volume","lang"=>"en"},{"value"=>"volume massique","lang"=>"fr"}],"short"=>"specific_volume","dimension_reference"=>{"id"=>"NISTd31","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/SPVO","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/SpecificVolume","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq53","type"=>"nist"},{"id"=>"q:current_density","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"current density","lang"=>"en"},{"value"=>"densité de courant","lang"=>"fr"}],"short"=>"current_density","dimension_reference"=>{"id"=>"NISTd32","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/CUDE","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Conductivity","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq54","type"=>"nist"},{"id"=>"q:magnetic_field_strength","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"magnetic field strength","lang"=>"en"},{"value"=>"champ magnétique","lang"=>"fr"}],"short"=>"magnetic_field_strength","dimension_reference"=>{"id"=>"NISTd33","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/MAFD","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/MagneticFieldStrength_H","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq55","type"=>"nist"},{"id"=>"q:amount_concentration","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"amount of substance concentration","lang"=>"en"},{"value"=>"amount concentration","lang"=>"en"},{"value"=>"concentration de quantité de matière","lang"=>"fr"}],"short"=>"amount_concentration","dimension_reference"=>{"id"=>"NISTd34","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/AMSC","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/MolecularConcentration","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq56","type"=>"nist"},{"id"=>"q:luminance","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"luminance","lang"=>"en"},{"value"=>"luminance lumineuse","lang"=>"fr"}],"short"=>"luminance","dimension_reference"=>{"id"=>"NISTd27","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/LUMA","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Luminance","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq57","type"=>"nist"},{"id"=>"q:angular_velocity","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"angular velocity","lang"=>"en"},{"value"=>"vitesse angulaire","lang"=>"fr"}],"short"=>"angular_velocity","dimension_reference"=>{"id"=>"NISTd11","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/VELA","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/AngularVelocity","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq58","type"=>"nist"},{"id"=>"q:angular_acceleration","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"angular acceleration","lang"=>"en"},{"value"=>"accelération angulaire","lang"=>"fr"}],"short"=>"angular_acceleration","dimension_reference"=>{"id"=>"NISTd35","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/ACCA","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/AngularAcceleration","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq59","type"=>"nist"},{"id"=>"q:dynamic_viscosity","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"dynamic viscosity","lang"=>"en"},{"value"=>"viscosité dynamique","lang"=>"fr"}],"short"=>"dynamic_viscosity","dimension_reference"=>{"id"=>"NISTd36","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/DYVI","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/DynamicViscosity","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq6","type"=>"nist"},{"id"=>"q:substance_amount","type"=>"unitsml"}],"quantity_type"=>"base","names"=>[{"value"=>"amount of substance","lang"=>"en"},{"value"=>"quantité de matière","lang"=>"fr"}],"short"=>"substance_amount","dimension_reference"=>{"id"=>"NISTd6","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/AMSU","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/AmountOfSubstance","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq60","type"=>"nist"},{"id"=>"q:moment_of_force","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"moment of force","lang"=>"en"},{"value"=>"moment d’une force","lang"=>"fr"}],"short"=>"moment_of_force","dimension_reference"=>{"id"=>"NISTd15","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/TORQ","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/MomentOfForce","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq61","type"=>"nist"},{"id"=>"q:surface_tension","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"surface tension","lang"=>"en"},{"value"=>"tension superficielle","lang"=>"fr"}],"short"=>"surface_tension","dimension_reference"=>{"id"=>"NISTd37","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/SUTE","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/SurfaceTension","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq62","type"=>"nist"},{"id"=>"q:heat_flux_density","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"heat flux density","lang"=>"en"},{"value"=>"flux thermique surfacique","lang"=>"fr"}],"short"=>"heat_flux_density","dimension_reference"=>{"id"=>"NISTd38","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/HEFD","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/HeatFluxDensity","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq63","type"=>"nist"},{"id"=>"q:heat_capacity","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"heat capacity","lang"=>"en"},{"value"=>"capacité thermique","lang"=>"fr"}],"short"=>"heat_capacity","dimension_reference"=>{"id"=>"NISTd39","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/HECA","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/HeatCapacity","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq64","type"=>"nist"},{"id"=>"q:specific_heat_capacity","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"specific heat capacity","lang"=>"en"},{"value"=>"capacité thermique massique","lang"=>"fr"}],"short"=>"specific_heat_capacity","dimension_reference"=>{"id"=>"NISTd40","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/SHEC","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/SpecificHeatCapacity","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq65","type"=>"nist"},{"id"=>"q:specific_energy","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"specific energy","lang"=>"en"},{"value"=>"énergie massique","lang"=>"fr"}],"short"=>"specific_energy","dimension_reference"=>{"id"=>"NISTd25","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/SENG","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/SpecificEnergy","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq66","type"=>"nist"},{"id"=>"q:thermal_conductivity","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"thermal conductivity","lang"=>"en"},{"value"=>"conductivité thermique","lang"=>"fr"}],"short"=>"thermal_conductivity","dimension_reference"=>{"id"=>"NISTd41","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/TCON","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/ThermalConductivity","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq67","type"=>"nist"},{"id"=>"q:energy_density","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"energy density","lang"=>"en"},{"value"=>"énergie volumique","lang"=>"fr"}],"short"=>"energy_density","dimension_reference"=>{"id"=>"NISTd14","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/ENGD","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/EnergyDensity","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq68","type"=>"nist"},{"id"=>"q:electric_field_strength","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"electric field strength","lang"=>"en"},{"value"=>"champ électrique","lang"=>"fr"}],"short"=>"electric_field_strength","dimension_reference"=>{"id"=>"NISTd42","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/ELFS","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/ElectricFieldStrength","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq69","type"=>"nist"},{"id"=>"q:electric_charge_density","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"electric charge density","lang"=>"en"},{"value"=>"charge électrique volumique","lang"=>"fr"}],"short"=>"electric_charge_density","dimension_reference"=>{"id"=>"NISTd43","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/ELCD","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/ElectricChargeDensity","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq7","type"=>"nist"},{"id"=>"q:luminous_intensity","type"=>"unitsml"}],"quantity_type"=>"base","names"=>[{"value"=>"luminous intensity","lang"=>"en"},{"value"=>"intensité lumineuse","lang"=>"fr"}],"short"=>"luminous_intensity","dimension_reference"=>{"id"=>"NISTd7","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/LUIN","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/LuminousIntensity","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq70","type"=>"nist"},{"id"=>"q:electric_flux_density","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"electric flux density","lang"=>"en"},{"value"=>"induction électrique","lang"=>"fr"}],"short"=>"electric_flux_density","dimension_reference"=>{"id"=>"NISTd44","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/ELFD","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/ElectricFluxDensity","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq71","type"=>"nist"},{"id"=>"q:permittivity","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"permittivity","lang"=>"en"},{"value"=>"permittivité","lang"=>"fr"}],"short"=>"permittivity","dimension_reference"=>{"id"=>"NISTd45","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/PRMI","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Permittivity","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq72","type"=>"nist"},{"id"=>"q:permeability","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"permeability","lang"=>"en"},{"value"=>"perméabilitté","lang"=>"fr"}],"short"=>"permeability","dimension_reference"=>{"id"=>"NISTd46","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/PRME","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/ElectromagneticPermeability","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq73","type"=>"nist"},{"id"=>"q:molar_energy","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"molar energy","lang"=>"en"},{"value"=>"énergie molaire","lang"=>"fr"}],"short"=>"molar_energy","dimension_reference"=>{"id"=>"NISTd47","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/MOEG","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/MolarEnergy","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq74","type"=>"nist"},{"id"=>"q:molar_entropy","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"molar entropy","lang"=>"en"},{"value"=>"entropie molaire","lang"=>"fr"}],"short"=>"molar_entropy","dimension_reference"=>{"id"=>"NISTd48","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/MOEN","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/MolarEntropy","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq75","type"=>"nist"},{"id"=>"q:exposure_x_and_gamma_rays","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"exposure (x and gamma rays)","lang"=>"en"}],"short"=>"exposure_x_and_gamma_rays","dimension_reference"=>{"id"=>"NISTd49","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/ExposureOfIonizingRadiation","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq76","type"=>"nist"},{"id"=>"q:absorbed_dose_rate","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"absorbed dose rate","lang"=>"en"},{"value"=>"débit de dose absorbée","lang"=>"fr"}],"short"=>"absorbed_dose_rate","dimension_reference"=>{"id"=>"NISTd50","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/ABDR","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/AbsorbedDoseRate","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq77","type"=>"nist"},{"id"=>"q:potential_energy","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"potential energy","lang"=>"en"}],"short"=>"potential_energy","dimension_reference"=>{"id"=>"NISTd15","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/PotentialEnergy","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq78","type"=>"nist"},{"id"=>"q:irradiance","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"irradiance","lang"=>"en"}],"short"=>"irradiance","dimension_reference"=>{"id"=>"NISTd38","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Irradiance","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq79","type"=>"nist"},{"id"=>"q:entropy","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"entropy","lang"=>"en"}],"short"=>"entropy","dimension_reference"=>{"id"=>"NISTd39","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Entropy","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq8","type"=>"nist"},{"id"=>"q:area","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"area","lang"=>"en"},{"value"=>"superficie","lang"=>"fr"}],"short"=>"area","dimension_reference"=>{"id"=>"NISTd8","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/AREA","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Area","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq80","type"=>"nist"},{"id"=>"q:specific_entropy","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"specific entropy","lang"=>"en"}],"short"=>"specific_entropy","dimension_reference"=>{"id"=>"NISTd40","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/SpecificEntropy","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq81","type"=>"nist"},{"id"=>"q:surface_charge_density","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"surface charge density","lang"=>"en"},{"value"=>"charge électrique surfacique","lang"=>"fr"}],"short"=>"surface_charge_density","dimension_reference"=>{"id"=>"NISTd53","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/SUCD","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/AreaChargeDensity","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq82","type"=>"nist"},{"id"=>"q:electric_displacement","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"electric displacement","lang"=>"en"}],"short"=>"electric_displacement","dimension_reference"=>{"id"=>"NISTd44","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/ElectricDisplacement","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq83","type"=>"nist"},{"id"=>"q:molar_heat_capacity","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"molar heat capacity","lang"=>"en"}],"short"=>"molar_heat_capacity","dimension_reference"=>{"id"=>"NISTd48","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/MolarHeatCapacity","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq84","type"=>"nist"},{"id"=>"q:catalytic_activity_concentration","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"catalytic activity concentration","lang"=>"en"},{"value"=>"concentration de l’activité catalytique","lang"=>"fr"}],"short"=>"catalytic_activity_concentration","dimension_reference"=>{"id"=>"NISTd55","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/CTAC","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/CatalyticActivityConcentration","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq85","type"=>"nist"},{"id"=>"q:kinematic_viscosity","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"kinematic viscosity","lang"=>"en"},{"value"=>"viscosité cinématique","lang"=>"fr"}],"short"=>"kinematic_viscosity","dimension_reference"=>{"id"=>"NISTd56","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/KIVI","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/KinematicViscosity","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq87","type"=>"nist"},{"id"=>"q:magnetic_field","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"magnetic field","lang"=>"en"}],"short"=>"magnetic_field","dimension_reference"=>{"id"=>"NISTd33","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/MagneticField","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq88","type"=>"nist"},{"id"=>"q:radiant_intensity","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"radiant intensity","lang"=>"en"},{"value"=>"intensité énergétique","lang"=>"fr"}],"short"=>"radiant_intensity","dimension_reference"=>{"id"=>"NISTd16","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/RAIN","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/RadiantIntensity","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq89","type"=>"nist"},{"id"=>"q:radiance","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"radiance","lang"=>"en"},{"value"=>"luminance énergétique","lang"=>"fr"}],"short"=>"radiance","dimension_reference"=>{"id"=>"NISTd38","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/RADI","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Radiance","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq9","type"=>"nist"},{"id"=>"q:plane_angle","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"plane angle","lang"=>"en"},{"value"=>"angle","lang"=>"en"},{"value"=>"angle plan","lang"=>"fr"}],"short"=>"plane_angle","dimension_reference"=>{"id"=>"NISTd9","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/ANGP","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/PlaneAngle","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq90","type"=>"nist"},{"id"=>"q:logarithmic_ratio_quantities","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"ratio logarithm (B)","lang"=>"en"},{"value"=>"logarithmic ratio quantities (power-like quantities using decimal logarithms)","lang"=>"en"},{"value"=>"logarithme d'un rapport (B)","lang"=>"fr"}],"short"=>"logarithmic_ratio_quantities","dimension_reference"=>{"id"=>"NISTd67","type"=>"nist"},"references"=>[{"type"=>"normative","uri"=>"http://si-digital-framework.org/quantities/RLGB","authority"=>"si-digital-framework"},{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/LinearLogarithmicRatio","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq91","type"=>"nist"},{"id"=>"q:fluidity","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"fluidity","lang"=>"en"},{"value"=>"reciprocal of dynamic viscosity","lang"=>"en"}],"short"=>"fluidity","dimension_reference"=>{"id"=>"NISTd52","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Fluidity","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq92","type"=>"nist"},{"id"=>"q:hydrodynamic_permeability","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"hydrodynamic permeability","lang"=>"en"}],"short"=>"hydrodynamic_permeability","dimension_reference"=>{"id"=>"NISTd8","type"=>"nist"}},{"identifiers"=>[{"id"=>"NISTq93","type"=>"nist"},{"id"=>"q:refractive_index","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"refractive index","lang"=>"en"}],"short"=>"refractive_index","dimension_reference"=>{"id"=>"NISTd80","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/RefractiveIndex","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq94","type"=>"nist"},{"id"=>"q:relative_permeability","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"relative permeability","lang"=>"en"}],"short"=>"relative_permeability","dimension_reference"=>{"id"=>"NISTd80","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/PermeabilityRatio","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq95","type"=>"nist"},{"id"=>"q:breadth","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"breadth","lang"=>"en"}],"short"=>"breadth","dimension_reference"=>{"id"=>"NISTd1","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Breadth","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq96","type"=>"nist"},{"id"=>"q:height","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"height","lang"=>"en"}],"short"=>"height","dimension_reference"=>{"id"=>"NISTd1","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Height","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq97","type"=>"nist"},{"id"=>"q:thickness","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"thickness","lang"=>"en"}],"short"=>"thickness","dimension_reference"=>{"id"=>"NISTd1","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Thickness","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq98","type"=>"nist"},{"id"=>"q:radius","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"radius","lang"=>"en"}],"short"=>"radius","dimension_reference"=>{"id"=>"NISTd1","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/Radius","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTq99","type"=>"nist"},{"id"=>"q:radial_distance","type"=>"unitsml"}],"quantity_type"=>"derived","names"=>[{"value"=>"radial distance","lang"=>"en"}],"short"=>"radial_distance","dimension_reference"=>{"id"=>"NISTd1","type"=>"nist"},"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/quantitykind/RadialDistance","authority"=>"qudt"}]}],"dimensions"=>[{"identifiers"=>[{"id"=>"NISTd1","type"=>"nist"},{"id"=>"d:length","type"=>"unitsml"}],"length"=>{"power"=>1,"symbol"=>"L","symbols"=>[{"id"=>"dim_L","ascii"=>"L","html"=>"𝖫","latex"=>"\\ensuremath{\\mathsf{L}}","mathml"=>"L","unicode"=>"𝖫"}]},"short"=>"length","names"=>[{"value"=>"length","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd10","type"=>"nist"},{"id"=>"d:volume","type"=>"unitsml"}],"length"=>{"power"=>3,"symbol"=>"L"},"short"=>"volume","names"=>[{"value"=>"volume","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T0D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd100","type"=>"nist"},{"id"=>"d:traffic_intensity","type"=>"unitsml"}],"dimensionless"=>true,"short"=>"traffic_intensity","names"=>[{"value"=>"traffic intensity","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd101","type"=>"nist"},{"id"=>"d:symbol_rate","type"=>"unitsml"}],"time"=>{"power"=>-1,"symbol"=>"T"},"short"=>"symbol_rate","names"=>[{"value"=>"symbol rate","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L-0dot5I0M0dot5H0T-1D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd102","type"=>"nist"},{"id"=>"d:information_content","type"=>"unitsml"}],"dimensionless"=>true,"short"=>"information_content","names"=>[{"value"=>"information content","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd11","type"=>"nist"},{"id"=>"d:velocity","type"=>"unitsml"}],"length"=>{"power"=>1,"symbol"=>"L"},"time"=>{"power"=>-1,"symbol"=>"T"},"short"=>"velocity","names"=>[{"value"=>"velocity","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd12","type"=>"nist"},{"id"=>"d:force","type"=>"unitsml"}],"length"=>{"power"=>1,"symbol"=>"L"},"mass"=>{"power"=>1,"symbol"=>"M"},"time"=>{"power"=>-2,"symbol"=>"T"},"short"=>"force","names"=>[{"value"=>"force","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd13","type"=>"nist"},{"id"=>"d:magnetic_flux_density","type"=>"unitsml"}],"mass"=>{"power"=>1,"symbol"=>"M"},"time"=>{"power"=>-2,"symbol"=>"T"},"electric_current"=>{"power"=>-1,"symbol"=>"I"},"short"=>"magnetic_flux_density","names"=>[{"value"=>"magnetic flux density","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E-1L0I0M1H0T-2D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd14","type"=>"nist"},{"id"=>"d:pressure","type"=>"unitsml"}],"length"=>{"power"=>-1,"symbol"=>"L"},"mass"=>{"power"=>1,"symbol"=>"M"},"time"=>{"power"=>-2,"symbol"=>"T"},"short"=>"pressure","names"=>[{"value"=>"pressure","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd15","type"=>"nist"},{"id"=>"d:energy","type"=>"unitsml"}],"length"=>{"power"=>2,"symbol"=>"L"},"mass"=>{"power"=>1,"symbol"=>"M"},"time"=>{"power"=>-2,"symbol"=>"T"},"short"=>"energy","names"=>[{"value"=>"energy","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd16","type"=>"nist"},{"id"=>"d:power","type"=>"unitsml"}],"length"=>{"power"=>2,"symbol"=>"L"},"mass"=>{"power"=>1,"symbol"=>"M"},"time"=>{"power"=>-3,"symbol"=>"T"},"short"=>"power","names"=>[{"value"=>"power","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D-1","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd17","type"=>"nist"},{"id"=>"d:electric_charge","type"=>"unitsml"}],"time"=>{"power"=>1,"symbol"=>"T"},"electric_current"=>{"power"=>1,"symbol"=>"I"},"short"=>"electric_charge","names"=>[{"value"=>"electric charge","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T1D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd18","type"=>"nist"},{"id"=>"d:electric_potential_difference","type"=>"unitsml"}],"length"=>{"power"=>2,"symbol"=>"L"},"mass"=>{"power"=>1,"symbol"=>"M"},"time"=>{"power"=>-3,"symbol"=>"T"},"electric_current"=>{"power"=>-1,"symbol"=>"I"},"short"=>"electric_potential_difference","names"=>[{"value"=>"electric potential difference","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H0T-3D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd19","type"=>"nist"},{"id"=>"d:capacitance","type"=>"unitsml"}],"length"=>{"power"=>-2,"symbol"=>"L"},"mass"=>{"power"=>-1,"symbol"=>"M"},"time"=>{"power"=>4,"symbol"=>"T"},"electric_current"=>{"power"=>2,"symbol"=>"I"},"short"=>"capacitance","names"=>[{"value"=>"capacitance","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E2L-2I0M-1H0T4D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd2","type"=>"nist"},{"id"=>"d:mass","type"=>"unitsml"}],"mass"=>{"power"=>1,"symbol"=>"M","symbols"=>[{"id"=>"dim_M","ascii"=>"M","html"=>"𝖬","latex"=>"\\ensuremath{\\mathsf{M}}","mathml"=>"M","unicode"=>"𝖬"}]},"short"=>"mass","names"=>[{"value"=>"mass","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd20","type"=>"nist"},{"id"=>"d:electric_resistance","type"=>"unitsml"}],"length"=>{"power"=>2,"symbol"=>"L"},"mass"=>{"power"=>1,"symbol"=>"M"},"time"=>{"power"=>-3,"symbol"=>"T"},"electric_current"=>{"power"=>-2,"symbol"=>"I"},"short"=>"electric_resistance","names"=>[{"value"=>"electric resistance","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H0T-3D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd21","type"=>"nist"},{"id"=>"d:electric_conductance","type"=>"unitsml"}],"length"=>{"power"=>-2,"symbol"=>"L"},"mass"=>{"power"=>-1,"symbol"=>"M"},"time"=>{"power"=>3,"symbol"=>"T"},"electric_current"=>{"power"=>2,"symbol"=>"I"},"short"=>"electric_conductance","names"=>[{"value"=>"electric conductance","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E2L-2I0M-1H0T3D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd22","type"=>"nist"},{"id"=>"d:magnetic_flux","type"=>"unitsml"}],"length"=>{"power"=>2,"symbol"=>"L"},"mass"=>{"power"=>1,"symbol"=>"M"},"time"=>{"power"=>-2,"symbol"=>"T"},"electric_current"=>{"power"=>-1,"symbol"=>"I"},"short"=>"magnetic_flux","names"=>[{"value"=>"magnetic flux","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H0T-2D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd23","type"=>"nist"},{"id"=>"d:inductance","type"=>"unitsml"}],"length"=>{"power"=>2,"symbol"=>"L"},"mass"=>{"power"=>1,"symbol"=>"M"},"time"=>{"power"=>-2,"symbol"=>"T"},"electric_current"=>{"power"=>-2,"symbol"=>"I"},"short"=>"inductance","names"=>[{"value"=>"inductance","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H0T-2D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd24","type"=>"nist"},{"id"=>"d:frequency","type"=>"unitsml"}],"time"=>{"power"=>-1,"symbol"=>"T"},"short"=>"frequency","names"=>[{"value"=>"frequency","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L-0dot5I0M0dot5H0T-1D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd25","type"=>"nist"},{"id"=>"d:absorbed_dose","type"=>"unitsml"}],"length"=>{"power"=>2,"symbol"=>"L"},"time"=>{"power"=>-2,"symbol"=>"T"},"short"=>"absorbed_dose","names"=>[{"value"=>"absorbed dose","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-2D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd26","type"=>"nist"},{"id"=>"d:catalytic_activity","type"=>"unitsml"}],"time"=>{"power"=>-1,"symbol"=>"T"},"amount_of_substance"=>{"power"=>1,"symbol"=>"N"},"short"=>"catalytic_activity","names"=>[{"value"=>"catalytic activity","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T-1D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd27","type"=>"nist"},{"id"=>"d:illuminance","type"=>"unitsml"}],"length"=>{"power"=>-2,"symbol"=>"L"},"luminous_intensity"=>{"power"=>1,"symbol"=>"J"},"short"=>"illuminance","names"=>[{"value"=>"illuminance","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L-2I1M0H0T0D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd28","type"=>"nist"},{"id"=>"d:acceleration","type"=>"unitsml"}],"length"=>{"power"=>1,"symbol"=>"L"},"time"=>{"power"=>-2,"symbol"=>"T"},"short"=>"acceleration","names"=>[{"value"=>"acceleration","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-2D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd29","type"=>"nist"},{"id"=>"d:wavenumber","type"=>"unitsml"}],"length"=>{"power"=>-1,"symbol"=>"L"},"short"=>"wavenumber","names"=>[{"value"=>"wavenumber","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd3","type"=>"nist"},{"id"=>"d:time","type"=>"unitsml"}],"time"=>{"power"=>1,"symbol"=>"T","symbols"=>[{"id"=>"dim_T","ascii"=>"T","html"=>"𝖳","latex"=>"\\ensuremath{\\mathsf{T}}","mathml"=>"T","unicode"=>"𝖳"}]},"short"=>"time","names"=>[{"value"=>"time","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd30","type"=>"nist"},{"id"=>"d:mass_density","type"=>"unitsml"}],"length"=>{"power"=>-3,"symbol"=>"L"},"mass"=>{"power"=>1,"symbol"=>"M"},"short"=>"mass_density","names"=>[{"value"=>"mass density","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H0T0D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd31","type"=>"nist"},{"id"=>"d:specific_volume","type"=>"unitsml"}],"length"=>{"power"=>3,"symbol"=>"L"},"mass"=>{"power"=>-1,"symbol"=>"M"},"short"=>"specific_volume","names"=>[{"value"=>"specific volume","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L3I0M-1H0T0D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd32","type"=>"nist"},{"id"=>"d:current_density","type"=>"unitsml"}],"length"=>{"power"=>-2,"symbol"=>"L"},"electric_current"=>{"power"=>1,"symbol"=>"I"},"short"=>"current_density","names"=>[{"value"=>"current density","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E1L-2I0M0H0T0D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd33","type"=>"nist"},{"id"=>"d:magnetic_field_strength","type"=>"unitsml"}],"length"=>{"power"=>-1,"symbol"=>"L"},"electric_current"=>{"power"=>1,"symbol"=>"I"},"short"=>"magnetic_field_strength","names"=>[{"value"=>"magnetic field strength","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E1L-1I0M0H0T0D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd34","type"=>"nist"},{"id"=>"d:concentration","type"=>"unitsml"}],"length"=>{"power"=>-3,"symbol"=>"L"},"amount_of_substance"=>{"power"=>1,"symbol"=>"N"},"short"=>"concentration","names"=>[{"value"=>"concentration","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T0D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd35","type"=>"nist"},{"id"=>"d:angular_acceleration","type"=>"unitsml"}],"time"=>{"power"=>-2,"symbol"=>"T"},"short"=>"angular_acceleration","names"=>[{"value"=>"angular acceleration","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L-0dot5I0M0dot5H0T-2D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd36","type"=>"nist"},{"id"=>"d:dynamic_viscosity","type"=>"unitsml"}],"length"=>{"power"=>-1,"symbol"=>"L"},"mass"=>{"power"=>1,"symbol"=>"M"},"time"=>{"power"=>-1,"symbol"=>"T"},"short"=>"dynamic_viscosity","names"=>[{"value"=>"dynamic viscosity","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-1D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd37","type"=>"nist"},{"id"=>"d:surface_tension","type"=>"unitsml"}],"mass"=>{"power"=>1,"symbol"=>"M"},"time"=>{"power"=>-2,"symbol"=>"T"},"short"=>"surface_tension","names"=>[{"value"=>"surface tension","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L-0dot5I0M1H0T-2D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd38","type"=>"nist"},{"id"=>"d:heat_flux_density","type"=>"unitsml"}],"mass"=>{"power"=>1,"symbol"=>"M"},"time"=>{"power"=>-3,"symbol"=>"T"},"short"=>"heat_flux_density","names"=>[{"value"=>"heat flux density","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-3D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd39","type"=>"nist"},{"id"=>"d:heat_capacity","type"=>"unitsml"}],"length"=>{"power"=>2,"symbol"=>"L"},"mass"=>{"power"=>1,"symbol"=>"M"},"time"=>{"power"=>-2,"symbol"=>"T"},"thermodynamic_temperature"=>{"power"=>-1,"symbol"=>"Theta"},"short"=>"heat_capacity","names"=>[{"value"=>"heat capacity","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H-1T-2D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd4","type"=>"nist"},{"id"=>"d:electric_current","type"=>"unitsml"}],"electric_current"=>{"power"=>1,"symbol"=>"I","symbols"=>[{"id"=>"dim_I","ascii"=>"I","html"=>"𝖨","latex"=>"\\ensuremath{\\mathsf{I}}","mathml"=>"I","unicode"=>"𝖨"}]},"short"=>"electric_current","names"=>[{"value"=>"electric current","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T0D-1","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd40","type"=>"nist"},{"id"=>"d:specific_heat_capacity","type"=>"unitsml"}],"length"=>{"power"=>2,"symbol"=>"L"},"time"=>{"power"=>-2,"symbol"=>"T"},"thermodynamic_temperature"=>{"power"=>-1,"symbol"=>"Theta"},"short"=>"specific_heat_capacity","names"=>[{"value"=>"specific heat capacity","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H-1T-2D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd41","type"=>"nist"},{"id"=>"d:thermal_conductivity","type"=>"unitsml"}],"length"=>{"power"=>1,"symbol"=>"L"},"mass"=>{"power"=>1,"symbol"=>"M"},"time"=>{"power"=>-3,"symbol"=>"T"},"thermodynamic_temperature"=>{"power"=>-1,"symbol"=>"Theta"},"short"=>"thermal_conductivity","names"=>[{"value"=>"thermal conductivity","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H-1T-3D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd42","type"=>"nist"},{"id"=>"d:electric_field_strength","type"=>"unitsml"}],"length"=>{"power"=>1,"symbol"=>"L"},"mass"=>{"power"=>1,"symbol"=>"M"},"time"=>{"power"=>-3,"symbol"=>"T"},"electric_current"=>{"power"=>-1,"symbol"=>"I"},"short"=>"electric_field_strength","names"=>[{"value"=>"electric field strength","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E-1L1I0M1H0T-3D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd43","type"=>"nist"},{"id"=>"d:electric_charge_density","type"=>"unitsml"}],"length"=>{"power"=>-3,"symbol"=>"L"},"time"=>{"power"=>1,"symbol"=>"T"},"electric_current"=>{"power"=>1,"symbol"=>"I"},"short"=>"electric_charge_density","names"=>[{"value"=>"electric charge density","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E1L-3I0M0H0T1D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd44","type"=>"nist"},{"id"=>"d:electric_flux_density","type"=>"unitsml"}],"length"=>{"power"=>-2,"symbol"=>"L"},"time"=>{"power"=>1,"symbol"=>"T"},"electric_current"=>{"power"=>1,"symbol"=>"I"},"short"=>"electric_flux_density","names"=>[{"value"=>"electric flux density","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E1L-2I0M0H0T1D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd45","type"=>"nist"},{"id"=>"d:permittivity","type"=>"unitsml"}],"length"=>{"power"=>-3,"symbol"=>"L"},"mass"=>{"power"=>-1,"symbol"=>"M"},"time"=>{"power"=>4,"symbol"=>"T"},"electric_current"=>{"power"=>2,"symbol"=>"I"},"short"=>"permittivity","names"=>[{"value"=>"permittivity","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E2L-3I0M-1H0T4D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd46","type"=>"nist"},{"id"=>"d:permeability","type"=>"unitsml"}],"length"=>{"power"=>1,"symbol"=>"L"},"mass"=>{"power"=>1,"symbol"=>"M"},"time"=>{"power"=>-2,"symbol"=>"T"},"electric_current"=>{"power"=>-2,"symbol"=>"I"},"short"=>"permeability","names"=>[{"value"=>"permeability","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E-2L1I0M1H0T-2D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd47","type"=>"nist"},{"id"=>"d:molar_energy","type"=>"unitsml"}],"length"=>{"power"=>2,"symbol"=>"L"},"mass"=>{"power"=>1,"symbol"=>"M"},"time"=>{"power"=>-2,"symbol"=>"T"},"amount_of_substance"=>{"power"=>-1,"symbol"=>"N"},"short"=>"molar_energy","names"=>[{"value"=>"molar energy","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A-1E0L2I0M1H0T-2D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd48","type"=>"nist"},{"id"=>"d:molar_entropy","type"=>"unitsml"}],"length"=>{"power"=>2,"symbol"=>"L"},"mass"=>{"power"=>1,"symbol"=>"M"},"time"=>{"power"=>-2,"symbol"=>"T"},"thermodynamic_temperature"=>{"power"=>-1,"symbol"=>"Theta"},"amount_of_substance"=>{"power"=>-1,"symbol"=>"N"},"short"=>"molar_entropy","names"=>[{"value"=>"molar entropy","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A-1E0L2I0M1H-1T-2D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd49","type"=>"nist"},{"id"=>"d:exposure","type"=>"unitsml"}],"mass"=>{"power"=>-1,"symbol"=>"M"},"time"=>{"power"=>1,"symbol"=>"T"},"electric_current"=>{"power"=>1,"symbol"=>"I"},"short"=>"exposure","names"=>[{"value"=>"exposure","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E1L0I0M-1H0T1D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd5","type"=>"nist"},{"id"=>"d:temperature","type"=>"unitsml"}],"thermodynamic_temperature"=>{"power"=>1,"symbol"=>"Theta","symbols"=>[{"id"=>"dim_Theta","ascii"=>"Theta","html"=>"𝝠","latex"=>"\\ensuremath{\\mathsf{\\Theta}}","mathml"=>"Θ","unicode"=>"𝝧"}]},"short"=>"temperature","names"=>[{"value"=>"temperature","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T0D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd50","type"=>"nist"},{"id"=>"d:absorbed_dose_rate","type"=>"unitsml"}],"length"=>{"power"=>2,"symbol"=>"L"},"time"=>{"power"=>-3,"symbol"=>"T"},"short"=>"absorbed_dose_rate","names"=>[{"value"=>"absorbed dose rate","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-3D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd51","type"=>"nist"},{"id"=>"d:surface_density","type"=>"unitsml"}],"length"=>{"power"=>-2,"symbol"=>"L"},"mass"=>{"power"=>1,"symbol"=>"M"},"short"=>"surface_density","names"=>[{"value"=>"surface density","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T0D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd52","type"=>"nist"},{"id"=>"d:fluidity","type"=>"unitsml"}],"length"=>{"power"=>1,"symbol"=>"L"},"mass"=>{"power"=>-1,"symbol"=>"M"},"time"=>{"power"=>1,"symbol"=>"T"},"short"=>"fluidity","names"=>[{"value"=>"fluidity","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H0T1D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd53","type"=>"nist"},{"id"=>"d:surface_charge_density","type"=>"unitsml"}],"mass"=>{"power"=>-2,"symbol"=>"M"},"time"=>{"power"=>1,"symbol"=>"T"},"electric_current"=>{"power"=>1,"symbol"=>"I"},"short"=>"surface_charge_density","names"=>[{"value"=>"surface charge density","lang"=>"en"}]},{"identifiers"=>[{"id"=>"NISTd54","type"=>"nist"},{"id"=>"d:magnetizability","type"=>"unitsml"}],"length"=>{"power"=>2,"symbol"=>"L"},"mass"=>{"power"=>1,"symbol"=>"M"},"time"=>{"power"=>2,"symbol"=>"T"},"electric_current"=>{"power"=>2,"symbol"=>"I"},"short"=>"magnetizability","names"=>[{"value"=>"magnetizability","lang"=>"en"}]},{"identifiers"=>[{"id"=>"NISTd55","type"=>"nist"},{"id"=>"d:catalytic_activity_concentration","type"=>"unitsml"}],"mass"=>{"power"=>-3,"symbol"=>"M"},"time"=>{"power"=>-1,"symbol"=>"T"},"amount_of_substance"=>{"power"=>1,"symbol"=>"N"},"short"=>"catalytic_activity_concentration","names"=>[{"value"=>"catalytic activity concentration","lang"=>"en"}]},{"identifiers"=>[{"id"=>"NISTd56","type"=>"nist"},{"id"=>"d:kinematic_viscosity","type"=>"unitsml"}],"length"=>{"power"=>2,"symbol"=>"L"},"time"=>{"power"=>-1,"symbol"=>"T"},"short"=>"kinematic_viscosity","names"=>[{"value"=>"kinematic viscosity","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-1D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd57","type"=>"nist"},{"id"=>"d:area_moment_of_inertia","type"=>"unitsml"}],"length"=>{"power"=>4,"symbol"=>"L"},"short"=>"area_moment_of_inertia","names"=>[{"value"=>"area moment of inertia","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L4I0M0H0T0D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd58","type"=>"nist"},{"id"=>"d:linear_density","type"=>"unitsml"}],"length"=>{"power"=>-1,"symbol"=>"L"},"mass"=>{"power"=>1,"symbol"=>"M"},"short"=>"linear_density","names"=>[{"value"=>"linear density","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T0D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd59","type"=>"nist"},{"id"=>"d:mass_moment_of_inertia","type"=>"unitsml"}],"length"=>{"power"=>2,"symbol"=>"L"},"mass"=>{"power"=>1,"symbol"=>"M"},"short"=>"mass_moment_of_inertia","names"=>[{"value"=>"mass moment of inertia","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T0D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd6","type"=>"nist"},{"id"=>"d:substance_amount","type"=>"unitsml"}],"amount_of_substance"=>{"power"=>1,"symbol"=>"N","symbols"=>[{"id"=>"dim_N","ascii"=>"N","html"=>"𝖭","latex"=>"\\ensuremath{\\mathsf{N}}","mathml"=>"N","unicode"=>"𝖭"}]},"short"=>"substance_amount","names"=>[{"value"=>"substance amount","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T0D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd60","type"=>"nist"},{"id"=>"d:action","type"=>"unitsml"}],"length"=>{"power"=>2,"symbol"=>"L"},"mass"=>{"power"=>1,"symbol"=>"M"},"time"=>{"power"=>-1,"symbol"=>"T"},"short"=>"action","names"=>[{"value"=>"action","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-1D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd61","type"=>"nist"},{"id"=>"d:momentum","type"=>"unitsml"}],"length"=>{"power"=>1,"symbol"=>"L"},"mass"=>{"power"=>1,"symbol"=>"M"},"time"=>{"power"=>-1,"symbol"=>"T"},"short"=>"momentum","names"=>[{"value"=>"momentum","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-1D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd62","type"=>"nist"},{"id"=>"d:gravitational_constant","type"=>"unitsml"}],"length"=>{"power"=>3,"symbol"=>"L"},"mass"=>{"power"=>-1,"symbol"=>"M"},"time"=>{"power"=>-2,"symbol"=>"T"},"short"=>"gravitational_constant","names"=>[{"value"=>"gravitational constant","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L3I0M-1H0T-2D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd63","type"=>"nist"},{"id"=>"d:compressibility","type"=>"unitsml"}],"length"=>{"power"=>1,"symbol"=>"L"},"mass"=>{"power"=>-1,"symbol"=>"M"},"time"=>{"power"=>2,"symbol"=>"T"},"short"=>"compressibility","names"=>[{"value"=>"compressibility","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H0T2D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd64","type"=>"nist"},{"id"=>"d:solid_angle","type"=>"unitsml"}],"dimensionless"=>true,"plane_angle"=>{"power"=>1,"symbol"=>"phi"},"short"=>"solid_angle","names"=>[{"value"=>"solid angle","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd65","type"=>"nist"},{"id"=>"d:mass_flow_rate","type"=>"unitsml"}],"mass"=>{"power"=>1,"symbol"=>"M"},"time"=>{"power"=>-1,"symbol"=>"T"},"short"=>"mass_flow_rate","names"=>[{"value"=>"mass flow rate","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd66","type"=>"nist"},{"id"=>"d:volume_flow_rate","type"=>"unitsml"}],"length"=>{"power"=>3,"symbol"=>"L"},"time"=>{"power"=>-1,"symbol"=>"T"},"short"=>"volume_flow_rate","names"=>[{"value"=>"volume flow rate","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd67","type"=>"nist"},{"id"=>"d:logarithmic_ratio","type"=>"unitsml"}],"dimensionless"=>true,"short"=>"logarithmic_ratio","names"=>[{"value"=>"logarithmic ratio","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd68","type"=>"nist"},{"id"=>"d:linear_expansion_coefficient","type"=>"unitsml"}],"thermodynamic_temperature"=>{"power"=>-1,"symbol"=>"Theta"},"short"=>"linear_expansion_coefficient","names"=>[{"value"=>"linear expansion coefficient","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H-1T0D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd69","type"=>"nist"},{"id"=>"d:pressure_coefficient","type"=>"unitsml"}],"length"=>{"power"=>-1,"symbol"=>"L"},"mass"=>{"power"=>1,"symbol"=>"M"},"time"=>{"power"=>-2,"symbol"=>"T"},"thermodynamic_temperature"=>{"power"=>-1,"symbol"=>"Theta"},"short"=>"pressure_coefficient","names"=>[{"value"=>"pressure coefficient","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H-1T-2D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd7","type"=>"nist"},{"id"=>"d:luminous_intensity","type"=>"unitsml"}],"luminous_intensity"=>{"power"=>1,"symbol"=>"J","symbols"=>[{"id"=>"dim_J","ascii"=>"J","html"=>"𝖩","latex"=>"\\ensuremath{\\mathsf{J}}","mathml"=>"J","unicode"=>"𝖩"}]},"short"=>"luminous_intensity","names"=>[{"value"=>"luminous intensity","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L0I1M0H0T0D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd70","type"=>"nist"},{"id"=>"d:isothermal_compressibility","type"=>"unitsml"}],"length"=>{"power"=>1,"symbol"=>"L"},"mass"=>{"power"=>-1,"symbol"=>"M"},"time"=>{"power"=>2,"symbol"=>"T"},"short"=>"isothermal_compressibility","names"=>[{"value"=>"isothermal compressibility","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H0T2D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd71","type"=>"nist"},{"id"=>"d:heat_transfer_coefficient","type"=>"unitsml"}],"mass"=>{"power"=>1,"symbol"=>"M"},"time"=>{"power"=>-3,"symbol"=>"T"},"thermodynamic_temperature"=>{"power"=>-1,"symbol"=>"Theta"},"short"=>"heat_transfer_coefficient","names"=>[{"value"=>"heat transfer coefficient","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-3D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd72","type"=>"nist"},{"id"=>"d:electric_dipole_moment","type"=>"unitsml"}],"length"=>{"power"=>1,"symbol"=>"L"},"time"=>{"power"=>1,"symbol"=>"T"},"electric_current"=>{"power"=>1,"symbol"=>"I"},"short"=>"electric_dipole_moment","names"=>[{"value"=>"electric dipole moment","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E1L1I0M0H0T1D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd73","type"=>"nist"},{"id"=>"d:magnetic_dipole_moment","type"=>"unitsml"}],"length"=>{"power"=>2,"symbol"=>"L"},"electric_current"=>{"power"=>1,"symbol"=>"I"},"short"=>"magnetic_dipole_moment","names"=>[{"value"=>"magnetic dipole moment","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E1L2I0M0H0T0D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd74","type"=>"nist"},{"id"=>"d:electric_field_gradient","type"=>"unitsml"}],"mass"=>{"power"=>1,"symbol"=>"M"},"time"=>{"power"=>-3,"symbol"=>"T"},"electric_current"=>{"power"=>-1,"symbol"=>"I"},"short"=>"electric_field_gradient","names"=>[{"value"=>"electric field gradient","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E-1L0I0M1H0T-3D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd75","type"=>"nist"},{"id"=>"d:electric_quadrupole_moment","type"=>"unitsml"}],"length"=>{"power"=>2,"symbol"=>"L"},"time"=>{"power"=>1,"symbol"=>"T"},"electric_current"=>{"power"=>1,"symbol"=>"I"},"short"=>"electric_quadrupole_moment","names"=>[{"value"=>"electric quadrupole moment","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E1L2I0M0H0T1D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd76","type"=>"nist"},{"id"=>"d:polarizability","type"=>"unitsml"}],"mass"=>{"power"=>1,"symbol"=>"M"},"time"=>{"power"=>4,"symbol"=>"T"},"electric_current"=>{"power"=>2,"symbol"=>"I"},"short"=>"polarizability","names"=>[{"value"=>"polarizability","lang"=>"en"}]},{"identifiers"=>[{"id"=>"NISTd77","type"=>"nist"},{"id"=>"d:hyperpolarizability_1st","type"=>"unitsml"}],"length"=>{"power"=>-1,"symbol"=>"L"},"mass"=>{"power"=>-2,"symbol"=>"M"},"time"=>{"power"=>7,"symbol"=>"T"},"electric_current"=>{"power"=>3,"symbol"=>"I"},"short"=>"hyperpolarizability_1st","names"=>[{"value"=>"hyperpolarizability 1st","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E3L-1I0M-2H0T7D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd78","type"=>"nist"},{"id"=>"d:hyperpolarizability_2nd","type"=>"unitsml"}],"length"=>{"power"=>-2,"symbol"=>"L"},"mass"=>{"power"=>-3,"symbol"=>"M"},"time"=>{"power"=>10,"symbol"=>"T"},"electric_current"=>{"power"=>4,"symbol"=>"I"},"short"=>"hyperpolarizability_2nd","names"=>[{"value"=>"hyperpolarizability 2nd","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E4L-2I0M-3H0T10D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd79","type"=>"nist"},{"id"=>"d:molality","type"=>"unitsml"}],"mass"=>{"power"=>1,"symbol"=>"M"},"amount_of_substance"=>{"power"=>1,"symbol"=>"N"},"short"=>"molality","names"=>[{"value"=>"molality","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A1E0L0I0M1H0T0D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd8","type"=>"nist"},{"id"=>"d:area","type"=>"unitsml"}],"length"=>{"power"=>2,"symbol"=>"L"},"short"=>"area","names"=>[{"value"=>"area","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T0D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd80","type"=>"nist"},{"id"=>"d:ratio_quantity","type"=>"unitsml"}],"dimensionless"=>true,"short"=>"ratio_quantity","names"=>[{"value"=>"ratio quantity","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd83","type"=>"nist"},{"id"=>"d:level_of_field_quantity","type"=>"unitsml"}],"dimensionless"=>true,"short"=>"level_of_field_quantity","names"=>[{"value"=>"level of field quantity","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd84","type"=>"nist"},{"id"=>"d:field_power_level","type"=>"unitsml"}],"dimensionless"=>true,"short"=>"field_power_level","names"=>[{"value"=>"field power level","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd85","type"=>"nist"},{"id"=>"d:mass_mole_fraction","type"=>"unitsml"}],"dimensionless"=>true,"short"=>"mass_mole_fraction","names"=>[{"value"=>"mass mole fraction","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd9","type"=>"nist"},{"id"=>"d:plane_angle","type"=>"unitsml"}],"dimensionless"=>true,"plane_angle"=>{"power"=>1,"symbol"=>"phi","symbols"=>[{"id"=>"dim_phi","ascii"=>"phi","html"=>"𝞅","latex"=>"\\ensuremath{\\mathsf{\\phi}}","mathml"=>"φ","unicode"=>"𝞅"}]},"short"=>"plane_angle","names"=>[{"value"=>"plane angle","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd94","type"=>"nist"},{"id"=>"d:acidity_index","type"=>"unitsml"}],"dimensionless"=>true,"short"=>"acidity_index","names"=>[{"value"=>"acidity index","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd95","type"=>"nist"},{"id"=>"d:storage_capacity","type"=>"unitsml"}],"dimensionless"=>true,"short"=>"storage_capacity","names"=>[{"value"=>"storage capacity","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd96","type"=>"nist"},{"id"=>"d:fluence","type"=>"unitsml"}],"length"=>{"power"=>-2,"symbol"=>"L"},"short"=>"fluence","names"=>[{"value"=>"fluence","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T0D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd97","type"=>"nist"},{"id"=>"d:fluence_rate","type"=>"unitsml"}],"length"=>{"power"=>-2,"symbol"=>"L"},"time"=>{"power"=>-1,"symbol"=>"T"},"short"=>"fluence_rate","names"=>[{"value"=>"fluence_rate","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T-1D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd98","type"=>"nist"},{"id"=>"d:phase","type"=>"unitsml"}],"dimensionless"=>true,"plane_angle"=>{"power"=>1,"symbol"=>"phi"},"short"=>"phase","names"=>[{"value"=>"phase","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"NISTd99","type"=>"nist"},{"id"=>"d:fuel_efficiency","type"=>"unitsml"}],"length"=>{"power"=>-2,"symbol"=>"L"},"short"=>"fuel_efficiency","names"=>[{"value"=>"fuel efficiency","lang"=>"en"}],"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T0D0","authority"=>"qudt"}]}],"unit_systems"=>[{"identifiers"=>[{"id"=>"SI_base","type"=>"nist"},{"id"=>"us:si-base","type"=>"unitsml"}],"names"=>[{"value"=>"SI base units","lang"=>"en"}],"short"=>"si-base","acceptable"=>true,"references"=>[{"type"=>"informative","uri"=>"http://qudt.org/vocab/sou/SI","authority"=>"qudt"}]},{"identifiers"=>[{"id"=>"SI_compatible","type"=>"nist"},{"id"=>"us:si-compatible","type"=>"unitsml"}],"names"=>[{"value"=>"Units compatible with SI","lang"=>"en"}],"short"=>"si-compatible","acceptable"=>true},{"identifiers"=>[{"id"=>"SI_derived_non-special","type"=>"nist"},{"id"=>"us:si-derived-nonspecial","type"=>"unitsml"}],"names"=>[{"value"=>"SI-derived units non-special","lang"=>"en"}],"short"=>"si-derived-nonspecial","acceptable"=>true},{"identifiers"=>[{"id"=>"SI_derived_special","type"=>"nist"},{"id"=>"us:si-derived-special","type"=>"unitsml"}],"names"=>[{"value"=>"SI-derived units special","lang"=>"en"}],"short"=>"si-derived-special","acceptable"=>true},{"identifiers"=>[{"id"=>"non-SI_acceptable","type"=>"nist"},{"id"=>"us:nonsi-acceptable","type"=>"unitsml"}],"names"=>[{"value"=>"non-SI but acceptable","lang"=>"en"}],"short"=>"nonsi-acceptable","acceptable"=>true},{"identifiers"=>[{"id"=>"non-SI_nist_acceptable","type"=>"nist"},{"id"=>"us:nonsi-nist-acceptable","type"=>"unitsml"}],"names"=>[{"value"=>"non-SI but acceptable by NIST SP 811","lang"=>"en"}],"short"=>"nonsi-nist-acceptable","acceptable"=>true},{"identifiers"=>[{"id"=>"non-SI_not_acceptable","type"=>"nist"},{"id"=>"us:nonsi-unacceptable","type"=>"unitsml"}],"names"=>[{"value"=>"non-SI and not acceptable","lang"=>"en"}],"short"=>"nonsi-unacceptable","acceptable"=>false}]}.freeze) diff --git a/lib/unitsml/opal/payload_generator.rb b/lib/unitsml/opal/payload_generator.rb index 7cb5e33..1a30d6a 100644 --- a/lib/unitsml/opal/payload_generator.rb +++ b/lib/unitsml/opal/payload_generator.rb @@ -38,13 +38,34 @@ def header def body "Unitsml::Unitsdb::Database.const_set(:DATABASE, " \ - "#{database_hash.inspect}.freeze)\n" + "#{serialize(database_hash)}.freeze)\n" end def database_hash ::Unitsdb::Database.from_db(unitsdb_data_dir).to_hash end + # Custom serializer rather than Hash#inspect so the output is + # byte-identical across Ruby versions (3.3 vs 3.4 changed Hash#inspect + # to add spaces around "=>"). String#inspect is itself stable for + # UTF-8 clean data. + def serialize(value) + case value + when Hash + "{#{value.map { |k, v| "#{serialize(k)}=>#{serialize(v)}" }.join(",")}}" + when Array + "[#{value.map { |v| serialize(v) }.join(",")}]" + when String then value.inspect + when Symbol then ":#{value}" + when Integer, Float then value.to_s + when true then "true" + when false then "false" + when nil then "nil" + else + raise "Unsupported payload type: #{value.class}" + end + end + def default_data_dir File.join(unitsdb_gem_path, "data") end