diff --git a/.github/workflows/build_deploy.yml b/.github/workflows/build_deploy.yml index 4a6bfd4..97ed948 100644 --- a/.github/workflows/build_deploy.yml +++ b/.github/workflows/build_deploy.yml @@ -3,10 +3,15 @@ name: build_deploy on: push: branches: - - main - # - staging + - main + paths-ignore: + - README.md + - CONTRIBUTING.md + - LICENSE + - .gitignore + - .github/** + - "!.github/workflows/build_deploy.yml" pull_request: - repository_dispatch: workflow_dispatch: # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages @@ -22,60 +27,42 @@ concurrency: cancel-in-progress: false jobs: - # set_environment: - # outputs: - # my_env: ${{ steps.setenv.outputs.my_env }} - # my_url: ${{ steps.setenv.outputs.my_url }} - # runs-on: ubuntu-latest - # steps: - # - id: setenv - # run: | - # if [ "$GITHUB_REF" = "refs/heads/main" ] - # then - # echo "::set-output name=my_env::production" - # echo "::set-output name=my_url::https://www.tebako.org" - # elif [ "$GITHUB_REF" = "refs/heads/staging" ] - # then - # echo "::set-output name=my_env::staging" - # echo "::set-output name=my_url::https://staging-www.tebako.org" - # fi - build: runs-on: ubuntu-latest - # needs: [set_environment] steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v6 - - name: Setup Ruby - uses: ruby/setup-ruby@v1 - with: - ruby-version: '3.1' - bundler-cache: true - cache-version: 0 # Increment this number if you need to re-download cached gems - name: Setup Pages id: pages - uses: actions/configure-pages@v3 + uses: actions/configure-pages@v5 + + - name: Setup Node + uses: actions/setup-node@v6 + with: + node-version: 24 + cache: 'npm' + + - name: Install dependencies + run: npm ci - - name: Build with Jekyll - # Outputs to the './_site' directory by default - run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}" - env: - JEKYLL_ENV: production + - name: Build + run: npm run build - name: Upload artifact - # Automatically uploads an artifact from the './_site' directory by default - uses: actions/upload-pages-artifact@v2 + uses: actions/upload-pages-artifact@v4 + with: + path: .vitepress/dist # Deployment job deploy: environment: name: github-pages url: ${{ steps.deployment.outputs.page_url }} - if: ${{ github.ref == 'refs/heads/main' }} + if: github.ref_name == github.event.repository.default_branch runs-on: ubuntu-latest needs: build steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v2 + uses: actions/deploy-pages@v4 diff --git a/.github/workflows/links.yml b/.github/workflows/links.yml index a17cdc1..070b7d2 100644 --- a/.github/workflows/links.yml +++ b/.github/workflows/links.yml @@ -1,39 +1,88 @@ -name: links +name: Link Checker on: push: branches: - - main - - staging + - main pull_request: + workflow_dispatch: + +permissions: + contents: read + pull-requests: write jobs: link_checker: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - - uses: ruby/setup-ruby@v1 - with: - ruby-version: '3.1' - bundler-cache: true - - - name: Build site - env: - JEKYLL_ENV: production - run: make _site - - - name: Link Checker - uses: lycheeverse/lychee-action@v1.4.1 - with: - args: --verbose --no-progress --exclude-file .lycheeignore -- _site/**/*.html - fail: true - env: - GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} - - # - name: Create Issue From File - # uses: peter-evans/create-issue-from-file@v2 - # with: - # title: Link Checker Report - # content-filepath: ./lychee/out.md - # labels: report, automated issue + - uses: actions/checkout@v6 + + - name: Setup Node + uses: actions/setup-node@v6 + with: + node-version: 24 + cache: 'npm' + cache-dependency-path: package-lock.json + + - name: Install dependencies + run: npm ci + + - name: Build + run: npm run build + + - name: Restore lychee cache + uses: actions/cache@v4 + with: + path: .lycheecache + key: cache-lychee-${{ github.sha }} + restore-keys: cache-lychee- + + - name: Check if site was built + run: | + if [ ! -d ".vitepress/dist" ]; then + echo "Error: .vitepress/dist directory not created" + exit 1 + fi + echo "Site built successfully" + ls -la .vitepress/dist/ + + - name: Link Checker + uses: lycheeverse/lychee-action@v2 + with: + args: >- + --verbose + --no-progress + --config lychee.toml + --root-dir ${{ github.workspace }}/.vitepress/dist + .vitepress/dist/**/*.html + fail: true + output: link-check-results.md + format: markdown + + - name: Upload link check results + if: always() + uses: actions/upload-artifact@v4 + with: + name: link-check-results + path: link-check-results.md + retention-days: 30 + + - name: Comment PR with results + if: failure() && github.event_name == 'pull_request' + uses: actions/github-script@v7 + with: + script: | + const fs = require('fs'); + let comment = '## πŸ”— Link Check Failed\n\n'; + + if (fs.existsSync('link-check-results.md')) { + const results = fs.readFileSync('link-check-results.md', 'utf8'); + comment += '### Results\n\n' + results + '\n\n'; + } + + github.rest.issues.createComment({ + issue_number: context.issue.number, + owner: context.repo.owner, + repo: context.repo.repo, + body: comment + }); diff --git a/.gitignore b/.gitignore index 77a019a..b286963 100644 --- a/.gitignore +++ b/.gitignore @@ -1,15 +1,34 @@ +# Dependencies +node_modules/ -_software/*/.git -_software/*/docs -_software/_*_repo -_specs/*/ -!_specs/*.* +# Build output +dist/ +.vitepress/dist/ +.vitepress/cache/ + +# Ruby / Jekyll (legacy) _site/ .sass-cache/ .jekyll-cache/ .jekyll-metadata +.bundle/ +vendor/ + +# Logs +*.log +npm-debug.log* + +# Editor directories +.vscode/ +.idea/ + +# OS files +.DS_Store +Thumbs.db + +# Misc +tmp/ +artifacts/ -node_modules -tmp -artifacts -dist +# Claude Code memory (local only) +.claude/ diff --git a/.vitepress/config.ts b/.vitepress/config.ts new file mode 100644 index 0000000..cbe44bf --- /dev/null +++ b/.vitepress/config.ts @@ -0,0 +1,166 @@ +import { defineConfig } from 'vitepress' +import { asciidocPlugin } from './plugins/asciidoc' +import { readFileSync } from 'node:fs' +import { resolve, dirname } from 'node:path' +import { fileURLToPath } from 'node:url' + +const __dirname = dirname(fileURLToPath(import.meta.url)) +const root = resolve(__dirname, '..') + +const TYPE_FILE: Record = { + units: 'units', quantities: 'quantities', dimensions: 'dimensions', + prefixes: 'prefixes', scales: 'scales', systems: 'unit_systems', +} +const TYPE_LABEL: Record = { + units: 'Unit', quantities: 'Quantity', dimensions: 'Dimension', + prefixes: 'Prefix', scales: 'Scale', systems: 'Unit System', +} + +// Build a lookup: slug β†’ entity name, loaded once at build +const slugToName: Record> = {} +for (const [urlType, fileKey] of Object.entries(TYPE_FILE)) { + const raw = readFileSync(resolve(root, `public/unitsdb/${fileKey}.json`), 'utf-8') + const items: any[] = JSON.parse(raw) + slugToName[urlType] = {} + for (const item of items) { + const slug = item.unitsml_id.replace(/[^a-zA-Z0-9._-]/g, '_') + slugToName[urlType][slug] = item.name + } +} + +export default defineConfig({ + title: 'UnitsML', + description: 'A set of models for unambiguously encoding and identifying scientific units of measure and quantities', + lang: 'en-US', + lastUpdated: true, + srcExclude: ['CLAUDE.md'], + + transformPageData(pageData) { + const params = (pageData as any).params + if (params?.type && params?.id) { + const label = TYPE_LABEL[params.type] || params.type + const name = slugToName[params.type]?.[params.id] || params.id.replace(/_/g, ' ') + pageData.title = `${name} β€” ${label}` + pageData.description = `${label} ${name} in UnitsDB` + } + }, + + head: [ + ['link', { rel: 'icon', type: 'image/png', href: '/favicon-32x32.png', sizes: '32x32' }], + ['link', { rel: 'icon', type: 'image/svg+xml', href: '/favicon.svg' }], + ['link', { rel: 'shortcut icon', href: '/favicon.ico' }], + ['link', { rel: 'apple-touch-icon', sizes: '180x180', href: '/apple-touch-icon.png' }], + ['link', { rel: 'manifest', href: '/site.webmanifest' }], + ['meta', { name: 'theme-color', content: '#2d2c69' }], + ], + + vite: { + plugins: [asciidocPlugin()] + }, + + themeConfig: { + logo: { src: '/symbol.svg', height: 28 }, + siteTitle: 'UnitsML', + + nav: [ + { text: 'UnitsDB', link: '/unitsdb/' }, + { text: 'Schemas', link: '/schemas' }, + { + text: 'Learn', + items: [ + { text: 'What is UnitsML', link: '/learn/what-is-unitsml' }, + { text: 'Who is it for', link: '/learn/who-is-it-for' }, + { text: 'How it works', link: '/learn/how-it-works' }, + { text: 'Incorporating UnitsML', link: '/learn/incorporating-unitsml' }, + { text: 'Guide', link: '/learn/guide' }, + { text: 'Get Started', link: '/get-started' }, + ] + }, + { text: 'Software', link: '/software/' }, + { text: 'Blog', link: '/blog/' }, + { text: 'About', link: '/about' } + ], + + socialLinks: [ + { icon: 'github', link: 'https://github.com/unitsml' } + ], + + footer: { + message: `UnitsDB Β· Schemas Β· Learn Β· GitHub`, + copyright: 'Copyright Β© 2026 UnitsML Group' + }, + + search: { + provider: 'local' + }, + + sidebar: { + '/learn/': [ + { + text: 'Learn', + items: [ + { text: 'What is UnitsML', link: '/learn/what-is-unitsml' }, + { text: 'Who is it for', link: '/learn/who-is-it-for' }, + { text: 'How it works', link: '/learn/how-it-works' }, + { text: 'Incorporating UnitsML', link: '/learn/incorporating-unitsml' }, + { text: 'Guide', link: '/learn/guide' }, + ] + }, + { + text: 'Resources', + items: [ + { text: 'Get Started', link: '/get-started' }, + { text: 'Schemas', link: '/schemas' }, + ] + } + ], + '/software/': [ + { + text: 'Software', + items: [ + { text: 'Overview', link: '/software/' }, + { text: 'unitsdb-ruby', link: '/software/unitsdb-ruby' }, + { text: 'unitsml-ruby', link: '/software/unitsml-ruby' }, + ] + } + ], + '/schemas': [ + { + text: 'Schemas', + items: [ + { text: 'Overview', link: '/schemas' }, + { text: 'UnitsML XML Schemas', link: '/schemas#unitsml-xml-schemas' }, + { text: 'UnitsDB YAML Schemas', link: '/schemas#unitsdb-yaml-schemas' }, + ] + } + ], + '/get-started': [ + { + text: 'Getting Started', + items: [ + { text: 'Get Started', link: '/get-started' }, + ] + } + ], + '/about': [ + { + text: 'About', + items: [ + { text: 'About UnitsML', link: '/about' }, + { text: 'Privacy Policy', link: '/privacy' }, + { text: 'Terms of Service', link: '/tos' }, + ] + } + ], + }, + + outline: { + level: [2, 3] + }, + + editLink: { + pattern: 'https://github.com/unitsml/unitsml.github.io/edit/main/:path', + text: 'Edit this page on GitHub' + } + } +}) diff --git a/.vitepress/data/projects.ts b/.vitepress/data/projects.ts new file mode 100644 index 0000000..6994f0b --- /dev/null +++ b/.vitepress/data/projects.ts @@ -0,0 +1,29 @@ +export interface Project { + name: string + version: string + description: string + github: string + docs?: string + browse?: string + icon: string + category: string +} + +export const projects: Project[] = [ + { + name: 'unitsdb-ruby', + version: '', + description: 'A Ruby library for accessing and manipulating UnitsDB content β€” ships with bundled YAML data files.', + github: 'https://github.com/unitsml/unitsdb-ruby', + icon: 'πŸ’Ž', + category: 'Library' + }, + { + name: 'unitsml-ruby', + version: '', + description: 'Library to work with UnitsML in Ruby β€” parse unit expressions, generate MathML, and handle dimensional analysis.', + github: 'https://github.com/unitsml/unitsml-ruby', + icon: 'πŸ’Ž', + category: 'Library' + } +] diff --git a/.vitepress/plugins/asciidoc.ts b/.vitepress/plugins/asciidoc.ts new file mode 100644 index 0000000..2ae4dde --- /dev/null +++ b/.vitepress/plugins/asciidoc.ts @@ -0,0 +1,29 @@ +import Asciidoctor from '@asciidoctor/core' +import type { Plugin } from 'vite' + +const asciidoctor = Asciidoctor() + +export function asciidocPlugin(): Plugin { + return { + name: 'vite-plugin-asciidoc', + transform(code, id) { + if (!id.endsWith('.md')) return null + if (!code.includes('asciidoc: true')) return null + + const match = code.match(/^---\n([\s\S]*?)\n---\n([\s\S]*)$/) + if (!match) return null + + const [, frontmatter, body] = match + + const html = asciidoctor.convert(body, { + standalone: false, + attributes: { showtitle: false } + }) + + return { + code: `---\n${frontmatter}\n---\n\n${html}`, + map: null + } + } + } +} diff --git a/.vitepress/posts.data.ts b/.vitepress/posts.data.ts new file mode 100644 index 0000000..795f04e --- /dev/null +++ b/.vitepress/posts.data.ts @@ -0,0 +1,33 @@ +import { createContentLoader } from 'vitepress' + +interface Post { + title: string + url: string + date: string + authors: string[] + description: string + lastUpdated: number | undefined +} + +declare const data: Post[] +export { data } + +export default createContentLoader('blog/*.md', { + transform(raw): Post[] { + return raw + .filter((page) => !page.url.endsWith('/blog/')) + .map((page) => ({ + title: page.frontmatter.title, + url: page.url, + date: page.frontmatter.date, + authors: page.frontmatter.authors || [], + description: page.frontmatter.description || '', + lastUpdated: page.lastUpdated, + })) + .sort((a, b) => { + const dateA = new Date(a.date).getTime() + const dateB = new Date(b.date).getTime() + return dateB - dateA + }) + }, +}) diff --git a/.vitepress/theme/components/BlogByline.vue b/.vitepress/theme/components/BlogByline.vue new file mode 100644 index 0000000..430d768 --- /dev/null +++ b/.vitepress/theme/components/BlogByline.vue @@ -0,0 +1,137 @@ + + + + + diff --git a/.vitepress/theme/components/BlogIndex.vue b/.vitepress/theme/components/BlogIndex.vue new file mode 100644 index 0000000..a2ea283 --- /dev/null +++ b/.vitepress/theme/components/BlogIndex.vue @@ -0,0 +1,280 @@ + + + + + diff --git a/.vitepress/theme/components/DataModelDiagram.vue b/.vitepress/theme/components/DataModelDiagram.vue new file mode 100644 index 0000000..e76d935 --- /dev/null +++ b/.vitepress/theme/components/DataModelDiagram.vue @@ -0,0 +1,173 @@ + + + + + diff --git a/.vitepress/theme/components/EcosystemDiagram.vue b/.vitepress/theme/components/EcosystemDiagram.vue new file mode 100644 index 0000000..92de084 --- /dev/null +++ b/.vitepress/theme/components/EcosystemDiagram.vue @@ -0,0 +1,354 @@ + + + + + diff --git a/.vitepress/theme/components/FAQAccordion.vue b/.vitepress/theme/components/FAQAccordion.vue new file mode 100644 index 0000000..1d98cb3 --- /dev/null +++ b/.vitepress/theme/components/FAQAccordion.vue @@ -0,0 +1,213 @@ + + + + + diff --git a/.vitepress/theme/components/HomePage.vue b/.vitepress/theme/components/HomePage.vue new file mode 100644 index 0000000..b1068e7 --- /dev/null +++ b/.vitepress/theme/components/HomePage.vue @@ -0,0 +1,891 @@ + + + + + diff --git a/.vitepress/theme/components/NavScrollHandler.vue b/.vitepress/theme/components/NavScrollHandler.vue new file mode 100644 index 0000000..552ae9c --- /dev/null +++ b/.vitepress/theme/components/NavScrollHandler.vue @@ -0,0 +1,93 @@ + + + diff --git a/.vitepress/theme/components/PeopleGrid.vue b/.vitepress/theme/components/PeopleGrid.vue new file mode 100644 index 0000000..2e9f8df --- /dev/null +++ b/.vitepress/theme/components/PeopleGrid.vue @@ -0,0 +1,129 @@ + + + + + diff --git a/.vitepress/theme/components/TimelineSection.vue b/.vitepress/theme/components/TimelineSection.vue new file mode 100644 index 0000000..cb508ab --- /dev/null +++ b/.vitepress/theme/components/TimelineSection.vue @@ -0,0 +1,287 @@ + + + + + diff --git a/.vitepress/theme/components/UnitsDBBrowser.vue b/.vitepress/theme/components/UnitsDBBrowser.vue new file mode 100644 index 0000000..84af6d2 --- /dev/null +++ b/.vitepress/theme/components/UnitsDBBrowser.vue @@ -0,0 +1,521 @@ + + + + + diff --git a/.vitepress/theme/components/UnitsDBComposite.vue b/.vitepress/theme/components/UnitsDBComposite.vue new file mode 100644 index 0000000..36d5804 --- /dev/null +++ b/.vitepress/theme/components/UnitsDBComposite.vue @@ -0,0 +1,315 @@ + + + + + diff --git a/.vitepress/theme/components/UnitsDBDiagram.vue b/.vitepress/theme/components/UnitsDBDiagram.vue new file mode 100644 index 0000000..a8b9d03 --- /dev/null +++ b/.vitepress/theme/components/UnitsDBDiagram.vue @@ -0,0 +1,711 @@ + + + + + diff --git a/.vitepress/theme/components/UnitsDBEntityDetail.vue b/.vitepress/theme/components/UnitsDBEntityDetail.vue new file mode 100644 index 0000000..5ac51c4 --- /dev/null +++ b/.vitepress/theme/components/UnitsDBEntityDetail.vue @@ -0,0 +1,803 @@ + + + + + diff --git a/.vitepress/theme/custom.css b/.vitepress/theme/custom.css new file mode 100644 index 0000000..0454526 --- /dev/null +++ b/.vitepress/theme/custom.css @@ -0,0 +1,729 @@ +/* ========================================================================== + UnitsML Brand Theme + Navy: #2d2c69 | Teal: #30dfc0 | Blue: #57a0fe + ========================================================================== */ + +:root { + /* UnitsML Brand Colors */ + --unitsml-navy: #2d2c69; + --unitsml-navy-light: #46457a; + --unitsml-navy-dark: #1f1e4a; + --unitsml-teal: #30dfc0; + --unitsml-teal-light: #5eead4; + --unitsml-teal-dark: #14b8a6; + --unitsml-blue: #57a0fe; + + /* VitePress Brand Overrides */ + --vp-c-brand-1: var(--unitsml-navy); + --vp-c-brand-2: var(--unitsml-navy-light); + --vp-c-brand-3: var(--unitsml-navy-dark); + --vp-c-brand-soft: rgba(45, 44, 105, 0.10); + + /* Button */ + --vp-button-brand-border: transparent; + --vp-button-brand-text: #fff; + --vp-button-brand-bg: var(--unitsml-navy); + --vp-button-brand-hover-border: transparent; + --vp-button-brand-hover-text: #fff; + --vp-button-brand-hover-bg: var(--unitsml-navy-light); + --vp-button-brand-active-border: transparent; + --vp-button-brand-active-text: #fff; + --vp-button-brand-active-bg: var(--unitsml-navy-dark); + + /* Nav */ + --vp-nav-logo-height: 32px; +} + +/* Dark Mode */ +.dark { + --unitsml-navy: #6e6dba; + --unitsml-navy-light: #8a8acf; + --unitsml-navy-dark: #2d2c69; + + --vp-c-brand-1: #6e6dba; + --vp-c-brand-2: #8a8acf; + --vp-c-brand-3: #2d2c69; + --vp-c-brand-soft: rgba(110, 109, 186, 0.14); + + --vp-button-brand-bg: #6e6dba; + --vp-button-brand-hover-bg: #8a8acf; +} + +/* ========================================================================== + Typography + ========================================================================== */ + +:root { + --vp-font-family-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', + Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', + 'Helvetica Neue', sans-serif; +} + +/* ========================================================================== + Home Hero + ========================================================================== */ + +.home-hero { + padding: 6rem 2rem 4rem; + text-align: center; + position: relative; + overflow: hidden; +} + +.home-hero-logo { + max-width: 260px; + margin: 0 auto 3rem; + position: relative; + filter: drop-shadow(0 4px 12px rgba(45, 44, 105, 0.12)); +} + +.home-hero h1 { + font-size: 3.5rem; + font-weight: 700; + margin-bottom: 1.25rem; + letter-spacing: -0.03em; + line-height: 1.08; + color: var(--vp-c-text-1); + position: relative; +} + +.home-hero h1 .accent { + background: linear-gradient(135deg, var(--unitsml-navy) 0%, var(--unitsml-teal-dark) 100%); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + background-clip: text; +} + +.home-hero .tagline { + font-size: 1.25rem; + color: var(--vp-c-text-2); + max-width: 640px; + margin: 0 auto 2.5rem; + line-height: 1.7; + position: relative; +} + +.home-hero-actions { + display: flex; + gap: 1rem; + justify-content: center; + flex-wrap: wrap; + position: relative; +} + +/* ========================================================================== + Buttons + ========================================================================== */ + +.btn { + display: inline-flex; + align-items: center; + gap: 0.5rem; + border: 1px solid transparent; + text-align: center; + font-weight: 600; + border-radius: 24px; + padding: 0.625rem 1.5rem; + font-size: 0.9375rem; + text-decoration: none; + transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1); + cursor: pointer; + line-height: 1.5; +} + +.btn-brand { + background: var(--unitsml-navy); + color: white !important; + box-shadow: 0 1px 3px rgba(45, 44, 105, 0.2); +} + +.btn-brand:hover { + background: var(--unitsml-navy-light); + box-shadow: 0 6px 20px rgba(45, 44, 105, 0.3); + transform: translateY(-1px); + color: white !important; +} + +.btn-brand svg { + stroke: white; +} + +.btn-teal { + background: var(--unitsml-teal); + color: var(--unitsml-navy-dark); + box-shadow: 0 1px 3px rgba(48, 223, 192, 0.2); +} + +.btn-teal:hover { + background: var(--unitsml-teal-light); + box-shadow: 0 6px 20px rgba(48, 223, 192, 0.3); + transform: translateY(-1px); + color: var(--unitsml-navy-dark); +} + +.btn-outline { + border-color: var(--vp-c-divider); + background: var(--vp-c-bg-soft); + color: var(--vp-c-text-1); +} + +.btn-outline:hover { + border-color: var(--unitsml-navy); + box-shadow: 0 2px 8px rgba(45, 44, 105, 0.1); + transform: translateY(-1px); +} + +/* ========================================================================== + Sections + ========================================================================== */ + +.section { + margin: 5rem 0; +} + +.section-header { + margin-bottom: 2.5rem; +} + +.section-header h2 { + font-size: 2rem; + font-weight: 700; + letter-spacing: -0.025em; + color: var(--vp-c-text-1); + margin-bottom: 0.5rem; +} + +.section-header p { + color: var(--vp-c-text-2); + font-size: 1.0625rem; + line-height: 1.6; +} + +.section-divider { + width: 48px; + height: 3px; + background: linear-gradient(90deg, var(--unitsml-teal), var(--unitsml-blue)); + border-radius: 2px; + margin-top: 1rem; +} + +/* ========================================================================== + Project Cards + ========================================================================== */ + +.projects-grid { + display: grid; + grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); + gap: 1.5rem; + margin: 2rem 0; +} + +.project-card { + background: var(--vp-c-bg-soft); + border: 1px solid var(--vp-c-divider); + border-radius: 16px; + padding: 2rem; + transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); + position: relative; + overflow: hidden; +} + +.project-card::before { + content: ''; + position: absolute; + top: 0; + left: 0; + right: 0; + height: 3px; + background: linear-gradient(90deg, var(--unitsml-teal), var(--unitsml-blue)); + opacity: 0; + transition: opacity 0.3s ease; +} + +.project-card:hover { + border-color: var(--unitsml-navy); + box-shadow: 0 8px 30px rgba(45, 44, 105, 0.10); + transform: translateY(-2px); +} + +.project-card:hover::before { + opacity: 1; +} + +.project-card.featured { + border-color: transparent; + background: linear-gradient( + 135deg, + var(--vp-c-bg-soft) 0%, + rgba(45, 44, 105, 0.03) 100% + ); + border: 1px solid rgba(45, 44, 105, 0.12); +} + +.project-card .card-icon { + width: 44px; + height: 44px; + border-radius: 12px; + display: flex; + align-items: center; + justify-content: center; + font-size: 1.375rem; + margin-bottom: 1.125rem; + background: linear-gradient(135deg, rgba(45, 44, 105, 0.08), rgba(87, 160, 254, 0.08)); + color: var(--unitsml-navy); +} + +.project-card h3 { + display: flex; + align-items: center; + gap: 0.5rem; + margin-bottom: 0.75rem; + color: var(--vp-c-text-1); + font-size: 1.125rem; + font-weight: 600; +} + +.project-card h3 .version { + font-size: 0.75rem; + font-weight: 500; + color: var(--vp-c-text-3); + background: var(--vp-c-default-soft); + padding: 0.125rem 0.5rem; + border-radius: 4px; +} + +.project-card .description { + color: var(--vp-c-text-2); + font-size: 0.9375rem; + margin-bottom: 1.5rem; + line-height: 1.7; +} + +.project-card .links { + display: flex; + gap: 0.75rem; + flex-wrap: wrap; +} + +.project-card .links a { + font-size: 0.875rem; + font-weight: 500; + padding: 0.375rem 1rem; + border-radius: 8px; + text-decoration: none; + transition: all 0.2s ease; +} + +.project-card .links a.primary { + background: var(--unitsml-navy); + color: white; +} + +.project-card .links a.primary:hover { + background: var(--unitsml-navy-light); +} + +.project-card .links a.secondary { + background: var(--vp-c-default-soft); + color: var(--vp-c-text-1); +} + +.project-card .links a.secondary:hover { + background: var(--vp-c-default-2); +} + +.project-card .links a.teal-link { + color: var(--unitsml-teal-dark); + background: rgba(48, 223, 192, 0.1); +} + +.project-card .links a.teal-link:hover { + background: rgba(48, 223, 192, 0.2); +} + +/* ========================================================================== + Features Grid + ========================================================================== */ + +.features-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); + gap: 1.5rem; + margin: 2rem 0; +} + +.feature-card { + padding: 2rem; + background: var(--vp-c-bg-soft); + border-radius: 16px; + border: 1px solid var(--vp-c-divider); + transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); +} + +.feature-card:hover { + border-color: var(--unitsml-navy); + box-shadow: 0 8px 30px rgba(45, 44, 105, 0.08); + transform: translateY(-2px); +} + +.feature-card .feature-icon { + width: 48px; + height: 48px; + border-radius: 14px; + display: flex; + align-items: center; + justify-content: center; + font-size: 1.375rem; + margin-bottom: 1.25rem; + background: linear-gradient(135deg, rgba(48, 223, 192, 0.1), rgba(87, 160, 254, 0.1)); +} + +.feature-card h4 { + color: var(--vp-c-text-1); + margin-bottom: 0.5rem; + font-weight: 600; + font-size: 1.0625rem; +} + +.feature-card p { + color: var(--vp-c-text-2); + font-size: 0.9375rem; + line-height: 1.65; +} + +/* ========================================================================== + Schema Link Card + ========================================================================== */ + +.schema-card { + background: var(--unitsml-navy-dark); + border-radius: 20px; + padding: 2.5rem; + color: white; + position: relative; + overflow: hidden; +} + +.schema-card::after { + content: ''; + position: absolute; + top: -40%; + right: -15%; + width: 350px; + height: 350px; + background: radial-gradient(circle, rgba(48, 223, 192, 0.12) 0%, transparent 70%); + pointer-events: none; +} + +.schema-card::before { + content: ''; + position: absolute; + bottom: -30%; + left: -10%; + width: 250px; + height: 250px; + background: radial-gradient(circle, rgba(87, 160, 254, 0.08) 0%, transparent 70%); + pointer-events: none; +} + +.schema-card h3 { + color: white; + font-size: 1.5rem; + margin-bottom: 0.75rem; + font-weight: 700; +} + +.schema-card p { + color: rgba(255, 255, 255, 0.7); + font-size: 1rem; + line-height: 1.65; + margin-bottom: 1.5rem; +} + +.schema-card code { + color: var(--unitsml-teal-light); + background: rgba(255, 255, 255, 0.08); + padding: 0.125rem 0.5rem; + border-radius: 4px; + font-size: 0.875rem; +} + +.schema-card .schema-url { + background: rgba(255, 255, 255, 0.06); + border: 1px solid rgba(255, 255, 255, 0.1); + border-radius: 10px; + padding: 0.75rem 1rem; + display: inline-flex; + align-items: center; + gap: 0.5rem; +} + +/* ========================================================================== + Responsive + ========================================================================== */ + +@media (max-width: 768px) { + .home-hero { + padding: 4rem 1.5rem 3rem; + } + + .home-hero h1 { + font-size: 2.25rem; + } + + .home-hero .tagline { + font-size: 1.0625rem; + } + + .home-hero-logo { + max-width: 180px; + } + + .projects-grid { + grid-template-columns: 1fr; + } + + .section-header h2 { + font-size: 1.5rem; + } + + .schema-card { + padding: 1.5rem; + } +} + +@media (max-width: 640px) { + .home-hero-actions { + flex-direction: column; + align-items: center; + } + + .btn { + width: 100%; + justify-content: center; + } +} + +/* ========================================================================== + Animations & Motion + ========================================================================== */ + +@keyframes float { + 0%, 100% { transform: translateY(0) rotate(0deg); } + 50% { transform: translateY(-12px) rotate(3deg); } +} + +@keyframes float-delayed { + 0%, 100% { transform: translateY(0) rotate(0deg); } + 50% { transform: translateY(-8px) rotate(-2deg); } +} + +@keyframes pulse-glow { + 0%, 100% { opacity: 0.4; } + 50% { opacity: 0.8; } +} + +@keyframes fade-in-up { + from { opacity: 0; transform: translateY(20px); } + to { opacity: 1; transform: translateY(0); } +} + +@keyframes dash-flow { + to { stroke-dashoffset: -24; } +} + +@keyframes shimmer { + 0% { background-position: -200% 0; } + 100% { background-position: 200% 0; } +} + +@keyframes gentle-spin { + from { transform: rotate(0deg); } + to { transform: rotate(360deg); } +} + +/* Smooth scrolling */ +html { + scroll-behavior: smooth; +} + +/* Transition for dark mode toggle */ +.vp-doc, .VPSidebar, .VPNav, .VPFooter { + transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease; +} + +/* ========================================================================== + VitePress Overrides + ========================================================================== */ + +.vp-doc .custom-block.tip { + border-color: var(--unitsml-teal); +} + +.vp-doc h1 { + letter-spacing: -0.025em; +} + +.vp-doc h2 { + letter-spacing: -0.02em; + border-top: 1px solid var(--vp-c-divider); + padding-top: 2rem; + margin-top: 3rem; +} + +.vp-doc h2:first-of-type { + border-top: none; + padding-top: 0; + margin-top: 2rem; +} + +.VPFooter { + border-top: 1px solid var(--vp-c-divider) !important; +} + +/* ========================================================================== + Nav Logo + ========================================================================== */ + +.VPNavBarTitle .title { + font-size: 1rem; + font-weight: 700; + letter-spacing: -0.02em; +} + +.VPNavBarTitle .VPImage { + transition: transform 0.3s ease; +} + +.VPNavBarTitle:hover .VPImage { + transform: scale(1.05); +} + +/* Nav logo visibility transitions (controlled by NavScrollHandler) */ +/* The hero logo scrolls up naturally; the nav logo slides up from + below into its resting position as the hero scrolls past. */ + +/* Always define transitions so they apply on the first class change */ +.VPNavBarTitle { + transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), + transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important; + will-change: opacity, transform; +} + +/* Disable transitions during initial paint to prevent flash */ +.no-transition .VPNavBarTitle { + transition: none !important; +} + +.home-logo-hidden .VPNavBarTitle { + opacity: 0 !important; + transform: translateY(12px) !important; + pointer-events: none; +} + +.home-logo-visible .VPNavBarTitle { + opacity: 1 !important; + transform: translateY(0) !important; + pointer-events: auto; +} + +/* ========================================================================== + Subtle Page-level Enhancements + ========================================================================== */ + +/* Top-level doc pages: add a faint left accent line */ +.vp-doc > div > h1::before { + content: ''; + display: inline-block; + width: 4px; + height: 1.5em; + background: linear-gradient(180deg, var(--unitsml-teal), var(--unitsml-blue)); + border-radius: 2px; + margin-right: 0.75rem; + vertical-align: middle; +} + +/* ========================================================================== + Section Reveal Animation + ========================================================================== */ + +.section[data-revealed] { + animation: fade-in-up 0.6s ease-out both; +} + +.section[data-reveal-delay="1"] { animation-delay: 0.1s; } +.section[data-reveal-delay="2"] { animation-delay: 0.2s; } +.section[data-reveal-delay="3"] { animation-delay: 0.3s; } + +/* ========================================================================== + Interactive Tooltip + ========================================================================== */ + +.tooltip { + position: relative; +} + +.tooltip::after { + content: attr(data-tooltip); + position: absolute; + bottom: calc(100% + 8px); + left: 50%; + transform: translateX(-50%) scale(0.95); + background: var(--unitsml-navy-dark); + color: white; + padding: 0.5rem 0.75rem; + border-radius: 8px; + font-size: 0.75rem; + line-height: 1.4; + white-space: nowrap; + opacity: 0; + pointer-events: none; + transition: all 0.2s ease; + z-index: 10; + max-width: 240px; + white-space: normal; + text-align: center; + box-shadow: 0 4px 12px rgba(0,0,0,0.15); +} + +.tooltip:hover::after { + opacity: 1; + transform: translateX(-50%) scale(1); +} + +/* ========================================================================== + UnitsDB Full-Width App Page + ========================================================================== */ + +.unitsdb-full .VPSidebar { + display: none !important; +} + +.unitsdb-full .VPContent { + padding-left: 0 !important; +} + +.unitsdb-full .VPDoc .container { + max-width: unset !important; +} + +.unitsdb-full .VPDoc .content-container { + max-width: unset !important; + padding: 0 !important; +} + +.unitsdb-full .VPDoc .aside { + display: none !important; +} + +.unitsdb-full .VPDoc > .content { + padding: 0 !important; +} + +.unitsdb-full .VPDoc { + padding: 0 !important; +} + +.unitsdb-full .vp-doc > div > h1 { + display: none; +} diff --git a/.vitepress/theme/index.ts b/.vitepress/theme/index.ts new file mode 100644 index 0000000..373290f --- /dev/null +++ b/.vitepress/theme/index.ts @@ -0,0 +1,39 @@ +import DefaultTheme from 'vitepress/theme' +import './custom.css' +import HomePage from './components/HomePage.vue' +import BlogIndex from './components/BlogIndex.vue' +import BlogByline from './components/BlogByline.vue' +import EcosystemDiagram from './components/EcosystemDiagram.vue' +import DataModelDiagram from './components/DataModelDiagram.vue' +import UnitsDBDiagram from './components/UnitsDBDiagram.vue' +import UnitsDBComposite from './components/UnitsDBComposite.vue' +import UnitsDBBrowser from './components/UnitsDBBrowser.vue' +import UnitsDBEntityDetail from './components/UnitsDBEntityDetail.vue' +import TimelineSection from './components/TimelineSection.vue' +import PeopleGrid from './components/PeopleGrid.vue' +import FAQAccordion from './components/FAQAccordion.vue' +import NavScrollHandler from './components/NavScrollHandler.vue' +import { h } from 'vue' + +export default { + extends: DefaultTheme, + Layout() { + return h(DefaultTheme.Layout, null, { + 'layout-top': () => h(NavScrollHandler) + }) + }, + enhanceApp({ app }) { + app.component('HomePage', HomePage) + app.component('BlogIndex', BlogIndex) + app.component('BlogByline', BlogByline) + app.component('EcosystemDiagram', EcosystemDiagram) + app.component('DataModelDiagram', DataModelDiagram) + app.component('UnitsDBDiagram', UnitsDBDiagram) + app.component('UnitsDBComposite', UnitsDBComposite) + app.component('UnitsDBBrowser', UnitsDBBrowser) + app.component('UnitsDBEntityDetail', UnitsDBEntityDetail) + app.component('TimelineSection', TimelineSection) + app.component('PeopleGrid', PeopleGrid) + app.component('FAQAccordion', FAQAccordion) + } +} diff --git a/404.html b/404.html deleted file mode 100644 index c472b4e..0000000 --- a/404.html +++ /dev/null @@ -1,24 +0,0 @@ ---- -layout: default ---- - - - -
-

404

- -

Page not found :(

-

The requested page could not be found.

-
diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 0000000..8d5ba76 --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,60 @@ +# CLAUDE.md + +This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository. + +## Project Overview + +UnitsML.org is the official website for the UnitsML project β€” an authoritative mechanism for encoding scientific units of measure. The site is built with **VitePress**, deployed to **GitHub Pages**. + +Content is authored in **Markdown** (`.md` files). Blog posts can optionally use **AsciiDoc** by adding `asciidoc: true` to frontmatter (a Vite plugin converts the body via asciidoctor.js). + +## Commands + +```bash +# Install dependencies +npm install + +# Local dev server (hot reload) +npm run dev + +# Production build +npm run build + +# Preview production build locally +npm run preview +``` + +## Architecture + +- **VitePress** static site generator with custom theme extending the default VitePress theme. +- **Brand colors**: navy `#2d2c69`, teal `#30dfc0`, blue `#57a0fe` β€” defined in `.vitepress/theme/custom.css`. +- **Custom Vue components** in `.vitepress/theme/components/`: + - `HomePage.vue` β€” landing page with hero, stats, ecosystem diagram, how-it-works steps, software cards, features, schema CTA + - `EcosystemDiagram.vue` β€” interactive SVG diagram showing UnitsML components and relationships + - `TimelineSection.vue` β€” collapsible history timeline (1998–2022) with people and organizations + - `PeopleGrid.vue` β€” contributor cards with roles, affiliations, and eras + - `FAQAccordion.vue` β€” grouped FAQ with collapsible accordion (General, Integration, UnitsDB) + - `BlogIndex.vue` β€” blog listing with card layout + - `BlogByline.vue` β€” author/date byline for blog posts +- **Data layer** in `.vitepress/data/projects.ts` β€” software project definitions used by HomePage and Software page. +- **Blog post loader** in `.vitepress/posts.data.ts` β€” uses VitePress `createContentLoader` to index `blog/*.md`. +- **AsciiDoc plugin** in `.vitepress/plugins/asciidoc.ts` β€” Vite plugin that converts `.md` files with `asciidoc: true` frontmatter through asciidoctor.js. +- **Public assets** in `public/` β€” favicons, logos (`symbol.svg`, `logo-text.svg`), `ref-docs/` (PDFs). + +## CI/CD + +- **`.github/workflows/build_deploy.yml`** β€” Node 24 + VitePress build, deploys to GitHub Pages on push to `main`. +- **`.github/workflows/links.yml`** β€” lychee link checker against the built site. +- `lychee.toml` β€” link checker configuration with exclusions. + +## Content Structure + +- `index.md` β€” Home page (uses `` component) +- `about.md` β€” Rich about page with ecosystem diagram, governance, timeline, people grid, organizations +- `faq.md` β€” FAQ with accordion component +- `privacy.md`, `tos.md` β€” standalone pages +- `software/index.md` β€” Software listing with ecosystem diagram and project cards +- `software/schemas.md`, `software/unitsdb.md`, `software/unitsml-ruby.md` β€” individual software pages +- `specs/guidelines.md` β€” specifications page +- `blog/index.md` β€” Blog listing (uses `` component) +- `blog/*.md` β€” individual blog posts (frontmatter: title, date, authors, description) diff --git a/Gemfile b/Gemfile deleted file mode 100644 index 6bb67e6..0000000 --- a/Gemfile +++ /dev/null @@ -1,45 +0,0 @@ -source "https://rubygems.org" - -# Hello! This is where you manage which Jekyll version is used to run. -# When you want to use a different version, change it below, save the -# file and run `bundle install`. Run Jekyll with `bundle exec`, like so: -# -# bundle exec jekyll serve -# -# This will help ensure the proper Jekyll version is running. -# Happy Jekylling! -gem "jekyll" - -# This is the default theme for new Jekyll sites. You may change this to anything you like. - -# If you want to use GitHub Pages, remove the "gem "jekyll"" above and -# uncomment the line below. To upgrade, run `bundle update github-pages`. -# gem "github-pages", group: :jekyll_plugins -# gem "jekyll-theme-open-project", path: "~/src/jekyll-theme-open-project" -gem "jekyll-theme-open-project", "~> 2.1.11" - -# If you have any plugins, put them here! -group :jekyll_plugins do - gem "jekyll-seo-tag" - gem "jekyll-sitemap" - gem "jekyll-data" - gem "jekyll-asciidoc" - gem "jekyll-redirect-from" - gem "jekyll-inline-svg" - gem "git" - gem "jekyll-theme-open-project-helpers" - gem "kramdown-parser-gfm" - gem "kramdown-syntax-coderay" -end - -# Windows does not include zoneinfo files, so bundle the tzinfo-data gem -gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby] - -# Performance-booster for watching directories on Windows -gem "wdm", "~> 0.1.0" if Gem.win_platform? - -# For testing generated HTML pages and links -gem "rake" -gem "html-proofer" - -gem "webrick", "~> 1.7" diff --git a/Gemfile.lock b/Gemfile.lock deleted file mode 100644 index 1c67df8..0000000 --- a/Gemfile.lock +++ /dev/null @@ -1,140 +0,0 @@ -GEM - remote: https://rubygems.org/ - specs: - addressable (2.8.0) - public_suffix (>= 2.0.2, < 5.0) - asciidoctor (2.0.17) - coderay (1.1.3) - colorator (1.1.0) - concurrent-ruby (1.1.10) - em-websocket (0.5.3) - eventmachine (>= 0.12.9) - http_parser.rb (~> 0) - ethon (0.15.0) - ffi (>= 1.15.0) - eventmachine (1.2.7) - fastimage (2.1.7) - ffi (1.15.5) - forwardable-extended (2.6.0) - git (1.11.0) - rchardet (~> 1.8) - html-proofer (3.19.4) - addressable (~> 2.3) - mercenary (~> 0.3) - nokogiri (~> 1.13) - parallel (~> 1.10) - rainbow (~> 3.0) - typhoeus (~> 1.3) - yell (~> 2.0) - http_parser.rb (0.8.0) - i18n (1.10.0) - concurrent-ruby (~> 1.0) - jekyll (4.2.2) - addressable (~> 2.4) - colorator (~> 1.0) - em-websocket (~> 0.5) - i18n (~> 1.0) - jekyll-sass-converter (~> 2.0) - jekyll-watch (~> 2.0) - kramdown (~> 2.3) - kramdown-parser-gfm (~> 1.0) - liquid (~> 4.0) - mercenary (~> 0.4.0) - pathutil (~> 0.9) - rouge (~> 3.0) - safe_yaml (~> 1.0) - terminal-table (~> 2.0) - jekyll-asciidoc (3.0.0) - asciidoctor (>= 1.5.0) - jekyll (>= 3.0.0) - jekyll-data (1.1.1) - jekyll (>= 3.3, < 5.0.0) - jekyll-inline-svg (1.1.4) - jekyll (>= 3.3, < 5.0) - svg_optimizer (~> 0.2.5) - jekyll-redirect-from (0.16.0) - jekyll (>= 3.3, < 5.0) - jekyll-sass-converter (2.2.0) - sassc (> 2.0.1, < 3.0) - jekyll-seo-tag (2.8.0) - jekyll (>= 3.8, < 5.0) - jekyll-sitemap (1.4.0) - jekyll (>= 3.7, < 5.0) - jekyll-theme-open-project (2.1.11) - git (~> 1.4) - jekyll (~> 4.1) - jekyll-data (~> 1.0) - jekyll-seo-tag (~> 2.0) - jekyll-theme-open-project-helpers (= 2.1.8) - jekyll-theme-open-project-helpers (2.1.8) - fastimage (~> 2.1.4) - git (~> 1.4) - jekyll (~> 4.0) - jekyll-watch (2.2.1) - listen (~> 3.0) - kramdown (2.4.0) - rexml - kramdown-parser-gfm (1.1.0) - kramdown (~> 2.0) - kramdown-syntax-coderay (1.0.1) - coderay (~> 1.1) - kramdown (~> 2.0) - liquid (4.0.3) - listen (3.7.1) - rb-fsevent (~> 0.10, >= 0.10.3) - rb-inotify (~> 0.9, >= 0.9.10) - mercenary (0.4.0) - nokogiri (1.13.6-arm64-darwin) - racc (~> 1.4) - nokogiri (1.13.6-x86_64-linux) - racc (~> 1.4) - parallel (1.22.1) - pathutil (0.16.2) - forwardable-extended (~> 2.6) - public_suffix (4.0.7) - racc (1.6.0) - rainbow (3.1.1) - rake (13.0.6) - rb-fsevent (0.11.1) - rb-inotify (0.10.1) - ffi (~> 1.0) - rchardet (1.8.0) - rexml (3.2.5) - rouge (3.29.0) - safe_yaml (1.0.5) - sassc (2.4.0) - ffi (~> 1.9) - svg_optimizer (0.2.6) - nokogiri - terminal-table (2.0.0) - unicode-display_width (~> 1.1, >= 1.1.1) - typhoeus (1.4.0) - ethon (>= 0.9.0) - unicode-display_width (1.8.0) - webrick (1.7.0) - yell (2.2.2) - -PLATFORMS - arm64-darwin-20 - x86_64-linux - -DEPENDENCIES - git - html-proofer - jekyll - jekyll-asciidoc - jekyll-data - jekyll-inline-svg - jekyll-redirect-from - jekyll-seo-tag - jekyll-sitemap - jekyll-theme-open-project (~> 2.1.11) - jekyll-theme-open-project-helpers - kramdown-parser-gfm - kramdown-syntax-coderay - rake - tzinfo-data - webrick (~> 1.7) - -BUNDLED WITH - 2.3.8 diff --git a/Makefile b/Makefile deleted file mode 100644 index 8108bd7..0000000 --- a/Makefile +++ /dev/null @@ -1,18 +0,0 @@ -SHELL := /bin/bash - -all: _site - -clean: - bundle exec jekyll clean - rm -rf _site _software/*/.git _software/*/docs _software/*/_*_repo - -bundle: - bundle - -_site: - bundle exec jekyll build --trace - -serve: - bundle exec jekyll serve --trace - -.PHONY: bundle all open serve clean diff --git a/README.adoc b/README.adoc deleted file mode 100644 index 18fbbe6..0000000 --- a/README.adoc +++ /dev/null @@ -1,129 +0,0 @@ -= UnitsML official site - -== Introduction - -This is the site for the UnitsML project, located at -https://www.unitsml.org. - -It is a https://jekyllrb.com[Jekyll]-based site created with the Open Project Jekyll theme. - -Refer to their respective docs for details. - -== Content management - -Unlike other sections, this section targets site author -who does not necessarily have a software engineering background. - -NOTE: This documentation covers macOS or Ubuntu Linux. - -=== Overview - -Content management workflow involves the following phases: - -. Authoring: changing the contents of the repository. - You’ll manipulate AsciiDoc files (`.adoc` file extension) - and related files such as illustrations. - -. Previewing your changes (optional): - building and previewing the new version of the site locally without publishing. - (This is not a strict requirement at early stages, - you can skip straight to the next step and see your changes live. - However, setting up for this step is beneficial since it allows you - to preview your changes quicker.) - -. Version management: relaying your changes to upstream repository. - This means others will see your changes. - This also will cause the new version of the site to be published. - (Publishing the new version may take a few minutes.) - -=== Setup - -==== Pre-requisites - -Make sure you have the installed: - -- A text editor - (you can use a simple editor like CotEditor on macOS or Notepad+ on Windows, - or something more complex like VS Code with support for AsciiDoc preview) -- Git CLI - -=== Authoring - -Key sections are documentation pages (the largest) and news/blog posts. -Apart from that there can be other standalone pages. - -[NOTE] --- -You will be authoring site source using **AsciiDoc syntax**. -With AsciiDoc, your write plain text, and the result is rendered as HTML on the public site later. -Check out https://docs.asciidoctor.org/asciidoc/latest/syntax-quick-reference/ -for a quick reference. -AsciiDoc is contained in `.adoc` files. - -Most site source files (`.adoc` and otherwise) have _frontmatter_ -at the beginning, inbetween the `---` delimitersβ€”that frontmatter. -That frontmatter must specify the correct layout (see below) -and your page’s title. -After the frontmatter block, normal content (AsciiDoc, HTML, etc.) begins. --- - -==== Documentation - -Documentation lives under the `/docs/` directory. -All documentation source pages therein must specify `layout: docs` in frontmatter. - -The structure of the directory is reflected in the structure of URLs. -For example, file `/docs/section-1/test-page.adoc` will be available under `ap210.org/docs/section-1/test-page/`. - -===== Navigation sidebar - -Documentation requires manual update when you add pages, retitle them -or move them around. - -Navigation across the docs lives _separately from documentation files_: -you can find it under `/_layouts/docs.html`. - -The YAML frontmatter of that file (between `---` delimiters`) contains -a key `navigation`, under which documentation structure is described. -The sidebar is generated from this structure. - -===== The Deliverables page - -That page (currently `/docs/section-1/deliverables.adoc`) -is a special in that it contains code that initializes a _deliverable browser_. -Regarding that page, feel free to add text before - -==== Posts - -Blog/news roll posts reside under `/_posts/` directory. -See the existing post for frontmatter example. - -==== Other pages - -(Section to be completed.) - -== Previewing site locally - -=== Getting started - -. Ensure you have reasonable Ruby version (2.7.5 is recommended). - Use rbenv to manage Ruby versions. - -. Run `bundle` from within site directory to install Ruby dependencies. - -=== Building & serving - -Run `jekyll serve` from within site directory. - -Alternatively, build to HTML and serve separately -with `jekyll build && cd _site && python3 -m http.server`. - -To troubleshoot errors, append ` --trace` to build or serve command. - -== Development workflow - -. Ensure site builds and works normally, tests pass -. Create your feature branch (`git checkout -b my-new-feature`) -. Commit your changes (`git commit -am 'Add some feature'`) -. Push to the branch (`git push origin my-new-feature`) -. Make a pull request diff --git a/Rakefile b/Rakefile deleted file mode 100644 index f474433..0000000 --- a/Rakefile +++ /dev/null @@ -1,86 +0,0 @@ -require 'html-proofer' - -$sourceDir = "./source" -$outputDir = "./_site" -$testOpts = { - allow_hash_href: true, - assume_extension: true -} - -hostname = ENV['SITE_HOSTNAME'] -region = ENV['SITE_REGION'] - -task :default => ["serve:development"] - -desc "cleans the output directory" -task :clean do - sh "jekyll clean" -end - -namespace :deploy do - - desc "upload to S3" - task :s3upload => [] do - bucket = `aws s3api list-buckets --query "Buckets[?contains(Name, '#{hostname}')] | [0].Name" | jq -r '.'` - - p "Uploading to #{bucket} in #{region}" - - htmls = File.join("**", "*.html") - - # Remove extension from HTML files - Dir.glob(htmls, base: "_site") do |filename| - # Skip index.html - next if filename == "index.html" - - filename_noext = filename.sub('.html', '') - p "Will move #{filename} to #{filename_noext}" - FileUtils.mv(filename, filename_noext) - end - - p "Will upload non-HTML files" - sh %{ - aws s3 sync _site/ s3://#{bucket} --region #{region} --delete \ - --size-only --exclude "*" --include "*.*" - } - - p "Will upload HTML files" - sh %{ - aws s3 sync _site/ s3://#{bucket} --region #{region} --delete \ - --content-type "text/html; charset=utf-8" --exclude "*.*" - } - end -end - -namespace :build do - - desc "build development site" - task :development => [:clean] do - sh "jekyll build --drafts" - end - - desc "build production site" - task :production => [:clean] do - sh "JEKYLL_ENV=production jekyll build --config=_config.yml" - end -end - -namespace :serve do - - desc "serve development site" - task :development => [:clean] do - sh "jekyll serve --drafts" - end - - desc "serve production site" - task :production => [:clean] do - sh "JEKYLL_ENV=production jekyll serve --config=_config.yml" - end -end - -namespace :test do - - desc "test production build" - task :production => ["build:production"] do - HTMLProofer.check_directory($outputDir, $testOpts).run - end -end diff --git a/_config.yml b/_config.yml deleted file mode 100644 index 486161b..0000000 --- a/_config.yml +++ /dev/null @@ -1,122 +0,0 @@ -title: UnitsML -description: UnitsML is the authoritative mechanism for encoding scientific units of measure. - - -permalink: /blog/:year-:month-:day-:title/ - -seo: - type: Organization - -url: https://www.unitsml.org - -github_repo_url: https://github.com/unitsml/unitsml.org -github_repo_branch: master - -algolia_search: - api_key: 'test' - index_name: 'unitsml' - -landing_priority: [custom_intro, software, specs] - -theme: jekyll-theme-open-project - -author: - name: UnitsML - url: https://www.unitsml.org - -authors: - - name: UnitsML - email: info@unitsml.org - -contact_email: info@unitsml.org - -theme: jekyll-theme-open-project - -includes_dir: . - -extra_footer_links: - - { url: "/about/", title: "About UnitsML" } - - { url: "/faq/", title: "Frequently Asked Questions" } - - { url: "https://schema.unitsml.org/", title: "XML Schemas" } - -social: - links: - - https://github.com/unitsml - -legal: - name: UnitsML group - tos_link: /tos - privacy_policy_link: /privacy - -collections: - # Temporary fix - projects: - output: true - software: - output: true - permalink: /software/:path/ - specs: - output: true - permalink: /specs/:path/ - posts: - output: true - permalink: /blog/:year-:month-:day-:title/ - pages: - output: true - permalink: /:name/ - - -defaults: - # Theme defaults. - # MUST be duplicated from theme’s _config.yml - # (does not get inherited, unlike the collections hash) - - scope: - path: "" - values: - layout: default - - scope: - path: _posts - type: posts - values: - layout: post - - scope: - path: _software - type: software - values: - layout: product - - scope: - path: _specs - type: specs - values: - layout: spec - -plugins: - - jekyll-seo-tag - - jekyll-sitemap - - jekyll-inline-svg - -tag_namespaces: - software: - writtenin: "Written in" - bindingsfor: "Bindings for" - user: "Target user" - interface: "Interface" - specs: - audience: "Audience" - completion_status: "Status" - -exclude: - - .git - - .lycheeignore - - "*/.git" - - _software/*/.git - - _specs/*/.git - - Gemfile* - - Makefile - - Rakefile - - README.adoc - - vendor # for deployment - -svg: - optimize: true - diff --git a/_pages/about.adoc b/_pages/about.adoc deleted file mode 100644 index ba7b13a..0000000 --- a/_pages/about.adoc +++ /dev/null @@ -1,64 +0,0 @@ ---- -layout: docs-base -html-class: docs-page -title: About UnitsML ---- -:page-liquid: - -UnitsML is the authoritative mechanism for encoding scientific units of measure. -The UnitsML suite of technologies is developed by CalConnect's TC UNITS. - -NOTE: UnitsML is under active development and its documentation may change frequently. - -UnitsML consists of two main parts: - -* link:/software/schemas/[UnitsML XML], a way to encode scientific units of measure, -such as SI units, their derivatives and non-SI units; -* link:/software/unitsdb/[UnitsDB] (Units Database), a database containing extensive -information on units, prefixes, quantities and dimensions. - -== Vision - -* XML schema(s) available for incorporating UnitsML into XML -documents for encoding scientific units of measure. - -* Extensive XML repository containing schemas and -information on units, quantities, prefixes. - -* Design of schemas and repository to facilitate unit -information processing: - -** validating documents for self-consistent usage of units, -quantities, and prefixes - -** unit conversion and manipulation - -== History - -=== 1998 - -* Frank Olken and John McCarthy of the https://www.lbl.gov/[Lawrence Berkeley National Laboratory] (LBNL) led the https://www.w3.org/TandS/QL/QL98/pp/xml.ql.reqs.html[initial effort of encoding units in XML]. This work is also referred by https://www.w3.org/TandS/QL/QL98/pp/xml.ql.reqs.html[β€œRequirements and Desiderata for an XML Query Language”]. - -=== 1999 - -* http://xml.coverpages.org/OlkenMeasurementUnitsSyntax.html[β€œMeasurement Units in XML Datatypes”] was published by Olken and McCarthy at LBNL. - -* http://xml.coverpages.org/measurementUnits.html[MatML (Materials Markup Language)] which referred to the measurement units work, was published by NIST. - -=== 2003 - -* The β€œUnits Markup Language (UnitsML)” presentation was given at the http://xml.coverpages.org/ni2002-05-02-b.html[Open Forum 2003 on Metadata Registries], with work led by Bob Dragoset of NIST. Collaborators included Barry Taylor (NIST emeritus), Michael McLay (NIST EEEL), Frank Olken (LBNL) and Peter Murray-Rust (http://www.xml-cml.org/[CMLβ€”Chemical Markup Language]). The work was funded in part by NIST’s Systems Integration for Manufacturing Applications (SIMA) program. - -=== 2006 - -* The UnitsML work was proposed by the NIST Physics Laboratory (PL, now the https://www.nist.gov/pml[Physical Measurement Laboratory]) to be standardized, and was inducted into a new OASIS TC of the same name β€œUnitsML” sponsored by NIST. The Convenor of the TC was Simon Frechette (NIST MEL-SIMA). Collaborators included Mark Carlisle (NIST MEL-SIMA), Bob Dragoset (NIST PL), Karen Olsen (NIST PL), Gary Kramer (NIST CSTL), Peter Lindstrom (NIST CSTL), Kent Reed (NIST BFRL), Evan Wallace (NIST MEL), Ismet Celebi, Ronny Jopp and Alexander Roth. - -* The UnitsML TC at OASIS includes participants from https://www.nist.gov/[NIST], https://www.grantadesign.com/[Granta Design], LSC Group Ltd (now https://www.babcockinternational.com/[Babcock]), https://www.ibm.com/[IBM], NPL, https://www.unf.edu/[Univ. of North Florida], IEM. - -=== 2016 - -* The OASIS TC for UnitsML was closed due to completion of work at that stage. - -=== 2020β€” - -* UnitsML work continues! diff --git a/_pages/blog.html b/_pages/blog.html deleted file mode 100644 index 5d67fc1..0000000 --- a/_pages/blog.html +++ /dev/null @@ -1,6 +0,0 @@ ---- -title: Blog -description: The UnitsML blog -layout: blog-index -hero_include: index-page-hero.html ---- diff --git a/_pages/faq.adoc b/_pages/faq.adoc deleted file mode 100644 index 50ff2ae..0000000 --- a/_pages/faq.adoc +++ /dev/null @@ -1,141 +0,0 @@ ---- -layout: docs-base -html-class: docs-page -title: Frequently Asked Questions about UnitsML -docs_title: FAQ # Why does it have no effect -navigation: - base_url: /faq - items: - - title: Questions - path: / ---- - -== Standardization effort - -=== What is the rationale behind this standardization effort? What is the motivation of the sponsors/authors? - -The rationalization of this standard effort is to create a -schema for representing scientific units of measure that -can be easily incorporated into other markup languages, -thus improving interoperability between different markup -languages. There were numerous requests that the National -Institute of Standards and Technology address this issue -since NIST is responsible for interpreting the -International System of Units (SI) for use in the U.S. - - -=== What is the scope of this effort? What is explicitly out-of-scope, and why? - -The TC will develop and publish an XML-based specification -that will enable the unambiguous representation of units -of measure. This effort will not include the following -items: 1) the design of the Units database (UnitsDB) being -developed at NIST, except in so far as the design relates -directly to the UnitsML schema; 2) the generation of -codes/symbols that represent units of measure; and 3) -related properties needed for a complete representation of -numerical values, such as uncertainty. - - -=== Are there existing comparable or overlapping standards, or comparable standardization efforts currently under way? How does the work of this technical committee relate to these? What distinguishes this TC from similar work? How do the differences add value? (TODO) - - -=== Is the product of this technical committee intended to be used in conjunction with other standards or complementary technologies? - -UnitsML is explicitly intended to be used as a component -in the construction of other markup languages and / or -information systems which require information on units of -measure. This can generally be done in two ways: - -. Other markup languages can incorporate UnitsML to -provide the markup needed to define and refer to -units of measure. This will benefit developers of -such markup languages by providing ready-made -markup for units of measure. It will benefit users -of such languages by providing better -interoperability among languages that use UnitsML. - -. Other markup languages or information systems can -refer to definitions of units which are marked up -in UnitsML even if they do not use UnitsML to -denote units of measure. For example, a system may -use a code list to define units of measure. The -units corresponding to these codes (and the codes -themselves) could then be marked up in UnitsML. In -this manner UnitsML is complimentary to efforts to -provide standardized unit codes; it provides a -mechanism to mark up such codes and the units they -represent. - -==== What are these? - -UnitsML may be used with any markup language or -system which has data that contains units of -measure. Such data can be found in many -applications in commerce, engineering, and -science. Examples of such applications include -management of laboratory data, geographical -information systems, and commerce which is based -on physical properties of the product being sold. - -==== How does this work relate to these (is the usage of these complements mandatory? optional? restricted or profiled?) - -Use of UnitsML is completely optional. In many -cases, existing systems have already developed -domain specific markup or codes for handling -units, and it is probably not practical to convert -such systems to use UnitsML. The advantages of -UnitsML (ready-made markup for units, improved -interoperability), however, should provide a -compelling case for its use in new projects. - - -=== What is an example of a concrete application that will benefit from standardizing the specifications from this TC? - -This standard will greatly improve the ability to reliably exchange scientific data. This would be particularly useful in areas where scientific data is exchanged between different disciplines or business sectors. Specific examples include reliably interpreting scientific data from 1) disparate sources during emergency situations, and 2) technical specifications that accompany products in the manufacturing supply chain. - -=== Is it anticipated that TC deliverables will be broadly used, deployed, and/or implemented? Or are the deliverables intended for a narrow audience, possibly including only the TC membership? - -The use of units of measure is pervasive. UnitsML could be -used by most developers of markup languages that include -units of measure and it is anticipated that it will be -broadly implemented. - - -=== What are the security implications, if any, of this effort? - -There are no known security implications for this effort. - - -== UnitsML and UnitsDB - -=== How might UnitsML be used? - -UnitsML has been designed primarily to be a component for inclusion into other markup languages. There are several different ways to incorporate UnitsML into other markup languages: referencing the schema, including the schema, importing the schema, and redefining the schema elements. For more information, see http://dx.doi.org/10.6028/jres.115.003[Improving Interoperability by Incorporating UnitsML into Markup Languages]. - -=== What is UnitsDB? - -UnitsDB is a database under development at NIST that will -contain extensive information on scientific units of -measure. The output of the database will be in UnitsML and -HTML, with both human and Web Services interfaces. - - -=== What is the relationship between UnitsML (the schema) and UnitsDB? - -In addition to HTML output, another output format for -UnitsDB is UnitsML. However, the UnitsML schema (under -development in the OASIS TC) will also be incorporated -into other markup languages in order to handle units of -measure. There is a possibility that the OASIS TC will -change the UnitsML schema such that it will no longer be -used as the XML output format for UnitsDB. - - -=== Is UnitsML only to be used in conjunction with UnitsDB? - -No. There is information contained in the UnitsDB that may -be useful for using UnitsML, and one output format for -UnitsDB is UnitsML, but the UnitsML schema is designed for -marking up units of measure within other markup languages -independent from UnitsDB. diff --git a/_pages/privacy.adoc b/_pages/privacy.adoc deleted file mode 100644 index 17325c2..0000000 --- a/_pages/privacy.adoc +++ /dev/null @@ -1,6 +0,0 @@ ---- -layout: docs-base -html-class: docs-page -title: Privacy policy ---- -To be provided. diff --git a/_pages/software.html b/_pages/software.html deleted file mode 100644 index 423c127..0000000 --- a/_pages/software.html +++ /dev/null @@ -1,6 +0,0 @@ ---- -title: UnitsML software -description: Software behind and for working with UnitsML -layout: software-index -hero_include: index-page-hero.html ---- diff --git a/_pages/specs.html b/_pages/specs.html deleted file mode 100644 index ce59972..0000000 --- a/_pages/specs.html +++ /dev/null @@ -1,6 +0,0 @@ ---- -title: UnitsML specifications -description: Documents and specifications related to UnitsML -layout: spec-index -hero_include: index-page-hero.html ---- diff --git a/_pages/tos.adoc b/_pages/tos.adoc deleted file mode 100644 index f0140c6..0000000 --- a/_pages/tos.adoc +++ /dev/null @@ -1,6 +0,0 @@ ---- -layout: docs-base -html-class: docs-page -title: Terms of service ---- -To be provided. diff --git a/_software/schemas.adoc b/_software/schemas.adoc deleted file mode 100644 index 13d7ad8..0000000 --- a/_software/schemas.adoc +++ /dev/null @@ -1,31 +0,0 @@ ---- -title: XML schemas -description: Schemas for using UnitsML in XML. -repo_url: https://github.com/unitsml/schemas - -external_links: - - url: https://github.com/unitsml/schemas - - url: https://schema.unitsml.org/ - title: "Browse schemas" - -docs: - git_repo_url: "https://github.com/unitsml/schemas" - git_repo_subtree: docs - -tags: ["writtenin:XSD", "writtenin:Ruby"] - -feature_with_priority: 1 ---- -UnitsML allows encoding of scientific units of measure and quantities into XML and will validate XML documents that use UnitsML. - -NOTE: The XML schemas contained in this repository can be browsed at https://schema.unitsml.org/[schema.unitsml.org]. - -Types of units include: - -* SI (International System of Units) base and special derived units (e.g., meter, second, joule, volt) -* SI derived units (e.g., square meter, meter per second, mm β€’ s-2) -* Non-SI units (e.g., minute, ångström, and inch) - -We anticipate that UnitsML will be used by the developers of other markup languages to address the needs of specific communities (e.g., mathematics, chemistry, materials science). The UnitsML schema is not intended to be a standalone schema, but rather to be used in combination with other specific schemas through the appropriate use of namespaces. - -Initial development of this schema was done at NIST, but completion of the development process should include input from the international scientific and engineering community. Towards this end, we are initiating an OASIS Technical Committee to address any needed changes in the schema and publish a final recommendation. diff --git a/_software/schemas/assets/symbol.svg b/_software/schemas/assets/symbol.svg deleted file mode 100644 index b97b1e1..0000000 --- a/_software/schemas/assets/symbol.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/_software/unitsdb.adoc b/_software/unitsdb.adoc deleted file mode 100644 index aa2d7db..0000000 --- a/_software/unitsdb.adoc +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: UnitsDB -description: Database of scientific units of measure. -repo_url: https://github.com/unitsml/unitsdb - -docs: - git_repo_url: https://github.com/unitsml/unitsdb - git_repo_subtree: docs - -external_links: - - url: https://github.com/unitsml/unitsdb - -tags: ["writtenin:YAML"] - -feature_with_priority: 1 ---- - -The UnitsDB contains detailed units and dimensionality information for an extensive number of SI units and common, non-SI units. The database includes information needed to reference units in an XML document, and specifically includes: - -* Unique identifiers -* Unit symbols -* Language-specific unit names -* Representations in terms of other units (including conversion factors) - -In addition to scientific units, the database will include information about common quantities (e.g., length, mass), including the dimension of quantities with respect to the 7 base quantities. - -UnitsDB in its entirety -can be found in this UnitsDB Github repository. diff --git a/_software/unitsdb/assets/symbol.svg b/_software/unitsdb/assets/symbol.svg deleted file mode 100644 index b97b1e1..0000000 --- a/_software/unitsdb/assets/symbol.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/_software/unitsml-ruby.adoc b/_software/unitsml-ruby.adoc deleted file mode 100644 index 3250e7d..0000000 --- a/_software/unitsml-ruby.adoc +++ /dev/null @@ -1,19 +0,0 @@ ---- -title: unitsml-ruby -description: A wrapper gem for UnitsDB. -repo_url: https://github.com/unitsml/unitsml-ruby -repo_branch: main - -docs: - git_repo_url: "https://github.com/unitsml/unitsml-ruby" - git_repo_branch: main - git_repo_subtree: docs - -external_links: - - url: https://github.com/unitsml/unitsml-ruby - -tags: ["writtenin:Ruby", "interface:library"] - -feature_with_priority: 3 ---- - diff --git a/_software/unitsml-ruby/assets/symbol.svg b/_software/unitsml-ruby/assets/symbol.svg deleted file mode 100644 index b97b1e1..0000000 --- a/_software/unitsml-ruby/assets/symbol.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/_specs/guidelines.adoc b/_specs/guidelines.adoc deleted file mode 100644 index 34d6090..0000000 --- a/_specs/guidelines.adoc +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: UnitsML documentation source -description: Metanorma sources of UnitsML guidelines. -source_url: https://github.com/unitsml/docs - -external_links: - - url: https://github.com/unitsml/docs - -feature_with_priority: 4 ---- - -Deliverables are available in PDF here (noteβ€”a PDF may be slightly outdated compared to its Metanorma source): - -- link:/assets/ref-docs/UnitsML-Guide-v1.0-wd01.pdf[UnitsML Guide v1.0 (working draft 01)] -- link:/assets/ref-docs/Improving_Interoperability_by_Incorporating_UnitsM.pdf[Improving Interoperability by Incorporating UnitsML into Markup Languages] diff --git a/about.md b/about.md new file mode 100644 index 0000000..7e63e48 --- /dev/null +++ b/about.md @@ -0,0 +1,307 @@ +# About UnitsML + +
+

+ UnitsML is a set of models for unambiguously encoding and identifying scientific units + of measure and quantities, usable in XML and other markup languages. Developed under + CalConnect TC UNITS, it enables reliable scientific + data exchange across systems and disciplines. +

+
+ +::: info +UnitsML is under active development and its documentation may change frequently. +::: + +## The UnitsML Ecosystem + +UnitsML consists of interconnected components that together form a complete system for encoding, storing, and accessing scientific units: + + + +
+
+

UnitsML XML Schemas

+

Authoritative XML schemas for encoding scientific units of measure β€” SI base units, derived units, and non-SI units. Designed to be incorporated into other markup languages.

+ Learn more → +
+
+

UnitsDB

+

A comprehensive database of scientific units with detailed dimensionality information, unique identifiers, symbols, language-specific names, and conversion factors.

+ Learn more → +
+
+

unitsml-ruby

+

A Ruby gem providing programmatic access to UnitsDB, enabling developers to integrate units data into their applications.

+ Learn more → +
+
+ +## Vision + +- A set of models for incorporating UnitsML into any markup language or data format +- Extensive repository of schemas and information on units, quantities, and prefixes +- Designed for unit information processing β€” validation, conversion, and manipulation + +## Governance + +UnitsML is developed through an open standards process: + +
+
+
+ +
+

CalConnect TC UNITS

+

The current home of UnitsML standardization, created in 2022.

+ 2022–present +
+
+
+ +
+

OASIS TC UnitsML

+

Original standards body. TC formed in 2006, completed its mandate in 2016.

+ 2006–2016 +
+
+
+ +
+

NIST

+

Originator and long-term sponsor of UnitsML, through the Physics and MEL laboratories.

+ 1998–present +
+
+ +## History + +A journey spanning over 25 years of standards development: + + + +## People + +UnitsML has been shaped by contributors across government, academia, and industry: + + + +## Participating Organizations + + + + + +## Frequently Asked Questions + + diff --git a/assets/css/style.scss b/assets/css/style.scss deleted file mode 100644 index 43b5072..0000000 --- a/assets/css/style.scss +++ /dev/null @@ -1,150 +0,0 @@ ---- ---- - -$accent-color: darken(#d7df23, 20%); -$primary-color: darken(#83cee8, 30%); -$primary-color-dark: darken($primary-color, 20%); -$main-background: linear-gradient(315deg, darken($primary-color, 20%) 0%, darken($primary-color, 10%) 74%) !default; - -@import 'jekyll-theme-open-project'; - -.main-section { - > .title { - font-weight: 500; - } -} - -body > .underlay > footer { - .parent-hub-plug { - display: none !important; - // Temporary measure, until this site is converted to hub site or new framework. - } -} - -body.site--project.layout--home > main > .custom-intro .summary p:first-child:first-letter { - font-size: unset; - line-height: unset; - color: unset; - margin: unset; - float: unset; - padding: unset; -} - -body > .underlay > header > .hamburger-menu { - > nav { - margin-top: 1em - } - - > nav > * { - margin-left: 1.5em - } -} - - -body > .underlay > header { - > .site-logo, - > .hamburger-menu .site-logo-container { - - margin-right: 2em; - - a .symbol { - display: inline-block; - - svg { - height: 2rem; - margin-right: 0.5em; - } - } - - a .title { - display: inline-block; - - svg { - height: 1rem; - * { - fill: white; - } - } - } - - } -} - -body.layout--home > .underlay > .hero { - .illustration { - bottom: -100px !important; - - svg { - height: 200px; - } - } - - > .text { - > .title { - font-weight: normal; - } - } -} - -body.layout--home { - > main .custom-intro .summary { - ul.supported-bibliographies { - li { - .label { - margin-right: 1en; - } - .source, .gem { - white-space: nowrap; - } - .source { - &:after { - content: ", "; - } - - &:last-child:after { - content: unset; - } - } - } - } - } -} - -body.layout--home { - > main > .featured-posts { - .title { - align-self: flex-start; - } - } -} - -body.overview, -body.getting-started { - section.documentation { - margin-bottom: 100px; - } -} - -body.overview section.documentation { - ul.feature-list { - display: flex; - flex-flow: column nowrap; - - li.feature p { - padding-bottom: 1em; - } - - @media screen and (min-width: $bigscreen-breakpoint) { - flex-flow: row wrap; - li { - flex-basis: 50%; - flex: 1 1 auto; - } - } - } - .cta .button { - @include cta-button(transparent, $primary-dark-color); - border-radius: 25px; - border: 1px solid $primary-color; - } -} diff --git a/assets/js/file-browser.js b/assets/js/file-browser.js deleted file mode 100644 index 8c4e956..0000000 --- a/assets/js/file-browser.js +++ /dev/null @@ -1,208 +0,0 @@ -(function () { - - function initFilePreview(containerEl) { - const sitePrefix = containerEl.dataset.filePathPrefix; - function setPath(path) { - containerEl.innerHTML = ''; - const previewEl = containerEl.appendChild(document.createElement('div')); - const linkEl = previewEl.appendChild(document.createElement('a')); - - linkEl.setAttribute('href', `${sitePrefix}${path}`) - const pathParts = path.split('/'); - const filename = pathParts[pathParts.length - 1]; - linkEl.setAttribute('download', filename); - linkEl.innerHTML = `Download
${filename}`; - } - return { - setPath, - } - } - - function initFileBrowser() { - const rootContainer = document.querySelector('[data-file-browser]'); - - // File listing and preview - - const fileListContainer = document.querySelector('[data-file-list]'); - const previewContainer = document.querySelector('[data-file-preview]'); - - if (!fileListContainer || !previewContainer) { - throw new Error("Unable to obtain file list or preview container"); - } - - const allItemPaths = window[fileListContainer.dataset.fileList]; - - if (!allItemPaths) { - throw new Error("Unable to obtain item paths"); - } - - // This is unnecessarily involved, but may be useful - // if we need an hierarchical structure to access items later. - // const allItemPathsAsObject = allItemPaths. - // map(path => ({ [path]: true })). - // reduce((prev, curr) => ({ ...prev, ...curr }), {}); - // const allItemsAsHierarchy = unflattenObject(allItemPathsAsObject); - // const topLevelItemPaths = Object.keys(allItemsAsHierarchy); - - let initialItemPaths, initiallySelectedItemPath; - try { - initialItemPaths = JSON.parse(window.localStorage.getItem('initial-items')); - // Abort loading if previously stored item list somehow contains an item that no longer exists - const missingItem = initialItemPaths. - find(iip => allItemPaths.find(ip => ip === iip || ip.startsWith(`${iip}/`)) < 0); - if (missingItem) { - throw new Error(`Invalid initial items stored (${missingItem} does not exist)`); - } - // Or if selected item path is not found - initiallySelectedItemPath = window.localStorage.getItem('selected-item'); - if (initiallySelectedItemPath && allItemPaths.indexOf(initiallySelectedItemPath) < 0) { - throw new Error(`Invalid selected item stored (${initiallySelectedItemPath} does not exist)`); - } - } catch (e) { - // If no item state to load, only top-level items initially - initialItemPaths = allItemPaths. - map(i => i.split('/')[0]). - filter(function deduplicate(itemID, idx, self) { - return idx === self.indexOf(itemID); - }); - initiallySelectedItemPath = null; - window.localStorage.removeItem('initial-items'); - window.localStorage.removeItem('selected-item'); - console.error("Error loading stored data, reverting to default", e); - } - - const listing = window.createWindowedListing( - initialItemPaths, - fileListContainer, - initiallySelectedItemPath, - onSelectItem, - getItemLabel, - getSubpaths, - isDirectory, - ); - - const filePreview = initFilePreview(previewContainer); - - async function onSelectItem(itemPath, itemEl) { - listing.getVisibleElements().map(element => element.classList.remove('selected')); - itemEl.classList.add('selected'); - window.localStorage.setItem('selected-item', itemPath); - - // If shown items are a result of search, do not update stored state - if (!itemIDsPreSearch) { - window.localStorage.setItem('initial-items', JSON.stringify(listing.getItemIDs())); - } - - if (await isDirectory(itemPath)) { - } else { - filePreview.setPath(itemPath); - } - } - - async function getItemLabel(itemPath) { - const el = document.createElement('span'); - if (await isDirectory(itemPath)) { - el.classList.add('directory'); - } else { - el.classList.add('file'); - } - const parts = itemPath.split('/'); - el.textContent = parts[parts.length - 1]; - return el; - } - - /** Returns true if there is at least one child item for given item ID. */ - async function isDirectory(itemPath) { - if (allItemPaths.find(path => path.startsWith(`${itemPath}/`))) { - return true; - } - return false; - } - - /** Returns a list of immediate child IDs. */ - async function getSubpaths(itemPath) { - const slashCount = (itemPath.match(/\//ig) || []).length; - return allItemPaths.filter(path => - path.startsWith(`${itemPath}/`) && - ((path.match(/\//ig) || []).length === slashCount + 1)); - } - - - // Search - - const search = rootContainer.querySelector('[data-file-search]'); - let itemIDsPreSearch = null; - - if (search) { - - // Try to load previous search, if any - const initialSearchString = window.localStorage.getItem('search-string'); - if (initialSearchString) { - search.value = initialSearchString; - setTimeout(() => { - handleSearch(initialSearchString); - }, 1000); - } - - function itemPathMatchesSearch(itemPath, searchString) { - const pathParts = itemPath.split('/'); - return pathParts[pathParts.length - 1].toLowerCase().indexOf(searchString.toLowerCase()) >= 0; - } - - function handleSearch(searchString) { - localStorage.setItem('search-string', searchString); - if (searchString.length >= 2) { - if (!itemIDsPreSearch) { - itemIDsPreSearch = listing.getItemIDs(); - } - listing.updateItems( - (() => allItemPaths.filter(i => itemPathMatchesSearch(i, searchString))), - true); - } else { - if (itemIDsPreSearch) { - listing.updateItems((() => itemIDsPreSearch), true); - itemIDsPreSearch = null; - } - } - } - - search.addEventListener('keyup', function _handleSearch(evt) { - handleSearch(evt.currentTarget.value); - }); - } - } - - document.addEventListener('DOMContentLoaded', initFileBrowser); - - /** - * Aggregates parts (mapped to slash-separated paths) into a nested object. - * E.g. `{ /some/path: A, /foo: B, /some/other/path: C }` - * gets turned into `{ foo: B, some: { path: A, other: { path: C } } }`. - */ - function unflattenObject(parts) { - const result = {}; - - for (const partPath of Object.keys(parts)) { - if (Object.prototype.hasOwnProperty.call(parts, partPath)) { - - const keys = partPath.match(/^\/+[^\/]*|[^\/]*\/+$|(?:\/{2,}|[^\/])+(?:\/+$)?/g); - // Matches a standalone slash in a key - //const keys = partPath.match(/^\.+[^.]*|[^.]*\.+$|(?:\.{2,}|[^.])+(?:\.+$)?/g); - - if (keys) { - keys.reduce((accumulator, val, idx) => { - return accumulator[val] || ( - (accumulator[val] = isNaN(Number(keys[idx + 1])) - ? (keys.length - 1 === idx - ? parts[partPath] - : {}) - : []) - ); - }, result); - } - } - } - - return result; - } -})(); diff --git a/assets/js/windowed-listing.js b/assets/js/windowed-listing.js deleted file mode 100644 index f298413..0000000 --- a/assets/js/windowed-listing.js +++ /dev/null @@ -1,312 +0,0 @@ -(function () { - - /** - * Sets up a windowed listing, given `itemIDs` (list of strings) and `scrollView`. - * - * Items may have hierarchy, which is represented in item IDs with forward slashes (`/`). - * - * `itemIDs` should contain a list of items (their IDs) to be shown initially. - * Normally it would be a list of top-level item IDs. - * If there are IDs that are nested, their parents will be auto-expanded - * for items to be shown. - * - * `scrollView` *must* contain at least one item already; it’ll be used as a template. - * The template item must contain a link (``) child with a `` inside, - * where item label will be rendered. - * - * Created item’s DOM element will have `itemID` data attribute set appropriately. - * - * Calls `await isExpandable(itemID: string)` when an item is being constructed. - * If provided and returns true for given item ID, that item can be expanded by the user. - * - * Calls `await getItemLabel(itemID: string)` when an item is being constructed. - * The function is supposed to return a DOM node. - * If the function is not provided or returns a falsey value, raw item ID will be shown. - * - * Calls `await getItemChildren(itemID: string)` when an item is expanded. - * The result should return a list of item IDs to show underneath the expanded item. - * - * Calls `onSelectItem(itemID: string, item: Node)` with selected item, - * letting the user adjust DOM, remember selected item ID, etc. - * - * Returns an object that represents windowed listing API. The API includes: - * - * - `updateItems()`: can be called with an updater function. - * Updater function will receive a list of currently shown item IDs, - * and should return a list of item IDs to be shown. - * This can be used in search functionality: callers can implement a search widget - * that binds `updateItems()` to search query changes. - * - * On initialization, `updateItems()` is called with the initial item ID list. - * - * - `getVisibleElements()`: returns a list of DOM elements shown in item window. - * - * - `getItemIDs()`: returns full list of item IDs that can be shown by scrolling. - * May include more or fewer than initial item IDs, if e.g. parents were expanded/collapsed. - */ - function createWindowedListing ( - initialItemIDs, - scrollView, - initialSelectedItemID, - onSelectItem, - getItemLabel, - getItemChildren, - isExpandable, - ) { - const DEBOUNCE_SCROLL_MS = 50; - const EXTRA_ITEMS_BEFORE = 10; - const EXTRA_ITEMS_AFTER = 10; - - // These three may change at runtime, depending on item expanded state: - let itemIDs = [...initialItemIDs]; - let itemCount = itemIDs.length; - let expandedItems = {}; // A map of { [itemID]: true } - - let selectedItemID = initialSelectedItemID; - - // Relative is important, the remaining ones are useful for small viewports (mobile) - scrollView.style.position = 'relative'; - scrollView.style.overflowY = 'auto'; - // scrollView.classList.add('relative', 'max-h-screen', 'overflow-y-auto'); - - // Keep the first child as template - const firstItem = scrollView.children[0]; - const itemHeight = firstItem.offsetHeight; // Measure it, too - const templateItem = firstItem.cloneNode(true); - - // Clear scroll view and add a height-forcing div - scrollView.innerHTML = ''; - const heightExpander = document.createElement('div'); - heightExpander.style.height = `${itemCount * itemHeight}px`; - scrollView.appendChild(heightExpander); - - // If item is selected, scroll the outer element to make it appear in view - // before initializing item window - if (initialSelectedItemID) { - const selectedItemIdx = itemIDs.indexOf(initialSelectedItemID); - if (selectedItemIdx >= 0) { - scrollView.scrollTop = (selectedItemIdx * itemHeight); - } - } - - // Automatically refresh window on each subsequent scroll - let scrollTimeout = null; - function handleScrollDebounced() { - if (scrollTimeout) { window.clearTimeout(scrollTimeout); } - scrollTimeout = setTimeout(refreshItemWindow, DEBOUNCE_SCROLL_MS); - } - scrollView.addEventListener('scroll', handleScrollDebounced); - - - // DOM element representing the window of currently visible items. - let itemWindow = null; - - // Update items to initial list; also refreshes the window. - updateItems((() => initialItemIDs), true); - - /** - * Updates the list of all items, even those not in the window. - * - * This can be used in cases like expanding items that contain children - * (children will be inserted in the list), - * or when applying filters. - * - * - `updaterFunc` will receive the current list of items and must receive the new one. - * - The `resetExpanded` flag will collapse any previously expanded items in the beginning. - * - For nested items, any missing parents will be implicitly added and expanded. - */ - async function updateItems(updaterFunc, resetExpanded) { - if (resetExpanded === true) { - expandedItems = {}; - } - - itemIDs = updaterFunc(itemIDs).filter(function deduplicate(itemID, idx, self) { - return idx === self.indexOf(itemID); - }); - - function _expandParents(iid, idx) { - if (iid.indexOf('/') >= 0) { - const parts = iid.split('/'); - const parentsToExpand = []; - - let currentParent = ''; - for (const part of parts.slice(0, parts.length - 1)) { - if (currentParent) { - currentParent = `${currentParent}/${part}`; - } else { - currentParent = part; - } - parentsToExpand.push(currentParent); - } - - parentsToExpand.reverse(); - for (const par of parentsToExpand) { - expandedItems[par] = true; - if (itemIDs.indexOf(par) < 0) { - itemIDs.splice(idx, 0, par); - } - } - } - } - - // Expand parents of shown items, if needed - for (const [idx, iid] of itemIDs.entries()) { - _expandParents(iid, idx); - } - - itemCount = itemIDs.length; - - await refreshItemWindow(); - } - - async function onToggleItem(itemID) { - if (expandedItems[itemID]) { - return onCollapseItem(itemID); - } else { - return onExpandItem(itemID); - } - } - - async function onExpandItem(itemID) { - if (isExpandable && getItemChildren && await isExpandable(itemID)) { - const childrenIDs = await getItemChildren(itemID); - const itemIdx = itemIDs.indexOf(itemID); - if (itemIdx >= 0 && childrenIDs) { - expandedItems[itemID] = true; - await updateItems(items => [ - ...items.slice(0, itemIdx + 1), - ...childrenIDs, - ...items.slice(itemIdx + 1), - ]); - } - if (childrenIDs.length == 1) { - await onExpandItem(childrenIDs[0]); - } else { - for (const cid of childrenIDs) { - if (expandedItems[cid]) { - await onExpandItem(cid); - } - } - } - } - } - async function onCollapseItem(itemID) { - if (expandedItems[itemID]) { - expandedItems[itemID] = false; - delete expandedItems[itemID]; - await updateItems(items => items.filter(iid => iid.startsWith(`${itemID}/`) !== true)); - } - } - - /** - * Updates DOM to show elements that should be visible in scrollable viewport. - * Must be called whenever visible items may have changed, which is two cases: - * - * - The underlying list of items has changed - * (filters applied, parent expanded or collapsed, item deleted/added). - * See `updateItems()`. - * - * - Scrolling occurred. - */ - async function refreshItemWindow() { - heightExpander.style.height = `${itemCount * itemHeight}px`; - - // Clean up previous window and xml2rfc resolver-watcher - if (itemWindow !== null) { - scrollView.removeChild(itemWindow); - } - - // Add item window to main scroll view - itemWindow = scrollView.appendChild(document.createElement('div')); - - // Determine which items to show - let firstIdx = Math.floor(scrollView.scrollTop / itemHeight) - EXTRA_ITEMS_BEFORE; - if (firstIdx < 0) { - firstIdx = 0; - } - let lastIdx = firstIdx + Math.ceil(scrollView.offsetHeight / itemHeight) + 1 + EXTRA_ITEMS_AFTER; - if (lastIdx + 1 >= itemCount) { - lastIdx = itemCount - 1; - } - - // Position window absolutely within the large scroll view, - // depending on which item is first in view - itemWindow.style.top = `${firstIdx * itemHeight}px`; - itemWindow.style.position = 'absolute'; - itemWindow.style.right = '0'; - itemWindow.style.left = '0'; - - // For each item to show, create element and append it to item window - for (const [, itemID] of [...itemIDs.entries()].filter(([idx, ]) => idx >= firstIdx && idx <= lastIdx)) { - const el = itemWindow.appendChild(await makeItem(itemID)); - if (itemID === selectedItemID) { - // If this item happens to be selected, make it look so - onSelectItem(itemID, el); - } - } - - return itemWindow; - } - - // Constructing items from template - - async function makeItem(itemID) { - const indentation = itemID.split('/').length; - - const newItem = templateItem.cloneNode(true); - - const labelEl = newItem.querySelector('span'); - labelEl.style.paddingLeft = `${indentation - 1}em`; - - newItem.dataset.itemID = itemID; - newItem.setAttribute('title', itemID); - newItem.style.cursor = 'pointer'; - - labelEl.innerHTML = ''; - - const iconEl = labelEl.appendChild(document.createElement('i')); - iconEl.style.width = '1.5em'; - iconEl.style.marginRight = '.5em'; - if (await isExpandable(itemID)) { - if (expandedItems[itemID]) { - iconEl.classList.add('fas', 'fa-folder-open'); - } else { - iconEl.classList.add('fas', 'fa-folder'); - } - } else { - iconEl.classList.add('fas', 'fa-file'); - } - - labelEl.appendChild(await getItemLabel(itemID)); - - newItem.addEventListener( - 'click', - function handleItemClick (evt) { - selectedItemID = itemID; - onSelectItem(itemID, newItem); - onToggleItem(itemID); - }, - ); - - return newItem; - } - - function getVisibleElements() { - if (itemWindow) { - return [...itemWindow.children]; - } - } - - function getItemIDs() { - return itemIDs; - } - - return { - updateItems, - getVisibleElements, - getItemIDs, - } - } - - window.createWindowedListing = createWindowedListing; -})(); diff --git a/blog/2022-09-11-calconnect-tc-units-established.md b/blog/2022-09-11-calconnect-tc-units-established.md new file mode 100644 index 0000000..3390792 --- /dev/null +++ b/blog/2022-09-11-calconnect-tc-units-established.md @@ -0,0 +1,51 @@ +--- +title: CalConnect establishes TC UNITS, adopts UnitsML +date: 2022-09-11 +authors: + - CalConnect +description: CalConnect announces the establishment of its Technical Committee on Units of Measure (TC UNITS) and the adoption of UnitsML as the authoritative mechanism for encoding scientific units. +--- + +# CalConnect establishes TC UNITS, adopts UnitsML + +The Calendaring and Scheduling Consortium ([CalConnect](https://www.calconnect.org)) has announced the establishment of its Technical Committee on Units of Measure β€” **TC UNITS** β€” and the adoption of UnitsML as the authoritative mechanism for encoding scientific units of measure. + +## Why a Technical Committee for units + +Units and their representations form the basis of measurements, critical to everything from timekeeping and trade to manufacturing and mission-critical operations. Despite the universal importance of units, there has been no single authoritative mechanism for representing them unambiguously in digital systems. + +TC UNITS is chartered to change that. Its scope includes: + +- **Standardization of a comprehensive data model** for units representation +- **Multiple serialization formats** including XML (UnitsML), JSON, and YAML +- **The authoritative UnitsDB register** β€” a structured database of units, quantities, dimensions, prefixes, scales, and unit systems +- **Integration guidelines** with existing technologies such as MathML +- **Development and maintenance** of the UnitsML official website + +## International collaboration + +A key objective of TC UNITS is to pursue international standardization through ISO and IEC, while working closely with the International Bureau of Weights and Measures (BIPM) towards an interoperable **"Digital SI"** infrastructure. + +As Mike Douglass, Executive Director of CalConnect, stated: + +> "Our collaboration with ISO, IEC, and BIPM will ensure UnitsML becomes a globally recognized standard for digital unit representation." + +## Leadership + +The committee is led by co-chairs **Karen Olsen** and **Nick Nicholas**, who bring deep expertise in standards development and scientific unit representation. + +## What this means for UnitsML + +The establishment of TC UNITS marks a significant milestone for UnitsML. Under CalConnect's governance, UnitsML gains: + +- **Formal standards process** β€” structured development and publication of UnitsML specifications +- **International alignment** β€” coordination with ISO, IEC, and BIPM ensures global interoperability +- **Long-term maintenance** β€” a standing committee ensures ongoing development and community engagement + +Established in September 2022 as a standing committee, TC UNITS represents a significant step forward in the standardization of scientific unit representation while pursuing broader international adoption. + +## Learn more + +- [CalConnect TC UNITS announcement](https://www.calconnect.org/news/2022-09-11-establishing-tc-units-adopting-unitsml/) +- [What is UnitsML](/learn/what-is-unitsml) β€” learn about the UnitsML data model +- [UnitsDB](/unitsdb/) β€” browse the authoritative database of scientific units diff --git a/blog/2025-03-15-unitsdb-1.0.md b/blog/2025-03-15-unitsdb-1.0.md new file mode 100644 index 0000000..90ad089 --- /dev/null +++ b/blog/2025-03-15-unitsdb-1.0.md @@ -0,0 +1,63 @@ +--- +title: Introducing UnitsDB 1.0 +date: 2025-03-15 +authors: + - UnitsML Team +description: UnitsDB 1.0 is the first stable release of the authoritative database of scientific units, quantities, dimensions, prefixes, and unit systems. +--- + +# Introducing UnitsDB 1.0 + +We are pleased to announce the first stable release of **UnitsDB** β€” the authoritative, machine-readable database of scientific units of measure. + +UnitsDB 1.0 provides a comprehensive, structured dataset covering the SI system and widely used non-SI units. Every entity is identified by both a NIST identifier and a human-readable short name, making the database useful for both reference and programmatic access. + +## What's in the database + +UnitsDB 1.0 ships with data across five entity types, all authored in YAML for easy reading and editing: + +| Type | Count | +|------|-------| +| Units | 380+ | +| Quantities | 180+ | +| Dimensions | 84 | +| Prefixes | 33 | +| Unit Systems | 5 | + +### Units + +The units dataset covers SI base units (meter, kilogram, second, ampere, kelvin, mole, candela), SI derived units (newton, pascal, joule, watt, volt, hertz, and many more), and non-SI units accepted for use with SI (minute, hour, day, degree, liter, tonne, and others). + +Each unit entry includes: + +- **Identifiers** β€” NIST ID and short name +- **Dimension reference** β€” linking to the corresponding dimension +- **Quantity references** β€” quantities this unit measures +- **System membership** β€” which unit systems the unit belongs to +- **Root unit decomposition** β€” how derived units relate to base units + +### Quantities + +Physical quantities like length, mass, time, force, energy, and pressure, each typed as either base or derived and linked to their dimension. + +### Dimensions + +SI base quantity dimensional powers (L, M, T, I, Θ, N, J) defining the dimensional analysis framework. + +### Prefixes + +All 33 SI decimal prefixes from quecto (10⁻³⁰) to quetta (10³⁰), including binary prefixes (kibi, mebi, gibi, etc.). + +### Unit systems + +The five core systems: SI base, SI derived special, SI derived non-special, non-SI acceptable, and non-SI not acceptable. + +## Getting started + +The YAML data files are available in the [UnitsDB repository on GitHub](https://github.com/unitsml/unitsdb). For Ruby developers, the [unitsdb-ruby](/software/unitsdb-ruby) gem provides programmatic access to the database. + +You can also browse every entity interactively on the [UnitsDB browser](/unitsdb/). + +## What's next + +UnitsDB 1.0 is the foundation. We are already working on [UnitsDB 2.0](/blog/2025-05-21-unitsdb-2.0), which will bring multilingual names, enhanced symbol representations, organization-neutral identifiers, and many new entities. diff --git a/blog/2025-05-21-unitsdb-2.0.md b/blog/2025-05-21-unitsdb-2.0.md new file mode 100644 index 0000000..e40adb0 --- /dev/null +++ b/blog/2025-05-21-unitsdb-2.0.md @@ -0,0 +1,110 @@ +--- +title: UnitsDB 2.0 β€” multilingual names, new identifiers, and expanded coverage +date: 2025-05-21 +authors: + - UnitsML Team +description: UnitsDB 2.0 brings organization-neutral identifiers, multilingual names, enhanced symbol representations, unit scales, and 15+ new quantities. +--- + +# UnitsDB 2.0 β€” multilingual names, new identifiers, and expanded coverage + +We are releasing **UnitsDB 2.0**, a major update to the authoritative database of scientific units. This release introduces structural improvements, richer metadata, and expanded coverage that make UnitsDB more interoperable and internationally accessible. + +## Organization-neutral identifiers + +Every entity now carries a `unitsml` type identifier alongside the existing NIST identifier: + +```yaml +identifiers: + - id: u:meter + type: unitsml + - id: NISTu1 + type: nist +``` + +These organization-neutral IDs (like `u:meter`, `q:force`, `d:length`) provide stable, namespace-prefixed identifiers that are not tied to any single organization. This makes UnitsDB data portable across systems and easier to reference in linked-data contexts. + +## Multilingual support + +Units and quantities now include names in multiple languages. For the initial release, French translations sourced from the BIPM SI Digital Framework have been added: + +```yaml +names: + - value: length + lang: en + - value: longueur + lang: fr +``` + +This lays the groundwork for supporting additional languages in future releases. + +## Enhanced symbol representations + +Symbols now include six representation formats across entities that use them (units, prefixes, dimensions): + +| Format | Use case | +|--------|----------| +| `unicode` | Direct rendering in text | +| `html` | Web display | +| `latex` | Scientific documents | +| `mathml` | Mathematical markup | +| `ascii` | Plain-text contexts | +| `id` | Machine-readable identifiers | + +## Unit scales + +A new entity type β€” **scales** β€” has been added to UnitsDB. Scales define the measurement scale properties for units, covering continuous ratio, continuous interval, logarithmic, discrete, and other scale types. Five scale definitions are included in this release. + +## 15+ new quantities and dimensions + +UnitsDB 2.0 adds quantities and dimensions from ISO and IEC standards: + +- **ISO 80000-8**: octave and decade for logarithmic frequency range +- **IEC 80000-13**: erlang (E), baud (Bd), shannon (Sh), hartley (Hart) +- New radiation quantities: fluence, fluence rate, kerma rate, exposure, emission rate +- Temperature quantities: ITS-90 (kelvin and celsius), PLTS-2000 +- Phase, relative humidity, fuel efficiency, and more + +## Structured references + +Entities now include formalized references to external authorities: + +```yaml +references: + - uri: http://si-digital-framework.org/quantities/LENG + type: normative + authority: si-digital-framework +``` + +References link to authoritative sources like the SI Digital Framework, UCUM, and ISO/IEC standards. + +## Schema versioning + +All YAML files now include a `schema_version` field, enabling applications to detect and adapt to structural changes between releases. + +## Data quality improvements + +This release includes numerous corrections: + +- Fixed dimensional assignments for units that were incorrectly categorized (e.g., pH as acidity, not plane angle; acre as area, not length) +- Sequential quantity identifiers for consistency +- Normalized YAML structure across all files +- Bidirectional verification of dimension ↔ unit and quantity ↔ unit references + +## Migration from 1.0 + +Applications using UnitsDB 1.0 will need to update parsers for: + +- New `schema_version` field in all files +- `power` field (was `powerNumerator`) in dimensions +- Language-specific name objects (`{value, lang}`) instead of flat strings +- Expanded symbol representation formats +- New reference structure for external authorities + +See the [full release notes](https://github.com/unitsml/unitsdb/blob/main/RELEASE-NOTES.adoc) for complete migration details. + +## Explore the data + +- [UnitsDB browser](/unitsdb/) β€” search and browse all entities interactively +- [GitHub repository](https://github.com/unitsml/unitsdb) β€” download YAML data files +- [unitsdb-ruby](/software/unitsdb-ruby) β€” Ruby library for programmatic access diff --git a/blog/2026-04-28-site-redesign.md b/blog/2026-04-28-site-redesign.md new file mode 100644 index 0000000..956296d --- /dev/null +++ b/blog/2026-04-28-site-redesign.md @@ -0,0 +1,58 @@ +--- +title: UnitsML.org gets a full redesign +date: 2026-04-28 +authors: + - UnitsML Team +description: We've rebuilt unitsml.org with an interactive UnitsDB browser, full-text search, dark mode, and a clearer information architecture. +--- + +# UnitsML.org gets a full redesign + +We've completely rebuilt **unitsml.org** to better serve the scientific units community. The new site features a modern design, interactive data browsing, and a clearer structure for learning about UnitsML. + +## What changed + +### Interactive UnitsDB + +The headline feature is the new [UnitsDB browser](/unitsdb/). Instead of downloading YAML files to explore the database, you can now search, filter, and browse all **716 entities** β€” units, quantities, dimensions, prefixes, scales, and unit systems β€” directly in your browser. + +Every entity has its own page with cross-linked references. Click a unit's dimension to jump to that dimension, then see all units sharing it. The browser supports: + +- **Full-text search** β€” find any entity by name, symbol, or identifier +- **Lazy-loaded data** β€” each entity type loads on demand, so the page stays fast +- **Cross-linked entities** β€” navigate between dimensions, quantities, units, and systems +- **Multilingual names** β€” entities display names in multiple languages where available + +### Restructured content + +We reorganized the site around how people actually use it: + +- **[Learn](/learn/what-is-unitsml)** β€” guides for understanding what UnitsML is, how it works, and how to incorporate it into your work +- **[UnitsDB](/unitsdb/)** β€” the interactive database browser, now a top-level section +- **[Software](/software/)** β€” libraries like [unitsml-ruby](/software/unitsml-ruby) for programmatic access +- **[Schemas](/schemas)** β€” both the UnitsML XML Schemas and the UnitsDB YAML schemas, in a dedicated page + +### Site features + +- **Site-wide search** β€” full-text search across all pages, instantly accessible from any page +- **Dark mode** β€” proper dark theme support throughout the entire site +- **Mobile-friendly** β€” responsive layouts that work on phones and tablets +- **JSON API** β€” programmatic access to UnitsDB data at `/unitsdb/units.json`, `/unitsdb/quantities.json`, and other endpoints +- **JSON-LD downloads** β€” complete linked-data dataset at `/unitsdb/unitsdb.jsonld` + +## What's next + +This redesign is just the beginning. Here's what we're working on: + +- **More software libraries** β€” expanding beyond Ruby with libraries for other languages +- **UnitsDB data expansion** β€” more units, quantities, and dimensions as the database grows +- **Community contributions** β€” opening up the database for community submissions +- **Enhanced schema tooling** β€” better validation and documentation for both XML and YAML schemas + +## Get involved + +UnitsML is developed under [CalConnect TC UNITS](https://www.calconnect.org). If you work with scientific data, measurement systems, or unit conversions, we'd love your input: + +- Browse the database at [unitsml.org/unitsdb](/unitsdb/) +- Explore the code on [GitHub](https://github.com/unitsml) +- Star and watch the [GitHub repository](https://github.com/unitsml/unitsml.github.io) diff --git a/blog/index.md b/blog/index.md new file mode 100644 index 0000000..5315819 --- /dev/null +++ b/blog/index.md @@ -0,0 +1,7 @@ +--- +title: Blog +description: The UnitsML blog +outline: false +--- + + diff --git a/custom-intro.html b/custom-intro.html deleted file mode 100644 index 5ff6d39..0000000 --- a/custom-intro.html +++ /dev/null @@ -1,14 +0,0 @@ -
-

- UnitsML is the authoritative mechanism for encoding scientific units of measure. -

- -
-
diff --git a/faq.md b/faq.md new file mode 100644 index 0000000..5560259 --- /dev/null +++ b/faq.md @@ -0,0 +1,12 @@ +--- +title: FAQ +description: Frequently asked questions about UnitsML +--- + + + +Redirecting to [FAQ on About page](/about#frequently-asked-questions)... diff --git a/get-started.md b/get-started.md new file mode 100644 index 0000000..d248729 --- /dev/null +++ b/get-started.md @@ -0,0 +1,247 @@ +--- +title: Get Started +description: Quick-start guide for using UnitsML +--- + +# Get Started + +Everything you need to start using UnitsML in your projects β€” whether you're encoding units in XML, browsing schemas, or integrating the units database programmatically. + +## Choose your path + + + +## XML Encoding {#xml-encoding} + +The UnitsML XML Schema defines how to encode units of measure in XML documents. Here's how to get started: + +### 1. Reference the schema + +Add the UnitsML namespace to your XML document: + +```xml + +``` + +### 2. Define a unit + +```xml + + + metre + SI + + +``` + +### 3. Use the unit in your data + +```xml + + 9.81 + Gravitational acceleration + +``` + +::: tip +UnitsML is designed to be **incorporated into other markup languages**, not used standalone. The models work best when embedded in domain-specific formats like MatML, CML, or your own vocabulary β€” and can also be expressed in JSON, YAML, and other formats. +::: + +## Browse Schemas {#browse-schemas} + +The interactive schema browser provides documentation for all UnitsML schema components: + +
+
+

schema.unitsml.org

+

Browse element definitions, type hierarchies, and schema documentation for all versions.

+
+ + Open browser + + +
+ +## Programmatic Access {#programmatic-access} + +Use the **unitsml-ruby** gem to query UnitsDB from Ruby applications: + +### Install + +```bash +gem install unitsml-ruby +``` + +### Query units + +```ruby +require 'unitsml' + +# Find a specific unit +unit = Unitsml::Units.find("m") +puts unit.name # => "metre" +puts unit.symbol # => "m" +``` + +See the [unitsml-ruby page](/software/unitsml-ruby) for full API documentation. + +## Next steps + +- Read the [UnitsML Guide](/learn/guide) for in-depth usage patterns +- Learn [how to incorporate UnitsML](/learn/incorporating-unitsml) into other markup languages +- Understand [what UnitsML is](/learn/what-is-unitsml) and the problems it solves +- Explore [UnitsDB](/unitsdb/) β€” the complete units database + +## Next steps + +- Read the [UnitsML Guide](/learn/guide) for in-depth usage patterns +- Learn [how to incorporate UnitsML](/learn/incorporating-unitsml) into other markup languages +- Understand [what UnitsML is](/learn/what-is-unitsml) and the problems it solves +- Explore [UnitsDB](/unitsdb/) β€” the complete units database + + diff --git a/index.adoc b/index.adoc deleted file mode 100644 index d596584..0000000 --- a/index.adoc +++ /dev/null @@ -1,4 +0,0 @@ ---- -layout: home -hero_include: home-hero.html ---- diff --git a/index.md b/index.md new file mode 100644 index 0000000..6ed6d1e --- /dev/null +++ b/index.md @@ -0,0 +1,5 @@ +--- +layout: home +--- + + diff --git a/learn/guide.md b/learn/guide.md new file mode 100644 index 0000000..221a7b7 --- /dev/null +++ b/learn/guide.md @@ -0,0 +1,406 @@ +--- +title: UnitsML Guide +description: Comprehensive guide for using UnitsML β€” encoding units, working with schemas, and integrating UnitsML into applications +--- + +# UnitsML Guide + +This guide covers the practical aspects of using UnitsML: encoding units of measure in XML and other formats, working with the schema, querying unit data programmatically, and adopting UnitsML in your projects. + +## Quick reference + +| What you need | Where to go | +|---------------|------------| +| Use UnitsML in XML | [XML Encoding](#xml-encoding) below | +| Browse schema documentation | [schema.unitsml.org](https://schema.unitsml.org) | +| Query units programmatically | [Programmatic access](#programmatic-access) below | +| Add UnitsML to your schema | [Incorporating UnitsML](/learn/incorporating-unitsml) | +| Understand the data model | [How UnitsML Works](/learn/how-it-works) | + +## XML Encoding + +### Step 1: Declare the UnitsML namespace + +Add the UnitsML namespace and schema location to your document: + +```xml + +``` + +### Step 2: Define the units you need + +Create a `UnitSet` with the units referenced in your document: + +```xml + + + + metre + m + + + + + pascal + Pa + + + + + + + + + + standard atmosphere + atm + + + + + +``` + +### Step 3: Define dimensions (optional but recommended) + +```xml + + + + + + + + + + +``` + +### Step 4: Reference units from your data + +Use `unitURL` attributes to link data values to their unit definitions: + +```xml + + 1 + 101325 + + + + 100 + Length of the test track + +``` + +## Common encoding patterns + +### Composite units + +Most real-world units are composite β€” built from base units via multiplication, division, and exponentiation. UnitsML represents these with `RootUnits` containing one or more `EnumeratedRootUnit` elements: + +```xml + + + newton + N + + + + + + +``` + +Key points about composite units: + +- **Powers**: Use `powerNumerator` for positive/negative exponents (e.g., `-2` for s⁻²). Use `powerDenominator` for fractional powers. +- **Prefixes**: Apply prefixes to individual root units (e.g., `prefix="k"` on gram to represent kilogram). +- **Dimensions**: Every composite unit must link to a matching `Dimension` via `dimensionURL`. + +See [How UnitsML Works β€” Composite units](/learn/how-it-works#composite-units-derived-unit-decomposition) for the full reference. + +### Temperature with offset + +Temperature conversions require both a multiplier and an offset: + +```xml + + degree Celsius + degC + + + + +``` + +### Understanding the conversion formula + +UnitsML uses a general linear conversion equation: **y = d + ((b / c) Γ— (x + a))** + +Where: +- `x` is the value in the initial unit +- `y` is the value in the target unit +- `a` is the initial addend (offset applied to x before scaling) +- `b` is the numerator of the multiplicand +- `c` is the denominator of the multiplicand +- `d` is the final addend (offset applied after scaling) + +For a simple scaling (e.g., metres to kilometres): only `b / c` is needed (`b="0.001"`, `c="1"`). +For a temperature offset (e.g., Kelvin to Celsius): use `a` and `d` in addition to the scaling factor. + +### Counted items + +Some measurements involve counted entities that are not themselves units β€” for example "electrons per second" or "particles per cubic metre". UnitsML handles these with `CountedItem`: + +```xml + + + electron + + +``` + +The correct expression for "electron emission rate = 1.36 s⁻¹" uses a counted item reference, not a unit named "electron". Counted items can be combined with units using `ExternalRootUnit`. + +### Derived units with prefixes + +Combine prefixes with root units for scaled derived units: + +```xml + + kilopascal + kPa + + + + + + +``` + +### Complex derived units + +Express units like "joules per kilogram kelvin" (specific heat capacity): + +```xml + + joule per kilogram kelvin + J/(kgΒ·K) + + + + + + +``` + +### Multiple code list references + +Link a unit to multiple external code systems: + +```xml + + metre + + + +``` + +## Working with UnitsDB + +UnitsDB provides authoritative definitions for over 380 units and 180 quantities β€” a comprehensive, schema-validated database of scientific units of measure. You can use UnitsDB data instead of defining units from scratch. + +### Accessing UnitsDB + +- **Interactive browser**: [UnitsDB](/unitsdb/) β€” search, browse, and download entities as JSON-LD +- **JSON index**: [`/unitsdb/index.json`](/unitsdb/index.json) β€” machine-readable index of all 716 entities +- **Programmatic**: [unitsml-ruby](/software/unitsml-ruby) β€” Ruby gem for querying UnitsDB +- **Raw data**: [GitHub](https://github.com/unitsml/unitsdb) β€” YAML source files and schemas + +### Using UnitsDB definitions + +UnitsDB entries use systematic IDs (e.g., `NISTu1` for meter). You can reference these directly: + +```xml + + + + meter + m + + +``` + +## Programmatic access + +### Ruby (unitsml-ruby) + +```ruby +require 'unitsml' + +# Look up a unit by identifier +unit = Unitsml::Units.find("m") +puts unit.name # => "metre" +puts unit.symbol # => "m" + +# Query units by quantity +length_units = Unitsml::Units.by_quantity("length") +length_units.map(&:symbol) +# => ["m", "km", "cm", "mm", "in", "ft", ...] + +# Access conversion factors +unit = Unitsml::Units.find("km") +puts unit.conversion_to("m") # => 1000 +``` + +### XML processing (any language) + +UnitsML XML can be processed with standard XML libraries in any language: + +- **Python**: `lxml` or `xml.etree` β€” parse UnitsML elements via XPath +- **Java**: JAXB with XSD binding β€” generate Java classes from the UnitsML schema +- **JavaScript/Node.js**: `fast-xml-parser` or `xml2js` β€” parse UnitsML documents +- **.NET**: `XmlSerializer` with schema binding β€” strongly-typed UnitsML processing + +## Validation + +### XML Schema validation + +Validate your documents against the UnitsML schema using standard tools: + +```bash +# Using xmllint +xmllint --schema https://schema.unitsml.org/unitsml/unitsml-v1.0.xsd document.xml + +# Using Java (JAXP) +java -jar jing.jar https://schema.unitsml.org/unitsml/unitsml-v1.0.xsd document.xml +``` + +### Dimensional consistency + +While XML Schema validation checks structural correctness, **dimensional consistency** β€” ensuring that units match their declared dimensions and that conversions are dimensionally valid β€” requires application-level logic. This is where tools built on UnitsDB (like unitsml-ruby) add value. + +## Best practices + +### Unit identifiers + +- Use meaningful, short IDs: `xml:id="m"` for meter, `xml:id="degC"` for degree Celsius +- For UnitsDB compatibility, use the NIST convention: `NISTu1`, `NISTu11`, etc. +- Keep IDs unique within your document + +### Dimensions + +- Always link units to dimensions via `dimensionURL` β€” this enables dimensional analysis +- Define dimensions in a `DimensionSet` container for clarity +- Reuse dimension definitions across multiple units with the same dimensionality + +### Conversions + +- Include conversion factors for non-SI units β€” this enables automatic unit conversion +- Use `exact="true"` when the conversion factor is exact (e.g., 1 ft = 0.3048 m exactly) +- Include `multiplicandDigits` to track significant digits for approximate conversions + +### Symbols + +- Provide symbols in multiple typefaces for maximum compatibility +- Always include an ASCII representation for systems that don't support Unicode +- Use the `typeface` attribute to distinguish representations + +### Code lists + +- Include code list references when your units need to map to external classification systems +- Common code lists include UN/ECE Recommendation 20, UCUM, and IEC 61360 + +## Schema documentation + +The complete UnitsML 1.0 schema documentation is available interactively at: + +
+
+

schema.unitsml.org

+

Browse element definitions, type hierarchies, and documentation for all schema components.

+
+ + Open browser + + +
+ +## Related resources + +- [What is UnitsML](/learn/what-is-unitsml) β€” conceptual overview +- [How UnitsML works](/learn/how-it-works) β€” technical architecture +- [Incorporating UnitsML](/learn/incorporating-unitsml) β€” integration methods +- [Software](/software/) β€” tools and libraries +- [FAQ](/about#frequently-asked-questions) β€” frequently asked questions + + diff --git a/learn/how-it-works.md b/learn/how-it-works.md new file mode 100644 index 0000000..5d72804 --- /dev/null +++ b/learn/how-it-works.md @@ -0,0 +1,584 @@ +--- +title: How UnitsML Works +description: Technical architecture of UnitsML β€” the data model, UnitsDB, custom unit construction, conversion rules, and MathML integration +--- + +# How UnitsML Works + +UnitsML is a set of models for encoding scientific units of measure. It provides the **semantic meaning** of units β€” what a unit represents, how it relates to other units, what quantities it measures, and how to convert between them. This page explains how the pieces fit together. + +## The three-layer architecture + +UnitsML operates across three layers: + +
+
+ 1 +

Data Model

+

Five core element types β€” Unit, Quantity, Dimension, Prefix, CountedItem β€” each wrapped in a Set container. Defined by the UnitsML XML Schema.

+
+
+ 2 +

UnitsDB

+

A pre-built database of 716 commonly used units, quantities, dimensions, prefixes, scales, and systems. Provides ready-to-use definitions with cross-references to BIPM, UCUM, and QUDT.

+
+
+ 3 +

Integration

+

Use UnitsML definitions in your own XML, MathML, JSON, or YAML documents. UnitsML provides semantics; MathML provides presentation.

+
+
+ +## Layer 1: The UnitsML data model + +UnitsML defines five core element types, each wrapped in a corresponding Set container. The containers are modular β€” use one or combine several. + + + +### Unit (`UnitSet` / `Unit`) + +The central element. A **Unit** defines a measurement unit with its name, symbols, system membership, dimensional reference, and optional conversion information. + +```xml + + + + SI + SI_base + + metre + m + m + + +``` + +Key attributes: + +| Attribute/child | Purpose | +|----------------|---------| +| `xml:id` | Unique identifier within the document (e.g., `NISTu1`, `m`) | +| `dimensionURL` | Links to a `Dimension` definition | +| `UnitName` | Human-readable name | +| `UnitSymbol` | Symbol in a specific typeface (ASCII, Unicode, HTML, LaTeX, MathML) | +| `UnitSystem` | System membership (SI, CGS, inch-pound, etc.) | +| `RootUnits` | Decomposition into base units (for derived units) | +| `Conversions` | Conversion factors to other units | + +### Quantity (`QuantitySet` / `Quantity`) + +A **Quantity** is a measurable property β€” length, mass, force, energy, etc. Quantities link abstract concepts to the specific units that can express them. Each quantity is typed as either `base` or `derived` and references a dimension. + +```xml + + + force + F + + + +``` + +A single unit can measure multiple quantities. For example, the metre measures length, wavelength, distance, focal length, and many others. When using UnitsML, you can **tag** which quantity you intend, disambiguating the unit's role: + +```xml +1.83 +550 +``` + +### Dimension (`DimensionSet` / `Dimension`) + +Dimensions express any unit or quantity in terms of the **seven SI base quantities**: + +| Base quantity | Symbol | SI base unit | +|--------------|--------|-------------| +| Length | L | metre | +| Mass | M | kilogram | +| Time | T | second | +| Electric current | I | ampere | +| Thermodynamic temperature | Θ | kelvin | +| Amount of substance | N | mole | +| Luminous intensity | J | candela | + +A dimension definition specifies which base quantities participate and at what power: + +```xml + + + + +``` + +This represents the dimension of force: **LΒ·MΒ·T⁻²**. Any unit with this dimension (newton, dyne, pound-force) can be converted between them, because they share the same dimensional structure. + +The `dimensionless` attribute marks entities that have no dimension (e.g., refractive index, strain, mach number). + +### Prefix (`PrefixSet` / `Prefix`) + +Prefixes define decimal and binary scaling factors. UnitsML supports all 20 SI decimal prefixes defined in the BIPM SI Brochure, plus 7 binary prefixes: + +```xml + + + kilo + k + 10 + 3 + + +``` + +| Prefix | Symbol | Factor | | Prefix | Symbol | Factor | +|--------|--------|--------|-|--------|--------|--------| +| yotta | Y | 10²⁴ | | deci | d | 10⁻¹ | +| zetta | Z | 10Β²ΒΉ | | centi | c | 10⁻² | +| exa | E | 10¹⁸ | | milli | m | 10⁻³ | +| peta | P | 10¹⁡ | | micro | Β΅ | 10⁻⁢ | +| tera | T | 10ΒΉΒ² | | nano | n | 10⁻⁹ | +| giga | G | 10⁹ | | pico | p | 10⁻¹² | +| mega | M | 10⁢ | | femto | f | 10⁻¹⁡ | +| kilo | k | 10Β³ | | atto | a | 10⁻¹⁸ | +| hecto | h | 10Β² | | zepto | z | 10⁻²¹ | +| deka | da | 10ΒΉ | | yocto | y | 10⁻²⁴ | + +Binary prefixes (Ki, Mi, Gi, Ti, Pi, Ei, Zi, Yi) follow the same pattern with base 2. + +### CountedItem (`CountedItemSet` / `CountedItem`) + +Counted items represent things that are counted and combined with scientific units β€” distinct from physical quantities. They support expressions like "electrons per second" or "particles per cubic meter": + +```xml + + + electron + e⁻ + + +``` + +## Layer 2: UnitsDB β€” the pre-built database + +While the UnitsML data model tells you *how* to define a unit, **UnitsDB** provides a ready-made collection of commonly used definitions. Instead of defining every unit from scratch, you reference entries from UnitsDB. + +### What UnitsDB contains + +| Entity type | Count | Description | +|------------|-------|-------------| +| Units | 380+ | SI base, SI derived, non-SI units | +| Quantities | 199 | Measurable properties | +| Dimensions | 92 | SI base quantity dimensional representations | +| Prefixes | 33 | SI decimal and binary prefixes (from BIPM SI Brochure) | +| Scales | 5 | Measurement scale types | +| Unit Systems | 7 | SI, non-SI acceptable, etc. | + +Browse all entries interactively at the [UnitsDB browser](/unitsdb/). + +### How to reference a UnitsDB entry + +In your UnitsML document, reference a UnitsDB unit by its identifier: + +```xml + + metre + m + +``` + +In UnitsDB, the metre is identified by both a NIST ID (`NISTu1`) and an organization-neutral UnitsML ID (`u:meter`). The YAML entry looks like: + +```yaml +identifiers: + - type: nist + id: NISTu1 + - type: unitsml + id: u:meter +names: + - value: metre + lang: en + - value: mΓ¨tre + lang: fr +symbols: + - ascii: m + unicode: m + html: m + latex: "\\ensuremath{\\mathrm{m}}" + mathml: "m" +``` + +### External dataset linkage + +UnitsDB entries include **cross-references to major external datasets**, providing interoperability with other unit systems: + +| Authority | Type | Description | Coverage | +|-----------|------|-------------|----------| +| **BIPM SI Digital Framework** | Normative | Official SI definitions from the International Bureau of Weights and Measures | Units, quantities, dimensions, prefixes | +| **UCUM** | Informative | Unified Code for Units of Measure β€” used in healthcare (HL7) and scientific computing | Units, prefixes | +| **QUDT** | Informative | Quantities, Units, Dimensions and Types β€” comprehensive ontology for engineering and science | Units, quantities, dimensions, prefixes | + +For example, the metre entry links to all three: + +```yaml +references: + - type: normative + authority: si-digital-framework + uri: http://si-digital-framework.org/SI/units/metre + - type: informative + authority: ucum + uri: ucum:base-unit:code:m + - type: informative + authority: qudt + uri: http://qudt.org/vocab/unit/M +``` + +These cross-references allow applications to bridge between UnitsML and other unit systems automatically. + +### Multilingual names + +UnitsDB 2.0 introduced multilingual support. Units and quantities carry names in multiple languages, sourced from the BIPM SI Digital Reference: + +```yaml +names: + - value: length + lang: en + - value: longueur + lang: fr +``` + +## Building custom units + +Not every unit is in UnitsDB. UnitsML provides mechanisms to construct custom units from existing definitions. + +### Adding prefixes + +Apply an SI prefix to any base or derived unit: + +```xml + + kilometer + km + + + + +``` + +### Changing powers + +Express squared, cubed, or inverse units by setting the `powerNumerator`: + +```xml + + + + + + + + +``` + +### Composite units + +Most scientific units are composites β€” products of base units raised to powers. The `RootUnits` element decomposes any derived unit: + +| Composite unit | Decomposition | Dimension | +|---------------|--------------|-----------| +| newton (N) | m Β· kg Β· s⁻² | LΒ·MΒ·T⁻² | +| pascal (Pa) | m⁻¹ Β· kg Β· s⁻² | L⁻¹·MΒ·T⁻² | +| joule (J) | mΒ² Β· kg Β· s⁻² | LΒ²Β·MΒ·T⁻² | +| volt (V) | mΒ² Β· kg Β· s⁻³ Β· A⁻¹ | LΒ²Β·MΒ·T⁻³·I⁻¹ | + +```xml + + newton + N + + + + + + +``` + +For units not in the built-in enumeration, `ExternalRootUnit` allows referencing any unit by URI. + +### Custom units not in UnitsDB + +Define entirely custom units with their own names, symbols, and dimensions: + +```xml + + custom flux unit + cfu + + + + + +``` + +### Tagging quantities + +A single unit can describe multiple quantities. For example, the second measures both time and period. Use the `quantityURL` attribute to tag which quantity you intend: + +```xml +2.5 +0.4 +``` + +This disambiguation is essential because some units share dimensions but represent different quantities β€” hertz and becquerel both decompose to s⁻¹, but one measures frequency while the other measures radioactive activity. + +## Conversion rules + +UnitsML provides three types of unit conversions: + +### Linear conversions + +Most unit conversions follow the linear equation: **y = d + ((b / c) Γ— (x + a))** + +| Factor | Element | Description | +|--------|---------|-------------| +| a | `initialAddend` | Added before multiplication | +| b | `multiplicand` | Multiplication factor | +| c | `divisor` | Division factor | +| d | `finalAddend` | Added after multiplication | + +Simple scaling (m β†’ km): + +```xml + +``` + +Temperature offset (Β°C β†’ K): + +```xml + +``` + +### Special conversions + +For non-linear conversions: + +```xml + + + pH is the negative logarithm of hydrogen ion activity. + + +``` + +### WSDL conversions + +For conversions provided by remote services: + +```xml + +``` + +## Layer 3: Integration with XML and MathML + +UnitsML provides **semantic meaning** β€” what a unit is, what it measures, how it converts. But to **display** a unit symbol in a document, you need presentation markup. This is where **MathML** comes in. + +### How UnitsML and MathML work together + +UnitsML and MathML serve complementary roles: + +- **UnitsML** β€” defines the unit's identity, dimension, system, conversions (the "what") +- **MathML** β€” renders the unit's symbol visually in a document (the "how") + +When you use UnitsML inside an XML document, the unit symbols can be expressed as MathML elements. The UnitsML schema's `UnitSymbol` element supports MathML typeface, and UnitsDB stores MathML representations for every symbol: + +```yaml +symbols: + - mathml: "m" # metre + - mathml: "kg" # kilogram + - mathml: "N" # newton +``` + +### Practical example: PluXML + MathML + +In practice, when a document contains a quantity value, UnitsML identifies the unit and MathML renders it: + +```xml + + 9.81 + + metre per second squared + + + + m + Β· + + s + -2 + + + + + + +``` + +### Programmatic generation with unitsml-ruby + +The [unitsml-ruby](/software/unitsml-ruby) library parses unit expressions (like `m*s^-2` or `kg*m^2/s^3/A`) and automatically generates: + +- **MathML** β€” rendering markup for the unit symbol +- **LaTeX** β€” for scientific documents +- **Unicode** / **HTML** β€” for plain text and web display +- **UnitsML XML** β€” the semantic definition with dimension references + +```ruby +# Parse a unit expression and generate MathML +formula = Unitsml.parse("kg*m^2*s^-3*A^-1") +mathml = formula.to_mathml +# Produces MathML for the volt: kgΒ·mΒ²Β·s⁻³·A⁻¹ +``` + +The library resolves each component against UnitsDB to look up the correct symbol in each representation format, applies prefix and power transformations, and produces properly structured output. + +### Six-format symbol coverage + +UnitsDB stores symbols in six representation formats, enabling integration with any display technology: + +| Format | Use case | Example (metre) | +|--------|----------|-----------------| +| `unicode` | Direct rendering in text | `m` | +| `html` | Web display | `m` | +| `latex` | Scientific documents | `\ensuremath{\mathrm{m}}` | +| `mathml` | Mathematical markup | `m` | +| `ascii` | Plain-text contexts | `m` | +| `id` | Machine-readable identifiers | `m` | + +## Putting it all together + +A complete UnitsML document combines the data model, UnitsDB references, and presentation: + +```xml + + + + metre + m + + + newton + N + + + + + + + + + + + + + force + + + + + + + + + + + + + +``` + +## Schema location + +The UnitsML 1.0 schema uses the following namespace: + +- **Namespace**: `https://schema.unitsml.org/unitsml/1.0` +- **Schema file**: `https://schema.unitsml.org/unitsml/unitsml-v1.0.xsd` +- **Interactive docs**: [schema.unitsml.org](https://schema.unitsml.org) + +## Next steps + +- [Incorporating UnitsML](/learn/incorporating-unitsml) β€” how to add UnitsML to your markup languages +- [UnitsML Guide](/learn/guide) β€” comprehensive usage guide with examples +- [UnitsDB](/unitsdb/) β€” browse the complete interactive database +- [Get started](/get-started) β€” practical quick-start instructions +- [Schemas](/schemas) β€” UnitsML XML Schemas and UnitsDB YAML Schemas + + diff --git a/learn/incorporating-unitsml.md b/learn/incorporating-unitsml.md new file mode 100644 index 0000000..00827fc --- /dev/null +++ b/learn/incorporating-unitsml.md @@ -0,0 +1,257 @@ +--- +title: Incorporating UnitsML into Markup Languages +description: How to incorporate UnitsML models into XML and other markup languages β€” referencing, importing, including, and redefining +--- + +# Incorporating UnitsML into Markup Languages + +One of the core design principles of UnitsML is that it is **meant to be incorporated into other markup languages**, not used as a standalone format. This page explains the four methods for incorporating UnitsML into your own schemas and documents. + +## Why incorporate UnitsML? + +When you incorporate UnitsML into your markup language, you gain: + +- **Ready-made markup** for units of measure, quantities, and dimensions β€” no need to design your own +- **Interoperability** with other markup languages that use UnitsML β€” units defined in one language can be understood by any system that processes UnitsML +- **Dimensional analysis** built into your data model +- **Conversion factors** between units, enabling automated unit conversion + +## Four methods of incorporation + +UnitsML can be incorporated into other XML-based markup languages through four standard XML Schema mechanisms, and the underlying data model is generalizable to JSON, YAML, and other formats: + +### 1. Referencing the schema + +The simplest approach. Your document references the UnitsML schema via `xsi:schemaLocation` and uses UnitsML elements alongside your own domain elements: + +```xml + + + + + metre + m + + + + + 9.81 + Gravitational acceleration + + +``` + +**When to use:** When you want to use UnitsML elements as-is, without any modifications to the schema. + +**How it works:** +- The UnitsML namespace is declared with a prefix (e.g., `unitsml:`) +- All UnitsML elements are qualified with the prefix +- The schema validator fetches and validates against the UnitsML XSD +- Your host schema and the UnitsML schema coexist without conflicts + +### 2. Importing the schema + +Use XSD `` to bring in UnitsML types and elements into your own schema definition: + +```xml + + + + + + + + + + + + + + +``` + +**When to use:** When you're designing a schema that needs to reference UnitsML types and elements as part of its type definitions. + +**How it works:** +- `xs:import` brings in the UnitsML namespace +- Your schema can reference UnitsML elements (`ref="unitsml:UnitSet"`) and types +- The two schemas are separate but can use each other's components + +### 3. Including the schema + +Use XSD `` to embed UnitsML definitions directly into your schema: + +```xml + + + + + + + +``` + +**When to use:** When you want UnitsML components to be part of your target namespace, effectively merging the two schemas. + +**How it works:** +- `xs:include` copies the UnitsML definitions into your schema +- The included definitions become part of your target namespace +- Both your and UnitsML elements are in the same namespace + +::: warning Note +`xs:include` requires that the included schema has the same target namespace as the including schema (or no target namespace). This method is less commonly used with UnitsML. +::: + +### 4. Redefining schema elements + +Use XSD `` to customize UnitsML elements for your domain: + +```xml + + + + + + + + + + + + + + + + + + +``` + +**When to use:** When you need to constrain or extend UnitsML definitions for your specific domain requirements. + +**How it works:** +- `xs:redefine` allows you to restrict or extend existing type definitions +- The redefined types replace the originals throughout the schema +- This is the most powerful but also most complex approach + +## Choosing the right method + +| Method | Complexity | Flexibility | Use case | +|--------|-----------|-------------|----------| +| Reference | Low | Use as-is | Quick integration, no schema modifications | +| Import | Medium | Selective use | Schema design with UnitsML components | +| Include | Medium | Full integration | Single-namespace merge | +| Redefine | High | Custom constraints | Domain-specific customization | + +For most use cases, **referencing** or **importing** is the recommended approach. + +## Practical patterns + +### Pattern: Unit references in data elements + +The most common pattern is to define units in a `UnitSet` container and reference them from data elements using `unitURL` attributes: + +```xml + + + metre + m + + + foot + ft + + + +1.83 +6.00 +``` + +### Pattern: Dimensional validation + +Define dimensions and link them to both units and data elements for dimensional checking: + +```xml + + + + + + + + + + + +100 +299792458 +``` + +### Pattern: Inline unit definitions + +For simple cases, you can embed unit definitions directly within your data elements: + +```xml + + + pascal + Pa + + 101325 + +``` + +### Pattern: Conversion alongside data + +Include conversion information so that consumers can automatically convert between unit systems: + +```xml + + conventional inch of mercury + inHg + + + + +``` + +## Beyond XML + +While UnitsML is defined as an XML Schema, its data model β€” units, quantities, dimensions, prefixes, and conversion factors β€” is generalizable to other representation formats: + +- **JSON** β€” The UnitsML data model can be serialized as JSON for web APIs and modern applications. UnitsDB provides a complete JSON index at [`/unitsdb/index.json`](/unitsdb/index.json). +- **YAML** β€” UnitsDB uses YAML as its native data format, aligned with the UnitsML data model. Each entity type has a dedicated [YAML schema](/schemas) for validation. +- **JSON-LD** β€” UnitsDB provides linked data exports with `@context`, `@id`, and `@type` for semantic web applications. Download per-type collections or the complete dataset from the [UnitsDB browser](/unitsdb/). +- **Databases** β€” UnitsDB implements the UnitsML data model in a queryable database, accessible via the [unitsml-ruby](/software/unitsml-ruby) gem. + +The key concepts (unit identification, dimensional analysis, conversion factors, quantity-unit relationships) are independent of the XML serialization format. + +## Real-world example: AnIML + +The Analytical Information Markup Language (AnIML) is a concrete example of incorporating UnitsML into a domain-specific format. Developed by ASTM Subcommittee E13.15, AnIML is an XML-based format for analytical chemistry data (spectroscopy, chromatography). + +AnIML uses UnitsML for all unit information in its core schema, separating unit concerns from the analytical data structure. The incorporation was done using the **import** method, allowing AnIML to reference UnitsML's `UnitSet` and `Unit` elements without duplicating unit definitions. + +This demonstrates how UnitsML serves as a reusable building block β€” any domain-specific markup language that needs unit information can incorporate UnitsML rather than designing its own unit representation from scratch. + +## Next steps + +- [How UnitsML Works](/learn/how-it-works) β€” detailed technical architecture +- [UnitsML Guide](/learn/guide) β€” comprehensive usage guide +- [Get started](/get-started) β€” practical quick-start instructions +- [UnitsDB](/unitsdb/) β€” browse the complete units database +- [Software](/software/) β€” tools and libraries for working with UnitsML diff --git a/learn/what-is-unitsml.md b/learn/what-is-unitsml.md new file mode 100644 index 0000000..6a5d6ad --- /dev/null +++ b/learn/what-is-unitsml.md @@ -0,0 +1,272 @@ +--- +title: What is UnitsML +description: An overview of UnitsML β€” models for unambiguously encoding and identifying scientific units of measure and quantities +--- + +# What is UnitsML? + +UnitsML is a set of models for **unambiguously encoding and identifying scientific units of measure and quantities**, usable in XML and other markup languages. It provides structured schemas that allow different markup languages, information systems, and scientific disciplines to exchange data with clear, machine-readable unit definitions. + +## The problem UnitsML solves + +### Units are everywhere β€” and they're not easy + +In our physical world, units surround us. We compare distances, time, and weight effortlessly using an internal system of scales and references. "The grocery store is further away than the workplace." "The road bike is lighter than the mountain bike." + +But communicating units of measure is not as trivial as it appears. Consider these pitfalls: + +- **Code lists** contain an arbitrary set of units with fixed codes. They are typically static β€” only a selection of units is represented, and the format is rigid. +- **Symbols** are lightweight but become ambiguous outside SI. Consider `nm`: nanometers or nautical miles? +- **Names** are descriptive but not always standardized. Is a "pound" a US pound (~453.6 g), a metric pound (500 g), a troy pound, or an avoirdupois pound? + +### When units go wrong, the consequences are real + +
+
+
+ +
+

Mars Climate Orbiter (1999)

+

NASA lost the $125 million Mars Climate Orbiter because one engineering team used English units (pound-seconds) while another used metric units (newton-seconds) for thruster firings. The spacecraft entered Mars' atmosphere at the wrong trajectory and was destroyed.

+
+
+
+ +
+

Space Shuttle Discovery (1985)

+

During a Strategic Defense Initiative test, the shuttle Discovery flew upside-down over Maui because a guidance system expected units in nautical miles but received feet β€” 10,023 feet was interpreted as 10,023 nautical miles, pointing the mirror upward instead of down.

+
+
+ +These are not isolated incidents. In scientific data exchange, units are often: + +- **Implicit** β€” assumed from context but never stated +- **Ambiguous** β€” "lb" could mean pound-mass or pound-force +- **Inconsistent** β€” different databases use different code lists for the same unit +- **Lost in translation** β€” converting between systems introduces errors + +UnitsML addresses these problems by providing a **standard vocabulary** for defining units, quantities, dimensions, and their relationships β€” so that scientific data can be exchanged reliably between any systems that understand UnitsML. + +## What UnitsML provides + +### Unit definitions + +UnitsML can define any scientific unit of measure β€” SI base units, SI derived units, and non-SI units. Each unit includes: + +- A unique identifier (`xml:id`) +- One or more names and symbols (ASCII, Unicode, HTML, LaTeX, MathML representations) +- The unit system it belongs to (SI, CGS, inch-pound, etc.) +- Dimensional references for dimensional analysis +- Conversion factors to other units + +```xml + + metre + m + + The metre is the length of the path travelled by light in vacuum + during a time interval of 1/299 792 458 of a second. + + +``` + +### Dimensional analysis + +UnitsML links units to their **dimensional representations** in terms of the seven SI base quantities. This enables dimensional checking β€” verifying that unit conversions and calculations are physically meaningful. + +The seven SI base quantities and their corresponding units: + +| Base quantity | Unit name | Symbol | +|--------------|-----------|--------| +| length | metre | m | +| mass | kilogram | kg | +| time | second | s | +| electric current | ampere | A | +| thermodynamic temperature | kelvin | K | +| amount of substance | mole | mol | +| luminous intensity | candela | cd | + +For example, the dimension of force is **LΒ·MΒ·T⁻²** β€” length to the first power, mass to the first power, time to the negative second power. This is expressed in UnitsML as: + +```xml + + + + +``` + +### Conversion factors + +UnitsML provides **built-in conversion information** between units using a linear equation: + +**y = d + ((b / c) Γ— (x + a))** + +This covers the vast majority of unit conversions: + +```xml + +``` + +For non-linear conversions, UnitsML supports special conversion definitions and external service references. + +### Quantity definitions + +UnitsML defines quantities β€” measurable properties like length, mass, force, energy β€” and links them to the units that can express them: + +```xml + + length + l + +``` + +### Prefix support + +All 20 SI prefixes (yotta through yocto) plus binary prefixes (kibi through exbi) are supported, allowing derived units like kilometers, milligrams, and megahertz to be precisely defined: + +```xml + +``` + +### Counted items + +UnitsML includes support for **counted items** β€” things that are counted and combined with scientific units (e.g., "electrons per second", "particles per cubic meter"). A counted item is not itself a unit, but a dimensionless entity that can be combined with units. + +## The UnitsML schema + +The UnitsML XML Schema is maintained at [schema.unitsml.org](https://schema.unitsml.org) and defines five top-level containers: + +| Element | Purpose | +|---------|---------| +| `UnitSet` | Container for unit definitions | +| `CountedItemSet` | Container for counted items | +| `QuantitySet` | Container for quantity definitions | +| `DimensionSet` | Container for dimensional representations | +| `PrefixSet` | Container for SI and binary prefixes | + +Each container is independent β€” you can use `UnitSet` alone, or combine multiple containers as needed. This modular design makes it easy to incorporate just the parts of UnitsML your application requires. + +The current schema version is **1.0**, with namespace `https://schema.unitsml.org/unitsml/1.0`. + +## Designed for incorporation + +UnitsML is **not a standalone document format** β€” it is designed to be incorporated into other markup languages and data formats. This is a key design principle. You don't write "UnitsML documents"; instead, you add UnitsML markup to your existing formats. + +There are four ways to incorporate UnitsML into XML: + +1. **Reference** β€” Point to the UnitsML schema via `xsi:schemaLocation` without modifying it +2. **Import** β€” Use XSD `` to bring in UnitsML types and elements +3. **Include** β€” Use XSD `` to embed UnitsML definitions directly +4. **Redefine** β€” Use XSD `` to customize UnitsML elements for your domain + +See [Incorporating UnitsML](/learn/incorporating-unitsml) for detailed guidance on each approach. + +## UnitsDB β€” the units database + +UnitsDB is a comprehensive database of scientific units of measure, originally developed at NIST. It contains: + +- **SI base units** (metre, kilogram, second, ampere, kelvin, mole, candela) +- **SI derived units** with special names (newton, pascal, joule, watt, volt, etc.) +- **Non-SI units** acceptable for use with SI (litre, hour, day, electronvolt, etc.) +- **Non-SI units** from other systems (inch, foot, pound, BTU, etc.) +- **Prefixes** β€” all SI prefixes and binary prefixes +- **Quantities** β€” over 180 quantities with unit associations +- **Conversion factors** between units + +Browse the full interactive database at [unitsml.org/unitsdb](/unitsdb/). The [unitsml-ruby](/software/unitsml-ruby) gem provides programmatic access. + +## Relationship to the International System of Units (SI) + +UnitsML has a close relationship with the **International System of Units (SI)**, which is the modern form of the metric system and the world's most widely used system of measurement: + +- NIST is responsible for interpreting the SI for use in the United States (per NIST Special Publication 811) +- UnitsML's dimensional analysis is based on the seven SI base quantities +- UnitsML covers SI units, SI-acceptable non-SI units, and common non-SI units from other systems +- UnitsDB includes comprehensive SI unit definitions aligned with the *BIPM SI Brochure* + +The availability of a markup language for units allows for the unambiguous storage, exchange, and processing of numerical data, thus facilitating the collaboration and sharing of information. It is anticipated that UnitsML will be used by the developers of other markup languages to address the needs of specific communities β€” mathematics, chemistry, materials science, business and commerce. Use of UnitsML in other markup languages reduces duplication of effort and improves compatibility among specifications that represent numerical data. + +For authoritative guidance on SI usage, see [NIST SP 811](https://www.nist.gov/pml/special-publication-811) β€” *Guide for the Use of the International System of Units (SI)*. + +## Standards governance + +UnitsML has been developed through collaborative standardization: + +- **1998–2006**: Initial development at NIST (National Institute of Standards and Technology), with support from the SIMA (Systems Integration for Manufacturing Applications) program +- **2006–2016**: Development continued through an OASIS Technical Committee, which produced Committee Specification Drafts including UnitsML 1.0-CSD04 +- **2022–present**: Standards work continues under **CalConnect TC UNITS**, which maintains the schema, specifications, and related deliverables + +The schema namespace and hosting transitioned from NIST to the independent `schema.unitsml.org` domain, reflecting the project's maturation into a community-maintained standard. + +::: tip Historical note +UnitsML was originally hosted at `unitsml.nist.gov`. An OASIS Technical Committee was established in 2006 and completed its mandate in 2016. In 2022, governance transitioned to CalConnect TC UNITS. All OASIS-era working references have been updated to reflect current CalConnect stewardship. +::: + +## Next steps + +- [Who is UnitsML for?](/learn/who-is-it-for) β€” understand the target audiences and use cases +- [How UnitsML works](/learn/how-it-works) β€” dive into the technical architecture +- [Incorporating UnitsML](/learn/incorporating-unitsml) β€” learn how to add UnitsML to your XML formats +- [UnitsDB](/unitsdb/) β€” browse the complete interactive database +- [Get started](/get-started) β€” start using UnitsML in your projects + + diff --git a/learn/who-is-it-for.md b/learn/who-is-it-for.md new file mode 100644 index 0000000..b61b4f6 --- /dev/null +++ b/learn/who-is-it-for.md @@ -0,0 +1,223 @@ +--- +title: Who is UnitsML for +description: Target audiences, use cases, and real-world applications of UnitsML +--- + +# Who is UnitsML for? + +UnitsML is relevant to anyone who creates, exchanges, or processes scientific and engineering data that involves units of measure and quantities. This spans a wide range of disciplines and roles. + +## Target audiences + +### Standards developers and markup language designers + +If you're designing a markup language or data format for a scientific or engineering domain, UnitsML provides **ready-made markup for units of measure**. Instead of inventing your own unit representation, you can incorporate UnitsML elements directly into your schema. + +**Benefits:** +- Avoid reinventing unit representation for each domain +- Gain interoperability with other markup languages that use UnitsML +- Leverage existing unit definitions, conversions, and dimensional analysis + +**Examples:** MatML (materials data), CML (chemical markup), AnIML (analytical chemistry), GML (geography), domain-specific engineering formats. + +### Data exchange architects + +If you're building systems that exchange scientific data between organizations or disciplines, UnitsML provides a **common language for units** that eliminates ambiguity. + +**Benefits:** +- Unambiguous unit identification across systems +- Machine-readable conversion factors between unit systems +- Dimensional validation to catch data errors before they propagate + +**Examples:** Supply chain data exchange, laboratory information management systems, cross-disciplinary research data portals, emergency response data integration. + +### Database and software developers + +If you're building software that handles scientific measurements, UnitsML provides a **structured data model** for units that goes beyond simple string labels. + +**Benefits:** +- Precise unit definitions with symbols in 6 representations (ASCII, Unicode, HTML, LaTeX, MathML, id) +- Built-in conversion algorithms via linear equation factors +- Integration with [UnitsDB](/unitsdb/) for comprehensive unit data +- Programmatic access via the [unitsml-ruby](/software/unitsml-ruby) gem + +**Examples:** Scientific computing libraries, measurement instrument software, data validation tools, laboratory automation systems. + +### Scientific data managers + +If you manage scientific data repositories or archives, UnitsML enables **self-describing datasets** where units are explicitly defined rather than assumed from context. + +Modern laboratories generate vast quantities of measurement data from instruments using different unit conventions. When digitized analytical data is separated from metadata about how samples were collected and analyzed, the connection between scientific metadata and the data itself can be lost, rendering the data useless. + +**Benefits:** +- Datasets remain interpretable long after their original context is lost +- Automated unit validation and conversion +- Consistent metadata across heterogeneous data sources + +**Examples:** Government science agencies, research data repositories, environmental monitoring databases. + +### Standards bodies and regulatory organizations + +If your organization publishes standards involving scientific measurements, UnitsML provides an **authoritative mechanism** for encoding units in machine-readable form. + +**Benefits:** +- Normative reference for unit definitions +- Alignment with SI and NIST standards +- Machine-processable specifications + +**Examples:** NIST, ISO committees, CalConnect, industry consortia, national metrology institutes. + +## Real-world use cases + +### Emergency response data integration + +During emergencies, scientific data from disparate sources must be rapidly combined and interpreted. A radiation reading in "mSv/h" from one system must be correctly understood alongside a reading in "rem/h" from another. UnitsML provides the unambiguous definitions and conversion factors needed for reliable data fusion in time-critical situations. + +### Manufacturing supply chain specifications + +Technical specifications that accompany products through the manufacturing supply chain include physical properties β€” dimensions, tolerances, material properties β€” expressed in various units. When a supplier specifies a tolerance as "Β±0.005 in" and the buyer's system works in millimetres, UnitsML enables automatic, precise conversion without loss of accuracy. + +### Multi-disciplinary research collaboration + +Research projects spanning physics, chemistry, engineering, and biology encounter a bewildering variety of units. A chemistry dataset might use angstroms and electronvolts while an engineering dataset uses nanometres and joules. UnitsML provides a common framework that makes all units explicitly defined and convertible. + +### Laboratory data management + +Modern laboratories generate vast quantities of measurement data from instruments using different unit conventions. UnitsML enables: +- Automatic unit validation when importing data +- Consistent unit display across user interfaces +- Reliable data aggregation from multiple instruments and vendors +- Long-term data integrity through self-describing unit definitions + +### Geographic and environmental information systems + +GIS and environmental monitoring systems work with spatial units (metres, degrees, radians), temporal units (seconds, days, years), and derived units (m/s, kg/mΒ³, W/mΒ²). UnitsML provides a unified schema for all these unit types. + +### Analytical chemistry and spectroscopy + +The Analytical Information Markup Language (AnIML), developed by ASTM Subcommittee E13.15, is a real-world example of incorporating UnitsML into a domain-specific markup language for spectroscopy and chromatography data. AnIML uses UnitsML to handle all unit information, ensuring that analytical data remains self-describing and interchangeable across vendor platforms. + +## How different users enter the UnitsML ecosystem + +
+
+
Standards developers
+
+ +
+
Incorporate UnitsML into your XML schema via reference, import, include, or redefine
+
+
+
Software developers
+
+ +
+
Use the unitsml-ruby gem for programmatic access, or parse UnitsML XML with standard libraries
+
+
+
Data managers
+
+ +
+
Add UnitsML markup to existing datasets; use UnitsDB for authoritative unit definitions
+
+
+
End users & researchers
+
+ +
+
Browse units interactively at UnitsDB; use software that supports UnitsML natively
+
+
+ +## Domains that benefit from UnitsML + +| Domain | Common units | Why UnitsML helps | +|--------|-------------|-------------------| +| Physics | m, kg, s, A, K, mol, cd, J, N, Pa | Base SI units and derived units with precise definitions | +| Chemistry | mol/L, eV, Γ…, Da, g/mol | Bridge between SI and domain-specific non-SI units | +| Engineering | MPa, kW, mm, Β΅m, rpm | Mixed SI and non-SI units with conversion factors | +| Metrology | All SI + derived | Authoritative definitions aligned with BIPM | +| Environmental science | Β΅g/mΒ³, ppb, Bq/mΒ³ | Complex derived units from multiple base quantities | +| Materials science | GPa, J/mΒ², nm, K/s | Combined units with dimensional analysis | +| Aerospace | ft, in, lbf, psi, Mach | Mixed unit systems requiring precise conversion | +| Healthcare | mg/dL, mmHg, mSv | Medical units with non-trivial conversion factors | +| Analytical chemistry | Β΅g/L, mAU, m/z | Instrument-specific units needing standardization | + +## Adoption path + +The use of UnitsML is **completely optional** β€” it's designed to add value where it's needed, not to force migration of existing systems. In many cases, existing systems have already developed domain-specific markup or codes for handling units, and it may not be practical to convert such systems to use UnitsML. However, the advantages β€” ready-made markup for units, improved interoperability β€” should provide a compelling case for new projects. + +Many organizations adopt UnitsML incrementally: + +1. **Reference** β€” Start by referencing UnitsML definitions for units in new data formats +2. **Integrate** β€” Add UnitsML elements to existing XML schemas +3. **Automate** β€” Use UnitsDB and conversion tools for automated processing +4. **Standardize** β€” Mandate UnitsML in data exchange agreements and specifications + +## Next steps + +- [What is UnitsML?](/learn/what-is-unitsml) β€” understand the core concepts +- [How UnitsML works](/learn/how-it-works) β€” see the technical architecture in detail +- [Incorporating UnitsML](/learn/incorporating-unitsml) β€” four methods of integration +- [UnitsDB](/unitsdb/) β€” browse the complete interactive database +- [Get started](/get-started) β€” begin using UnitsML in your projects + + diff --git a/lychee.toml b/lychee.toml new file mode 100644 index 0000000..ee05da1 --- /dev/null +++ b/lychee.toml @@ -0,0 +1,14 @@ +exclude = [ + # Localhost / development + "http://localhost:*", + "http://127.0.0.1:*", + + # External sites that may block automated requests + "https://www.ibm.com/*", + "https://www.grantadesign.com/*", + "https://www.babcockinternational.com/*", + "https://www.unf.edu/*", +] + +max_retries = 3 +timeout = 20 diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..99f7e34 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,3212 @@ +{ + "name": "unitsml.org", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "unitsml.org", + "version": "1.0.0", + "devDependencies": { + "@asciidoctor/core": "^3.0.4", + "js-yaml": "^4.1.1", + "tsx": "^4.21.0", + "typescript": "^5.7.3", + "vitepress": "^1.6.4", + "vue": "^3.5.13" + } + }, + "node_modules/@algolia/abtesting": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/@algolia/abtesting/-/abtesting-1.17.0.tgz", + "integrity": "sha512-nuhHZdTiCtRzJEe9VSNzyqE9cOQMt01UWBzymFnjbgwrxxZpbGHQde6Oa/y9zyspTCjbUtb7Q5HQek1CLiLyeg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.51.0", + "@algolia/requester-browser-xhr": "5.51.0", + "@algolia/requester-fetch": "5.51.0", + "@algolia/requester-node-http": "5.51.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/autocomplete-core": { + "version": "1.17.7", + "resolved": "https://registry.npmjs.org/@algolia/autocomplete-core/-/autocomplete-core-1.17.7.tgz", + "integrity": "sha512-BjiPOW6ks90UKl7TwMv7oNQMnzU+t/wk9mgIDi6b1tXpUek7MW0lbNOUHpvam9pe3lVCf4xPFT+lK7s+e+fs7Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/autocomplete-plugin-algolia-insights": "1.17.7", + "@algolia/autocomplete-shared": "1.17.7" + } + }, + "node_modules/@algolia/autocomplete-plugin-algolia-insights": { + "version": "1.17.7", + "resolved": "https://registry.npmjs.org/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.17.7.tgz", + "integrity": "sha512-Jca5Ude6yUOuyzjnz57og7Et3aXjbwCSDf/8onLHSQgw1qW3ALl9mrMWaXb5FmPVkV3EtkD2F/+NkT6VHyPu9A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/autocomplete-shared": "1.17.7" + }, + "peerDependencies": { + "search-insights": ">= 1 < 3" + } + }, + "node_modules/@algolia/autocomplete-preset-algolia": { + "version": "1.17.7", + "resolved": "https://registry.npmjs.org/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.17.7.tgz", + "integrity": "sha512-ggOQ950+nwbWROq2MOCIL71RE0DdQZsceqrg32UqnhDz8FlO9rL8ONHNsI2R1MH0tkgVIDKI/D0sMiUchsFdWA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/autocomplete-shared": "1.17.7" + }, + "peerDependencies": { + "@algolia/client-search": ">= 4.9.1 < 6", + "algoliasearch": ">= 4.9.1 < 6" + } + }, + "node_modules/@algolia/autocomplete-shared": { + "version": "1.17.7", + "resolved": "https://registry.npmjs.org/@algolia/autocomplete-shared/-/autocomplete-shared-1.17.7.tgz", + "integrity": "sha512-o/1Vurr42U/qskRSuhBH+VKxMvkkUVTLU6WZQr+L5lGZZLYWyhdzWjW0iGXY7EkwRTjBqvN2EsR81yCTGV/kmg==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "@algolia/client-search": ">= 4.9.1 < 6", + "algoliasearch": ">= 4.9.1 < 6" + } + }, + "node_modules/@algolia/client-abtesting": { + "version": "5.51.0", + "resolved": "https://registry.npmjs.org/@algolia/client-abtesting/-/client-abtesting-5.51.0.tgz", + "integrity": "sha512-PKrKlIla1U2J7mFcIQn6N3pWP4oySmkxShnbbDsj/H7818gKbET5KsUwsVoNjWIxHKTJMCTcQ7ekAJ8Ea23NMg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.51.0", + "@algolia/requester-browser-xhr": "5.51.0", + "@algolia/requester-fetch": "5.51.0", + "@algolia/requester-node-http": "5.51.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/client-analytics": { + "version": "5.51.0", + "resolved": "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-5.51.0.tgz", + "integrity": "sha512-U+HCY1K16Km91pIRL1kN6bW6BbGFAF/WhkRSCx4wyl1aFpbrlhSFQs/dAwWbmyBiHWwVWhl7stWHQ1pum5EfMw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.51.0", + "@algolia/requester-browser-xhr": "5.51.0", + "@algolia/requester-fetch": "5.51.0", + "@algolia/requester-node-http": "5.51.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/client-common": { + "version": "5.51.0", + "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-5.51.0.tgz", + "integrity": "sha512-YPJ3dEuZLCRp846Az94t6Z2gwSNRazP+SmBco7p6SCa4fYrtIE820PDXYZshbNrj2Z8Qfbmv7BQ1Lecl5L3G/w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/client-insights": { + "version": "5.51.0", + "resolved": "https://registry.npmjs.org/@algolia/client-insights/-/client-insights-5.51.0.tgz", + "integrity": "sha512-/gEwLlR7fQ7YjOW+ADRZ0NxLDtpTC61FSzlZ01Gdl1kTJfU0Rq3Y/TYqwxGxlQGcUiXtGzrpjxXWh3Y0TZD6NA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.51.0", + "@algolia/requester-browser-xhr": "5.51.0", + "@algolia/requester-fetch": "5.51.0", + "@algolia/requester-node-http": "5.51.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/client-personalization": { + "version": "5.51.0", + "resolved": "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-5.51.0.tgz", + "integrity": "sha512-nRwUN1Y2cKyOAFZyIBagkEfZSIhP05nWhT4Rjwl84lcjECssYggftrAODrZ4leakXxSGjhxs/AdaAFEIBqwVFA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.51.0", + "@algolia/requester-browser-xhr": "5.51.0", + "@algolia/requester-fetch": "5.51.0", + "@algolia/requester-node-http": "5.51.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/client-query-suggestions": { + "version": "5.51.0", + "resolved": "https://registry.npmjs.org/@algolia/client-query-suggestions/-/client-query-suggestions-5.51.0.tgz", + "integrity": "sha512-pybzYCG7VoQKppo+z5iZOKpW8XqtFxhsAIRgEaNboCnfypKukiBHJAwB+pmr7vMZXBsOHwklGYWwCG82e8qshA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.51.0", + "@algolia/requester-browser-xhr": "5.51.0", + "@algolia/requester-fetch": "5.51.0", + "@algolia/requester-node-http": "5.51.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/client-search": { + "version": "5.51.0", + "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-5.51.0.tgz", + "integrity": "sha512-DWVIlj6RqcvdhwP0gBU9OpOQPnHdcAk9jlT+z8rsNb2+liWv4eUlfQZ7saGBraFsnygEHD3PtdppIHvqwBAb5w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.51.0", + "@algolia/requester-browser-xhr": "5.51.0", + "@algolia/requester-fetch": "5.51.0", + "@algolia/requester-node-http": "5.51.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/ingestion": { + "version": "1.51.0", + "resolved": "https://registry.npmjs.org/@algolia/ingestion/-/ingestion-1.51.0.tgz", + "integrity": "sha512-bA25s12iUDJi/X8M7tWlPRT8GeOhls/yDbdoUqinz27lNqsOlcM1UrAxIKdIZ6lm3sXit+ewPIz1pS2x6rXu8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.51.0", + "@algolia/requester-browser-xhr": "5.51.0", + "@algolia/requester-fetch": "5.51.0", + "@algolia/requester-node-http": "5.51.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/monitoring": { + "version": "1.51.0", + "resolved": "https://registry.npmjs.org/@algolia/monitoring/-/monitoring-1.51.0.tgz", + "integrity": "sha512-zj+RcE5e0NE0/ew6oEOTgOplPHry+w2oi7h0Y87lhdq4E0d7xLS31KVB8kKfCGkrG7AYtZvrcyvLOKS5d0no4Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.51.0", + "@algolia/requester-browser-xhr": "5.51.0", + "@algolia/requester-fetch": "5.51.0", + "@algolia/requester-node-http": "5.51.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/recommend": { + "version": "5.51.0", + "resolved": "https://registry.npmjs.org/@algolia/recommend/-/recommend-5.51.0.tgz", + "integrity": "sha512-/HDgccfye1Rq3bPxaSCsvSEBHzSMmtpM9ZRGRtAuC62Cv+ql/76IWnxjGTDXtqIJ+/j7ZlFYAzq9fkp95wF2SQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.51.0", + "@algolia/requester-browser-xhr": "5.51.0", + "@algolia/requester-fetch": "5.51.0", + "@algolia/requester-node-http": "5.51.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/requester-browser-xhr": { + "version": "5.51.0", + "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.51.0.tgz", + "integrity": "sha512-nJdW+WBwGlXWMJbxxB7/AJPvNq0lLJSudXmIQCJbmH8jsOXQhRpAtoCD4ceLyJKv3ze9JbQu4Gqu5JDLckuFcw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.51.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/requester-fetch": { + "version": "5.51.0", + "resolved": "https://registry.npmjs.org/@algolia/requester-fetch/-/requester-fetch-5.51.0.tgz", + "integrity": "sha512-bsBgRI/1h1mjS3eCyfGau78yGZVmiDLmT1aU6dMnk75/T0SgKqnSKNpQ53xKoDYVChGDcNnpHXWpoUSo8MH1+w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.51.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/requester-node-http": { + "version": "5.51.0", + "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-5.51.0.tgz", + "integrity": "sha512-zPrIDVPpmKWgrjmWOqpqrhqAhNjvVkjoj+mqw2NBPxEOuKNzP0H+Qz5NJLLTOepBVj1UFedFaF3AUgxLsB9ukQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.51.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@asciidoctor/core": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@asciidoctor/core/-/core-3.0.4.tgz", + "integrity": "sha512-41SDMi7iRRBViPe0L6VWFTe55bv6HEOJeRqMj5+E5wB1YPdUPuTucL4UAESPZM6OWmn4t/5qM5LusXomFUVwVQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@asciidoctor/opal-runtime": "3.0.1", + "unxhr": "1.2.0" + }, + "engines": { + "node": ">=16", + "npm": ">=8" + } + }, + "node_modules/@asciidoctor/opal-runtime": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@asciidoctor/opal-runtime/-/opal-runtime-3.0.1.tgz", + "integrity": "sha512-iW7ACahOG0zZft4A/4CqDcc7JX+fWRNjV5tFAVkNCzwZD+EnFolPaUOPYt8jzadc0+Bgd80cQTtRMQnaaV1kkg==", + "dev": true, + "license": "MIT", + "dependencies": { + "glob": "8.1.0", + "unxhr": "1.2.0" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.29.2", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.2.tgz", + "integrity": "sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.29.0" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/types": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz", + "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@docsearch/css": { + "version": "3.8.2", + "resolved": "https://registry.npmjs.org/@docsearch/css/-/css-3.8.2.tgz", + "integrity": "sha512-y05ayQFyUmCXze79+56v/4HpycYF3uFqB78pLPrSV5ZKAlDuIAAJNhaRi8tTdRNXh05yxX/TyNnzD6LwSM89vQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@docsearch/js": { + "version": "3.8.2", + "resolved": "https://registry.npmjs.org/@docsearch/js/-/js-3.8.2.tgz", + "integrity": "sha512-Q5wY66qHn0SwA7Taa0aDbHiJvaFJLOJyHmooQ7y8hlwwQLQ/5WwCcoX0g7ii04Qi2DJlHsd0XXzJ8Ypw9+9YmQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@docsearch/react": "3.8.2", + "preact": "^10.0.0" + } + }, + "node_modules/@docsearch/react": { + "version": "3.8.2", + "resolved": "https://registry.npmjs.org/@docsearch/react/-/react-3.8.2.tgz", + "integrity": "sha512-xCRrJQlTt8N9GU0DG4ptwHRkfnSnD/YpdeaXe02iKfqs97TkZJv60yE+1eq/tjPcVnTW8dP5qLP7itifFVV5eg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/autocomplete-core": "1.17.7", + "@algolia/autocomplete-preset-algolia": "1.17.7", + "@docsearch/css": "3.8.2", + "algoliasearch": "^5.14.2" + }, + "peerDependencies": { + "@types/react": ">= 16.8.0 < 19.0.0", + "react": ">= 16.8.0 < 19.0.0", + "react-dom": ">= 16.8.0 < 19.0.0", + "search-insights": ">= 1 < 3" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "react": { + "optional": true + }, + "react-dom": { + "optional": true + }, + "search-insights": { + "optional": true + } + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", + "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", + "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", + "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", + "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", + "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", + "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", + "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", + "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", + "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", + "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", + "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", + "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", + "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", + "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", + "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", + "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", + "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.7.tgz", + "integrity": "sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", + "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.7.tgz", + "integrity": "sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", + "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/openharmony-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.7.tgz", + "integrity": "sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", + "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", + "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", + "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", + "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@iconify-json/simple-icons": { + "version": "1.2.80", + "resolved": "https://registry.npmjs.org/@iconify-json/simple-icons/-/simple-icons-1.2.80.tgz", + "integrity": "sha512-iglncJJ6X/dVuzFDU32MrHwwo4RBwivGf108dgyYg+HKS78ifx0h7sTenpDZMVT+UhdS6CSgZcvY/SvRXlIEUg==", + "dev": true, + "license": "CC0-1.0", + "dependencies": { + "@iconify/types": "*" + } + }, + "node_modules/@iconify/types": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@iconify/types/-/types-2.0.0.tgz", + "integrity": "sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "dev": true, + "license": "MIT" + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.60.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.60.2.tgz", + "integrity": "sha512-dnlp69efPPg6Uaw2dVqzWRfAWRnYVb1XJ8CyyhIbZeaq4CA5/mLeZ1IEt9QqQxmbdvagjLIm2ZL8BxXv5lH4Yw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.60.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.60.2.tgz", + "integrity": "sha512-OqZTwDRDchGRHHm/hwLOL7uVPB9aUvI0am/eQuWMNyFHf5PSEQmyEeYYheA0EPPKUO/l0uigCp+iaTjoLjVoHg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.60.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.60.2.tgz", + "integrity": "sha512-UwRE7CGpvSVEQS8gUMBe1uADWjNnVgP3Iusyda1nSRwNDCsRjnGc7w6El6WLQsXmZTbLZx9cecegumcitNfpmA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.60.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.60.2.tgz", + "integrity": "sha512-gjEtURKLCC5VXm1I+2i1u9OhxFsKAQJKTVB8WvDAHF+oZlq0GTVFOlTlO1q3AlCTE/DF32c16ESvfgqR7343/g==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.60.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.60.2.tgz", + "integrity": "sha512-Bcl6CYDeAgE70cqZaMojOi/eK63h5Me97ZqAQoh77VPjMysA/4ORQBRGo3rRy45x4MzVlU9uZxs8Uwy7ZaKnBw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.60.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.60.2.tgz", + "integrity": "sha512-LU+TPda3mAE2QB0/Hp5VyeKJivpC6+tlOXd1VMoXV/YFMvk/MNk5iXeBfB4MQGRWyOYVJ01625vjkr0Az98OJQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.60.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.60.2.tgz", + "integrity": "sha512-2QxQrM+KQ7DAW4o22j+XZ6RKdxjLD7BOWTP0Bv0tmjdyhXSsr2Ul1oJDQqh9Zf5qOwTuTc7Ek83mOFaKnodPjg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.60.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.60.2.tgz", + "integrity": "sha512-TbziEu2DVsTEOPif2mKWkMeDMLoYjx95oESa9fkQQK7r/Orta0gnkcDpzwufEcAO2BLBsD7mZkXGFqEdMRRwfw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.60.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.60.2.tgz", + "integrity": "sha512-bO/rVDiDUuM2YfuCUwZ1t1cP+/yqjqz+Xf2VtkdppefuOFS2OSeAfgafaHNkFn0t02hEyXngZkxtGqXcXwO8Rg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.60.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.60.2.tgz", + "integrity": "sha512-hr26p7e93Rl0Za+JwW7EAnwAvKkehh12BU1Llm9Ykiibg4uIr2rbpxG9WCf56GuvidlTG9KiiQT/TXT1yAWxTA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-gnu": { + "version": "4.60.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.60.2.tgz", + "integrity": "sha512-pOjB/uSIyDt+ow3k/RcLvUAOGpysT2phDn7TTUB3n75SlIgZzM6NKAqlErPhoFU+npgY3/n+2HYIQVbF70P9/A==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-musl": { + "version": "4.60.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.60.2.tgz", + "integrity": "sha512-2/w+q8jszv9Ww1c+6uJT3OwqhdmGP2/4T17cu8WuwyUuuaCDDJ2ojdyYwZzCxx0GcsZBhzi3HmH+J5pZNXnd+Q==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-gnu": { + "version": "4.60.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.60.2.tgz", + "integrity": "sha512-11+aL5vKheYgczxtPVVRhdptAM2H7fcDR5Gw4/bTcteuZBlH4oP9f5s9zYO9aGZvoGeBpqXI/9TZZihZ609wKw==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-musl": { + "version": "4.60.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.60.2.tgz", + "integrity": "sha512-i16fokAGK46IVZuV8LIIwMdtqhin9hfYkCh8pf8iC3QU3LpwL+1FSFGej+O7l3E/AoknL6Dclh2oTdnRMpTzFQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.60.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.60.2.tgz", + "integrity": "sha512-49FkKS6RGQoriDSK/6E2GkAsAuU5kETFCh7pG4yD/ylj9rKhTmO3elsnmBvRD4PgJPds5W2PkhC82aVwmUcJ7A==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-musl": { + "version": "4.60.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.60.2.tgz", + "integrity": "sha512-mjYNkHPfGpUR00DuM1ZZIgs64Hpf4bWcz9Z41+4Q+pgDx73UwWdAYyf6EG/lRFldmdHHzgrYyge5akFUW0D3mQ==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.60.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.60.2.tgz", + "integrity": "sha512-ALyvJz965BQk8E9Al/JDKKDLH2kfKFLTGMlgkAbbYtZuJt9LU8DW3ZoDMCtQpXAltZxwBHevXz5u+gf0yA0YoA==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.60.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.60.2.tgz", + "integrity": "sha512-UQjrkIdWrKI626Du8lCQ6MJp/6V1LAo2bOK9OTu4mSn8GGXIkPXk/Vsp4bLHCd9Z9Iz2OTEaokUE90VweJgIYQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.60.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.60.2.tgz", + "integrity": "sha512-bTsRGj6VlSdn/XD4CGyzMnzaBs9bsRxy79eTqTCBsA8TMIEky7qg48aPkvJvFe1HyzQ5oMZdg7AnVlWQSKLTnw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-openbsd-x64": { + "version": "4.60.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.60.2.tgz", + "integrity": "sha512-6d4Z3534xitaA1FcMWP7mQPq5zGwBmGbhphh2DwaA1aNIXUu3KTOfwrWpbwI4/Gr0uANo7NTtaykFyO2hPuFLg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ] + }, + "node_modules/@rollup/rollup-openharmony-arm64": { + "version": "4.60.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.60.2.tgz", + "integrity": "sha512-NetAg5iO2uN7eB8zE5qrZ3CSil+7IJt4WDFLcC75Ymywq1VZVD6qJ6EvNLjZ3rEm6gB7XW5JdT60c6MN35Z85Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.60.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.60.2.tgz", + "integrity": "sha512-NCYhOotpgWZ5kdxCZsv6Iudx0wX8980Q/oW4pNFNihpBKsDbEA1zpkfxJGC0yugsUuyDZ7gL37dbzwhR0VI7pQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.60.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.60.2.tgz", + "integrity": "sha512-RXsaOqXxfoUBQoOgvmmijVxJnW2IGB0eoMO7F8FAjaj0UTywUO/luSqimWBJn04WNgUkeNhh7fs7pESXajWmkg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-gnu": { + "version": "4.60.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.60.2.tgz", + "integrity": "sha512-qdAzEULD+/hzObedtmV6iBpdL5TIbKVztGiK7O3/KYSf+HIzU257+MX1EXJcyIiDbMAqmbwaufcYPvyRryeZtA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.60.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.60.2.tgz", + "integrity": "sha512-Nd/SgG27WoA9e+/TdK74KnHz852TLa94ovOYySo/yMPuTmpckK/jIF2jSwS3g7ELSKXK13/cVdmg1Z/DaCWKxA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@shikijs/core": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@shikijs/core/-/core-2.5.0.tgz", + "integrity": "sha512-uu/8RExTKtavlpH7XqnVYBrfBkUc20ngXiX9NSrBhOVZYv/7XQRKUyhtkeflY5QsxC0GbJThCerruZfsUaSldg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/engine-javascript": "2.5.0", + "@shikijs/engine-oniguruma": "2.5.0", + "@shikijs/types": "2.5.0", + "@shikijs/vscode-textmate": "^10.0.2", + "@types/hast": "^3.0.4", + "hast-util-to-html": "^9.0.4" + } + }, + "node_modules/@shikijs/engine-javascript": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@shikijs/engine-javascript/-/engine-javascript-2.5.0.tgz", + "integrity": "sha512-VjnOpnQf8WuCEZtNUdjjwGUbtAVKuZkVQ/5cHy/tojVVRIRtlWMYVjyWhxOmIq05AlSOv72z7hRNRGVBgQOl0w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/types": "2.5.0", + "@shikijs/vscode-textmate": "^10.0.2", + "oniguruma-to-es": "^3.1.0" + } + }, + "node_modules/@shikijs/engine-oniguruma": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-2.5.0.tgz", + "integrity": "sha512-pGd1wRATzbo/uatrCIILlAdFVKdxImWJGQ5rFiB5VZi2ve5xj3Ax9jny8QvkaV93btQEwR/rSz5ERFpC5mKNIw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/types": "2.5.0", + "@shikijs/vscode-textmate": "^10.0.2" + } + }, + "node_modules/@shikijs/langs": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@shikijs/langs/-/langs-2.5.0.tgz", + "integrity": "sha512-Qfrrt5OsNH5R+5tJ/3uYBBZv3SuGmnRPejV9IlIbFH3HTGLDlkqgHymAlzklVmKBjAaVmkPkyikAV/sQ1wSL+w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/types": "2.5.0" + } + }, + "node_modules/@shikijs/themes": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@shikijs/themes/-/themes-2.5.0.tgz", + "integrity": "sha512-wGrk+R8tJnO0VMzmUExHR+QdSaPUl/NKs+a4cQQRWyoc3YFbUzuLEi/KWK1hj+8BfHRKm2jNhhJck1dfstJpiw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/types": "2.5.0" + } + }, + "node_modules/@shikijs/transformers": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@shikijs/transformers/-/transformers-2.5.0.tgz", + "integrity": "sha512-SI494W5X60CaUwgi8u4q4m4s3YAFSxln3tzNjOSYqq54wlVgz0/NbbXEb3mdLbqMBztcmS7bVTaEd2w0qMmfeg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/core": "2.5.0", + "@shikijs/types": "2.5.0" + } + }, + "node_modules/@shikijs/types": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@shikijs/types/-/types-2.5.0.tgz", + "integrity": "sha512-ygl5yhxki9ZLNuNpPitBWvcy9fsSKKaRuO4BAlMyagszQidxcpLAr0qiW/q43DtSIDxO6hEbtYLiFZNXO/hdGw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/vscode-textmate": "^10.0.2", + "@types/hast": "^3.0.4" + } + }, + "node_modules/@shikijs/vscode-textmate": { + "version": "10.0.2", + "resolved": "https://registry.npmjs.org/@shikijs/vscode-textmate/-/vscode-textmate-10.0.2.tgz", + "integrity": "sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/hast": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz", + "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/@types/linkify-it": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@types/linkify-it/-/linkify-it-5.0.0.tgz", + "integrity": "sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/markdown-it": { + "version": "14.1.2", + "resolved": "https://registry.npmjs.org/@types/markdown-it/-/markdown-it-14.1.2.tgz", + "integrity": "sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/linkify-it": "^5", + "@types/mdurl": "^2" + } + }, + "node_modules/@types/mdast": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", + "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/@types/mdurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@types/mdurl/-/mdurl-2.0.0.tgz", + "integrity": "sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/unist": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", + "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/web-bluetooth": { + "version": "0.0.21", + "resolved": "https://registry.npmjs.org/@types/web-bluetooth/-/web-bluetooth-0.0.21.tgz", + "integrity": "sha512-oIQLCGWtcFZy2JW77j9k8nHzAOpqMHLQejDA48XXMWH6tjCQHz5RCFz1bzsmROyL6PUm+LLnUiI4BCn221inxA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@ungap/structured-clone": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz", + "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==", + "dev": true, + "license": "ISC" + }, + "node_modules/@vitejs/plugin-vue": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-5.2.4.tgz", + "integrity": "sha512-7Yx/SXSOcQq5HiiV3orevHUFn+pmMB4cgbEkDYgnkUWb0WfeQ/wa2yFv6D5ICiCQOVpjA7vYDXrC7AGO8yjDHA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "peerDependencies": { + "vite": "^5.0.0 || ^6.0.0", + "vue": "^3.2.25" + } + }, + "node_modules/@vue/compiler-core": { + "version": "3.5.33", + "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.33.tgz", + "integrity": "sha512-3PZLQwFw4Za3TC8t0FvTy3wI16Kt+pmwcgNZca4Pj9iWL2E72a/gZlpBtAJvEdDMdCxdG/qq0C7PN0bsJuv0Rw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.29.2", + "@vue/shared": "3.5.33", + "entities": "^7.0.1", + "estree-walker": "^2.0.2", + "source-map-js": "^1.2.1" + } + }, + "node_modules/@vue/compiler-dom": { + "version": "3.5.33", + "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.33.tgz", + "integrity": "sha512-PXq0yrfCLzzL07rbXO4awtXY1Z06LG2eu6Adg3RJFa/j3Cii217XxxLXG22N330gw7GmALCY0Z8RgXEviwgpjA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vue/compiler-core": "3.5.33", + "@vue/shared": "3.5.33" + } + }, + "node_modules/@vue/compiler-sfc": { + "version": "3.5.33", + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.33.tgz", + "integrity": "sha512-UTUvRO9cY+rROrx/pvN9P5Z7FgA6QGfokUCfhQE4EnmUj3rVnK+CHI0LsEO1pg+I7//iRYMUfcNcCPe7tg0CoA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.29.2", + "@vue/compiler-core": "3.5.33", + "@vue/compiler-dom": "3.5.33", + "@vue/compiler-ssr": "3.5.33", + "@vue/shared": "3.5.33", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.21", + "postcss": "^8.5.10", + "source-map-js": "^1.2.1" + } + }, + "node_modules/@vue/compiler-ssr": { + "version": "3.5.33", + "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.33.tgz", + "integrity": "sha512-IErjYdnj1qIupG5xxiVIYiiRvDhGWV4zuh/RCrwfYpuL+HWQzeU6lCk/nF9r7olWMnjKxCAkOctT2qFWFkzb1A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vue/compiler-dom": "3.5.33", + "@vue/shared": "3.5.33" + } + }, + "node_modules/@vue/devtools-api": { + "version": "7.7.9", + "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-7.7.9.tgz", + "integrity": "sha512-kIE8wvwlcZ6TJTbNeU2HQNtaxLx3a84aotTITUuL/4bzfPxzajGBOoqjMhwZJ8L9qFYDU/lAYMEEm11dnZOD6g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vue/devtools-kit": "^7.7.9" + } + }, + "node_modules/@vue/devtools-kit": { + "version": "7.7.9", + "resolved": "https://registry.npmjs.org/@vue/devtools-kit/-/devtools-kit-7.7.9.tgz", + "integrity": "sha512-PyQ6odHSgiDVd4hnTP+aDk2X4gl2HmLDfiyEnn3/oV+ckFDuswRs4IbBT7vacMuGdwY/XemxBoh302ctbsptuA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vue/devtools-shared": "^7.7.9", + "birpc": "^2.3.0", + "hookable": "^5.5.3", + "mitt": "^3.0.1", + "perfect-debounce": "^1.0.0", + "speakingurl": "^14.0.1", + "superjson": "^2.2.2" + } + }, + "node_modules/@vue/devtools-shared": { + "version": "7.7.9", + "resolved": "https://registry.npmjs.org/@vue/devtools-shared/-/devtools-shared-7.7.9.tgz", + "integrity": "sha512-iWAb0v2WYf0QWmxCGy0seZNDPdO3Sp5+u78ORnyeonS6MT4PC7VPrryX2BpMJrwlDeaZ6BD4vP4XKjK0SZqaeA==", + "dev": true, + "license": "MIT", + "dependencies": { + "rfdc": "^1.4.1" + } + }, + "node_modules/@vue/reactivity": { + "version": "3.5.33", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.33.tgz", + "integrity": "sha512-p8UfIqyIhb0rYGlSgSBV+lPhF2iUSBcRy7enhTmPqKWadHy9kcOFYF1AejYBP9P+avnd3OBbD49DU4pLWX/94A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vue/shared": "3.5.33" + } + }, + "node_modules/@vue/runtime-core": { + "version": "3.5.33", + "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.33.tgz", + "integrity": "sha512-UpFF45RI9//a7rvq7RdOQblb4tup7hHG9QsmIrxkFQLzQ7R8/iNQ5LE15NhLZ1/WcHMU2b47u6P33CPUelHyIQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vue/reactivity": "3.5.33", + "@vue/shared": "3.5.33" + } + }, + "node_modules/@vue/runtime-dom": { + "version": "3.5.33", + "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.33.tgz", + "integrity": "sha512-IOxMsAOwquhfITgmOgaPYl7/j8gKUxUFoflRc+u4LxyD3+783xne8vNta1PONVCvCV9A0w7hkyEepINDqfO0tw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vue/reactivity": "3.5.33", + "@vue/runtime-core": "3.5.33", + "@vue/shared": "3.5.33", + "csstype": "^3.2.3" + } + }, + "node_modules/@vue/server-renderer": { + "version": "3.5.33", + "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.33.tgz", + "integrity": "sha512-0xylq/8/h44lVG0pZFknv1XIdEgymq2E9n59uTWJBG+dIgiT0TMCSsxrN7nO16Z0MU0MPjFcguBbZV8Itk52Hw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vue/compiler-ssr": "3.5.33", + "@vue/shared": "3.5.33" + }, + "peerDependencies": { + "vue": "3.5.33" + } + }, + "node_modules/@vue/shared": { + "version": "3.5.33", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.33.tgz", + "integrity": "sha512-5vR2QIlmaLG77Ygd4pMP6+SGQ5yox9VhtnbDWTy9DzMzdmeLxZ1QqxrywEZ9sa1AVubfIJyaCG3ytyWU81ufcQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@vueuse/core": { + "version": "12.8.2", + "resolved": "https://registry.npmjs.org/@vueuse/core/-/core-12.8.2.tgz", + "integrity": "sha512-HbvCmZdzAu3VGi/pWYm5Ut+Kd9mn1ZHnn4L5G8kOQTPs/IwIAmJoBrmYk2ckLArgMXZj0AW3n5CAejLUO+PhdQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/web-bluetooth": "^0.0.21", + "@vueuse/metadata": "12.8.2", + "@vueuse/shared": "12.8.2", + "vue": "^3.5.13" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@vueuse/integrations": { + "version": "12.8.2", + "resolved": "https://registry.npmjs.org/@vueuse/integrations/-/integrations-12.8.2.tgz", + "integrity": "sha512-fbGYivgK5uBTRt7p5F3zy6VrETlV9RtZjBqd1/HxGdjdckBgBM4ugP8LHpjolqTj14TXTxSK1ZfgPbHYyGuH7g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vueuse/core": "12.8.2", + "@vueuse/shared": "12.8.2", + "vue": "^3.5.13" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "async-validator": "^4", + "axios": "^1", + "change-case": "^5", + "drauu": "^0.4", + "focus-trap": "^7", + "fuse.js": "^7", + "idb-keyval": "^6", + "jwt-decode": "^4", + "nprogress": "^0.2", + "qrcode": "^1.5", + "sortablejs": "^1", + "universal-cookie": "^7" + }, + "peerDependenciesMeta": { + "async-validator": { + "optional": true + }, + "axios": { + "optional": true + }, + "change-case": { + "optional": true + }, + "drauu": { + "optional": true + }, + "focus-trap": { + "optional": true + }, + "fuse.js": { + "optional": true + }, + "idb-keyval": { + "optional": true + }, + "jwt-decode": { + "optional": true + }, + "nprogress": { + "optional": true + }, + "qrcode": { + "optional": true + }, + "sortablejs": { + "optional": true + }, + "universal-cookie": { + "optional": true + } + } + }, + "node_modules/@vueuse/metadata": { + "version": "12.8.2", + "resolved": "https://registry.npmjs.org/@vueuse/metadata/-/metadata-12.8.2.tgz", + "integrity": "sha512-rAyLGEuoBJ/Il5AmFHiziCPdQzRt88VxR+Y/A/QhJ1EWtWqPBBAxTAFaSkviwEuOEZNtW8pvkPgoCZQ+HxqW1A==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@vueuse/shared": { + "version": "12.8.2", + "resolved": "https://registry.npmjs.org/@vueuse/shared/-/shared-12.8.2.tgz", + "integrity": "sha512-dznP38YzxZoNloI0qpEfpkms8knDtaoQ6Y/sfS0L7Yki4zh40LFHEhur0odJC6xTHG5dxWVPiUWBXn+wCG2s5w==", + "dev": true, + "license": "MIT", + "dependencies": { + "vue": "^3.5.13" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/algoliasearch": { + "version": "5.51.0", + "resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-5.51.0.tgz", + "integrity": "sha512-u3XS8HaTzt5YN90KPsOXMRjYJUMVD1dtr6yi4NXQluMbZ5IjQNBu1MEabdAxFhYtEuexqomPMSmRIhQJUd3QSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/abtesting": "1.17.0", + "@algolia/client-abtesting": "5.51.0", + "@algolia/client-analytics": "5.51.0", + "@algolia/client-common": "5.51.0", + "@algolia/client-insights": "5.51.0", + "@algolia/client-personalization": "5.51.0", + "@algolia/client-query-suggestions": "5.51.0", + "@algolia/client-search": "5.51.0", + "@algolia/ingestion": "1.51.0", + "@algolia/monitoring": "1.51.0", + "@algolia/recommend": "5.51.0", + "@algolia/requester-browser-xhr": "5.51.0", + "@algolia/requester-fetch": "5.51.0", + "@algolia/requester-node-http": "5.51.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "license": "Python-2.0" + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/birpc": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/birpc/-/birpc-2.9.0.tgz", + "integrity": "sha512-KrayHS5pBi69Xi9JmvoqrIgYGDkD6mcSe/i6YKi3w5kekCLzrX4+nawcXqrj2tIp50Kw/mT/s3p+GVK0A0sKxw==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/brace-expansion": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.1.0.tgz", + "integrity": "sha512-TN1kCZAgdgweJhWWpgKYrQaMNHcDULHkWwQIspdtjV4Y5aurRdZpjAqn6yX3FPqTA9ngHCc4hJxMAMgGfve85w==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/ccount": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", + "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-entities-html4": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", + "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-entities-legacy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", + "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/comma-separated-tokens": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", + "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/copy-anything": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-4.0.5.tgz", + "integrity": "sha512-7Vv6asjS4gMOuILabD3l739tsaxFQmC+a7pLZm02zyvs8p977bL3zEgq3yDk5rn9B0PbYgIv++jmHcuUab4RhA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-what": "^5.2.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/mesqueeb" + } + }, + "node_modules/csstype": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz", + "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/devlop": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz", + "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==", + "dev": true, + "license": "MIT", + "dependencies": { + "dequal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/emoji-regex-xs": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex-xs/-/emoji-regex-xs-1.0.0.tgz", + "integrity": "sha512-LRlerrMYoIDrT6jgpeZ2YYl/L8EulRTt5hQcYjy5AInh7HWXKimpqx68aknBFpGL2+/IcogTcaydJEgaTmOpDg==", + "dev": true, + "license": "MIT" + }, + "node_modules/entities": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-7.0.1.tgz", + "integrity": "sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/esbuild": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", + "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.21.5", + "@esbuild/android-arm": "0.21.5", + "@esbuild/android-arm64": "0.21.5", + "@esbuild/android-x64": "0.21.5", + "@esbuild/darwin-arm64": "0.21.5", + "@esbuild/darwin-x64": "0.21.5", + "@esbuild/freebsd-arm64": "0.21.5", + "@esbuild/freebsd-x64": "0.21.5", + "@esbuild/linux-arm": "0.21.5", + "@esbuild/linux-arm64": "0.21.5", + "@esbuild/linux-ia32": "0.21.5", + "@esbuild/linux-loong64": "0.21.5", + "@esbuild/linux-mips64el": "0.21.5", + "@esbuild/linux-ppc64": "0.21.5", + "@esbuild/linux-riscv64": "0.21.5", + "@esbuild/linux-s390x": "0.21.5", + "@esbuild/linux-x64": "0.21.5", + "@esbuild/netbsd-x64": "0.21.5", + "@esbuild/openbsd-x64": "0.21.5", + "@esbuild/sunos-x64": "0.21.5", + "@esbuild/win32-arm64": "0.21.5", + "@esbuild/win32-ia32": "0.21.5", + "@esbuild/win32-x64": "0.21.5" + } + }, + "node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "dev": true, + "license": "MIT" + }, + "node_modules/focus-trap": { + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/focus-trap/-/focus-trap-7.8.0.tgz", + "integrity": "sha512-/yNdlIkpWbM0ptxno3ONTuf+2g318kh2ez3KSeZN5dZ8YC6AAmgeWz+GasYYiBJPFaYcSAPeu4GfhUaChzIJXA==", + "dev": true, + "license": "MIT", + "dependencies": { + "tabbable": "^6.4.0" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true, + "license": "ISC" + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/get-tsconfig": { + "version": "4.14.0", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.14.0.tgz", + "integrity": "sha512-yTb+8DXzDREzgvYmh6s9vHsSVCHeC0G3PI5bEXNBHtmshPnO+S5O7qgLEOn0I5QvMy6kpZN8K1NKGyilLb93wA==", + "dev": true, + "license": "MIT", + "dependencies": { + "resolve-pkg-maps": "^1.0.0" + }, + "funding": { + "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" + } + }, + "node_modules/glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me", + "dev": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/hast-util-to-html": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.5.tgz", + "integrity": "sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/unist": "^3.0.0", + "ccount": "^2.0.0", + "comma-separated-tokens": "^2.0.0", + "hast-util-whitespace": "^3.0.0", + "html-void-elements": "^3.0.0", + "mdast-util-to-hast": "^13.0.0", + "property-information": "^7.0.0", + "space-separated-tokens": "^2.0.0", + "stringify-entities": "^4.0.0", + "zwitch": "^2.0.4" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-whitespace": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz", + "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hookable": { + "version": "5.5.3", + "resolved": "https://registry.npmjs.org/hookable/-/hookable-5.5.3.tgz", + "integrity": "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/html-void-elements": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-3.0.0.tgz", + "integrity": "sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", + "dev": true, + "license": "ISC", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/is-what": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/is-what/-/is-what-5.5.0.tgz", + "integrity": "sha512-oG7cgbmg5kLYae2N5IVd3jm2s+vldjxJzK1pcu9LfpGuQ93MQSzo0okvRna+7y5ifrD+20FE8FvjusyGaz14fw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/mesqueeb" + } + }, + "node_modules/js-yaml": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz", + "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/magic-string": { + "version": "0.30.21", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz", + "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.5" + } + }, + "node_modules/mark.js": { + "version": "8.11.1", + "resolved": "https://registry.npmjs.org/mark.js/-/mark.js-8.11.1.tgz", + "integrity": "sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/mdast-util-to-hast": { + "version": "13.2.1", + "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.1.tgz", + "integrity": "sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "@ungap/structured-clone": "^1.0.0", + "devlop": "^1.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "trim-lines": "^3.0.0", + "unist-util-position": "^5.0.0", + "unist-util-visit": "^5.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-encode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz", + "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-sanitize-uri": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz", + "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-encode": "^2.0.0", + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-types": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz", + "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/minimatch": { + "version": "5.1.9", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.9.tgz", + "integrity": "sha512-7o1wEA2RyMP7Iu7GNba9vc0RWWGACJOCZBJX2GJWip0ikV+wcOsgVuY9uE8CPiyQhkGFSlhuSkZPavN7u1c2Fw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/minisearch": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/minisearch/-/minisearch-7.2.0.tgz", + "integrity": "sha512-dqT2XBYUOZOiC5t2HRnwADjhNS2cecp9u+TJRiJ1Qp/f5qjkeT5APcGPjHw+bz89Ms8Jp+cG4AlE+QZ/QnDglg==", + "dev": true, + "license": "MIT" + }, + "node_modules/mitt": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz", + "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==", + "dev": true, + "license": "MIT" + }, + "node_modules/nanoid": { + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/oniguruma-to-es": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/oniguruma-to-es/-/oniguruma-to-es-3.1.1.tgz", + "integrity": "sha512-bUH8SDvPkH3ho3dvwJwfonjlQ4R80vjyvrU8YpxuROddv55vAEJrTuCuCVUhhsHbtlD9tGGbaNApGQckXhS8iQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex-xs": "^1.0.0", + "regex": "^6.0.1", + "regex-recursion": "^6.0.2" + } + }, + "node_modules/perfect-debounce": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/perfect-debounce/-/perfect-debounce-1.0.0.tgz", + "integrity": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==", + "dev": true, + "license": "MIT" + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true, + "license": "ISC" + }, + "node_modules/postcss": { + "version": "8.5.12", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.12.tgz", + "integrity": "sha512-W62t/Se6rA0Az3DfCL0AqJwXuKwBeYg6nOaIgzP+xZ7N5BFCI7DYi1qs6ygUYT6rvfi6t9k65UMLJC+PHZpDAA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/preact": { + "version": "10.29.1", + "resolved": "https://registry.npmjs.org/preact/-/preact-10.29.1.tgz", + "integrity": "sha512-gQCLc/vWroE8lIpleXtdJhTFDogTdZG9AjMUpVkDf2iTCNwYNWA+u16dL41TqUDJO4gm2IgrcMv3uTpjd4Pwmg==", + "dev": true, + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/preact" + } + }, + "node_modules/property-information": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/property-information/-/property-information-7.1.0.tgz", + "integrity": "sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/regex/-/regex-6.1.0.tgz", + "integrity": "sha512-6VwtthbV4o/7+OaAF9I5L5V3llLEsoPyq9P1JVXkedTP33c7MfCG0/5NOPcSJn0TzXcG9YUrR0gQSWioew3LDg==", + "dev": true, + "license": "MIT", + "dependencies": { + "regex-utilities": "^2.3.0" + } + }, + "node_modules/regex-recursion": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/regex-recursion/-/regex-recursion-6.0.2.tgz", + "integrity": "sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg==", + "dev": true, + "license": "MIT", + "dependencies": { + "regex-utilities": "^2.3.0" + } + }, + "node_modules/regex-utilities": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/regex-utilities/-/regex-utilities-2.3.0.tgz", + "integrity": "sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==", + "dev": true, + "license": "MIT" + }, + "node_modules/resolve-pkg-maps": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" + } + }, + "node_modules/rfdc": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz", + "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==", + "dev": true, + "license": "MIT" + }, + "node_modules/rollup": { + "version": "4.60.2", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.60.2.tgz", + "integrity": "sha512-J9qZyW++QK/09NyN/zeO0dG/1GdGfyp9lV8ajHnRVLfo/uFsbji5mHnDgn/qYdUHyCkM2N+8VyspgZclfAh0eQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.8" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.60.2", + "@rollup/rollup-android-arm64": "4.60.2", + "@rollup/rollup-darwin-arm64": "4.60.2", + "@rollup/rollup-darwin-x64": "4.60.2", + "@rollup/rollup-freebsd-arm64": "4.60.2", + "@rollup/rollup-freebsd-x64": "4.60.2", + "@rollup/rollup-linux-arm-gnueabihf": "4.60.2", + "@rollup/rollup-linux-arm-musleabihf": "4.60.2", + "@rollup/rollup-linux-arm64-gnu": "4.60.2", + "@rollup/rollup-linux-arm64-musl": "4.60.2", + "@rollup/rollup-linux-loong64-gnu": "4.60.2", + "@rollup/rollup-linux-loong64-musl": "4.60.2", + "@rollup/rollup-linux-ppc64-gnu": "4.60.2", + "@rollup/rollup-linux-ppc64-musl": "4.60.2", + "@rollup/rollup-linux-riscv64-gnu": "4.60.2", + "@rollup/rollup-linux-riscv64-musl": "4.60.2", + "@rollup/rollup-linux-s390x-gnu": "4.60.2", + "@rollup/rollup-linux-x64-gnu": "4.60.2", + "@rollup/rollup-linux-x64-musl": "4.60.2", + "@rollup/rollup-openbsd-x64": "4.60.2", + "@rollup/rollup-openharmony-arm64": "4.60.2", + "@rollup/rollup-win32-arm64-msvc": "4.60.2", + "@rollup/rollup-win32-ia32-msvc": "4.60.2", + "@rollup/rollup-win32-x64-gnu": "4.60.2", + "@rollup/rollup-win32-x64-msvc": "4.60.2", + "fsevents": "~2.3.2" + } + }, + "node_modules/search-insights": { + "version": "2.17.3", + "resolved": "https://registry.npmjs.org/search-insights/-/search-insights-2.17.3.tgz", + "integrity": "sha512-RQPdCYTa8A68uM2jwxoY842xDhvx3E5LFL1LxvxCNMev4o5mLuokczhzjAgGwUZBAmOKZknArSxLKmXtIi2AxQ==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/shiki": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/shiki/-/shiki-2.5.0.tgz", + "integrity": "sha512-mI//trrsaiCIPsja5CNfsyNOqgAZUb6VpJA+340toL42UpzQlXpwRV9nch69X6gaUxrr9kaOOa6e3y3uAkGFxQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/core": "2.5.0", + "@shikijs/engine-javascript": "2.5.0", + "@shikijs/engine-oniguruma": "2.5.0", + "@shikijs/langs": "2.5.0", + "@shikijs/themes": "2.5.0", + "@shikijs/types": "2.5.0", + "@shikijs/vscode-textmate": "^10.0.2", + "@types/hast": "^3.0.4" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/space-separated-tokens": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", + "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/speakingurl": { + "version": "14.0.1", + "resolved": "https://registry.npmjs.org/speakingurl/-/speakingurl-14.0.1.tgz", + "integrity": "sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stringify-entities": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz", + "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==", + "dev": true, + "license": "MIT", + "dependencies": { + "character-entities-html4": "^2.0.0", + "character-entities-legacy": "^3.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/superjson": { + "version": "2.2.6", + "resolved": "https://registry.npmjs.org/superjson/-/superjson-2.2.6.tgz", + "integrity": "sha512-H+ue8Zo4vJmV2nRjpx86P35lzwDT3nItnIsocgumgr0hHMQ+ZGq5vrERg9kJBo5AWGmxZDhzDo+WVIJqkB0cGA==", + "dev": true, + "license": "MIT", + "dependencies": { + "copy-anything": "^4" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/tabbable": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/tabbable/-/tabbable-6.4.0.tgz", + "integrity": "sha512-05PUHKSNE8ou2dwIxTngl4EzcnsCDZGJ/iCLtDflR/SHB/ny14rXc+qU5P4mG9JkusiV7EivzY9Mhm55AzAvCg==", + "dev": true, + "license": "MIT" + }, + "node_modules/trim-lines": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz", + "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/tsx": { + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/tsx/-/tsx-4.21.0.tgz", + "integrity": "sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "~0.27.0", + "get-tsconfig": "^4.7.5" + }, + "bin": { + "tsx": "dist/cli.mjs" + }, + "engines": { + "node": ">=18.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + } + }, + "node_modules/tsx/node_modules/@esbuild/aix-ppc64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.7.tgz", + "integrity": "sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/android-arm": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.7.tgz", + "integrity": "sha512-jbPXvB4Yj2yBV7HUfE2KHe4GJX51QplCN1pGbYjvsyCZbQmies29EoJbkEc+vYuU5o45AfQn37vZlyXy4YJ8RQ==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/android-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.7.tgz", + "integrity": "sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/android-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.7.tgz", + "integrity": "sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/darwin-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.7.tgz", + "integrity": "sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/darwin-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.7.tgz", + "integrity": "sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/freebsd-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.7.tgz", + "integrity": "sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/freebsd-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.7.tgz", + "integrity": "sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/linux-arm": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.7.tgz", + "integrity": "sha512-RkT/YXYBTSULo3+af8Ib0ykH8u2MBh57o7q/DAs3lTJlyVQkgQvlrPTnjIzzRPQyavxtPtfg0EopvDyIt0j1rA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/linux-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.7.tgz", + "integrity": "sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/linux-ia32": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.7.tgz", + "integrity": "sha512-GA48aKNkyQDbd3KtkplYWT102C5sn/EZTY4XROkxONgruHPU72l+gW+FfF8tf2cFjeHaRbWpOYa/uRBz/Xq1Pg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/linux-loong64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.7.tgz", + "integrity": "sha512-a4POruNM2oWsD4WKvBSEKGIiWQF8fZOAsycHOt6JBpZ+JN2n2JH9WAv56SOyu9X5IqAjqSIPTaJkqN8F7XOQ5Q==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/linux-mips64el": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.7.tgz", + "integrity": "sha512-KabT5I6StirGfIz0FMgl1I+R1H73Gp0ofL9A3nG3i/cYFJzKHhouBV5VWK1CSgKvVaG4q1RNpCTR2LuTVB3fIw==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/linux-ppc64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.7.tgz", + "integrity": "sha512-gRsL4x6wsGHGRqhtI+ifpN/vpOFTQtnbsupUF5R5YTAg+y/lKelYR1hXbnBdzDjGbMYjVJLJTd2OFmMewAgwlQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/linux-riscv64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.7.tgz", + "integrity": "sha512-hL25LbxO1QOngGzu2U5xeXtxXcW+/GvMN3ejANqXkxZ/opySAZMrc+9LY/WyjAan41unrR3YrmtTsUpwT66InQ==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/linux-s390x": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.7.tgz", + "integrity": "sha512-2k8go8Ycu1Kb46vEelhu1vqEP+UeRVj2zY1pSuPdgvbd5ykAw82Lrro28vXUrRmzEsUV0NzCf54yARIK8r0fdw==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/linux-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.7.tgz", + "integrity": "sha512-hzznmADPt+OmsYzw1EE33ccA+HPdIqiCRq7cQeL1Jlq2gb1+OyWBkMCrYGBJ+sxVzve2ZJEVeePbLM2iEIZSxA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/netbsd-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.7.tgz", + "integrity": "sha512-OfatkLojr6U+WN5EDYuoQhtM+1xco+/6FSzJJnuWiUw5eVcicbyK3dq5EeV/QHT1uy6GoDhGbFpprUiHUYggrw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/openbsd-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.7.tgz", + "integrity": "sha512-+A1NJmfM8WNDv5CLVQYJ5PshuRm/4cI6WMZRg1by1GwPIQPCTs1GLEUHwiiQGT5zDdyLiRM/l1G0Pv54gvtKIg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/sunos-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.7.tgz", + "integrity": "sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/win32-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.7.tgz", + "integrity": "sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/win32-ia32": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.7.tgz", + "integrity": "sha512-SmwKXe6VHIyZYbBLJrhOoCJRB/Z1tckzmgTLfFYOfpMAx63BJEaL9ExI8x7v0oAO3Zh6D/Oi1gVxEYr5oUCFhw==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/@esbuild/win32-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.7.tgz", + "integrity": "sha512-56hiAJPhwQ1R4i+21FVF7V8kSD5zZTdHcVuRFMW0hn753vVfQN8xlx4uOPT4xoGH0Z/oVATuR82AiqSTDIpaHg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/tsx/node_modules/esbuild": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.7.tgz", + "integrity": "sha512-IxpibTjyVnmrIQo5aqNpCgoACA/dTKLTlhMHihVHhdkxKyPO1uBBthumT0rdHmcsk9uMonIWS0m4FljWzILh3w==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.27.7", + "@esbuild/android-arm": "0.27.7", + "@esbuild/android-arm64": "0.27.7", + "@esbuild/android-x64": "0.27.7", + "@esbuild/darwin-arm64": "0.27.7", + "@esbuild/darwin-x64": "0.27.7", + "@esbuild/freebsd-arm64": "0.27.7", + "@esbuild/freebsd-x64": "0.27.7", + "@esbuild/linux-arm": "0.27.7", + "@esbuild/linux-arm64": "0.27.7", + "@esbuild/linux-ia32": "0.27.7", + "@esbuild/linux-loong64": "0.27.7", + "@esbuild/linux-mips64el": "0.27.7", + "@esbuild/linux-ppc64": "0.27.7", + "@esbuild/linux-riscv64": "0.27.7", + "@esbuild/linux-s390x": "0.27.7", + "@esbuild/linux-x64": "0.27.7", + "@esbuild/netbsd-arm64": "0.27.7", + "@esbuild/netbsd-x64": "0.27.7", + "@esbuild/openbsd-arm64": "0.27.7", + "@esbuild/openbsd-x64": "0.27.7", + "@esbuild/openharmony-arm64": "0.27.7", + "@esbuild/sunos-x64": "0.27.7", + "@esbuild/win32-arm64": "0.27.7", + "@esbuild/win32-ia32": "0.27.7", + "@esbuild/win32-x64": "0.27.7" + } + }, + "node_modules/typescript": { + "version": "5.9.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/unist-util-is": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.1.tgz", + "integrity": "sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-position": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz", + "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-stringify-position": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", + "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.1.0.tgz", + "integrity": "sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-is": "^6.0.0", + "unist-util-visit-parents": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit-parents": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.2.tgz", + "integrity": "sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-is": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unxhr": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/unxhr/-/unxhr-1.2.0.tgz", + "integrity": "sha512-6cGpm8NFXPD9QbSNx0cD2giy7teZ6xOkCUH3U89WKVkL9N9rBrWjlCwhR94Re18ZlAop4MOc3WU1M3Hv/bgpIw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.11" + } + }, + "node_modules/vfile": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz", + "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile-message": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.3.tgz", + "integrity": "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-stringify-position": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vite": { + "version": "5.4.21", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.21.tgz", + "integrity": "sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.21.3", + "postcss": "^8.4.43", + "rollup": "^4.20.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || >=20.0.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "sass-embedded": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/vitepress": { + "version": "1.6.4", + "resolved": "https://registry.npmjs.org/vitepress/-/vitepress-1.6.4.tgz", + "integrity": "sha512-+2ym1/+0VVrbhNyRoFFesVvBvHAVMZMK0rw60E3X/5349M1GuVdKeazuksqopEdvkKwKGs21Q729jX81/bkBJg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@docsearch/css": "3.8.2", + "@docsearch/js": "3.8.2", + "@iconify-json/simple-icons": "^1.2.21", + "@shikijs/core": "^2.1.0", + "@shikijs/transformers": "^2.1.0", + "@shikijs/types": "^2.1.0", + "@types/markdown-it": "^14.1.2", + "@vitejs/plugin-vue": "^5.2.1", + "@vue/devtools-api": "^7.7.0", + "@vue/shared": "^3.5.13", + "@vueuse/core": "^12.4.0", + "@vueuse/integrations": "^12.4.0", + "focus-trap": "^7.6.4", + "mark.js": "8.11.1", + "minisearch": "^7.1.1", + "shiki": "^2.1.0", + "vite": "^5.4.14", + "vue": "^3.5.13" + }, + "bin": { + "vitepress": "bin/vitepress.js" + }, + "peerDependencies": { + "markdown-it-mathjax3": "^4", + "postcss": "^8" + }, + "peerDependenciesMeta": { + "markdown-it-mathjax3": { + "optional": true + }, + "postcss": { + "optional": true + } + } + }, + "node_modules/vue": { + "version": "3.5.33", + "resolved": "https://registry.npmjs.org/vue/-/vue-3.5.33.tgz", + "integrity": "sha512-1AgChhx5w3ALgT4oK3acm2Es/7jyZhWSVUfs3rOBlGQC0rjEDkS7G4lWlJJGGNQD+BV3reCwbQrOe1mPNwKHBQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vue/compiler-dom": "3.5.33", + "@vue/compiler-sfc": "3.5.33", + "@vue/runtime-dom": "3.5.33", + "@vue/server-renderer": "3.5.33", + "@vue/shared": "3.5.33" + }, + "peerDependencies": { + "typescript": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/zwitch": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", + "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..ceb9b7f --- /dev/null +++ b/package.json @@ -0,0 +1,20 @@ +{ + "name": "unitsml.org", + "version": "1.0.0", + "description": "UnitsML - Authoritative mechanism for encoding scientific units of measure", + "type": "module", + "scripts": { + "dev": "vitepress dev", + "build": "vitepress build", + "preview": "vitepress preview", + "generate:unitsdb": "tsx scripts/generate-unitsdb.ts" + }, + "devDependencies": { + "@asciidoctor/core": "^3.0.4", + "js-yaml": "^4.1.1", + "tsx": "^4.21.0", + "typescript": "^5.7.3", + "vitepress": "^1.6.4", + "vue": "^3.5.13" + } +} diff --git a/parent-hub/assets/symbol.svg b/parent-hub/assets/symbol.svg deleted file mode 100644 index 6dc4160..0000000 --- a/parent-hub/assets/symbol.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/parent-hub/title.html b/parent-hub/title.html deleted file mode 100644 index af45d63..0000000 --- a/parent-hub/title.html +++ /dev/null @@ -1 +0,0 @@ -UnitsML group diff --git a/privacy.md b/privacy.md new file mode 100644 index 0000000..c31a785 --- /dev/null +++ b/privacy.md @@ -0,0 +1,3 @@ +# Privacy Policy + +To be provided. diff --git a/assets/android-chrome-192x192.png b/public/android-chrome-192x192.png similarity index 100% rename from assets/android-chrome-192x192.png rename to public/android-chrome-192x192.png diff --git a/assets/android-chrome-512x512.png b/public/android-chrome-512x512.png similarity index 100% rename from assets/android-chrome-512x512.png rename to public/android-chrome-512x512.png diff --git a/assets/apple-touch-icon.png b/public/apple-touch-icon.png similarity index 100% rename from assets/apple-touch-icon.png rename to public/apple-touch-icon.png diff --git a/assets/browserconfig.xml b/public/browserconfig.xml similarity index 100% rename from assets/browserconfig.xml rename to public/browserconfig.xml diff --git a/assets/favicon-16x16.png b/public/favicon-16x16.png similarity index 100% rename from assets/favicon-16x16.png rename to public/favicon-16x16.png diff --git a/assets/favicon-192x192.png b/public/favicon-192x192.png similarity index 100% rename from assets/favicon-192x192.png rename to public/favicon-192x192.png diff --git a/assets/favicon-32x32.png b/public/favicon-32x32.png similarity index 100% rename from assets/favicon-32x32.png rename to public/favicon-32x32.png diff --git a/assets/favicon.ico b/public/favicon.ico similarity index 100% rename from assets/favicon.ico rename to public/favicon.ico diff --git a/assets/favicon.png b/public/favicon.png similarity index 100% rename from assets/favicon.png rename to public/favicon.png diff --git a/public/favicon.svg b/public/favicon.svg new file mode 100644 index 0000000..62351fb --- /dev/null +++ b/public/favicon.svg @@ -0,0 +1 @@ +U diff --git a/assets/logo-text.svg b/public/logo-text.svg similarity index 100% rename from assets/logo-text.svg rename to public/logo-text.svg diff --git a/assets/mstile-150x150.png b/public/mstile-150x150.png similarity index 100% rename from assets/mstile-150x150.png rename to public/mstile-150x150.png diff --git a/assets/ref-docs/Improving_Interoperability_by_Incorporating_UnitsM.pdf b/public/ref-docs/Improving_Interoperability_by_Incorporating_UnitsM.pdf similarity index 100% rename from assets/ref-docs/Improving_Interoperability_by_Incorporating_UnitsM.pdf rename to public/ref-docs/Improving_Interoperability_by_Incorporating_UnitsM.pdf diff --git a/assets/ref-docs/UnitsML-Guide-v1.0-wd01.pdf b/public/ref-docs/UnitsML-Guide-v1.0-wd01.pdf similarity index 100% rename from assets/ref-docs/UnitsML-Guide-v1.0-wd01.pdf rename to public/ref-docs/UnitsML-Guide-v1.0-wd01.pdf diff --git a/assets/ref-docs/UnitsML-Santa-Fe-2003.ppt b/public/ref-docs/UnitsML-Santa-Fe-2003.ppt similarity index 100% rename from assets/ref-docs/UnitsML-Santa-Fe-2003.ppt rename to public/ref-docs/UnitsML-Santa-Fe-2003.ppt diff --git a/assets/ref-docs/UnitsML-v1.0-csd02.xsd.xml b/public/ref-docs/UnitsML-v1.0-csd02.xsd.xml similarity index 100% rename from assets/ref-docs/UnitsML-v1.0-csd02.xsd.xml rename to public/ref-docs/UnitsML-v1.0-csd02.xsd.xml diff --git a/assets/ref-docs/UnitsML_Guidelines_DraftVersion_0.4.doc b/public/ref-docs/UnitsML_Guidelines_DraftVersion_0.4.doc similarity index 100% rename from assets/ref-docs/UnitsML_Guidelines_DraftVersion_0.4.doc rename to public/ref-docs/UnitsML_Guidelines_DraftVersion_0.4.doc diff --git a/assets/robots.txt b/public/robots.txt similarity index 100% rename from assets/robots.txt rename to public/robots.txt diff --git a/assets/site.webmanifest b/public/site.webmanifest similarity index 100% rename from assets/site.webmanifest rename to public/site.webmanifest diff --git a/assets/symbol.svg b/public/symbol.svg similarity index 100% rename from assets/symbol.svg rename to public/symbol.svg diff --git a/public/unitsdb/context.jsonld b/public/unitsdb/context.jsonld new file mode 100644 index 0000000..1954741 --- /dev/null +++ b/public/unitsdb/context.jsonld @@ -0,0 +1,24 @@ +{ + "@context": { + "@vocab": "https://unitsml.org/ontology/", + "unit": "https://unitsml.org/ontology/unit/", + "quantity": "https://unitsml.org/ontology/quantity/", + "dimension": "https://unitsml.org/ontology/dimension/", + "prefix": "https://unitsml.org/ontology/prefix/", + "scale": "https://unitsml.org/ontology/scale/", + "unitSystem": "https://unitsml.org/ontology/unitSystem/", + "schema": "http://schema.org/", + "name": "schema:name", + "identifier": "schema:identifier", + "description": "schema:description", + "symbol": "https://unitsml.org/ontology/symbol", + "rootUnit": "https://unitsml.org/ontology/rootUnit", + "quantityReference": "https://unitsml.org/ontology/quantityReference", + "dimensionReference": "https://unitsml.org/ontology/dimensionReference", + "scaleReference": "https://unitsml.org/ontology/scaleReference", + "unitSystemReference": "https://unitsml.org/ontology/unitSystemReference", + "prefixReference": "https://unitsml.org/ontology/prefixReference", + "power": "https://unitsml.org/ontology/power", + "base": "https://unitsml.org/ontology/base" + } +} \ No newline at end of file diff --git a/public/unitsdb/dimension.jsonld b/public/unitsdb/dimension.jsonld new file mode 100644 index 0000000..01f6aca --- /dev/null +++ b/public/unitsdb/dimension.jsonld @@ -0,0 +1,2951 @@ +{ + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@graph": [ + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:length", + "@type": "Dimension", + "name": "length", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:length" + } + ], + "expression": "L", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:volume", + "@type": "Dimension", + "name": "volume", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd10" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:volume" + } + ], + "expression": "L3", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:traffic_intensity", + "@type": "Dimension", + "name": "traffic intensity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd100" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:traffic_intensity" + } + ], + "expression": "1", + "dimensionless": true + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:symbol_rate", + "@type": "Dimension", + "name": "symbol rate", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd101" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:symbol_rate" + } + ], + "expression": "T-1", + "dimensionalComposition": [ + { + "key": "time", + "symbol": "T", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:information_content", + "@type": "Dimension", + "name": "information content", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd102" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:information_content" + } + ], + "expression": "1", + "dimensionless": true + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:velocity", + "@type": "Dimension", + "name": "velocity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd11" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:velocity" + } + ], + "expression": "LΒ·T-1", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:force", + "@type": "Dimension", + "name": "force", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd12" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:force" + } + ], + "expression": "LΒ·MΒ·T-2", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:magnetic_flux_density", + "@type": "Dimension", + "name": "magnetic flux density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd13" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:magnetic_flux_density" + } + ], + "expression": "MΒ·T-2Β·I-1", + "dimensionalComposition": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:pressure", + "@type": "Dimension", + "name": "pressure", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd14" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:pressure" + } + ], + "expression": "L-1Β·MΒ·T-2", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:energy", + "@type": "Dimension", + "name": "energy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd15" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:energy" + } + ], + "expression": "L2Β·MΒ·T-2", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:power", + "@type": "Dimension", + "name": "power", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd16" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:power" + } + ], + "expression": "L2Β·MΒ·T-3", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:electric_charge", + "@type": "Dimension", + "name": "electric charge", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd17" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:electric_charge" + } + ], + "expression": "TΒ·I", + "dimensionalComposition": [ + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:electric_potential_difference", + "@type": "Dimension", + "name": "electric potential difference", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd18" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:electric_potential_difference" + } + ], + "expression": "L2Β·MΒ·T-3Β·I-1", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:capacitance", + "@type": "Dimension", + "name": "capacitance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd19" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:capacitance" + } + ], + "expression": "L-2Β·M-1Β·T4Β·I2", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 4 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:mass", + "@type": "Dimension", + "name": "mass", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd2" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:mass" + } + ], + "expression": "M", + "dimensionalComposition": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:electric_resistance", + "@type": "Dimension", + "name": "electric resistance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd20" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:electric_resistance" + } + ], + "expression": "L2Β·MΒ·T-3Β·I-2", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:electric_conductance", + "@type": "Dimension", + "name": "electric conductance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd21" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:electric_conductance" + } + ], + "expression": "L-2Β·M-1Β·T3Β·I2", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:magnetic_flux", + "@type": "Dimension", + "name": "magnetic flux", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd22" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:magnetic_flux" + } + ], + "expression": "L2Β·MΒ·T-2Β·I-1", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:inductance", + "@type": "Dimension", + "name": "inductance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd23" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:inductance" + } + ], + "expression": "L2Β·MΒ·T-2Β·I-2", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:frequency", + "@type": "Dimension", + "name": "frequency", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd24" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:frequency" + } + ], + "expression": "T-1", + "dimensionalComposition": [ + { + "key": "time", + "symbol": "T", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:absorbed_dose", + "@type": "Dimension", + "name": "absorbed dose", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd25" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:absorbed_dose" + } + ], + "expression": "L2Β·T-2", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:catalytic_activity", + "@type": "Dimension", + "name": "catalytic activity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd26" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:catalytic_activity" + } + ], + "expression": "T-1Β·N", + "dimensionalComposition": [ + { + "key": "time", + "symbol": "T", + "power": -1 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:illuminance", + "@type": "Dimension", + "name": "illuminance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd27" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:illuminance" + } + ], + "expression": "L-2Β·J", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "luminous_intensity", + "symbol": "J", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:acceleration", + "@type": "Dimension", + "name": "acceleration", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd28" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:acceleration" + } + ], + "expression": "LΒ·T-2", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:wavenumber", + "@type": "Dimension", + "name": "wavenumber", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd29" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:wavenumber" + } + ], + "expression": "L-1", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:time", + "@type": "Dimension", + "name": "time", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd3" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:time" + } + ], + "expression": "T", + "dimensionalComposition": [ + { + "key": "time", + "symbol": "T", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:mass_density", + "@type": "Dimension", + "name": "mass density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd30" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:mass_density" + } + ], + "expression": "L-3Β·M", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:specific_volume", + "@type": "Dimension", + "name": "specific volume", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd31" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:specific_volume" + } + ], + "expression": "L3Β·M-1", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 3 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:current_density", + "@type": "Dimension", + "name": "current density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd32" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:current_density" + } + ], + "expression": "L-2Β·I", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:magnetic_field_strength", + "@type": "Dimension", + "name": "magnetic field strength", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd33" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:magnetic_field_strength" + } + ], + "expression": "L-1Β·I", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:concentration", + "@type": "Dimension", + "name": "concentration", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd34" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:concentration" + } + ], + "expression": "L-3Β·N", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:angular_acceleration", + "@type": "Dimension", + "name": "angular acceleration", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd35" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:angular_acceleration" + } + ], + "expression": "T-2", + "dimensionalComposition": [ + { + "key": "time", + "symbol": "T", + "power": -2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:dynamic_viscosity", + "@type": "Dimension", + "name": "dynamic viscosity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd36" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:dynamic_viscosity" + } + ], + "expression": "L-1Β·MΒ·T-1", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:surface_tension", + "@type": "Dimension", + "name": "surface tension", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd37" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:surface_tension" + } + ], + "expression": "MΒ·T-2", + "dimensionalComposition": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:heat_flux_density", + "@type": "Dimension", + "name": "heat flux density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd38" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:heat_flux_density" + } + ], + "expression": "MΒ·T-3", + "dimensionalComposition": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:heat_capacity", + "@type": "Dimension", + "name": "heat capacity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd39" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:heat_capacity" + } + ], + "expression": "L2Β·MΒ·T-2Β·Theta-1", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:electric_current", + "@type": "Dimension", + "name": "electric current", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd4" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:electric_current" + } + ], + "expression": "I", + "dimensionalComposition": [ + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:specific_heat_capacity", + "@type": "Dimension", + "name": "specific heat capacity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd40" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:specific_heat_capacity" + } + ], + "expression": "L2Β·T-2Β·Theta-1", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:thermal_conductivity", + "@type": "Dimension", + "name": "thermal conductivity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd41" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:thermal_conductivity" + } + ], + "expression": "LΒ·MΒ·T-3Β·Theta-1", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:electric_field_strength", + "@type": "Dimension", + "name": "electric field strength", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd42" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:electric_field_strength" + } + ], + "expression": "LΒ·MΒ·T-3Β·I-1", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:electric_charge_density", + "@type": "Dimension", + "name": "electric charge density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd43" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:electric_charge_density" + } + ], + "expression": "L-3Β·TΒ·I", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:electric_flux_density", + "@type": "Dimension", + "name": "electric flux density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd44" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:electric_flux_density" + } + ], + "expression": "L-2Β·TΒ·I", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:permittivity", + "@type": "Dimension", + "name": "permittivity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd45" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:permittivity" + } + ], + "expression": "L-3Β·M-1Β·T4Β·I2", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 4 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:permeability", + "@type": "Dimension", + "name": "permeability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd46" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:permeability" + } + ], + "expression": "LΒ·MΒ·T-2Β·I-2", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:molar_energy", + "@type": "Dimension", + "name": "molar energy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd47" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:molar_energy" + } + ], + "expression": "L2Β·MΒ·T-2Β·N-1", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:molar_entropy", + "@type": "Dimension", + "name": "molar entropy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd48" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:molar_entropy" + } + ], + "expression": "L2Β·MΒ·T-2Β·Theta-1Β·N-1", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:exposure", + "@type": "Dimension", + "name": "exposure", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd49" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:exposure" + } + ], + "expression": "M-1Β·TΒ·I", + "dimensionalComposition": [ + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:temperature", + "@type": "Dimension", + "name": "temperature", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd5" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:temperature" + } + ], + "expression": "Theta", + "dimensionalComposition": [ + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:absorbed_dose_rate", + "@type": "Dimension", + "name": "absorbed dose rate", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd50" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:absorbed_dose_rate" + } + ], + "expression": "L2Β·T-3", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:surface_density", + "@type": "Dimension", + "name": "surface density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd51" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:surface_density" + } + ], + "expression": "L-2Β·M", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:fluidity", + "@type": "Dimension", + "name": "fluidity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd52" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:fluidity" + } + ], + "expression": "LΒ·M-1Β·T", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:surface_charge_density", + "@type": "Dimension", + "name": "surface charge density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd53" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:surface_charge_density" + } + ], + "expression": "M-2Β·TΒ·I", + "dimensionalComposition": [ + { + "key": "mass", + "symbol": "M", + "power": -2 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:magnetizability", + "@type": "Dimension", + "name": "magnetizability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd54" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:magnetizability" + } + ], + "expression": "L2Β·MΒ·T2Β·I2", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": 2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:catalytic_activity_concentration", + "@type": "Dimension", + "name": "catalytic activity concentration", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd55" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:catalytic_activity_concentration" + } + ], + "expression": "M-3Β·T-1Β·N", + "dimensionalComposition": [ + { + "key": "mass", + "symbol": "M", + "power": -3 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:kinematic_viscosity", + "@type": "Dimension", + "name": "kinematic viscosity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd56" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:kinematic_viscosity" + } + ], + "expression": "L2Β·T-1", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:area_moment_of_inertia", + "@type": "Dimension", + "name": "area moment of inertia", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd57" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:area_moment_of_inertia" + } + ], + "expression": "L4", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 4 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:linear_density", + "@type": "Dimension", + "name": "linear density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd58" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:linear_density" + } + ], + "expression": "L-1Β·M", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:mass_moment_of_inertia", + "@type": "Dimension", + "name": "mass moment of inertia", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd59" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:mass_moment_of_inertia" + } + ], + "expression": "L2Β·M", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:substance_amount", + "@type": "Dimension", + "name": "substance amount", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd6" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:substance_amount" + } + ], + "expression": "N", + "dimensionalComposition": [ + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:action", + "@type": "Dimension", + "name": "action", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd60" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:action" + } + ], + "expression": "L2Β·MΒ·T-1", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:momentum", + "@type": "Dimension", + "name": "momentum", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd61" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:momentum" + } + ], + "expression": "LΒ·MΒ·T-1", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:gravitational_constant", + "@type": "Dimension", + "name": "gravitational constant", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd62" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:gravitational_constant" + } + ], + "expression": "L3Β·M-1Β·T-2", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 3 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:compressibility", + "@type": "Dimension", + "name": "compressibility", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd63" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:compressibility" + } + ], + "expression": "LΒ·M-1Β·T2", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:solid_angle", + "@type": "Dimension", + "name": "solid angle", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd64" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:solid_angle" + } + ], + "expression": "1", + "dimensionalComposition": [ + { + "key": "plane_angle", + "symbol": "phi", + "power": 1 + } + ], + "dimensionless": true + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:mass_flow_rate", + "@type": "Dimension", + "name": "mass flow rate", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd65" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:mass_flow_rate" + } + ], + "expression": "MΒ·T-1", + "dimensionalComposition": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:volume_flow_rate", + "@type": "Dimension", + "name": "volume flow rate", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd66" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:volume_flow_rate" + } + ], + "expression": "L3Β·T-1", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 3 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:logarithmic_ratio", + "@type": "Dimension", + "name": "logarithmic ratio", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd67" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:logarithmic_ratio" + } + ], + "expression": "1", + "dimensionless": true + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:linear_expansion_coefficient", + "@type": "Dimension", + "name": "linear expansion coefficient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd68" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:linear_expansion_coefficient" + } + ], + "expression": "Theta-1", + "dimensionalComposition": [ + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:pressure_coefficient", + "@type": "Dimension", + "name": "pressure coefficient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd69" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:pressure_coefficient" + } + ], + "expression": "L-1Β·MΒ·T-2Β·Theta-1", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:luminous_intensity", + "@type": "Dimension", + "name": "luminous intensity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd7" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:luminous_intensity" + } + ], + "expression": "J", + "dimensionalComposition": [ + { + "key": "luminous_intensity", + "symbol": "J", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:isothermal_compressibility", + "@type": "Dimension", + "name": "isothermal compressibility", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd70" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:isothermal_compressibility" + } + ], + "expression": "LΒ·M-1Β·T2", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:heat_transfer_coefficient", + "@type": "Dimension", + "name": "heat transfer coefficient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd71" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:heat_transfer_coefficient" + } + ], + "expression": "MΒ·T-3Β·Theta-1", + "dimensionalComposition": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:electric_dipole_moment", + "@type": "Dimension", + "name": "electric dipole moment", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd72" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:electric_dipole_moment" + } + ], + "expression": "LΒ·TΒ·I", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:magnetic_dipole_moment", + "@type": "Dimension", + "name": "magnetic dipole moment", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd73" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:magnetic_dipole_moment" + } + ], + "expression": "L2Β·I", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:electric_field_gradient", + "@type": "Dimension", + "name": "electric field gradient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd74" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:electric_field_gradient" + } + ], + "expression": "MΒ·T-3Β·I-1", + "dimensionalComposition": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:electric_quadrupole_moment", + "@type": "Dimension", + "name": "electric quadrupole moment", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd75" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:electric_quadrupole_moment" + } + ], + "expression": "L2Β·TΒ·I", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:polarizability", + "@type": "Dimension", + "name": "polarizability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd76" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:polarizability" + } + ], + "expression": "MΒ·T4Β·I2", + "dimensionalComposition": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": 4 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:hyperpolarizability_1st", + "@type": "Dimension", + "name": "hyperpolarizability 1st", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd77" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:hyperpolarizability_1st" + } + ], + "expression": "L-1Β·M-2Β·T7Β·I3", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": -2 + }, + { + "key": "time", + "symbol": "T", + "power": 7 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 3 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:hyperpolarizability_2nd", + "@type": "Dimension", + "name": "hyperpolarizability 2nd", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd78" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:hyperpolarizability_2nd" + } + ], + "expression": "L-2Β·M-3Β·T10Β·I4", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": -3 + }, + { + "key": "time", + "symbol": "T", + "power": 10 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 4 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:molality", + "@type": "Dimension", + "name": "molality", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd79" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:molality" + } + ], + "expression": "MΒ·N", + "dimensionalComposition": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:area", + "@type": "Dimension", + "name": "area", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd8" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:area" + } + ], + "expression": "L2", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:ratio_quantity", + "@type": "Dimension", + "name": "ratio quantity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd80" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:ratio_quantity" + } + ], + "expression": "1", + "dimensionless": true + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:level_of_field_quantity", + "@type": "Dimension", + "name": "level of field quantity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd83" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:level_of_field_quantity" + } + ], + "expression": "1", + "dimensionless": true + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:field_power_level", + "@type": "Dimension", + "name": "field power level", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd84" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:field_power_level" + } + ], + "expression": "1", + "dimensionless": true + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:mass_mole_fraction", + "@type": "Dimension", + "name": "mass mole fraction", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd85" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:mass_mole_fraction" + } + ], + "expression": "1", + "dimensionless": true + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:plane_angle", + "@type": "Dimension", + "name": "plane angle", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd9" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:plane_angle" + } + ], + "expression": "1", + "dimensionalComposition": [ + { + "key": "plane_angle", + "symbol": "phi", + "power": 1 + } + ], + "dimensionless": true + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:acidity_index", + "@type": "Dimension", + "name": "acidity index", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd94" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:acidity_index" + } + ], + "expression": "1", + "dimensionless": true + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:storage_capacity", + "@type": "Dimension", + "name": "storage capacity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd95" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:storage_capacity" + } + ], + "expression": "1", + "dimensionless": true + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:fluence", + "@type": "Dimension", + "name": "fluence", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd96" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:fluence" + } + ], + "expression": "L-2", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:fluence_rate", + "@type": "Dimension", + "name": "fluence_rate", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd97" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:fluence_rate" + } + ], + "expression": "L-2Β·T-1", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:phase", + "@type": "Dimension", + "name": "phase", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd98" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:phase" + } + ], + "expression": "1", + "dimensionalComposition": [ + { + "key": "plane_angle", + "symbol": "phi", + "power": 1 + } + ], + "dimensionless": true + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:fuel_efficiency", + "@type": "Dimension", + "name": "fuel efficiency", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd99" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:fuel_efficiency" + } + ], + "expression": "L-2", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -2 + } + ] + } + ] +} \ No newline at end of file diff --git a/public/unitsdb/dimensions.json b/public/unitsdb/dimensions.json new file mode 100644 index 0000000..1060388 --- /dev/null +++ b/public/unitsdb/dimensions.json @@ -0,0 +1,4913 @@ +[ + { + "id": "NISTd1", + "unitsml_id": "d:length", + "name": "length", + "names": [ + { + "value": "length", + "lang": "en" + } + ], + "expression": "L", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq1", + "name": "length" + }, + { + "id": "NISTq100", + "name": "diameter" + }, + { + "id": "NISTq101", + "name": "length of path" + }, + { + "id": "NISTq102", + "name": "cartesian coordinates" + }, + { + "id": "NISTq103", + "name": "position vector" + }, + { + "id": "NISTq104", + "name": "displacement" + }, + { + "id": "NISTq105", + "name": "radius of curvature" + }, + { + "id": "NISTq114", + "name": "wavelength" + }, + { + "id": "NISTq48", + "name": "distance" + }, + { + "id": "NISTq95", + "name": "breadth" + }, + { + "id": "NISTq96", + "name": "height" + }, + { + "id": "NISTq97", + "name": "thickness" + }, + { + "id": "NISTq98", + "name": "radius" + }, + { + "id": "NISTq99", + "name": "radial distance" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd1" + }, + { + "type": "unitsml", + "id": "d:length" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd10", + "unitsml_id": "d:volume", + "name": "volume", + "names": [ + { + "value": "volume", + "lang": "en" + } + ], + "expression": "L3", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "quantities": [ + { + "id": "NISTq10", + "name": "volume" + }, + { + "id": "NISTq146", + "name": "section modulus" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd10" + }, + { + "type": "unitsml", + "id": "d:volume" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd100", + "unitsml_id": "d:traffic_intensity", + "name": "traffic intensity", + "names": [ + { + "value": "traffic intensity", + "lang": "en" + } + ], + "expression": "1", + "dimensionless": true, + "components": [], + "quantities": [ + { + "id": "NISTq201", + "name": "traffic intensity" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd100" + }, + { + "type": "unitsml", + "id": "d:traffic_intensity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd101", + "unitsml_id": "d:symbol_rate", + "name": "symbol rate", + "names": [ + { + "value": "symbol rate", + "lang": "en" + } + ], + "expression": "T-1", + "dimensionless": false, + "components": [ + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq202", + "name": "symbol rate" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd101" + }, + { + "type": "unitsml", + "id": "d:symbol_rate" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L-0dot5I0M0dot5H0T-1D0" + } + ] + }, + { + "id": "NISTd102", + "unitsml_id": "d:information_content", + "name": "information content", + "names": [ + { + "value": "information content", + "lang": "en" + } + ], + "expression": "1", + "dimensionless": true, + "components": [], + "quantities": [ + { + "id": "NISTq203", + "name": "information content" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd102" + }, + { + "type": "unitsml", + "id": "d:information_content" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd11", + "unitsml_id": "d:velocity", + "name": "velocity", + "names": [ + { + "value": "velocity", + "lang": "en" + } + ], + "expression": "LΒ·T-1", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq107", + "name": "speed of propagation of waves" + }, + { + "id": "NISTq116", + "name": "phase velocity" + }, + { + "id": "NISTq117", + "name": "group velocity" + }, + { + "id": "NISTq12", + "name": "velocity" + }, + { + "id": "NISTq57", + "name": "angular velocity" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd11" + }, + { + "type": "unitsml", + "id": "d:velocity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0" + } + ] + }, + { + "id": "NISTd12", + "unitsml_id": "d:force", + "name": "force", + "names": [ + { + "value": "force", + "lang": "en" + } + ], + "expression": "LΒ·MΒ·T-2", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "quantities": [ + { + "id": "NISTq128", + "name": "weight" + }, + { + "id": "NISTq13", + "name": "force" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd12" + }, + { + "type": "unitsml", + "id": "d:force" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0" + } + ] + }, + { + "id": "NISTd13", + "unitsml_id": "d:magnetic_flux_density", + "name": "magnetic flux density", + "names": [ + { + "value": "magnetic flux density", + "lang": "en" + } + ], + "expression": "MΒ·T-2Β·I-1", + "dimensionless": false, + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq14", + "name": "magnetic flux density" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd13" + }, + { + "type": "unitsml", + "id": "d:magnetic_flux_density" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E-1L0I0M1H0T-2D0" + } + ] + }, + { + "id": "NISTd14", + "unitsml_id": "d:pressure", + "name": "pressure", + "names": [ + { + "value": "pressure", + "lang": "en" + } + ], + "expression": "L-1Β·MΒ·T-2", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "quantities": [ + { + "id": "NISTq134", + "name": "normal stress" + }, + { + "id": "NISTq135", + "name": "shear stress" + }, + { + "id": "NISTq141", + "name": "modulus of elasticity" + }, + { + "id": "NISTq142", + "name": "modulus of rigidity" + }, + { + "id": "NISTq143", + "name": "modulus of compression" + }, + { + "id": "NISTq15", + "name": "pressure" + }, + { + "id": "NISTq16", + "name": "stress" + }, + { + "id": "NISTq67", + "name": "energy density" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd14" + }, + { + "type": "unitsml", + "id": "d:pressure" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0" + } + ] + }, + { + "id": "NISTd15", + "unitsml_id": "d:energy", + "name": "energy", + "names": [ + { + "value": "energy", + "lang": "en" + } + ], + "expression": "L2Β·MΒ·T-2", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "quantities": [ + { + "id": "NISTq152", + "name": "Lagrange function" + }, + { + "id": "NISTq153", + "name": "Hamilton function" + }, + { + "id": "NISTq17", + "name": "energy" + }, + { + "id": "NISTq18", + "name": "work" + }, + { + "id": "NISTq182", + "name": "kinetic energy" + }, + { + "id": "NISTq183", + "name": "mechanical energy" + }, + { + "id": "NISTq184", + "name": "torque" + }, + { + "id": "NISTq185", + "name": "bending moment of force" + }, + { + "id": "NISTq19", + "name": "amount of heat" + }, + { + "id": "NISTq60", + "name": "moment of force" + }, + { + "id": "NISTq77", + "name": "potential energy" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd15" + }, + { + "type": "unitsml", + "id": "d:energy" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0" + } + ] + }, + { + "id": "NISTd16", + "unitsml_id": "d:power", + "name": "power", + "names": [ + { + "value": "power", + "lang": "en" + } + ], + "expression": "L2Β·MΒ·T-3", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "quantities": [ + { + "id": "NISTq187", + "name": "apparent power" + }, + { + "id": "NISTq20", + "name": "power" + }, + { + "id": "NISTq21", + "name": "radiant flux" + }, + { + "id": "NISTq88", + "name": "radiant intensity" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd16" + }, + { + "type": "unitsml", + "id": "d:power" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D-1" + } + ] + }, + { + "id": "NISTd17", + "unitsml_id": "d:electric_charge", + "name": "electric charge", + "names": [ + { + "value": "electric charge", + "lang": "en" + } + ], + "expression": "TΒ·I", + "dimensionless": false, + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq22", + "name": "electric charge" + }, + { + "id": "NISTq23", + "name": "amount of electricity" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd17" + }, + { + "type": "unitsml", + "id": "d:electric_charge" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T1D0" + } + ] + }, + { + "id": "NISTd18", + "unitsml_id": "d:electric_potential_difference", + "name": "electric potential difference", + "names": [ + { + "value": "electric potential difference", + "lang": "en" + } + ], + "expression": "L2Β·MΒ·T-3Β·I-1", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq166", + "name": "electric potential" + }, + { + "id": "NISTq24", + "name": "electric potential difference" + }, + { + "id": "NISTq25", + "name": "potential difference" + }, + { + "id": "NISTq26", + "name": "electromotive force" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd18" + }, + { + "type": "unitsml", + "id": "d:electric_potential_difference" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H0T-3D0" + } + ] + }, + { + "id": "NISTd19", + "unitsml_id": "d:capacitance", + "name": "capacitance", + "names": [ + { + "value": "capacitance", + "lang": "en" + } + ], + "expression": "L-2Β·M-1Β·T4Β·I2", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 4 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "quantities": [ + { + "id": "NISTq169", + "name": "electric capacitance" + }, + { + "id": "NISTq27", + "name": "capacitance" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd19" + }, + { + "type": "unitsml", + "id": "d:capacitance" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E2L-2I0M-1H0T4D0" + } + ] + }, + { + "id": "NISTd2", + "unitsml_id": "d:mass", + "name": "mass", + "names": [ + { + "value": "mass", + "lang": "en" + } + ], + "expression": "M", + "dimensionless": false, + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq2", + "name": "mass" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd2" + }, + { + "type": "unitsml", + "id": "d:mass" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0" + } + ] + }, + { + "id": "NISTd20", + "unitsml_id": "d:electric_resistance", + "name": "electric resistance", + "names": [ + { + "value": "electric resistance", + "lang": "en" + } + ], + "expression": "L2Β·MΒ·T-3Β·I-2", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -2 + } + ], + "quantities": [ + { + "id": "NISTq28", + "name": "electric resistance" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd20" + }, + { + "type": "unitsml", + "id": "d:electric_resistance" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H0T-3D0" + } + ] + }, + { + "id": "NISTd21", + "unitsml_id": "d:electric_conductance", + "name": "electric conductance", + "names": [ + { + "value": "electric conductance", + "lang": "en" + } + ], + "expression": "L-2Β·M-1Β·T3Β·I2", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "quantities": [ + { + "id": "NISTq29", + "name": "electric conductance" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd21" + }, + { + "type": "unitsml", + "id": "d:electric_conductance" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E2L-2I0M-1H0T3D0" + } + ] + }, + { + "id": "NISTd22", + "unitsml_id": "d:magnetic_flux", + "name": "magnetic flux", + "names": [ + { + "value": "magnetic flux", + "lang": "en" + } + ], + "expression": "L2Β·MΒ·T-2Β·I-1", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq30", + "name": "magnetic flux" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd22" + }, + { + "type": "unitsml", + "id": "d:magnetic_flux" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H0T-2D0" + } + ] + }, + { + "id": "NISTd23", + "unitsml_id": "d:inductance", + "name": "inductance", + "names": [ + { + "value": "inductance", + "lang": "en" + } + ], + "expression": "L2Β·MΒ·T-2Β·I-2", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -2 + } + ], + "quantities": [ + { + "id": "NISTq171", + "name": "electric inductance" + }, + { + "id": "NISTq32", + "name": "inductance" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd23" + }, + { + "type": "unitsml", + "id": "d:inductance" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H0T-2D0" + } + ] + }, + { + "id": "NISTd24", + "unitsml_id": "d:frequency", + "name": "frequency", + "names": [ + { + "value": "frequency", + "lang": "en" + } + ], + "expression": "T-1", + "dimensionless": false, + "components": [ + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq112", + "name": "rotational frequency" + }, + { + "id": "NISTq113", + "name": "angular frequency" + }, + { + "id": "NISTq120", + "name": "damping coefficient" + }, + { + "id": "NISTq189", + "name": "emission rate" + }, + { + "id": "NISTq35", + "name": "activity referred to a radionuclide" + }, + { + "id": "NISTq45", + "name": "frequency" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd24" + }, + { + "type": "unitsml", + "id": "d:frequency" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L-0dot5I0M0dot5H0T-1D0" + } + ] + }, + { + "id": "NISTd25", + "unitsml_id": "d:absorbed_dose", + "name": "absorbed dose", + "names": [ + { + "value": "absorbed dose", + "lang": "en" + } + ], + "expression": "L2Β·T-2", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "quantities": [ + { + "id": "NISTq36", + "name": "absorbed dose" + }, + { + "id": "NISTq37", + "name": "specific energy imparted" + }, + { + "id": "NISTq38", + "name": "kerma" + }, + { + "id": "NISTq39", + "name": "dose equivalent" + }, + { + "id": "NISTq40", + "name": "ambient dose equivalent" + }, + { + "id": "NISTq41", + "name": "directional dose equivalent" + }, + { + "id": "NISTq42", + "name": "personal dose equivalent" + }, + { + "id": "NISTq43", + "name": "organ dose equivalent" + }, + { + "id": "NISTq65", + "name": "specific energy" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd25" + }, + { + "type": "unitsml", + "id": "d:absorbed_dose" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-2D0" + } + ] + }, + { + "id": "NISTd26", + "unitsml_id": "d:catalytic_activity", + "name": "catalytic activity", + "names": [ + { + "value": "catalytic activity", + "lang": "en" + } + ], + "expression": "T-1Β·N", + "dimensionless": false, + "components": [ + { + "key": "time", + "symbol": "T", + "power": -1 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq44", + "name": "catalytic activity" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd26" + }, + { + "type": "unitsml", + "id": "d:catalytic_activity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T-1D0" + } + ] + }, + { + "id": "NISTd27", + "unitsml_id": "d:illuminance", + "name": "illuminance", + "names": [ + { + "value": "illuminance", + "lang": "en" + } + ], + "expression": "L-2Β·J", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "luminous_intensity", + "symbol": "J", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq47", + "name": "illuminance" + }, + { + "id": "NISTq56", + "name": "luminance" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd27" + }, + { + "type": "unitsml", + "id": "d:illuminance" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L-2I1M0H0T0D0" + } + ] + }, + { + "id": "NISTd28", + "unitsml_id": "d:acceleration", + "name": "acceleration", + "names": [ + { + "value": "acceleration", + "lang": "en" + } + ], + "expression": "LΒ·T-2", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "quantities": [ + { + "id": "NISTq108", + "name": "acceleration of free fall" + }, + { + "id": "NISTq49", + "name": "acceleration" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd28" + }, + { + "type": "unitsml", + "id": "d:acceleration" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-2D0" + } + ] + }, + { + "id": "NISTd29", + "unitsml_id": "d:wavenumber", + "name": "wavenumber", + "names": [ + { + "value": "wavenumber", + "lang": "en" + } + ], + "expression": "L-1", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq106", + "name": "curvature" + }, + { + "id": "NISTq115", + "name": "angular wavenumber" + }, + { + "id": "NISTq122", + "name": "attenuation coefficient" + }, + { + "id": "NISTq123", + "name": "phase coefficient" + }, + { + "id": "NISTq124", + "name": "propagation coefficient" + }, + { + "id": "NISTq50", + "name": "wavenumber" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd29" + }, + { + "type": "unitsml", + "id": "d:wavenumber" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd3", + "unitsml_id": "d:time", + "name": "time", + "names": [ + { + "value": "time", + "lang": "en" + } + ], + "expression": "T", + "dimensionless": false, + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq109", + "name": "period duration" + }, + { + "id": "NISTq110", + "name": "time constant" + }, + { + "id": "NISTq3", + "name": "time" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd3" + }, + { + "type": "unitsml", + "id": "d:time" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0" + } + ] + }, + { + "id": "NISTd30", + "unitsml_id": "d:mass_density", + "name": "mass density", + "names": [ + { + "value": "mass density", + "lang": "en" + } + ], + "expression": "L-3Β·M", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq33", + "name": "mass concentration" + }, + { + "id": "NISTq51", + "name": "density" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd30" + }, + { + "type": "unitsml", + "id": "d:mass_density" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H0T0D0" + } + ] + }, + { + "id": "NISTd31", + "unitsml_id": "d:specific_volume", + "name": "specific volume", + "names": [ + { + "value": "specific volume", + "lang": "en" + } + ], + "expression": "L3Β·M-1", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq52", + "name": "specific volume" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd31" + }, + { + "type": "unitsml", + "id": "d:specific_volume" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L3I0M-1H0T0D0" + } + ] + }, + { + "id": "NISTd32", + "unitsml_id": "d:current_density", + "name": "current density", + "names": [ + { + "value": "current density", + "lang": "en" + } + ], + "expression": "L-2Β·I", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq53", + "name": "current density" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd32" + }, + { + "type": "unitsml", + "id": "d:current_density" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E1L-2I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd33", + "unitsml_id": "d:magnetic_field_strength", + "name": "magnetic field strength", + "names": [ + { + "value": "magnetic field strength", + "lang": "en" + } + ], + "expression": "L-1Β·I", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq54", + "name": "magnetic field strength" + }, + { + "id": "NISTq87", + "name": "magnetic field" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd33" + }, + { + "type": "unitsml", + "id": "d:magnetic_field_strength" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E1L-1I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd34", + "unitsml_id": "d:concentration", + "name": "concentration", + "names": [ + { + "value": "concentration", + "lang": "en" + } + ], + "expression": "L-3Β·N", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq55", + "name": "amount of substance concentration" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd34" + }, + { + "type": "unitsml", + "id": "d:concentration" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd35", + "unitsml_id": "d:angular_acceleration", + "name": "angular acceleration", + "names": [ + { + "value": "angular acceleration", + "lang": "en" + } + ], + "expression": "T-2", + "dimensionless": false, + "components": [ + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "quantities": [ + { + "id": "NISTq58", + "name": "angular acceleration" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd35" + }, + { + "type": "unitsml", + "id": "d:angular_acceleration" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L-0dot5I0M0dot5H0T-2D0" + } + ] + }, + { + "id": "NISTd36", + "unitsml_id": "d:dynamic_viscosity", + "name": "dynamic viscosity", + "names": [ + { + "value": "dynamic viscosity", + "lang": "en" + } + ], + "expression": "L-1Β·MΒ·T-1", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq59", + "name": "dynamic viscosity" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd36" + }, + { + "type": "unitsml", + "id": "d:dynamic_viscosity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-1D0" + } + ] + }, + { + "id": "NISTd37", + "unitsml_id": "d:surface_tension", + "name": "surface tension", + "names": [ + { + "value": "surface tension", + "lang": "en" + } + ], + "expression": "MΒ·T-2", + "dimensionless": false, + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "quantities": [ + { + "id": "NISTq61", + "name": "surface tension" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd37" + }, + { + "type": "unitsml", + "id": "d:surface_tension" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L-0dot5I0M1H0T-2D0" + } + ] + }, + { + "id": "NISTd38", + "unitsml_id": "d:heat_flux_density", + "name": "heat flux density", + "names": [ + { + "value": "heat flux density", + "lang": "en" + } + ], + "expression": "MΒ·T-3", + "dimensionless": false, + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "quantities": [ + { + "id": "NISTq62", + "name": "heat flux density" + }, + { + "id": "NISTq78", + "name": "irradiance" + }, + { + "id": "NISTq89", + "name": "radiance" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd38" + }, + { + "type": "unitsml", + "id": "d:heat_flux_density" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-3D0" + } + ] + }, + { + "id": "NISTd39", + "unitsml_id": "d:heat_capacity", + "name": "heat capacity", + "names": [ + { + "value": "heat capacity", + "lang": "en" + } + ], + "expression": "L2Β·MΒ·T-2Β·Theta-1", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq63", + "name": "heat capacity" + }, + { + "id": "NISTq79", + "name": "entropy" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd39" + }, + { + "type": "unitsml", + "id": "d:heat_capacity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H-1T-2D0" + } + ] + }, + { + "id": "NISTd4", + "unitsml_id": "d:electric_current", + "name": "electric current", + "names": [ + { + "value": "electric current", + "lang": "en" + } + ], + "expression": "I", + "dimensionless": false, + "components": [ + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq161", + "name": "magnetomotive force (Cardelli) (-SP811)" + }, + { + "id": "NISTq170", + "name": "electric current intensity" + }, + { + "id": "NISTq4", + "name": "electric current" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd4" + }, + { + "type": "unitsml", + "id": "d:electric_current" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T0D-1" + } + ] + }, + { + "id": "NISTd40", + "unitsml_id": "d:specific_heat_capacity", + "name": "specific heat capacity", + "names": [ + { + "value": "specific heat capacity", + "lang": "en" + } + ], + "expression": "L2Β·T-2Β·Theta-1", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq64", + "name": "specific heat capacity" + }, + { + "id": "NISTq80", + "name": "specific entropy" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd40" + }, + { + "type": "unitsml", + "id": "d:specific_heat_capacity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H-1T-2D0" + } + ] + }, + { + "id": "NISTd41", + "unitsml_id": "d:thermal_conductivity", + "name": "thermal conductivity", + "names": [ + { + "value": "thermal conductivity", + "lang": "en" + } + ], + "expression": "LΒ·MΒ·T-3Β·Theta-1", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq66", + "name": "thermal conductivity" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd41" + }, + { + "type": "unitsml", + "id": "d:thermal_conductivity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H-1T-3D0" + } + ] + }, + { + "id": "NISTd42", + "unitsml_id": "d:electric_field_strength", + "name": "electric field strength", + "names": [ + { + "value": "electric field strength", + "lang": "en" + } + ], + "expression": "LΒ·MΒ·T-3Β·I-1", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq68", + "name": "electric field strength" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd42" + }, + { + "type": "unitsml", + "id": "d:electric_field_strength" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E-1L1I0M1H0T-3D0" + } + ] + }, + { + "id": "NISTd43", + "unitsml_id": "d:electric_charge_density", + "name": "electric charge density", + "names": [ + { + "value": "electric charge density", + "lang": "en" + } + ], + "expression": "L-3Β·TΒ·I", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq69", + "name": "electric charge density" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd43" + }, + { + "type": "unitsml", + "id": "d:electric_charge_density" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E1L-3I0M0H0T1D0" + } + ] + }, + { + "id": "NISTd44", + "unitsml_id": "d:electric_flux_density", + "name": "electric flux density", + "names": [ + { + "value": "electric flux density", + "lang": "en" + } + ], + "expression": "L-2Β·TΒ·I", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq70", + "name": "electric flux density" + }, + { + "id": "NISTq82", + "name": "electric displacement" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd44" + }, + { + "type": "unitsml", + "id": "d:electric_flux_density" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E1L-2I0M0H0T1D0" + } + ] + }, + { + "id": "NISTd45", + "unitsml_id": "d:permittivity", + "name": "permittivity", + "names": [ + { + "value": "permittivity", + "lang": "en" + } + ], + "expression": "L-3Β·M-1Β·T4Β·I2", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 4 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "quantities": [ + { + "id": "NISTq71", + "name": "permittivity" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd45" + }, + { + "type": "unitsml", + "id": "d:permittivity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E2L-3I0M-1H0T4D0" + } + ] + }, + { + "id": "NISTd46", + "unitsml_id": "d:permeability", + "name": "permeability", + "names": [ + { + "value": "permeability", + "lang": "en" + } + ], + "expression": "LΒ·MΒ·T-2Β·I-2", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -2 + } + ], + "quantities": [ + { + "id": "NISTq72", + "name": "permeability" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd46" + }, + { + "type": "unitsml", + "id": "d:permeability" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E-2L1I0M1H0T-2D0" + } + ] + }, + { + "id": "NISTd47", + "unitsml_id": "d:molar_energy", + "name": "molar energy", + "names": [ + { + "value": "molar energy", + "lang": "en" + } + ], + "expression": "L2Β·MΒ·T-2Β·N-1", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq73", + "name": "molar energy" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd47" + }, + { + "type": "unitsml", + "id": "d:molar_energy" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A-1E0L2I0M1H0T-2D0" + } + ] + }, + { + "id": "NISTd48", + "unitsml_id": "d:molar_entropy", + "name": "molar entropy", + "names": [ + { + "value": "molar entropy", + "lang": "en" + } + ], + "expression": "L2Β·MΒ·T-2Β·Theta-1Β·N-1", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq74", + "name": "molar entropy" + }, + { + "id": "NISTq83", + "name": "molar heat capacity" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd48" + }, + { + "type": "unitsml", + "id": "d:molar_entropy" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A-1E0L2I0M1H-1T-2D0" + } + ] + }, + { + "id": "NISTd49", + "unitsml_id": "d:exposure", + "name": "exposure", + "names": [ + { + "value": "exposure", + "lang": "en" + } + ], + "expression": "M-1Β·TΒ·I", + "dimensionless": false, + "components": [ + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq197", + "name": "exposure" + }, + { + "id": "NISTq75", + "name": "exposure (x and gamma rays)" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd49" + }, + { + "type": "unitsml", + "id": "d:exposure" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E1L0I0M-1H0T1D0" + } + ] + }, + { + "id": "NISTd5", + "unitsml_id": "d:temperature", + "name": "temperature", + "names": [ + { + "value": "temperature", + "lang": "en" + } + ], + "expression": "Theta", + "dimensionless": false, + "components": [ + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq175", + "name": "Fahrenheit temperature" + }, + { + "id": "NISTq192", + "name": "ITS-90 temperature (Β°C)" + }, + { + "id": "NISTq193", + "name": "ITS-90 temperature (K)" + }, + { + "id": "NISTq196", + "name": "PLTS-2000 temperature (K)" + }, + { + "id": "NISTq34", + "name": "Celsius temperature" + }, + { + "id": "NISTq5", + "name": "thermodynamic temperature" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd5" + }, + { + "type": "unitsml", + "id": "d:temperature" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T0D0" + } + ] + }, + { + "id": "NISTd50", + "unitsml_id": "d:absorbed_dose_rate", + "name": "absorbed dose rate", + "names": [ + { + "value": "absorbed dose rate", + "lang": "en" + } + ], + "expression": "L2Β·T-3", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "quantities": [ + { + "id": "NISTq194", + "name": "kerma rate" + }, + { + "id": "NISTq76", + "name": "absorbed dose rate" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd50" + }, + { + "type": "unitsml", + "id": "d:absorbed_dose_rate" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-3D0" + } + ] + }, + { + "id": "NISTd51", + "unitsml_id": "d:surface_density", + "name": "surface density", + "names": [ + { + "value": "surface density", + "lang": "en" + } + ], + "expression": "L-2Β·M", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq31", + "name": "surface density" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd51" + }, + { + "type": "unitsml", + "id": "d:surface_density" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T0D0" + } + ] + }, + { + "id": "NISTd52", + "unitsml_id": "d:fluidity", + "name": "fluidity", + "names": [ + { + "value": "fluidity", + "lang": "en" + } + ], + "expression": "LΒ·M-1Β·T", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq91", + "name": "fluidity" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd52" + }, + { + "type": "unitsml", + "id": "d:fluidity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H0T1D0" + } + ] + }, + { + "id": "NISTd53", + "unitsml_id": "d:surface_charge_density", + "name": "surface charge density", + "names": [ + { + "value": "surface charge density", + "lang": "en" + } + ], + "expression": "M-2Β·TΒ·I", + "dimensionless": false, + "components": [ + { + "key": "mass", + "symbol": "M", + "power": -2 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq81", + "name": "surface charge density" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd53" + }, + { + "type": "unitsml", + "id": "d:surface_charge_density" + } + ], + "references": [] + }, + { + "id": "NISTd54", + "unitsml_id": "d:magnetizability", + "name": "magnetizability", + "names": [ + { + "value": "magnetizability", + "lang": "en" + } + ], + "expression": "L2Β·MΒ·T2Β·I2", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": 2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "quantities": [ + { + "id": "NISTq163", + "name": "magnetizability" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd54" + }, + { + "type": "unitsml", + "id": "d:magnetizability" + } + ], + "references": [] + }, + { + "id": "NISTd55", + "unitsml_id": "d:catalytic_activity_concentration", + "name": "catalytic activity concentration", + "names": [ + { + "value": "catalytic activity concentration", + "lang": "en" + } + ], + "expression": "M-3Β·T-1Β·N", + "dimensionless": false, + "components": [ + { + "key": "mass", + "symbol": "M", + "power": -3 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq84", + "name": "catalytic activity concentration" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd55" + }, + { + "type": "unitsml", + "id": "d:catalytic_activity_concentration" + } + ], + "references": [] + }, + { + "id": "NISTd56", + "unitsml_id": "d:kinematic_viscosity", + "name": "kinematic viscosity", + "names": [ + { + "value": "kinematic viscosity", + "lang": "en" + } + ], + "expression": "L2Β·T-1", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq85", + "name": "kinematic viscosity" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd56" + }, + { + "type": "unitsml", + "id": "d:kinematic_viscosity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-1D0" + } + ] + }, + { + "id": "NISTd57", + "unitsml_id": "d:area_moment_of_inertia", + "name": "area moment of inertia", + "names": [ + { + "value": "area moment of inertia", + "lang": "en" + } + ], + "expression": "L4", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 4 + } + ], + "quantities": [ + { + "id": "NISTq144", + "name": "second axial moment of area" + }, + { + "id": "NISTq145", + "name": "second polar moment of area" + }, + { + "id": "NISTq155", + "name": "area moment of inertia" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd57" + }, + { + "type": "unitsml", + "id": "d:area_moment_of_inertia" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L4I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd58", + "unitsml_id": "d:linear_density", + "name": "linear density", + "names": [ + { + "value": "linear density", + "lang": "en" + } + ], + "expression": "L-1Β·M", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq126", + "name": "linear density" + }, + { + "id": "NISTq176", + "name": "mass divided by length" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd58" + }, + { + "type": "unitsml", + "id": "d:linear_density" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T0D0" + } + ] + }, + { + "id": "NISTd59", + "unitsml_id": "d:mass_moment_of_inertia", + "name": "mass moment of inertia", + "names": [ + { + "value": "mass moment of inertia", + "lang": "en" + } + ], + "expression": "L2Β·M", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq127", + "name": "mass moment of inertia" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd59" + }, + { + "type": "unitsml", + "id": "d:mass_moment_of_inertia" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T0D0" + } + ] + }, + { + "id": "NISTd6", + "unitsml_id": "d:substance_amount", + "name": "substance amount", + "names": [ + { + "value": "substance amount", + "lang": "en" + } + ], + "expression": "N", + "dimensionless": false, + "components": [ + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq6", + "name": "amount of substance" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd6" + }, + { + "type": "unitsml", + "id": "d:substance_amount" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd60", + "unitsml_id": "d:action", + "name": "action", + "names": [ + { + "value": "action", + "lang": "en" + } + ], + "expression": "L2Β·MΒ·T-1", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq132", + "name": "moment of momentum" + }, + { + "id": "NISTq133", + "name": "angular impulse" + }, + { + "id": "NISTq154", + "name": "action" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd60" + }, + { + "type": "unitsml", + "id": "d:action" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-1D0" + } + ] + }, + { + "id": "NISTd61", + "unitsml_id": "d:momentum", + "name": "momentum", + "names": [ + { + "value": "momentum", + "lang": "en" + } + ], + "expression": "LΒ·MΒ·T-1", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq129", + "name": "impulse" + }, + { + "id": "NISTq131", + "name": "momentum" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd61" + }, + { + "type": "unitsml", + "id": "d:momentum" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-1D0" + } + ] + }, + { + "id": "NISTd62", + "unitsml_id": "d:gravitational_constant", + "name": "gravitational constant", + "names": [ + { + "value": "gravitational constant", + "lang": "en" + } + ], + "expression": "L3Β·M-1Β·T-2", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "quantities": [ + { + "id": "NISTq130", + "name": "gravitational constant" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd62" + }, + { + "type": "unitsml", + "id": "d:gravitational_constant" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L3I0M-1H0T-2D0" + } + ] + }, + { + "id": "NISTd63", + "unitsml_id": "d:compressibility", + "name": "compressibility", + "names": [ + { + "value": "compressibility", + "lang": "en" + } + ], + "expression": "LΒ·M-1Β·T2", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 2 + } + ], + "quantities": [ + { + "id": "NISTq139", + "name": "compressibility" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd63" + }, + { + "type": "unitsml", + "id": "d:compressibility" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H0T2D0" + } + ] + }, + { + "id": "NISTd64", + "unitsml_id": "d:solid_angle", + "name": "solid angle", + "names": [ + { + "value": "solid angle", + "lang": "en" + } + ], + "expression": "1", + "dimensionless": true, + "components": [ + { + "key": "plane_angle", + "symbol": "phi", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq11", + "name": "solid angle" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd64" + }, + { + "type": "unitsml", + "id": "d:solid_angle" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd65", + "unitsml_id": "d:mass_flow_rate", + "name": "mass flow rate", + "names": [ + { + "value": "mass flow rate", + "lang": "en" + } + ], + "expression": "MΒ·T-1", + "dimensionless": false, + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq150", + "name": "mass flow rate" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd65" + }, + { + "type": "unitsml", + "id": "d:mass_flow_rate" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0" + } + ] + }, + { + "id": "NISTd66", + "unitsml_id": "d:volume_flow_rate", + "name": "volume flow rate", + "names": [ + { + "value": "volume flow rate", + "lang": "en" + } + ], + "expression": "L3Β·T-1", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq151", + "name": "volume flow rate" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd66" + }, + { + "type": "unitsml", + "id": "d:volume_flow_rate" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0" + } + ] + }, + { + "id": "NISTd67", + "unitsml_id": "d:logarithmic_ratio", + "name": "logarithmic ratio", + "names": [ + { + "value": "logarithmic ratio", + "lang": "en" + } + ], + "expression": "1", + "dimensionless": true, + "components": [], + "quantities": [ + { + "id": "NISTq121", + "name": "ratio logarithm (Np)" + }, + { + "id": "NISTq200", + "name": "logarithmic frequency range" + }, + { + "id": "NISTq90", + "name": "ratio logarithm (B)" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd67" + }, + { + "type": "unitsml", + "id": "d:logarithmic_ratio" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd68", + "unitsml_id": "d:linear_expansion_coefficient", + "name": "linear expansion coefficient", + "names": [ + { + "value": "linear expansion coefficient", + "lang": "en" + } + ], + "expression": "Theta-1", + "dimensionless": false, + "components": [ + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq156", + "name": "linear expansion coefficient" + }, + { + "id": "NISTq157", + "name": "cubic expansion coefficient" + }, + { + "id": "NISTq158", + "name": "relative pressure coefficient" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd68" + }, + { + "type": "unitsml", + "id": "d:linear_expansion_coefficient" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H-1T0D0" + } + ] + }, + { + "id": "NISTd69", + "unitsml_id": "d:pressure_coefficient", + "name": "pressure coefficient", + "names": [ + { + "value": "pressure coefficient", + "lang": "en" + } + ], + "expression": "L-1Β·MΒ·T-2Β·Theta-1", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq159", + "name": "pressure coefficient" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd69" + }, + { + "type": "unitsml", + "id": "d:pressure_coefficient" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H-1T-2D0" + } + ] + }, + { + "id": "NISTd7", + "unitsml_id": "d:luminous_intensity", + "name": "luminous intensity", + "names": [ + { + "value": "luminous intensity", + "lang": "en" + } + ], + "expression": "J", + "dimensionless": false, + "components": [ + { + "key": "luminous_intensity", + "symbol": "J", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq46", + "name": "luminous flux" + }, + { + "id": "NISTq7", + "name": "luminous intensity" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd7" + }, + { + "type": "unitsml", + "id": "d:luminous_intensity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I1M0H0T0D0" + } + ] + }, + { + "id": "NISTd70", + "unitsml_id": "d:isothermal_compressibility", + "name": "isothermal compressibility", + "names": [ + { + "value": "isothermal compressibility", + "lang": "en" + } + ], + "expression": "LΒ·M-1Β·T2", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 2 + } + ], + "quantities": [ + { + "id": "NISTq160", + "name": "isothermal compressibility" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd70" + }, + { + "type": "unitsml", + "id": "d:isothermal_compressibility" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H0T2D0" + } + ] + }, + { + "id": "NISTd71", + "unitsml_id": "d:heat_transfer_coefficient", + "name": "heat transfer coefficient", + "names": [ + { + "value": "heat transfer coefficient", + "lang": "en" + } + ], + "expression": "MΒ·T-3Β·Theta-1", + "dimensionless": false, + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq180", + "name": "coefficient of heat transfer" + }, + { + "id": "NISTq181", + "name": "surface coefficient of heat transfer" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd71" + }, + { + "type": "unitsml", + "id": "d:heat_transfer_coefficient" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-3D0" + } + ] + }, + { + "id": "NISTd72", + "unitsml_id": "d:electric_dipole_moment", + "name": "electric dipole moment", + "names": [ + { + "value": "electric dipole moment", + "lang": "en" + } + ], + "expression": "LΒ·TΒ·I", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq162", + "name": "electric dipole moment" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd72" + }, + { + "type": "unitsml", + "id": "d:electric_dipole_moment" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E1L1I0M0H0T1D0" + } + ] + }, + { + "id": "NISTd73", + "unitsml_id": "d:magnetic_dipole_moment", + "name": "magnetic dipole moment", + "names": [ + { + "value": "magnetic dipole moment", + "lang": "en" + } + ], + "expression": "L2Β·I", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq164", + "name": "magnetic dipole moment" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd73" + }, + { + "type": "unitsml", + "id": "d:magnetic_dipole_moment" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E1L2I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd74", + "unitsml_id": "d:electric_field_gradient", + "name": "electric field gradient", + "names": [ + { + "value": "electric field gradient", + "lang": "en" + } + ], + "expression": "MΒ·T-3Β·I-1", + "dimensionless": false, + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq165", + "name": "electric field gradient" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd74" + }, + { + "type": "unitsml", + "id": "d:electric_field_gradient" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E-1L0I0M1H0T-3D0" + } + ] + }, + { + "id": "NISTd75", + "unitsml_id": "d:electric_quadrupole_moment", + "name": "electric quadrupole moment", + "names": [ + { + "value": "electric quadrupole moment", + "lang": "en" + } + ], + "expression": "L2Β·TΒ·I", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq167", + "name": "electric quadrupole moment" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd75" + }, + { + "type": "unitsml", + "id": "d:electric_quadrupole_moment" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E1L2I0M0H0T1D0" + } + ] + }, + { + "id": "NISTd76", + "unitsml_id": "d:polarizability", + "name": "polarizability", + "names": [ + { + "value": "polarizability", + "lang": "en" + } + ], + "expression": "MΒ·T4Β·I2", + "dimensionless": false, + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": 4 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "quantities": [ + { + "id": "NISTq168", + "name": "polarizability" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd76" + }, + { + "type": "unitsml", + "id": "d:polarizability" + } + ], + "references": [] + }, + { + "id": "NISTd77", + "unitsml_id": "d:hyperpolarizability_1st", + "name": "hyperpolarizability 1st", + "names": [ + { + "value": "hyperpolarizability 1st", + "lang": "en" + } + ], + "expression": "L-1Β·M-2Β·T7Β·I3", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": -2 + }, + { + "key": "time", + "symbol": "T", + "power": 7 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 3 + } + ], + "quantities": [ + { + "id": "NISTq172", + "name": "1st hyperpolarizability" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd77" + }, + { + "type": "unitsml", + "id": "d:hyperpolarizability_1st" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E3L-1I0M-2H0T7D0" + } + ] + }, + { + "id": "NISTd78", + "unitsml_id": "d:hyperpolarizability_2nd", + "name": "hyperpolarizability 2nd", + "names": [ + { + "value": "hyperpolarizability 2nd", + "lang": "en" + } + ], + "expression": "L-2Β·M-3Β·T10Β·I4", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": -3 + }, + { + "key": "time", + "symbol": "T", + "power": 10 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 4 + } + ], + "quantities": [ + { + "id": "NISTq173", + "name": "2nd hyperpolarizability" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd78" + }, + { + "type": "unitsml", + "id": "d:hyperpolarizability_2nd" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E4L-2I0M-3H0T10D0" + } + ] + }, + { + "id": "NISTd79", + "unitsml_id": "d:molality", + "name": "molality", + "names": [ + { + "value": "molality", + "lang": "en" + } + ], + "expression": "MΒ·N", + "dimensionless": false, + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq179", + "name": "molality of solute B" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd79" + }, + { + "type": "unitsml", + "id": "d:molality" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A1E0L0I0M1H0T0D0" + } + ] + }, + { + "id": "NISTd8", + "unitsml_id": "d:area", + "name": "area", + "names": [ + { + "value": "area", + "lang": "en" + } + ], + "expression": "L2", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + } + ], + "quantities": [ + { + "id": "NISTq8", + "name": "area" + }, + { + "id": "NISTq92", + "name": "hydrodynamic permeability" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd8" + }, + { + "type": "unitsml", + "id": "d:area" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd80", + "unitsml_id": "d:ratio_quantity", + "name": "ratio quantity", + "names": [ + { + "value": "ratio quantity", + "lang": "en" + } + ], + "expression": "1", + "dimensionless": true, + "components": [], + "quantities": [ + { + "id": "NISTq111", + "name": "rotation" + }, + { + "id": "NISTq125", + "name": "relative mass density" + }, + { + "id": "NISTq136", + "name": "linear strain" + }, + { + "id": "NISTq137", + "name": "shear strain" + }, + { + "id": "NISTq138", + "name": "volume strain" + }, + { + "id": "NISTq140", + "name": "Poisson number" + }, + { + "id": "NISTq147", + "name": "dynamic friction factor" + }, + { + "id": "NISTq188", + "name": "nil" + }, + { + "id": "NISTq199", + "name": "relative humidity" + }, + { + "id": "NISTq93", + "name": "refractive index" + }, + { + "id": "NISTq94", + "name": "relative permeability" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd80" + }, + { + "type": "unitsml", + "id": "d:ratio_quantity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd83", + "unitsml_id": "d:level_of_field_quantity", + "name": "level of field quantity", + "names": [ + { + "value": "level of field quantity", + "lang": "en" + } + ], + "expression": "1", + "dimensionless": true, + "components": [], + "quantities": [ + { + "id": "NISTq118", + "name": "level of a field quantity" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd83" + }, + { + "type": "unitsml", + "id": "d:level_of_field_quantity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd84", + "unitsml_id": "d:field_power_level", + "name": "field power level", + "names": [ + { + "value": "field power level", + "lang": "en" + } + ], + "expression": "1", + "dimensionless": true, + "components": [], + "quantities": [ + { + "id": "NISTq119", + "name": "level of a power quantity" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd84" + }, + { + "type": "unitsml", + "id": "d:field_power_level" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd85", + "unitsml_id": "d:mass_mole_fraction", + "name": "mass mole fraction", + "names": [ + { + "value": "mass mole fraction", + "lang": "en" + } + ], + "expression": "1", + "dimensionless": true, + "components": [], + "quantities": [ + { + "id": "NISTq186", + "name": "mass fraction" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd85" + }, + { + "type": "unitsml", + "id": "d:mass_mole_fraction" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd9", + "unitsml_id": "d:plane_angle", + "name": "plane angle", + "names": [ + { + "value": "plane angle", + "lang": "en" + } + ], + "expression": "1", + "dimensionless": true, + "components": [ + { + "key": "plane_angle", + "symbol": "phi", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq9", + "name": "plane angle" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd9" + }, + { + "type": "unitsml", + "id": "d:plane_angle" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd94", + "unitsml_id": "d:acidity_index", + "name": "acidity index", + "names": [ + { + "value": "acidity index", + "lang": "en" + } + ], + "expression": "1", + "dimensionless": true, + "components": [], + "quantities": [ + { + "id": "NISTq174", + "name": "index of acidity" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd94" + }, + { + "type": "unitsml", + "id": "d:acidity_index" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd95", + "unitsml_id": "d:storage_capacity", + "name": "storage capacity", + "names": [ + { + "value": "storage capacity", + "lang": "en" + } + ], + "expression": "1", + "dimensionless": true, + "components": [], + "quantities": [ + { + "id": "NISTq177", + "name": "storage capacity" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd95" + }, + { + "type": "unitsml", + "id": "d:storage_capacity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd96", + "unitsml_id": "d:fluence", + "name": "fluence", + "names": [ + { + "value": "fluence", + "lang": "en" + } + ], + "expression": "L-2", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + } + ], + "quantities": [ + { + "id": "NISTq190", + "name": "fluence" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd96" + }, + { + "type": "unitsml", + "id": "d:fluence" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd97", + "unitsml_id": "d:fluence_rate", + "name": "fluence_rate", + "names": [ + { + "value": "fluence_rate", + "lang": "en" + } + ], + "expression": "L-2Β·T-1", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq191", + "name": "fluence rate" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd97" + }, + { + "type": "unitsml", + "id": "d:fluence_rate" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T-1D0" + } + ] + }, + { + "id": "NISTd98", + "unitsml_id": "d:phase", + "name": "phase", + "names": [ + { + "value": "phase", + "lang": "en" + } + ], + "expression": "1", + "dimensionless": true, + "components": [ + { + "key": "plane_angle", + "symbol": "phi", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq195", + "name": "phase" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd98" + }, + { + "type": "unitsml", + "id": "d:phase" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd99", + "unitsml_id": "d:fuel_efficiency", + "name": "fuel efficiency", + "names": [ + { + "value": "fuel efficiency", + "lang": "en" + } + ], + "expression": "L-2", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + } + ], + "quantities": [ + { + "id": "NISTq198", + "name": "fuel efficiency" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd99" + }, + { + "type": "unitsml", + "id": "d:fuel_efficiency" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T0D0" + } + ] + } +] \ No newline at end of file diff --git a/public/unitsdb/dimensions.jsonld b/public/unitsdb/dimensions.jsonld new file mode 100644 index 0000000..f864c94 --- /dev/null +++ b/public/unitsdb/dimensions.jsonld @@ -0,0 +1,2578 @@ +{ + "@context": { + "@vocab": "https://unitsml.org/ontology/", + "schema": "http://schema.org/", + "name": "schema:name", + "identifier": "schema:identifier", + "description": "schema:description", + "symbol": "https://unitsml.org/ontology/symbol", + "rootUnit": "https://unitsml.org/ontology/rootUnit", + "quantityReference": "https://unitsml.org/ontology/quantityReference", + "dimensionReference": "https://unitsml.org/ontology/dimensionReference", + "scaleReference": "https://unitsml.org/ontology/scaleReference", + "unitSystemReference": "https://unitsml.org/ontology/unitSystemReference", + "prefixReference": "https://unitsml.org/ontology/prefixReference", + "power": "https://unitsml.org/ontology/power", + "base": "https://unitsml.org/ontology/base" + }, + "@graph": [ + { + "@id": "https://unitsml.org/dimension/d:length", + "@type": "Dimension", + "name": "length", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:length" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": 1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:volume", + "@type": "Dimension", + "name": "volume", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd10" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:volume" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": 3 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:traffic_intensity", + "@type": "Dimension", + "name": "traffic intensity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd100" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:traffic_intensity" + } + ], + "dimensionless": true + }, + { + "@id": "https://unitsml.org/dimension/d:symbol_rate", + "@type": "Dimension", + "name": "symbol rate", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd101" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:symbol_rate" + } + ], + "dimensionalComposition": [ + { + "symbol": "T", + "power": -1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:information_content", + "@type": "Dimension", + "name": "information content", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd102" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:information_content" + } + ], + "dimensionless": true + }, + { + "@id": "https://unitsml.org/dimension/d:velocity", + "@type": "Dimension", + "name": "velocity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd11" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:velocity" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": 1 + }, + { + "symbol": "T", + "power": -1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:force", + "@type": "Dimension", + "name": "force", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd12" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:force" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": 1 + }, + { + "symbol": "M", + "power": 1 + }, + { + "symbol": "T", + "power": -2 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:magnetic_flux_density", + "@type": "Dimension", + "name": "magnetic flux density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd13" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:magnetic_flux_density" + } + ], + "dimensionalComposition": [ + { + "symbol": "M", + "power": 1 + }, + { + "symbol": "T", + "power": -2 + }, + { + "symbol": "I", + "power": -1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:pressure", + "@type": "Dimension", + "name": "pressure", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd14" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:pressure" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": -1 + }, + { + "symbol": "M", + "power": 1 + }, + { + "symbol": "T", + "power": -2 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:energy", + "@type": "Dimension", + "name": "energy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd15" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:energy" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": 2 + }, + { + "symbol": "M", + "power": 1 + }, + { + "symbol": "T", + "power": -2 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:power", + "@type": "Dimension", + "name": "power", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd16" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:power" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": 2 + }, + { + "symbol": "M", + "power": 1 + }, + { + "symbol": "T", + "power": -3 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:electric_charge", + "@type": "Dimension", + "name": "electric charge", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd17" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:electric_charge" + } + ], + "dimensionalComposition": [ + { + "symbol": "T", + "power": 1 + }, + { + "symbol": "I", + "power": 1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:electric_potential_difference", + "@type": "Dimension", + "name": "electric potential difference", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd18" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:electric_potential_difference" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": 2 + }, + { + "symbol": "M", + "power": 1 + }, + { + "symbol": "T", + "power": -3 + }, + { + "symbol": "I", + "power": -1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:capacitance", + "@type": "Dimension", + "name": "capacitance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd19" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:capacitance" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": -2 + }, + { + "symbol": "M", + "power": -1 + }, + { + "symbol": "T", + "power": 4 + }, + { + "symbol": "I", + "power": 2 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:mass", + "@type": "Dimension", + "name": "mass", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd2" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:mass" + } + ], + "dimensionalComposition": [ + { + "symbol": "M", + "power": 1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:electric_resistance", + "@type": "Dimension", + "name": "electric resistance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd20" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:electric_resistance" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": 2 + }, + { + "symbol": "M", + "power": 1 + }, + { + "symbol": "T", + "power": -3 + }, + { + "symbol": "I", + "power": -2 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:electric_conductance", + "@type": "Dimension", + "name": "electric conductance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd21" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:electric_conductance" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": -2 + }, + { + "symbol": "M", + "power": -1 + }, + { + "symbol": "T", + "power": 3 + }, + { + "symbol": "I", + "power": 2 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:magnetic_flux", + "@type": "Dimension", + "name": "magnetic flux", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd22" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:magnetic_flux" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": 2 + }, + { + "symbol": "M", + "power": 1 + }, + { + "symbol": "T", + "power": -2 + }, + { + "symbol": "I", + "power": -1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:inductance", + "@type": "Dimension", + "name": "inductance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd23" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:inductance" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": 2 + }, + { + "symbol": "M", + "power": 1 + }, + { + "symbol": "T", + "power": -2 + }, + { + "symbol": "I", + "power": -2 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:frequency", + "@type": "Dimension", + "name": "frequency", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd24" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:frequency" + } + ], + "dimensionalComposition": [ + { + "symbol": "T", + "power": -1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:absorbed_dose", + "@type": "Dimension", + "name": "absorbed dose", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd25" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:absorbed_dose" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": 2 + }, + { + "symbol": "T", + "power": -2 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:catalytic_activity", + "@type": "Dimension", + "name": "catalytic activity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd26" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:catalytic_activity" + } + ], + "dimensionalComposition": [ + { + "symbol": "T", + "power": -1 + }, + { + "symbol": "N", + "power": 1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:illuminance", + "@type": "Dimension", + "name": "illuminance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd27" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:illuminance" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": -2 + }, + { + "symbol": "J", + "power": 1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:acceleration", + "@type": "Dimension", + "name": "acceleration", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd28" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:acceleration" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": 1 + }, + { + "symbol": "T", + "power": -2 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:wavenumber", + "@type": "Dimension", + "name": "wavenumber", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd29" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:wavenumber" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": -1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:time", + "@type": "Dimension", + "name": "time", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd3" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:time" + } + ], + "dimensionalComposition": [ + { + "symbol": "T", + "power": 1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:mass_density", + "@type": "Dimension", + "name": "mass density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd30" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:mass_density" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": -3 + }, + { + "symbol": "M", + "power": 1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:specific_volume", + "@type": "Dimension", + "name": "specific volume", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd31" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:specific_volume" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": 3 + }, + { + "symbol": "M", + "power": -1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:current_density", + "@type": "Dimension", + "name": "current density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd32" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:current_density" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": -2 + }, + { + "symbol": "I", + "power": 1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:magnetic_field_strength", + "@type": "Dimension", + "name": "magnetic field strength", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd33" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:magnetic_field_strength" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": -1 + }, + { + "symbol": "I", + "power": 1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:concentration", + "@type": "Dimension", + "name": "concentration", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd34" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:concentration" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": -3 + }, + { + "symbol": "N", + "power": 1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:angular_acceleration", + "@type": "Dimension", + "name": "angular acceleration", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd35" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:angular_acceleration" + } + ], + "dimensionalComposition": [ + { + "symbol": "T", + "power": -2 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:dynamic_viscosity", + "@type": "Dimension", + "name": "dynamic viscosity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd36" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:dynamic_viscosity" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": -1 + }, + { + "symbol": "M", + "power": 1 + }, + { + "symbol": "T", + "power": -1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:surface_tension", + "@type": "Dimension", + "name": "surface tension", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd37" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:surface_tension" + } + ], + "dimensionalComposition": [ + { + "symbol": "M", + "power": 1 + }, + { + "symbol": "T", + "power": -2 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:heat_flux_density", + "@type": "Dimension", + "name": "heat flux density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd38" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:heat_flux_density" + } + ], + "dimensionalComposition": [ + { + "symbol": "M", + "power": 1 + }, + { + "symbol": "T", + "power": -3 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:heat_capacity", + "@type": "Dimension", + "name": "heat capacity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd39" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:heat_capacity" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": 2 + }, + { + "symbol": "M", + "power": 1 + }, + { + "symbol": "T", + "power": -2 + }, + { + "symbol": "Theta", + "power": -1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:electric_current", + "@type": "Dimension", + "name": "electric current", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd4" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:electric_current" + } + ], + "dimensionalComposition": [ + { + "symbol": "I", + "power": 1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:specific_heat_capacity", + "@type": "Dimension", + "name": "specific heat capacity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd40" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:specific_heat_capacity" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": 2 + }, + { + "symbol": "T", + "power": -2 + }, + { + "symbol": "Theta", + "power": -1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:thermal_conductivity", + "@type": "Dimension", + "name": "thermal conductivity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd41" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:thermal_conductivity" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": 1 + }, + { + "symbol": "M", + "power": 1 + }, + { + "symbol": "T", + "power": -3 + }, + { + "symbol": "Theta", + "power": -1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:electric_field_strength", + "@type": "Dimension", + "name": "electric field strength", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd42" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:electric_field_strength" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": 1 + }, + { + "symbol": "M", + "power": 1 + }, + { + "symbol": "T", + "power": -3 + }, + { + "symbol": "I", + "power": -1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:electric_charge_density", + "@type": "Dimension", + "name": "electric charge density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd43" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:electric_charge_density" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": -3 + }, + { + "symbol": "T", + "power": 1 + }, + { + "symbol": "I", + "power": 1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:electric_flux_density", + "@type": "Dimension", + "name": "electric flux density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd44" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:electric_flux_density" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": -2 + }, + { + "symbol": "T", + "power": 1 + }, + { + "symbol": "I", + "power": 1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:permittivity", + "@type": "Dimension", + "name": "permittivity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd45" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:permittivity" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": -3 + }, + { + "symbol": "M", + "power": -1 + }, + { + "symbol": "T", + "power": 4 + }, + { + "symbol": "I", + "power": 2 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:permeability", + "@type": "Dimension", + "name": "permeability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd46" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:permeability" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": 1 + }, + { + "symbol": "M", + "power": 1 + }, + { + "symbol": "T", + "power": -2 + }, + { + "symbol": "I", + "power": -2 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:molar_energy", + "@type": "Dimension", + "name": "molar energy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd47" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:molar_energy" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": 2 + }, + { + "symbol": "M", + "power": 1 + }, + { + "symbol": "T", + "power": -2 + }, + { + "symbol": "N", + "power": -1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:molar_entropy", + "@type": "Dimension", + "name": "molar entropy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd48" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:molar_entropy" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": 2 + }, + { + "symbol": "M", + "power": 1 + }, + { + "symbol": "T", + "power": -2 + }, + { + "symbol": "Theta", + "power": -1 + }, + { + "symbol": "N", + "power": -1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:exposure", + "@type": "Dimension", + "name": "exposure", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd49" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:exposure" + } + ], + "dimensionalComposition": [ + { + "symbol": "M", + "power": -1 + }, + { + "symbol": "T", + "power": 1 + }, + { + "symbol": "I", + "power": 1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:temperature", + "@type": "Dimension", + "name": "temperature", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd5" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:temperature" + } + ], + "dimensionalComposition": [ + { + "symbol": "Theta", + "power": 1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:absorbed_dose_rate", + "@type": "Dimension", + "name": "absorbed dose rate", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd50" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:absorbed_dose_rate" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": 2 + }, + { + "symbol": "T", + "power": -3 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:surface_density", + "@type": "Dimension", + "name": "surface density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd51" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:surface_density" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": -2 + }, + { + "symbol": "M", + "power": 1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:fluidity", + "@type": "Dimension", + "name": "fluidity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd52" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:fluidity" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": 1 + }, + { + "symbol": "M", + "power": -1 + }, + { + "symbol": "T", + "power": 1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:surface_charge_density", + "@type": "Dimension", + "name": "surface charge density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd53" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:surface_charge_density" + } + ], + "dimensionalComposition": [ + { + "symbol": "M", + "power": -2 + }, + { + "symbol": "T", + "power": 1 + }, + { + "symbol": "I", + "power": 1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:magnetizability", + "@type": "Dimension", + "name": "magnetizability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd54" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:magnetizability" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": 2 + }, + { + "symbol": "M", + "power": 1 + }, + { + "symbol": "T", + "power": 2 + }, + { + "symbol": "I", + "power": 2 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:catalytic_activity_concentration", + "@type": "Dimension", + "name": "catalytic activity concentration", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd55" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:catalytic_activity_concentration" + } + ], + "dimensionalComposition": [ + { + "symbol": "M", + "power": -3 + }, + { + "symbol": "T", + "power": -1 + }, + { + "symbol": "N", + "power": 1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:kinematic_viscosity", + "@type": "Dimension", + "name": "kinematic viscosity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd56" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:kinematic_viscosity" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": 2 + }, + { + "symbol": "T", + "power": -1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:area_moment_of_inertia", + "@type": "Dimension", + "name": "area moment of inertia", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd57" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:area_moment_of_inertia" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": 4 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:linear_density", + "@type": "Dimension", + "name": "linear density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd58" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:linear_density" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": -1 + }, + { + "symbol": "M", + "power": 1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:mass_moment_of_inertia", + "@type": "Dimension", + "name": "mass moment of inertia", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd59" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:mass_moment_of_inertia" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": 2 + }, + { + "symbol": "M", + "power": 1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:substance_amount", + "@type": "Dimension", + "name": "substance amount", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd6" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:substance_amount" + } + ], + "dimensionalComposition": [ + { + "symbol": "N", + "power": 1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:action", + "@type": "Dimension", + "name": "action", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd60" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:action" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": 2 + }, + { + "symbol": "M", + "power": 1 + }, + { + "symbol": "T", + "power": -1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:momentum", + "@type": "Dimension", + "name": "momentum", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd61" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:momentum" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": 1 + }, + { + "symbol": "M", + "power": 1 + }, + { + "symbol": "T", + "power": -1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:gravitational_constant", + "@type": "Dimension", + "name": "gravitational constant", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd62" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:gravitational_constant" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": 3 + }, + { + "symbol": "M", + "power": -1 + }, + { + "symbol": "T", + "power": -2 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:compressibility", + "@type": "Dimension", + "name": "compressibility", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd63" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:compressibility" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": 1 + }, + { + "symbol": "M", + "power": -1 + }, + { + "symbol": "T", + "power": 2 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:solid_angle", + "@type": "Dimension", + "name": "solid angle", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd64" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:solid_angle" + } + ], + "dimensionalComposition": [ + { + "symbol": "phi", + "power": 1 + } + ], + "dimensionless": true + }, + { + "@id": "https://unitsml.org/dimension/d:mass_flow_rate", + "@type": "Dimension", + "name": "mass flow rate", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd65" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:mass_flow_rate" + } + ], + "dimensionalComposition": [ + { + "symbol": "M", + "power": 1 + }, + { + "symbol": "T", + "power": -1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:volume_flow_rate", + "@type": "Dimension", + "name": "volume flow rate", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd66" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:volume_flow_rate" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": 3 + }, + { + "symbol": "T", + "power": -1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:logarithmic_ratio", + "@type": "Dimension", + "name": "logarithmic ratio", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd67" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:logarithmic_ratio" + } + ], + "dimensionless": true + }, + { + "@id": "https://unitsml.org/dimension/d:linear_expansion_coefficient", + "@type": "Dimension", + "name": "linear expansion coefficient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd68" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:linear_expansion_coefficient" + } + ], + "dimensionalComposition": [ + { + "symbol": "Theta", + "power": -1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:pressure_coefficient", + "@type": "Dimension", + "name": "pressure coefficient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd69" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:pressure_coefficient" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": -1 + }, + { + "symbol": "M", + "power": 1 + }, + { + "symbol": "T", + "power": -2 + }, + { + "symbol": "Theta", + "power": -1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:luminous_intensity", + "@type": "Dimension", + "name": "luminous intensity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd7" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:luminous_intensity" + } + ], + "dimensionalComposition": [ + { + "symbol": "J", + "power": 1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:isothermal_compressibility", + "@type": "Dimension", + "name": "isothermal compressibility", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd70" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:isothermal_compressibility" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": 1 + }, + { + "symbol": "M", + "power": -1 + }, + { + "symbol": "T", + "power": 2 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:heat_transfer_coefficient", + "@type": "Dimension", + "name": "heat transfer coefficient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd71" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:heat_transfer_coefficient" + } + ], + "dimensionalComposition": [ + { + "symbol": "M", + "power": 1 + }, + { + "symbol": "T", + "power": -3 + }, + { + "symbol": "Theta", + "power": -1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:electric_dipole_moment", + "@type": "Dimension", + "name": "electric dipole moment", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd72" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:electric_dipole_moment" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": 1 + }, + { + "symbol": "T", + "power": 1 + }, + { + "symbol": "I", + "power": 1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:magnetic_dipole_moment", + "@type": "Dimension", + "name": "magnetic dipole moment", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd73" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:magnetic_dipole_moment" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": 2 + }, + { + "symbol": "I", + "power": 1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:electric_field_gradient", + "@type": "Dimension", + "name": "electric field gradient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd74" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:electric_field_gradient" + } + ], + "dimensionalComposition": [ + { + "symbol": "M", + "power": 1 + }, + { + "symbol": "T", + "power": -3 + }, + { + "symbol": "I", + "power": -1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:electric_quadrupole_moment", + "@type": "Dimension", + "name": "electric quadrupole moment", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd75" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:electric_quadrupole_moment" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": 2 + }, + { + "symbol": "T", + "power": 1 + }, + { + "symbol": "I", + "power": 1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:polarizability", + "@type": "Dimension", + "name": "polarizability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd76" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:polarizability" + } + ], + "dimensionalComposition": [ + { + "symbol": "M", + "power": 1 + }, + { + "symbol": "T", + "power": 4 + }, + { + "symbol": "I", + "power": 2 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:hyperpolarizability_1st", + "@type": "Dimension", + "name": "hyperpolarizability 1st", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd77" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:hyperpolarizability_1st" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": -1 + }, + { + "symbol": "M", + "power": -2 + }, + { + "symbol": "T", + "power": 7 + }, + { + "symbol": "I", + "power": 3 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:hyperpolarizability_2nd", + "@type": "Dimension", + "name": "hyperpolarizability 2nd", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd78" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:hyperpolarizability_2nd" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": -2 + }, + { + "symbol": "M", + "power": -3 + }, + { + "symbol": "T", + "power": 10 + }, + { + "symbol": "I", + "power": 4 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:molality", + "@type": "Dimension", + "name": "molality", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd79" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:molality" + } + ], + "dimensionalComposition": [ + { + "symbol": "M", + "power": 1 + }, + { + "symbol": "N", + "power": 1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:area", + "@type": "Dimension", + "name": "area", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd8" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:area" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": 2 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:ratio_quantity", + "@type": "Dimension", + "name": "ratio quantity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd80" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:ratio_quantity" + } + ], + "dimensionless": true + }, + { + "@id": "https://unitsml.org/dimension/d:level_of_field_quantity", + "@type": "Dimension", + "name": "level of field quantity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd83" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:level_of_field_quantity" + } + ], + "dimensionless": true + }, + { + "@id": "https://unitsml.org/dimension/d:field_power_level", + "@type": "Dimension", + "name": "field power level", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd84" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:field_power_level" + } + ], + "dimensionless": true + }, + { + "@id": "https://unitsml.org/dimension/d:mass_mole_fraction", + "@type": "Dimension", + "name": "mass mole fraction", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd85" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:mass_mole_fraction" + } + ], + "dimensionless": true + }, + { + "@id": "https://unitsml.org/dimension/d:plane_angle", + "@type": "Dimension", + "name": "plane angle", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd9" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:plane_angle" + } + ], + "dimensionalComposition": [ + { + "symbol": "phi", + "power": 1 + } + ], + "dimensionless": true + }, + { + "@id": "https://unitsml.org/dimension/d:acidity_index", + "@type": "Dimension", + "name": "acidity index", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd94" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:acidity_index" + } + ], + "dimensionless": true + }, + { + "@id": "https://unitsml.org/dimension/d:storage_capacity", + "@type": "Dimension", + "name": "storage capacity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd95" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:storage_capacity" + } + ], + "dimensionless": true + }, + { + "@id": "https://unitsml.org/dimension/d:fluence", + "@type": "Dimension", + "name": "fluence", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd96" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:fluence" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": -2 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:fluence_rate", + "@type": "Dimension", + "name": "fluence_rate", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd97" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:fluence_rate" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": -2 + }, + { + "symbol": "T", + "power": -1 + } + ] + }, + { + "@id": "https://unitsml.org/dimension/d:phase", + "@type": "Dimension", + "name": "phase", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd98" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:phase" + } + ], + "dimensionalComposition": [ + { + "symbol": "phi", + "power": 1 + } + ], + "dimensionless": true + }, + { + "@id": "https://unitsml.org/dimension/d:fuel_efficiency", + "@type": "Dimension", + "name": "fuel efficiency", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd99" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:fuel_efficiency" + } + ], + "dimensionalComposition": [ + { + "symbol": "L", + "power": -2 + } + ] + } + ] +} \ No newline at end of file diff --git a/public/unitsdb/index.json b/public/unitsdb/index.json new file mode 100644 index 0000000..a865050 --- /dev/null +++ b/public/unitsdb/index.json @@ -0,0 +1,54596 @@ +{ + "meta": { + "source": "https://github.com/unitsml/unitsdb", + "version": "2.0.0", + "schema_site": "https://schema.unitsml.org", + "generated": "2026-04-29" + }, + "stats": { + "units": 380, + "quantities": 199, + "dimensions": 92, + "prefixes": 33, + "scales": 5, + "unit_systems": 7, + "total": 716, + "units_root": 255, + "units_composite": 123, + "quantities_base": 8, + "quantities_derived": 191, + "prefixes_decimal": 25, + "prefixes_binary": 8 + }, + "units": [ + { + "id": "NISTu1", + "unitsml_id": "u:meter", + "name": "metre", + "names": [ + { + "value": "metre", + "lang": "en" + }, + { + "value": "meter", + "lang": "en" + }, + { + "value": "mΓ¨tre", + "lang": "fr" + } + ], + "symbols": { + "unicode": "m", + "ascii": "m", + "html": "m", + "latex": "\\ensuremath{\\mathrm{m}}", + "id": "m", + "mathml": "m" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu1" + }, + { + "type": "unitsml", + "id": "u:meter" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/metre" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:base-unit:code:m" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/M" + } + ], + "short": "meter", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + }, + { + "id": "NISTq100", + "name": "diameter", + "type": "derived" + }, + { + "id": "NISTq101", + "name": "length of path", + "type": "derived" + }, + { + "id": "NISTq102", + "name": "cartesian coordinates", + "type": "derived" + }, + { + "id": "NISTq103", + "name": "position vector", + "type": "derived" + }, + { + "id": "NISTq104", + "name": "displacement", + "type": "derived" + }, + { + "id": "NISTq105", + "name": "radius of curvature", + "type": "derived" + }, + { + "id": "NISTq114", + "name": "wavelength", + "type": "derived" + }, + { + "id": "NISTq48", + "name": "distance", + "type": "base" + }, + { + "id": "NISTq95", + "name": "breadth", + "type": "derived" + }, + { + "id": "NISTq96", + "name": "height", + "type": "derived" + }, + { + "id": "NISTq97", + "name": "thickness", + "type": "derived" + }, + { + "id": "NISTq98", + "name": "radius", + "type": "derived" + }, + { + "id": "NISTq99", + "name": "radial distance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_base", + "name": "SI base units", + "short": "si-base", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu1.u3e-1/1", + "unitsml_id": "u:meter_per_second", + "name": "meter per second", + "names": [ + { + "value": "meter per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "mΒ·s⁻¹", + "ascii": "m*s^-1", + "html": "m/s", + "latex": "\\ensuremath{\\mathrm{m/s}}", + "id": "m*s^-1", + "mathml": "m/s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu1.u3e-1/1" + }, + { + "type": "unitsml", + "id": "u:meter_per_second" + } + ], + "references": [], + "short": "meter_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq107", + "name": "speed of propagation of waves", + "type": "derived" + }, + { + "id": "NISTq116", + "name": "phase velocity", + "type": "derived" + }, + { + "id": "NISTq117", + "name": "group velocity", + "type": "derived" + }, + { + "id": "NISTq12", + "name": "velocity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd11", + "name": "velocity", + "expression": "LΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + }, + { + "power": 1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu1.u3e-2/1", + "unitsml_id": "u:meter_per_second_squared", + "name": "meter per second squared", + "names": [ + { + "value": "meter per second squared", + "lang": "en" + } + ], + "symbols": { + "unicode": "mΒ·s⁻²", + "ascii": "m*s^-2", + "html": "m/s2", + "latex": "\\ensuremath{\\mathrm{m/s^2}}", + "id": "m*s^-2", + "mathml": "m/s2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu1.u3e-2/1" + }, + { + "type": "unitsml", + "id": "u:meter_per_second_squared" + } + ], + "references": [], + "short": "meter_per_second_squared", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq108", + "name": "acceleration of free fall", + "type": "derived" + }, + { + "id": "NISTq49", + "name": "acceleration", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd28", + "name": "acceleration", + "expression": "LΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + }, + { + "power": -2, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu10", + "unitsml_id": "u:steradian", + "name": "steradian", + "names": [ + { + "value": "steradian", + "lang": "en" + }, + { + "value": "stΓ©radian", + "lang": "fr" + } + ], + "symbols": { + "unicode": "sr", + "ascii": "sr", + "html": "sr", + "latex": "\\ensuremath{\\mathrm{sr}}", + "id": "sr", + "mathml": "sr" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu10" + }, + { + "type": "unitsml", + "id": "u:steradian" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/steradian" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:sr" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/SR" + } + ], + "short": "steradian", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq11", + "name": "solid angle", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd64", + "name": "solid angle", + "expression": "1", + "components": [ + { + "key": "plane_angle", + "symbol": "phi", + "power": 1 + } + ], + "dimensionless": true + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu100", + "unitsml_id": "u:rem", + "name": "rem", + "names": [ + { + "value": "rem", + "lang": "en" + } + ], + "symbols": { + "unicode": "rem", + "ascii": "rem", + "html": "rem", + "latex": "\\ensuremath{\\mathrm{rem}}", + "id": "rem", + "mathml": "rem" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu100" + }, + { + "type": "unitsml", + "id": "u:rem" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/REM" + } + ], + "short": "rem", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq39", + "name": "dose equivalent", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd25", + "name": "absorbed dose", + "expression": "L2Β·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_nist_acceptable", + "name": "non-SI but acceptable by NIST SP 811", + "short": "nonsi-nist-acceptable", + "acceptable": true + }, + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu106", + "unitsml_id": "u:year_365", + "name": "year (365 days)", + "names": [ + { + "value": "year (365 days)", + "lang": "en" + }, + { + "value": "year", + "lang": "en" + } + ], + "symbols": { + "unicode": "a", + "ascii": "a", + "html": "a", + "latex": "\\ensuremath{\\mathrm{a}}", + "id": "a_year", + "mathml": "a" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu106" + }, + { + "type": "unitsml", + "id": "u:year_365" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:a" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/YR" + } + ], + "short": "year_365", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq3", + "name": "time", + "type": "base" + } + ], + "dimension": { + "id": "NISTd3", + "name": "time", + "expression": "T", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu107", + "unitsml_id": "u:foot_per_minute", + "name": "foot per minute", + "names": [ + { + "value": "foot per minute", + "lang": "en" + } + ], + "symbols": { + "unicode": "ftΒ·min⁻¹", + "ascii": "ft*min^-1", + "html": "ft/min", + "latex": "\\ensuremath{\\mathrm{ft/min}}", + "id": "ft*min^-1", + "mathml": "ft/min" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu107" + }, + { + "type": "unitsml", + "id": "u:foot_per_minute" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FT-PER-MIN" + } + ], + "short": "foot_per_minute", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq12", + "name": "velocity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd11", + "name": "velocity", + "expression": "LΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu78", + "name": "foot", + "symbol": "β€²" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu36", + "name": "minute", + "symbol": "β€²" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu108", + "unitsml_id": "u:foot_per_second", + "name": "foot per second", + "names": [ + { + "value": "foot per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "ftΒ·s⁻¹", + "ascii": "ft*s^-1", + "html": "ft/s", + "latex": "\\ensuremath{\\mathrm{ft/s}}", + "id": "ft*s^-1", + "mathml": "ft/s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu108" + }, + { + "type": "unitsml", + "id": "u:foot_per_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FT-PER-SEC" + } + ], + "short": "foot_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq12", + "name": "velocity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd11", + "name": "velocity", + "expression": "LΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu78", + "name": "foot", + "symbol": "β€²" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu109", + "unitsml_id": "u:inch_per_second", + "name": "inch per second", + "names": [ + { + "value": "inch per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "inΒ·s⁻¹", + "ascii": "in*s^-1", + "html": "in/s", + "latex": "\\ensuremath{\\mathrm{in/s}}", + "id": "in*s^-1", + "mathml": "in/s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu109" + }, + { + "type": "unitsml", + "id": "u:inch_per_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/IN-PER-SEC" + } + ], + "short": "inch_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq12", + "name": "velocity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd11", + "name": "velocity", + "expression": "LΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu8", + "name": "inch", + "symbol": "β€³" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu11", + "unitsml_id": "u:newton", + "name": "newton", + "names": [ + { + "value": "newton", + "lang": "en" + }, + { + "value": "newton", + "lang": "fr" + } + ], + "symbols": { + "unicode": "N", + "ascii": "N", + "html": "N", + "latex": "\\ensuremath{\\mathrm{N}}", + "id": "N", + "mathml": "N" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu11" + }, + { + "type": "unitsml", + "id": "u:newton" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/newton" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:N" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/N" + } + ], + "short": "newton", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq13", + "name": "force", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd12", + "name": "force", + "expression": "LΒ·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu11.u1", + "unitsml_id": "u:newton_meter", + "name": "newton meter", + "names": [ + { + "value": "newton meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "NΒ·m", + "ascii": "N*m", + "html": "N · m", + "latex": "\\ensuremath{\\mathrm{N\\cdot m}}", + "id": "N*m", + "mathml": "N·m" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu11.u1" + }, + { + "type": "unitsml", + "id": "u:newton_meter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/N-M" + } + ], + "short": "newton_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq184", + "name": "torque", + "type": "derived" + }, + { + "id": "NISTq185", + "name": "bending moment of force", + "type": "derived" + }, + { + "id": "NISTq60", + "name": "moment of force", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu11", + "name": "newton", + "symbol": "N" + }, + "prefix": null + }, + { + "power": 1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu11.u1.u3", + "unitsml_id": "u:newton_meter_second", + "name": "newton meter second", + "names": [ + { + "value": "newton meter second", + "lang": "en" + } + ], + "symbols": { + "unicode": "NΒ·mΒ·s", + "ascii": "N*m*s", + "html": "N · m · s", + "latex": "\\ensuremath{\\mathrm{N\\cdot m\\cdot s}}", + "id": "N*m*s", + "mathml": "N·m·s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu11.u1.u3" + }, + { + "type": "unitsml", + "id": "u:newton_meter_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/N-M-SEC" + } + ], + "short": "newton_meter_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq133", + "name": "angular impulse", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd60", + "name": "action", + "expression": "L2Β·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu11", + "name": "newton", + "symbol": "N" + }, + "prefix": null + }, + { + "power": 1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + }, + { + "power": 1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu11.u1e-1/1", + "unitsml_id": "u:newton_per_meter", + "name": "newton per meter", + "names": [ + { + "value": "newton per meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "N/m", + "ascii": "N*m^-1", + "html": "N/m", + "latex": "\\ensuremath{\\mathrm{N/m}}", + "id": "N*m^-1", + "mathml": "N/m" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu11.u1e-1/1" + }, + { + "type": "unitsml", + "id": "u:newton_per_meter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/N-PER-M" + } + ], + "short": "newton_per_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq61", + "name": "surface tension", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd37", + "name": "surface tension", + "expression": "MΒ·T-2", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu11", + "name": "newton", + "symbol": "N" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu11.u1e2/1.u27p10'3e-2/1", + "unitsml_id": "u:newton_meter_squared_per_kilogram_squared", + "name": "newton meter squared per kilogram squared", + "names": [ + { + "value": "newton meter squared per kilogram squared", + "lang": "en" + } + ], + "symbols": { + "unicode": "NΒ·mΒ²/kgΒ²", + "ascii": "N*m^2*kg^-2", + "html": "N · m2/kg 2", + "latex": "\\ensuremath{\\mathrm{N\\cdot m^2/kg^2}}", + "id": "N*m^2*kg^-2", + "mathml": "N·m2/kg2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu11.u1e2/1.u27p10'3e-2/1" + }, + { + "type": "unitsml", + "id": "u:newton_meter_squared_per_kilogram_squared" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/N-M2-PER-KiloGM2" + } + ], + "short": "newton_meter_squared_per_kilogram_squared", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq130", + "name": "gravitational constant", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd62", + "name": "gravitational constant", + "expression": "L3Β·M-1Β·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu11", + "name": "newton", + "symbol": "N" + }, + "prefix": null + }, + { + "power": 2, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + }, + { + "power": -2, + "unit": { + "id": "NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + } + ] + }, + { + "id": "NISTu11.u3", + "unitsml_id": "u:newton_second", + "name": "newton second", + "names": [ + { + "value": "newton second", + "lang": "en" + } + ], + "symbols": { + "unicode": "NΒ·s", + "ascii": "N*s", + "html": "N · s", + "latex": "\\ensuremath{\\mathrm{N\\cdot s}}", + "id": "N*s", + "mathml": "N·s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu11.u3" + }, + { + "type": "unitsml", + "id": "u:newton_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/N-SEC" + } + ], + "short": "newton_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq129", + "name": "impulse", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd61", + "name": "momentum", + "expression": "LΒ·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu11", + "name": "newton", + "symbol": "N" + }, + "prefix": null + }, + { + "power": 1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu110", + "unitsml_id": "u:mile_per_hour", + "name": "mile per hour", + "names": [ + { + "value": "mile per hour", + "lang": "en" + } + ], + "symbols": { + "unicode": "miΒ·h⁻¹", + "ascii": "mi*h^-1", + "html": "mi/h", + "latex": "\\ensuremath{\\mathrm{mi/h}}", + "id": "mi*h^-1", + "mathml": "mi/h" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu110" + }, + { + "type": "unitsml", + "id": "u:mile_per_hour" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MI-PER-HR" + } + ], + "short": "mile_per_hour", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq12", + "name": "velocity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd11", + "name": "velocity", + "expression": "LΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu83", + "name": "mile", + "symbol": "mi" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu37", + "name": "hour", + "symbol": "h" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu111", + "unitsml_id": "u:mile_per_minute", + "name": "mile per minute", + "names": [ + { + "value": "mile per minute", + "lang": "en" + } + ], + "symbols": { + "unicode": "miΒ·min⁻¹", + "ascii": "mi*min^-1", + "html": "mi/min", + "latex": "\\ensuremath{\\mathrm{mi/min}}", + "id": "mi*min^-1", + "mathml": "mi/min" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu111" + }, + { + "type": "unitsml", + "id": "u:mile_per_minute" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MI-PER-MIN" + } + ], + "short": "mile_per_minute", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq12", + "name": "velocity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd11", + "name": "velocity", + "expression": "LΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu83", + "name": "mile", + "symbol": "mi" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu36", + "name": "minute", + "symbol": "β€²" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu112", + "unitsml_id": "u:mile_per_second", + "name": "mile per second", + "names": [ + { + "value": "mile per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "miΒ·s⁻¹", + "ascii": "mi*s^-1", + "html": "mi/s", + "latex": "\\ensuremath{\\mathrm{mi/s}}", + "id": "mi*s^-1", + "mathml": "mi/s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu112" + }, + { + "type": "unitsml", + "id": "u:mile_per_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MI-PER-SEC" + } + ], + "short": "mile_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq12", + "name": "velocity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd11", + "name": "velocity", + "expression": "LΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu83", + "name": "mile", + "symbol": "mi" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu115", + "unitsml_id": "u:stere", + "name": "stere", + "names": [ + { + "value": "stere", + "lang": "en" + } + ], + "symbols": { + "unicode": "st", + "ascii": "st", + "html": "st", + "latex": "\\ensuremath{\\mathrm{st}}", + "id": "st", + "mathml": "st" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu115" + }, + { + "type": "unitsml", + "id": "u:stere" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:misc:code:st" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/STR" + } + ], + "short": "stere", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 3, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu116", + "unitsml_id": "u:gamma", + "name": "gamma", + "names": [ + { + "value": "gamma", + "lang": "en" + } + ], + "symbols": { + "unicode": "Ξ³", + "ascii": "gamma", + "html": "γ", + "latex": "\\ensuremath{\\gamma}}", + "id": "gamma", + "mathml": "γ" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu116" + }, + { + "type": "unitsml", + "id": "u:gamma" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/GAMMA" + } + ], + "short": "gamma", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq14", + "name": "magnetic flux density", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd13", + "name": "magnetic flux density", + "expression": "MΒ·T-2Β·I-1", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu21", + "name": "tesla", + "symbol": "T" + }, + "prefix": { + "id": "NISTp10_-9", + "name": "nano", + "symbol": "n" + } + } + ] + }, + { + "id": "NISTu117", + "unitsml_id": "u:ec_therm", + "name": "therm (EC)", + "names": [ + { + "value": "therm (EC)", + "lang": "en" + } + ], + "symbols": { + "unicode": "thm (EC)", + "ascii": "thm (EC)", + "html": "thm (EC)", + "latex": "\\ensuremath{\\mathrm{thm (EC)}}", + "id": "thm (EC)", + "mathml": "thm (EC)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu117" + }, + { + "type": "unitsml", + "id": "u:ec_therm" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/THERM_EC" + } + ], + "short": "ec_therm", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq17", + "name": "energy", + "type": "derived" + }, + { + "id": "NISTq18", + "name": "work", + "type": "derived" + }, + { + "id": "NISTq182", + "name": "kinetic energy", + "type": "derived" + }, + { + "id": "NISTq183", + "name": "mechanical energy", + "type": "derived" + }, + { + "id": "NISTq19", + "name": "amount of heat", + "type": "derived" + }, + { + "id": "NISTq77", + "name": "potential energy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu118", + "unitsml_id": "u:roentgen", + "name": "roentgen", + "names": [ + { + "value": "roentgen", + "lang": "en" + } + ], + "symbols": { + "unicode": "R", + "ascii": "R", + "html": "R", + "latex": "\\ensuremath{\\mathrm{R}}", + "id": "R", + "mathml": "R" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu118" + }, + { + "type": "unitsml", + "id": "u:roentgen" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:cgs:code:R" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/R" + } + ], + "short": "roentgen", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq75", + "name": "exposure (x and gamma rays)", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd49", + "name": "exposure", + "expression": "M-1Β·TΒ·I", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_nist_acceptable", + "name": "non-SI but acceptable by NIST SP 811", + "short": "nonsi-nist-acceptable", + "acceptable": true + }, + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu119", + "unitsml_id": "u:gauss", + "name": "gauss", + "names": [ + { + "value": "gauss", + "lang": "en" + } + ], + "symbols": { + "unicode": "G", + "ascii": "G", + "html": "G", + "latex": "\\ensuremath{\\mathrm{G}}", + "id": "G", + "mathml": "G" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu119" + }, + { + "type": "unitsml", + "id": "u:gauss" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:cgs:code:G" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/GAUSS" + } + ], + "short": "gauss", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq14", + "name": "magnetic flux density", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd13", + "name": "magnetic flux density", + "expression": "MΒ·T-2Β·I-1", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu12", + "unitsml_id": "u:pascal", + "name": "pascal", + "names": [ + { + "value": "pascal", + "lang": "en" + }, + { + "value": "pascal", + "lang": "fr" + } + ], + "symbols": { + "unicode": "Pa", + "ascii": "Pa", + "html": "Pa", + "latex": "\\ensuremath{\\mathrm{Pa}}", + "id": "Pa", + "mathml": "Pa" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu12" + }, + { + "type": "unitsml", + "id": "u:pascal" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/pascal" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:Pa" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/PA" + } + ], + "short": "pascal", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq134", + "name": "normal stress", + "type": "derived" + }, + { + "id": "NISTq135", + "name": "shear stress", + "type": "derived" + }, + { + "id": "NISTq141", + "name": "modulus of elasticity", + "type": "derived" + }, + { + "id": "NISTq142", + "name": "modulus of rigidity", + "type": "derived" + }, + { + "id": "NISTq143", + "name": "modulus of compression", + "type": "derived" + }, + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu12.u3", + "unitsml_id": "u:pascal_second", + "name": "pascal second", + "names": [ + { + "value": "pascal second", + "lang": "en" + } + ], + "symbols": { + "unicode": "PaΒ·s", + "ascii": "Pa*s", + "html": "Pa · s", + "latex": "\\ensuremath{\\mathrm{Pa\\cdot s}}", + "id": "Pa*s", + "mathml": "Pa·s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu12.u3" + }, + { + "type": "unitsml", + "id": "u:pascal_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/PA-SEC" + } + ], + "short": "pascal_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq59", + "name": "dynamic viscosity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd36", + "name": "dynamic viscosity", + "expression": "L-1Β·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu12", + "name": "pascal", + "symbol": "Pa" + }, + "prefix": null + }, + { + "power": 1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu12.u5e-1/1", + "unitsml_id": "u:pascal_per_kelvin", + "name": "pascal per kelvin", + "names": [ + { + "value": "pascal per kelvin", + "lang": "en" + } + ], + "symbols": { + "unicode": "Pa/K", + "ascii": "Pa*K^-1", + "html": "Pa/K", + "latex": "\\ensuremath{\\mathrm{Pa/K}}", + "id": "Pa*K^-1", + "mathml": "Pa/K" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu12.u5e-1/1" + }, + { + "type": "unitsml", + "id": "u:pascal_per_kelvin" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/PA-PER-K" + } + ], + "short": "pascal_per_kelvin", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq159", + "name": "pressure coefficient", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd69", + "name": "pressure coefficient", + "expression": "L-1Β·MΒ·T-2Β·Theta-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu12", + "name": "pascal", + "symbol": "Pa" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu5", + "name": "kelvin", + "symbol": "Β°K" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu120", + "unitsml_id": "u:kayser", + "name": "kayser", + "names": [ + { + "value": "kayser", + "lang": "en" + } + ], + "symbols": { + "unicode": "K", + "ascii": "K", + "html": "K", + "latex": "\\ensuremath{\\mathrm{K}}", + "id": "kayser", + "mathml": "K" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu120" + }, + { + "type": "unitsml", + "id": "u:kayser" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:cgs:code:Ky" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/KY" + } + ], + "short": "kayser", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq50", + "name": "wavenumber", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd29", + "name": "wavenumber", + "expression": "L-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu121", + "unitsml_id": "u:centistokes", + "name": "centistokes", + "names": [ + { + "value": "centistokes", + "lang": "en" + } + ], + "symbols": { + "unicode": "cSt", + "ascii": "cSt", + "html": "cSt", + "latex": "\\ensuremath{\\mathrm{cSt}}", + "id": "cSt", + "mathml": "cSt" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu121" + }, + { + "type": "unitsml", + "id": "u:centistokes" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/CentiST" + } + ], + "short": "centistokes", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq85", + "name": "kinematic viscosity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd56", + "name": "kinematic viscosity", + "expression": "L2Β·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu142", + "name": "stokes", + "symbol": "St" + }, + "prefix": { + "id": "NISTp10_-2", + "name": "centi", + "symbol": "c" + } + } + ] + }, + { + "id": "NISTu122", + "unitsml_id": "u:micron", + "name": "micron", + "names": [ + { + "value": "micron", + "lang": "en" + } + ], + "symbols": { + "unicode": "ΞΌ", + "ascii": "micron", + "html": "μ", + "latex": "\\ensuremath{\\mathrm{mu}}", + "id": "micron", + "mathml": "μ" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu122" + }, + { + "type": "unitsml", + "id": "u:micron" + } + ], + "references": [], + "short": "micron", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + }, + { + "id": "NISTq48", + "name": "distance", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": { + "id": "NISTp10_-6", + "name": "micro", + "symbol": "ΞΌ" + } + } + ] + }, + { + "id": "NISTu123", + "unitsml_id": "u:mil (length)", + "name": "mil (length)", + "names": [ + { + "value": "mil (length)", + "lang": "en" + }, + { + "value": "mil", + "lang": "en" + }, + { + "value": "thou", + "lang": "en" + } + ], + "symbols": { + "unicode": "thou", + "ascii": "thou", + "html": "thou", + "latex": "\\ensuremath{\\mathrm{thou}}", + "id": "thou", + "mathml": "thou" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu123" + }, + { + "type": "unitsml", + "id": "u:mil (length)" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[mil_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MilLength" + } + ], + "short": "mil (length)", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + }, + { + "id": "NISTq48", + "name": "distance", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu8", + "name": "inch", + "symbol": "β€³" + }, + "prefix": { + "id": "NISTp10_-3", + "name": "milli", + "symbol": "m" + } + } + ] + }, + { + "id": "NISTu124", + "unitsml_id": "u:stilb", + "name": "stilb", + "names": [ + { + "value": "stilb", + "lang": "en" + } + ], + "symbols": { + "unicode": "sb", + "ascii": "sb", + "html": "sb", + "latex": "\\ensuremath{\\mathrm{sb}}", + "id": "sb", + "mathml": "sb" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu124" + }, + { + "type": "unitsml", + "id": "u:stilb" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:cgs:code:sb" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/STILB" + } + ], + "short": "stilb", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq56", + "name": "luminance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd27", + "name": "illuminance", + "expression": "L-2Β·J", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "luminous_intensity", + "symbol": "J", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu125", + "unitsml_id": "u:kilogram_force_second_squared_per_meter", + "name": "kilogram-force second squared per meter", + "names": [ + { + "value": "kilogram-force second squared per meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "kgfΒ·sΒ²m⁻¹", + "ascii": "kgf*s^2/m", + "html": "kgf · s2/m", + "latex": "\\ensuremath{\\mathrm{kgf\\cdot s^2/m}}", + "id": "kgf*s^2/m", + "mathml": "kgf·s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu125" + }, + { + "type": "unitsml", + "id": "u:kilogram_force_second_squared_per_meter" + } + ], + "references": [], + "short": "kilogram_force_second_squared_per_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": 2, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu126", + "unitsml_id": "u:kilogram_force_meter", + "name": "kilogram-force meter", + "names": [ + { + "value": "kilogram-force meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "kgfΒ·m", + "ascii": "kgf*m", + "html": "kgf · m", + "latex": "\\ensuremath{\\mathrm{kgf\\cdot m}}", + "id": "kgf*m", + "mathml": "kgf·m" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu126" + }, + { + "type": "unitsml", + "id": "u:kilogram_force_meter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/KiloGM_F-M" + } + ], + "short": "kilogram_force_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq17", + "name": "energy", + "type": "derived" + }, + { + "id": "NISTq18", + "name": "work", + "type": "derived" + }, + { + "id": "NISTq184", + "name": "torque", + "type": "derived" + }, + { + "id": "NISTq185", + "name": "bending moment of force", + "type": "derived" + }, + { + "id": "NISTq60", + "name": "moment of force", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": 1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu127", + "unitsml_id": "u:electric_horsepower", + "name": "horsepower, electric", + "names": [ + { + "value": "horsepower, electric", + "lang": "en" + }, + { + "value": "electric horsepower", + "lang": "en" + } + ], + "symbols": { + "unicode": "hp", + "ascii": "hp", + "html": "hp", + "latex": "\\ensuremath{\\mathrm{hp}}", + "id": "hp_electric", + "mathml": "hp" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu127" + }, + { + "type": "unitsml", + "id": "u:electric_horsepower" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/HP_Electric" + } + ], + "short": "electric_horsepower", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq20", + "name": "power", + "type": "derived" + }, + { + "id": "NISTq21", + "name": "radiant flux", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu128", + "unitsml_id": "u:poise", + "name": "poise", + "names": [ + { + "value": "poise", + "lang": "en" + } + ], + "symbols": { + "unicode": "P", + "ascii": "P", + "html": "P", + "latex": "\\ensuremath{\\mathrm{P}}", + "id": "P", + "mathml": "P" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu128" + }, + { + "type": "unitsml", + "id": "u:poise" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:cgs:code:P" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/POISE" + } + ], + "short": "poise", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq59", + "name": "dynamic viscosity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd36", + "name": "dynamic viscosity", + "expression": "L-1Β·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu129", + "unitsml_id": "u:rhe", + "name": "rhe", + "names": [ + { + "value": "rhe", + "lang": "en" + } + ], + "symbols": { + "unicode": "rhe", + "ascii": "rhe", + "html": "rhe", + "latex": "\\ensuremath{\\mathrm{rhe}}", + "id": "rhe", + "mathml": "rhe" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu129" + }, + { + "type": "unitsml", + "id": "u:rhe" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/RHE" + } + ], + "short": "rhe", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq91", + "name": "fluidity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd52", + "name": "fluidity", + "expression": "LΒ·M-1Β·T", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu12e-1/1", + "unitsml_id": "u:pascal_to_the_power_minus_one", + "name": "pascal to the power minus one", + "names": [ + { + "value": "pascal to the power minus one", + "lang": "en" + } + ], + "symbols": { + "unicode": "Pa⁻¹", + "ascii": "Pa^-1", + "html": "Pa-1", + "latex": "\\ensuremath{\\mathrm{Pa^{-1}}}", + "id": "Pa^-1", + "mathml": "Pa1" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu12e-1/1" + }, + { + "type": "unitsml", + "id": "u:pascal_to_the_power_minus_one" + } + ], + "references": [], + "short": "pascal_to_the_power_minus_one", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq139", + "name": "compressibility", + "type": "derived" + }, + { + "id": "NISTq160", + "name": "isothermal compressibility", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd63", + "name": "compressibility", + "expression": "LΒ·M-1Β·T2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": -1, + "unit": { + "id": "NISTu12", + "name": "pascal", + "symbol": "Pa" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu13", + "unitsml_id": "u:joule", + "name": "joule", + "names": [ + { + "value": "joule", + "lang": "en" + }, + { + "value": "joule", + "lang": "fr" + } + ], + "symbols": { + "unicode": "J", + "ascii": "J", + "html": "J", + "latex": "\\ensuremath{\\mathrm{J}}", + "id": "J", + "mathml": "J" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu13" + }, + { + "type": "unitsml", + "id": "u:joule" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/joule" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:J" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/J" + } + ], + "short": "joule", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq152", + "name": "Lagrange function", + "type": "derived" + }, + { + "id": "NISTq153", + "name": "Hamilton function", + "type": "derived" + }, + { + "id": "NISTq17", + "name": "energy", + "type": "derived" + }, + { + "id": "NISTq18", + "name": "work", + "type": "derived" + }, + { + "id": "NISTq182", + "name": "kinetic energy", + "type": "derived" + }, + { + "id": "NISTq183", + "name": "mechanical energy", + "type": "derived" + }, + { + "id": "NISTq19", + "name": "amount of heat", + "type": "derived" + }, + { + "id": "NISTq77", + "name": "potential energy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu13.u1e-3/1", + "unitsml_id": "u:joule_per_cubic_meter", + "name": "joule per cubic meter", + "names": [ + { + "value": "joule per cubic meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "J/mΒ³", + "ascii": "J*m^-3", + "html": "J/m3", + "latex": "\\ensuremath{\\mathrm{J/m^3}}", + "id": "J*m^-3", + "mathml": "J/m3" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu13.u1e-3/1" + }, + { + "type": "unitsml", + "id": "u:joule_per_cubic_meter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/J-PER-M3" + } + ], + "short": "joule_per_cubic_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq67", + "name": "energy density", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu13", + "name": "joule", + "symbol": "J" + }, + "prefix": null + }, + { + "power": -3, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu13.u27p10'3e-1/1", + "unitsml_id": "u:joule_per_kilogram", + "name": "joule per kilogram", + "names": [ + { + "value": "joule per kilogram", + "lang": "en" + } + ], + "symbols": { + "unicode": "J/kg", + "ascii": "J*kg^-1", + "html": "J/kg", + "latex": "\\ensuremath{\\mathrm{J/kg}}", + "id": "J*kg^-1", + "mathml": "J/kg" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu13.u27p10'3e-1/1" + }, + { + "type": "unitsml", + "id": "u:joule_per_kilogram" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/J-PER-KiloGM" + } + ], + "short": "joule_per_kilogram", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq65", + "name": "specific energy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd25", + "name": "absorbed dose", + "expression": "L2Β·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu13", + "name": "joule", + "symbol": "J" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + } + ] + }, + { + "id": "NISTu13.u27p10'3e-1/1.u5e-1/1", + "unitsml_id": "u:joule_per_kilogram_kelvin", + "name": "joule per kilogram kelvin", + "names": [ + { + "value": "joule per kilogram kelvin", + "lang": "en" + } + ], + "symbols": { + "unicode": "J/(kgΒ·K)", + "ascii": "J*kg^-1*K^-1", + "html": "J/(kg · K)", + "latex": "\\ensuremath{\\mathrm{J/(kg\\cdot K)}}", + "id": "J*kg^-1*K^-1", + "mathml": "J/(kg·K)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu13.u27p10'3e-1/1.u5e-1/1" + }, + { + "type": "unitsml", + "id": "u:joule_per_kilogram_kelvin" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/J-PER-KiloGM-K" + } + ], + "short": "joule_per_kilogram_kelvin", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq64", + "name": "specific heat capacity", + "type": "derived" + }, + { + "id": "NISTq80", + "name": "specific entropy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd40", + "name": "specific heat capacity", + "expression": "L2Β·T-2Β·Theta-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu13", + "name": "joule", + "symbol": "J" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -1, + "unit": { + "id": "NISTu5", + "name": "kelvin", + "symbol": "Β°K" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu13.u3", + "unitsml_id": "u:joule_second", + "name": "joule second", + "names": [ + { + "value": "joule second", + "lang": "en" + } + ], + "symbols": { + "unicode": "JΒ·s", + "ascii": "J*s", + "html": "J · s", + "latex": "\\ensuremath{\\mathrm{J\\cdot s}}", + "id": "J*s", + "mathml": "J·s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu13.u3" + }, + { + "type": "unitsml", + "id": "u:joule_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/J-SEC" + } + ], + "short": "joule_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq154", + "name": "action", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd60", + "name": "action", + "expression": "L2Β·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu13", + "name": "joule", + "symbol": "J" + }, + "prefix": null + }, + { + "power": 1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu13.u5e-1/1", + "unitsml_id": "u:joule_per_kelvin", + "name": "joule per kelvin", + "names": [ + { + "value": "joule per kelvin", + "lang": "en" + } + ], + "symbols": { + "unicode": "J/K", + "ascii": "J*K^-1", + "html": "J/K", + "latex": "\\ensuremath{\\mathrm{J/K}}", + "id": "J*K^-1", + "mathml": "J/K" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu13.u5e-1/1" + }, + { + "type": "unitsml", + "id": "u:joule_per_kelvin" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/J-PER-K" + } + ], + "short": "joule_per_kelvin", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq63", + "name": "heat capacity", + "type": "derived" + }, + { + "id": "NISTq79", + "name": "entropy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd39", + "name": "heat capacity", + "expression": "L2Β·MΒ·T-2Β·Theta-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu13", + "name": "joule", + "symbol": "J" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu5", + "name": "kelvin", + "symbol": "Β°K" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu13.u6e-1/1", + "unitsml_id": "u:joule_per_mole", + "name": "joule per mole", + "names": [ + { + "value": "joule per mole", + "lang": "en" + } + ], + "symbols": { + "unicode": "J/mol", + "ascii": "J*mol^-1", + "html": "J/mol", + "latex": "\\ensuremath{\\mathrm{J/mol}}", + "id": "J*mol^-1", + "mathml": "J/mol" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu13.u6e-1/1" + }, + { + "type": "unitsml", + "id": "u:joule_per_mole" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/J-PER-MOL" + } + ], + "short": "joule_per_mole", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq73", + "name": "molar energy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd47", + "name": "molar energy", + "expression": "L2Β·MΒ·T-2Β·N-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu13", + "name": "joule", + "symbol": "J" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu6", + "name": "mole", + "symbol": "mol" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu13.u6e-1/1.u5e-1/1", + "unitsml_id": "u:joule_per_mole_kelvin", + "name": "joule per mole kelvin", + "names": [ + { + "value": "joule per mole kelvin", + "lang": "en" + } + ], + "symbols": { + "unicode": "J/(molΒ·K)", + "ascii": "J*mol^-1*K^-1", + "html": "J/(mol · K)", + "latex": "\\ensuremath{\\mathrm{J/(mol\\cdot K)}}", + "id": "J*mol^-1*K^-1", + "mathml": "J/(mol·K)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu13.u6e-1/1.u5e-1/1" + }, + { + "type": "unitsml", + "id": "u:joule_per_mole_kelvin" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/J-PER-MOL-K" + } + ], + "short": "joule_per_mole_kelvin", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq74", + "name": "molar entropy", + "type": "derived" + }, + { + "id": "NISTq83", + "name": "molar heat capacity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd48", + "name": "molar entropy", + "expression": "L2Β·MΒ·T-2Β·Theta-1Β·N-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": -1, + "unit": { + "id": "NISTu5", + "name": "kelvin", + "symbol": "Β°K" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu130", + "unitsml_id": "u:liter", + "name": "litre", + "names": [ + { + "value": "litre", + "lang": "en" + }, + { + "value": "liter", + "lang": "en" + }, + { + "value": "litre", + "lang": "fr" + } + ], + "symbols": { + "unicode": "L", + "ascii": "L", + "html": "L", + "latex": "\\ensuremath{\\mathrm{L}}", + "id": "L", + "mathml": "L" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu130" + }, + { + "type": "unitsml", + "id": "u:liter" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/litre" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:l" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/L" + } + ], + "short": "liter", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu131", + "unitsml_id": "u:nautical_mile", + "name": "nautical mile", + "names": [ + { + "value": "nautical mile", + "lang": "en" + } + ], + "symbols": { + "unicode": "M", + "ascii": "M", + "html": "M", + "latex": "\\ensuremath{\\mathrm{M}}", + "id": "M", + "mathml": "M" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu131" + }, + { + "type": "unitsml", + "id": "u:nautical_mile" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[nmi_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MI_N" + } + ], + "short": "nautical_mile", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + }, + { + "id": "NISTq48", + "name": "distance", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu133", + "unitsml_id": "u:degree_Fahrenheit", + "name": "degree Fahrenheit", + "names": [ + { + "value": "degree Fahrenheit", + "lang": "en" + } + ], + "symbols": { + "unicode": "Β°F", + "ascii": "degF", + "html": "°F", + "latex": "\\ensuremath{\\mathrm{^{\\circ}F}}", + "id": "degF", + "mathml": "°F" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu133" + }, + { + "type": "unitsml", + "id": "u:degree_Fahrenheit" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:heat:code:[degF]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/DEG_F" + } + ], + "short": "degree_Fahrenheit", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq175", + "name": "Fahrenheit temperature", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd5", + "name": "temperature", + "expression": "Theta", + "components": [ + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_interval", + "name": "continuous interval scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu134", + "unitsml_id": "u:standard_atmosphere", + "name": "standard atmosphere", + "names": [ + { + "value": "standard atmosphere", + "lang": "en" + } + ], + "symbols": { + "unicode": "atm", + "ascii": "atm", + "html": "atm", + "latex": "\\ensuremath{\\mathrm{atm}}", + "id": "atm", + "mathml": "atm" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu134" + }, + { + "type": "unitsml", + "id": "u:standard_atmosphere" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:const:code:atm" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/ATM" + } + ], + "short": "standard_atmosphere", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu135", + "unitsml_id": "u:technical_atmosphere", + "name": "technical atmosphere", + "names": [ + { + "value": "technical atmosphere", + "lang": "en" + } + ], + "symbols": { + "unicode": "at", + "ascii": "at", + "html": "at", + "latex": "\\ensuremath{\\mathrm{at}}", + "id": "at", + "mathml": "at" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu135" + }, + { + "type": "unitsml", + "id": "u:technical_atmosphere" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:misc:code:att" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/ATM_T" + } + ], + "short": "technical_atmosphere", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu14", + "unitsml_id": "u:watt", + "name": "watt", + "names": [ + { + "value": "watt", + "lang": "en" + }, + { + "value": "watt", + "lang": "fr" + } + ], + "symbols": { + "unicode": "W", + "ascii": "W", + "html": "W", + "latex": "\\ensuremath{\\mathrm{W}}", + "id": "W", + "mathml": "W" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu14" + }, + { + "type": "unitsml", + "id": "u:watt" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/watt" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:W" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/W" + } + ], + "short": "watt", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq20", + "name": "power", + "type": "derived" + }, + { + "id": "NISTq21", + "name": "radiant flux", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu14.u10e-1/1", + "unitsml_id": "u:watt_per_steradian", + "name": "watt per steradian", + "names": [ + { + "value": "watt per steradian", + "lang": "en" + } + ], + "symbols": { + "unicode": "W/sr", + "ascii": "W*sr^-1", + "html": "W/sr", + "latex": "\\ensuremath{\\mathrm{W/sr}}", + "id": "W*sr^-1", + "mathml": "W/sr" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu14.u10e-1/1" + }, + { + "type": "unitsml", + "id": "u:watt_per_steradian" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/W-PER-SR" + } + ], + "short": "watt_per_steradian", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq88", + "name": "radiant intensity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu14", + "name": "watt", + "symbol": "W" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu10", + "name": "steradian", + "symbol": "sr" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu14.u1e-1/1.u5e-1/1", + "unitsml_id": "u:watt_per_meter_kelvin", + "name": "watt per meter kelvin", + "names": [ + { + "value": "watt per meter kelvin", + "lang": "en" + } + ], + "symbols": { + "unicode": "W/(mΒ·K)", + "ascii": "W*m^-1*K^-1", + "html": "W/(m · K)", + "latex": "\\ensuremath{\\mathrm{W/(m\\cdot K)}}", + "id": "W*m^-1*K^-1", + "mathml": "W/(m·K)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu14.u1e-1/1.u5e-1/1" + }, + { + "type": "unitsml", + "id": "u:watt_per_meter_kelvin" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/W-PER-M-K" + } + ], + "short": "watt_per_meter_kelvin", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq66", + "name": "thermal conductivity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd41", + "name": "thermal conductivity", + "expression": "LΒ·MΒ·T-3Β·Theta-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": -1, + "unit": { + "id": "NISTu5", + "name": "kelvin", + "symbol": "Β°K" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu14.u1e-2/1", + "unitsml_id": "u:watt_per_square_meter", + "name": "watt per square meter", + "names": [ + { + "value": "watt per square meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "W/mΒ²", + "ascii": "W*m^-2", + "html": "W/m2", + "latex": "\\ensuremath{\\mathrm{W/m^2}}", + "id": "W*m^-2", + "mathml": "W/m2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu14.u1e-2/1" + }, + { + "type": "unitsml", + "id": "u:watt_per_square_meter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/W-PER-M2" + } + ], + "short": "watt_per_square_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq62", + "name": "heat flux density", + "type": "derived" + }, + { + "id": "NISTq78", + "name": "irradiance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd38", + "name": "heat flux density", + "expression": "MΒ·T-3", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu14", + "name": "watt", + "symbol": "W" + }, + "prefix": null + }, + { + "power": -2, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu14.u1e-2/1.u10e-1/1", + "unitsml_id": "u:watt_per_square_meter_steradian", + "name": "watt per square meter steradian", + "names": [ + { + "value": "watt per square meter steradian", + "lang": "en" + } + ], + "symbols": { + "unicode": "W/(mΒ²Β·sr)", + "ascii": "W*m^-2*sr^-1", + "html": "W/(m^2 · sr)", + "latex": "\\ensuremath{\\mathrm{W/(m^2\\cdot sr)}}", + "id": "W*m^-2*sr^-1", + "mathml": "W/(m2·sr)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu14.u1e-2/1.u10e-1/1" + }, + { + "type": "unitsml", + "id": "u:watt_per_square_meter_steradian" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/W-PER-M2-SR" + } + ], + "short": "watt_per_square_meter_steradian", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq89", + "name": "radiance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd38", + "name": "heat flux density", + "expression": "MΒ·T-3", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu14", + "name": "watt", + "symbol": "W" + }, + "prefix": null + }, + { + "power": -2, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu10", + "name": "steradian", + "symbol": "sr" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu14.u3", + "unitsml_id": "u:watt_second", + "name": "watt second", + "names": [ + { + "value": "watt second", + "lang": "en" + } + ], + "symbols": { + "unicode": "WΒ·s", + "ascii": "W*s", + "html": "W · s", + "latex": "\\ensuremath{\\mathrm{W\\cdot s}}", + "id": "W*s", + "mathml": "W·s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu14.u3" + }, + { + "type": "unitsml", + "id": "u:watt_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/W-SEC" + } + ], + "short": "watt_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq17", + "name": "energy", + "type": "derived" + }, + { + "id": "NISTq18", + "name": "work", + "type": "derived" + }, + { + "id": "NISTq182", + "name": "kinetic energy", + "type": "derived" + }, + { + "id": "NISTq183", + "name": "mechanical energy", + "type": "derived" + }, + { + "id": "NISTq19", + "name": "amount of heat", + "type": "derived" + }, + { + "id": "NISTq77", + "name": "potential energy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu14", + "name": "watt", + "symbol": "W" + }, + "prefix": null + }, + { + "power": 1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu142", + "unitsml_id": "u:stokes", + "name": "stokes", + "names": [ + { + "value": "stokes", + "lang": "en" + } + ], + "symbols": { + "unicode": "St", + "ascii": "St", + "html": "St", + "latex": "\\ensuremath{\\mathrm{St}}", + "id": "St", + "mathml": "St" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu142" + }, + { + "type": "unitsml", + "id": "u:stokes" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:cgs:code:St" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/ST" + } + ], + "short": "stokes", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq85", + "name": "kinematic viscosity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd56", + "name": "kinematic viscosity", + "expression": "L2Β·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu143", + "unitsml_id": "u:gal", + "name": "gal", + "names": [ + { + "value": "gal", + "lang": "en" + } + ], + "symbols": { + "unicode": "Gal", + "ascii": "Gal", + "html": "Gal", + "latex": "\\ensuremath{\\mathrm{Gal}}", + "id": "Gal", + "mathml": "Gal" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu143" + }, + { + "type": "unitsml", + "id": "u:gal" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:cgs:code:Gal" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/GALILEO" + } + ], + "short": "gal", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq49", + "name": "acceleration", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd28", + "name": "acceleration", + "expression": "LΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu144", + "unitsml_id": "u:oersted", + "name": "oersted", + "names": [ + { + "value": "oersted", + "lang": "en" + } + ], + "symbols": { + "unicode": "Oe", + "ascii": "Oe", + "html": "Oe", + "latex": "\\ensuremath{\\mathrm{Oe}}", + "id": "Oe", + "mathml": "Oe" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu144" + }, + { + "type": "unitsml", + "id": "u:oersted" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:cgs:code:Oe" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/OERSTED" + } + ], + "short": "oersted", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq87", + "name": "magnetic field", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd33", + "name": "magnetic field strength", + "expression": "L-1Β·I", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu147", + "unitsml_id": "u:arc_minute", + "name": "arcminute", + "names": [ + { + "value": "arcminute", + "lang": "en" + }, + { + "value": "minute (minute of arc)", + "lang": "en" + }, + { + "value": "arcminute", + "lang": "fr" + } + ], + "symbols": { + "unicode": "β€²", + "ascii": "'", + "html": "′", + "latex": "\\ensuremath{\\mathrm{'}}", + "id": "prime", + "mathml": "" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu147" + }, + { + "type": "unitsml", + "id": "u:arc_minute" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/arcminute" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:'" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/ARCMIN" + } + ], + "short": "arc_minute", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq9", + "name": "plane angle", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd9", + "name": "plane angle", + "expression": "1", + "components": [ + { + "key": "plane_angle", + "symbol": "phi", + "power": 1 + } + ], + "dimensionless": true + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu148", + "unitsml_id": "u:arc_second", + "name": "arcsecond", + "names": [ + { + "value": "arcsecond", + "lang": "en" + }, + { + "value": "second (second of arc)", + "lang": "en" + }, + { + "value": "arcseconde", + "lang": "fr" + } + ], + "symbols": { + "unicode": "as", + "ascii": "as", + "html": "as", + "latex": "\\ensuremath{\\mathrm{as}}", + "id": "as", + "mathml": "as" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu148" + }, + { + "type": "unitsml", + "id": "u:arc_second" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/arcsecond" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/ARCSEC" + } + ], + "short": "arc_second", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq9", + "name": "plane angle", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd9", + "name": "plane angle", + "expression": "1", + "components": [ + { + "key": "plane_angle", + "symbol": "phi", + "power": 1 + } + ], + "dimensionless": true + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu149", + "unitsml_id": "u:arc_degree", + "name": "degree (degree of arc)", + "names": [ + { + "value": "degree (degree of arc)", + "lang": "en" + }, + { + "value": "degrΓ©", + "lang": "fr" + } + ], + "symbols": { + "unicode": "ΒΊ", + "ascii": "deg", + "html": "°", + "latex": "\\ensuremath{\\mathrm{^{\\circ}}}", + "id": "deg", + "mathml": "°" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu149" + }, + { + "type": "unitsml", + "id": "u:arc_degree" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/degree" + } + ], + "short": "arc_degree", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq9", + "name": "plane angle", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd9", + "name": "plane angle", + "expression": "1", + "components": [ + { + "key": "plane_angle", + "symbol": "phi", + "power": 1 + } + ], + "dimensionless": true + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu15", + "unitsml_id": "u:coulomb", + "name": "coulomb", + "names": [ + { + "value": "coulomb", + "lang": "en" + }, + { + "value": "coulomb", + "lang": "fr" + } + ], + "symbols": { + "unicode": "C", + "ascii": "C", + "html": "C", + "latex": "\\ensuremath{\\mathrm{C}}", + "id": "C", + "mathml": "C" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu15" + }, + { + "type": "unitsml", + "id": "u:coulomb" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/coulomb" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:base-unit:code:C" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/C" + } + ], + "short": "coulomb", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq22", + "name": "electric charge", + "type": "derived" + }, + { + "id": "NISTq23", + "name": "amount of electricity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd17", + "name": "electric charge", + "expression": "TΒ·I", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu15.u1e-2/1", + "unitsml_id": "u:coulomb_per_square_meter", + "name": "coulomb per square meter", + "names": [ + { + "value": "coulomb per square meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "C/mΒ²", + "ascii": "C*m^-2", + "html": "C/m2", + "latex": "\\ensuremath{\\mathrm{C/m^2}}", + "id": "C*m^-2", + "mathml": "C/m2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu15.u1e-2/1" + }, + { + "type": "unitsml", + "id": "u:coulomb_per_square_meter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/C-PER-M2" + } + ], + "short": "coulomb_per_square_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq81", + "name": "surface charge density", + "type": "derived" + }, + { + "id": "NISTq82", + "name": "electric displacement", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd53", + "name": "surface charge density", + "expression": "M-2Β·TΒ·I", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": -2 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu15", + "name": "coulomb", + "symbol": "C" + }, + "prefix": null + }, + { + "power": -2, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu15.u1e-3/1", + "unitsml_id": "u:coulomb_per_cubic_meter", + "name": "coulomb per cubic meter", + "names": [ + { + "value": "coulomb per cubic meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "C/mΒ³", + "ascii": "C*m^-3", + "html": "C/m3", + "latex": "\\ensuremath{\\mathrm{C/m^3}}", + "id": "C*m^-3", + "mathml": "C/m3" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu15.u1e-3/1" + }, + { + "type": "unitsml", + "id": "u:coulomb_per_cubic_meter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/C-PER-M3" + } + ], + "short": "coulomb_per_cubic_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq69", + "name": "electric charge density", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd43", + "name": "electric charge density", + "expression": "L-3Β·TΒ·I", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu15", + "name": "coulomb", + "symbol": "C" + }, + "prefix": null + }, + { + "power": -3, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu15.u27p10'3e-1/1", + "unitsml_id": "u:coulomb_per_kilogram", + "name": "coulomb per kilogram", + "names": [ + { + "value": "coulomb per kilogram", + "lang": "en" + } + ], + "symbols": { + "unicode": "C/kg", + "ascii": "C*kg^-1", + "html": "C/kg", + "latex": "\\ensuremath{\\mathrm{C/kg}}", + "id": "C*kg^-1", + "mathml": "C/kg" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu15.u27p10'3e-1/1" + }, + { + "type": "unitsml", + "id": "u:coulomb_per_kilogram" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/C-PER-KiloGM" + } + ], + "short": "coulomb_per_kilogram", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq197", + "name": "exposure", + "type": "derived" + }, + { + "id": "NISTq75", + "name": "exposure (x and gamma rays)", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd49", + "name": "exposure", + "expression": "M-1Β·TΒ·I", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu15", + "name": "coulomb", + "symbol": "C" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + } + ] + }, + { + "id": "NISTu152", + "unitsml_id": "u:knot", + "name": "nautical mile per hour", + "names": [ + { + "value": "nautical mile per hour", + "lang": "en" + }, + { + "value": "knot", + "lang": "en" + } + ], + "symbols": { + "unicode": "kn", + "ascii": "kn", + "html": "kn", + "latex": "\\ensuremath{\\mathrm{kn}}", + "id": "kn", + "mathml": "kn" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu152" + }, + { + "type": "unitsml", + "id": "u:knot" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[kn_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/KN" + } + ], + "short": "knot", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq12", + "name": "velocity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd11", + "name": "velocity", + "expression": "LΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu153", + "unitsml_id": "u:neper", + "name": "neper", + "names": [ + { + "value": "neper", + "lang": "en" + }, + { + "value": "nΓ©per", + "lang": "fr" + } + ], + "symbols": { + "unicode": "Np", + "ascii": "Np", + "html": "Np", + "latex": "\\ensuremath{\\mathrm{Np}}", + "id": "Np", + "mathml": "Np" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu153" + }, + { + "type": "unitsml", + "id": "u:neper" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/neper" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:levels:code:Np" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/NP" + } + ], + "short": "neper", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq118", + "name": "level of a field quantity", + "type": "derived" + }, + { + "id": "NISTq119", + "name": "level of a power quantity", + "type": "derived" + }, + { + "id": "NISTq121", + "name": "ratio logarithm (Np)", + "type": "derived" + }, + { + "id": "NISTq90", + "name": "ratio logarithm (B)", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd83", + "name": "level of field quantity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "scale": { + "id": "logarithmic_field", + "name": "logarithmic field scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu154", + "unitsml_id": "u:bel", + "name": "bel", + "names": [ + { + "value": "bel", + "lang": "en" + }, + { + "value": "bel", + "lang": "fr" + } + ], + "symbols": { + "unicode": "B", + "ascii": "B", + "html": "B", + "latex": "\\ensuremath{\\mathrm{B}}", + "id": "bel_B", + "mathml": "B" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu154" + }, + { + "type": "unitsml", + "id": "u:bel" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/bel" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:levels:code:B" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/B" + } + ], + "short": "bel", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq118", + "name": "level of a field quantity", + "type": "derived" + }, + { + "id": "NISTq119", + "name": "level of a power quantity", + "type": "derived" + }, + { + "id": "NISTq90", + "name": "ratio logarithm (B)", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd83", + "name": "level of field quantity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "scale": { + "id": "logarithmic_field", + "name": "logarithmic field scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu155", + "unitsml_id": "u:decibel", + "name": "decibel", + "names": [ + { + "value": "decibel", + "lang": "en" + } + ], + "symbols": { + "unicode": "dB", + "ascii": "dB", + "html": "dB", + "latex": "\\ensuremath{\\mathrm{dB}}", + "id": "dB", + "mathml": "dB" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu155" + }, + { + "type": "unitsml", + "id": "u:decibel" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/DeciB" + } + ], + "short": "decibel", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq90", + "name": "ratio logarithm (B)", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd67", + "name": "logarithmic ratio", + "expression": "1", + "components": [], + "dimensionless": true + }, + "scale": { + "id": "logarithmic_ratio", + "name": "logarithmic ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu154", + "name": "bel", + "symbol": "B" + }, + "prefix": { + "id": "NISTp10_-1", + "name": "deci", + "symbol": "d" + } + } + ] + }, + { + "id": "NISTu156", + "unitsml_id": "u:mm_Hg", + "name": "conventional millimeter of mercury", + "names": [ + { + "value": "conventional millimeter of mercury", + "lang": "en" + }, + { + "value": "millimeter of mercury, conventional", + "lang": "en" + }, + { + "value": "millimeter of mercury", + "lang": "en" + } + ], + "symbols": { + "unicode": "mmHg", + "ascii": "mmHg", + "html": "mmHg", + "latex": "\\ensuremath{\\mathrm{mmHg}}", + "id": "mmHg", + "mathml": "mmHg" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu156" + }, + { + "type": "unitsml", + "id": "u:mm_Hg" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MilliM_HG" + } + ], + "short": "mm_Hg", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu157", + "unitsml_id": "u:darcy", + "name": "darcy", + "names": [ + { + "value": "darcy", + "lang": "en" + } + ], + "symbols": { + "unicode": "D", + "ascii": "D", + "html": "D", + "latex": "\\ensuremath{\\mathrm{D}}", + "id": "Darcy", + "mathml": "D" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu157" + }, + { + "type": "unitsml", + "id": "u:darcy" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:d" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/DARCY" + } + ], + "short": "darcy", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq72", + "name": "permeability", + "type": "derived" + }, + { + "id": "NISTq92", + "name": "hydrodynamic permeability", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd46", + "name": "permeability", + "expression": "LΒ·MΒ·T-2Β·I-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu159", + "unitsml_id": "u:gon", + "name": "gon", + "names": [ + { + "value": "gon", + "lang": "en" + } + ], + "symbols": { + "unicode": "gon", + "ascii": "gon", + "html": "gon", + "latex": "\\ensuremath{\\mathrm{gon}}", + "id": "gon", + "mathml": "gon" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu159" + }, + { + "type": "unitsml", + "id": "u:gon" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:gon" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/GON" + } + ], + "short": "gon", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq9", + "name": "plane angle", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd9", + "name": "plane angle", + "expression": "1", + "components": [ + { + "key": "plane_angle", + "symbol": "phi", + "power": 1 + } + ], + "dimensionless": true + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu16", + "unitsml_id": "u:volt", + "name": "volt", + "names": [ + { + "value": "volt", + "lang": "en" + }, + { + "value": "volt", + "lang": "fr" + } + ], + "symbols": { + "unicode": "V", + "ascii": "V", + "html": "V", + "latex": "\\ensuremath{\\mathrm{V}}", + "id": "V", + "mathml": "V" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu16" + }, + { + "type": "unitsml", + "id": "u:volt" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/volt" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:V" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/V" + } + ], + "short": "volt", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq24", + "name": "electric potential difference", + "type": "derived" + }, + { + "id": "NISTq25", + "name": "potential difference", + "type": "derived" + }, + { + "id": "NISTq26", + "name": "electromotive force", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd18", + "name": "electric potential difference", + "expression": "L2Β·MΒ·T-3Β·I-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu16.u1e-1/1", + "unitsml_id": "u:volt_per_meter", + "name": "volt per meter", + "names": [ + { + "value": "volt per meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "V/m", + "ascii": "V*m^-1", + "html": "V/m", + "latex": "\\ensuremath{\\mathrm{V/m}}", + "id": "V*m^-1", + "mathml": "V/m" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu16.u1e-1/1" + }, + { + "type": "unitsml", + "id": "u:volt_per_meter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/V-PER-M" + } + ], + "short": "volt_per_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq68", + "name": "electric field strength", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd42", + "name": "electric field strength", + "expression": "LΒ·MΒ·T-3Β·I-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu16", + "name": "volt", + "symbol": "V" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu160", + "unitsml_id": "u:kilometer_per_hour", + "name": "kilometer per hour", + "names": [ + { + "value": "kilometer per hour", + "lang": "en" + } + ], + "symbols": { + "unicode": "km/h", + "ascii": "km/h", + "html": "kh/h", + "latex": "\\ensuremath{\\mathrm{kh/h}}", + "id": "km/h", + "mathml": "kh/h" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu160" + }, + { + "type": "unitsml", + "id": "u:kilometer_per_hour" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/KiloM-PER-HR" + } + ], + "short": "kilometer_per_hour", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq107", + "name": "speed of propagation of waves", + "type": "derived" + }, + { + "id": "NISTq12", + "name": "velocity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd11", + "name": "velocity", + "expression": "LΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -1, + "unit": { + "id": "NISTu37", + "name": "hour", + "symbol": "h" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu163", + "unitsml_id": "u:neper_per_second", + "name": "neper per second", + "names": [ + { + "value": "neper per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "Np/s", + "ascii": "Np*s^-1", + "html": "Np/s", + "latex": "\\ensuremath{\\mathrm{Np/s}}", + "id": "Np*s^-1", + "mathml": "Np/s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu163" + }, + { + "type": "unitsml", + "id": "u:neper_per_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/NP-PER-SEC" + } + ], + "short": "neper_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq120", + "name": "damping coefficient", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd24", + "name": "frequency", + "expression": "T-1", + "components": [ + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu153", + "name": "neper", + "symbol": "Np" + }, + "prefix": null + }, + { + "power": -2, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu164", + "unitsml_id": "u:square_yard", + "name": "square yard", + "names": [ + { + "value": "square yard", + "lang": "en" + } + ], + "symbols": { + "unicode": "ydΒ²", + "ascii": "yd^2", + "html": "yd2", + "latex": "\\ensuremath{\\mathrm{yd^2}}", + "id": "yd^2", + "mathml": "yd2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu164" + }, + { + "type": "unitsml", + "id": "u:square_yard" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[syd_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/YD2" + } + ], + "short": "square_yard", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq8", + "name": "area", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd8", + "name": "area", + "expression": "L2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 2, + "unit": { + "id": "NISTu84", + "name": "yard", + "symbol": "yd" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu165", + "unitsml_id": "u:square_mile", + "name": "square mile", + "names": [ + { + "value": "square mile", + "lang": "en" + } + ], + "symbols": { + "unicode": "miΒ²", + "ascii": "mi^2", + "html": "mi2", + "latex": "\\ensuremath{\\mathrm{mi^2}}", + "id": "mi^2", + "mathml": "mi2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu165" + }, + { + "type": "unitsml", + "id": "u:square_mile" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-lengths:code:[smi_us]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MI2" + } + ], + "short": "square_mile", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq8", + "name": "area", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd8", + "name": "area", + "expression": "L2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 2, + "unit": { + "id": "NISTu83", + "name": "mile", + "symbol": "mi" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu166", + "unitsml_id": "u:tons_of_tnt", + "name": "ton of TNT (energy equivalent)", + "names": [ + { + "value": "ton of TNT (energy equivalent)", + "lang": "en" + }, + { + "value": "ton", + "lang": "en" + } + ], + "symbols": { + "unicode": "ton", + "ascii": "ton", + "html": "ton", + "latex": "\\ensuremath{\\mathrm{ton}}", + "id": "ton_TNT", + "mathml": "ton" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu166" + }, + { + "type": "unitsml", + "id": "u:tons_of_tnt" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/TonEnergy" + } + ], + "short": "tons_of_tnt", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq17", + "name": "energy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu167", + "unitsml_id": "u:foot_per_second_squared", + "name": "foot per second squared", + "names": [ + { + "value": "foot per second squared", + "lang": "en" + } + ], + "symbols": { + "unicode": "ft/sΒ²", + "ascii": "ft*s^-2", + "html": "ft/s2", + "latex": "\\ensuremath{\\mathrm{ft/s^2}}", + "id": "ft*s^-2", + "mathml": "ft/s2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu167" + }, + { + "type": "unitsml", + "id": "u:foot_per_second_squared" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FT-PER-SEC2" + } + ], + "short": "foot_per_second_squared", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq49", + "name": "acceleration", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd28", + "name": "acceleration", + "expression": "LΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu78", + "name": "foot", + "symbol": "β€²" + }, + "prefix": null + }, + { + "power": -2, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu168", + "unitsml_id": "u:cubic_inch", + "name": "cubic inch", + "names": [ + { + "value": "cubic inch", + "lang": "en" + } + ], + "symbols": { + "unicode": "inΒ³", + "ascii": "in^3", + "html": "in3", + "latex": "\\ensuremath{\\mathrm{in^3}}", + "id": "in^3", + "mathml": "in3" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu168" + }, + { + "type": "unitsml", + "id": "u:cubic_inch" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[cin_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/IN3" + } + ], + "short": "cubic_inch", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 3, + "unit": { + "id": "NISTu8", + "name": "inch", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu169", + "unitsml_id": "u:cubic_foot", + "name": "cubic foot", + "names": [ + { + "value": "cubic foot", + "lang": "en" + } + ], + "symbols": { + "unicode": "ftΒ³", + "ascii": "ft^3", + "html": "ft3", + "latex": "\\ensuremath{\\mathrm{ft^3}}", + "id": "ft^3", + "mathml": "ft3" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu169" + }, + { + "type": "unitsml", + "id": "u:cubic_foot" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[cft_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FT3" + } + ], + "short": "cubic_foot", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 3, + "unit": { + "id": "NISTu78", + "name": "foot", + "symbol": "β€²" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu17", + "unitsml_id": "u:farad", + "name": "farad", + "names": [ + { + "value": "farad", + "lang": "en" + }, + { + "value": "farad", + "lang": "fr" + } + ], + "symbols": { + "unicode": "F", + "ascii": "F", + "html": "F", + "latex": "\\ensuremath{\\mathrm{F}}", + "id": "F", + "mathml": "F" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu17" + }, + { + "type": "unitsml", + "id": "u:farad" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/farad" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:F" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/F" + } + ], + "short": "farad", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq27", + "name": "capacitance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd19", + "name": "capacitance", + "expression": "L-2Β·M-1Β·T4Β·I2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 4 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu17.u1e-1/1", + "unitsml_id": "u:farad_per_meter", + "name": "farad per meter", + "names": [ + { + "value": "farad per meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "F/m", + "ascii": "F*m^-1", + "html": "F/m", + "latex": "\\ensuremath{\\mathrm{F/m}}", + "id": "F*m^-1", + "mathml": "F/m" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu17.u1e-1/1" + }, + { + "type": "unitsml", + "id": "u:farad_per_meter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FARAD-PER-M" + } + ], + "short": "farad_per_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq71", + "name": "permittivity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd45", + "name": "permittivity", + "expression": "L-3Β·M-1Β·T4Β·I2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 4 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu17", + "name": "farad", + "symbol": "F" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu170", + "unitsml_id": "u:cubic_yard", + "name": "cubic yard", + "names": [ + { + "value": "cubic yard", + "lang": "en" + } + ], + "symbols": { + "unicode": "ydΒ³", + "ascii": "yd^3", + "html": "yd3", + "latex": "\\ensuremath{\\mathrm{yd^3}}", + "id": "yd^3", + "mathml": "yd3" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu170" + }, + { + "type": "unitsml", + "id": "u:cubic_yard" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[cyd_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/YD3" + } + ], + "short": "cubic_yard", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 3, + "unit": { + "id": "NISTu84", + "name": "yard", + "symbol": "yd" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu171", + "unitsml_id": "u:imperial_gallon", + "name": "gallon (UK)", + "names": [ + { + "value": "gallon (UK)", + "lang": "en" + }, + { + "value": "imperial gallon", + "lang": "en" + }, + { + "value": "gallon", + "lang": "en" + } + ], + "symbols": { + "unicode": "gal (UK)", + "ascii": "gal (UK)", + "html": "gal (UK)", + "latex": "\\ensuremath{\\mathrm{gal (UK)}}", + "id": "gal (UK)", + "mathml": "gal (UK)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu171" + }, + { + "type": "unitsml", + "id": "u:imperial_gallon" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:brit-volumes:code:[gal_br]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/GAL_IMP" + } + ], + "short": "imperial_gallon", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu172", + "unitsml_id": "u:imperial_pint", + "name": "pint (UK)", + "names": [ + { + "value": "pint (UK)", + "lang": "en" + }, + { + "value": "pint", + "lang": "en" + } + ], + "symbols": { + "unicode": "pt (UK)", + "ascii": "pt (UK)", + "html": "pt (UK)", + "latex": "\\ensuremath{\\mathrm{pint~{UK}}", + "id": "pt (UK)", + "mathml": "pt (UK)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu172" + }, + { + "type": "unitsml", + "id": "u:imperial_pint" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[pt_us]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/PINT_UK" + } + ], + "short": "imperial_pint", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu173", + "unitsml_id": "u:imperial_ounce", + "name": "fluid ounce (UK)", + "names": [ + { + "value": "fluid ounce (UK)", + "lang": "en" + }, + { + "value": "fluid ounce", + "lang": "en" + }, + { + "value": "ounce", + "lang": "en" + } + ], + "symbols": { + "unicode": "fl oz (UK)", + "ascii": "fl oz (UK)", + "html": "fl oz (UK)", + "latex": "\\ensuremath{\\mathrm{fl oz (UK)}}", + "id": "fl oz (UK)", + "mathml": "fl oz (UK)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu173" + }, + { + "type": "unitsml", + "id": "u:imperial_ounce" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[foz_us]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/OZ_VOL_UK" + } + ], + "short": "imperial_ounce", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu175", + "unitsml_id": "u:us_gallon", + "name": "gallon (US)", + "names": [ + { + "value": "gallon (US)", + "lang": "en" + }, + { + "value": "gallon", + "lang": "en" + } + ], + "symbols": { + "unicode": "gal (US)", + "ascii": "gal (US)", + "html": "gal (US)", + "latex": "\\ensuremath{\\mathrm{gal (US)}}", + "id": "gal (US)", + "mathml": "gal (US)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu175" + }, + { + "type": "unitsml", + "id": "u:us_gallon" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:brit-volumes:code:[gal_br]" + } + ], + "short": "us_gallon", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_interval", + "name": "continuous interval scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu176", + "unitsml_id": "u:us_pint", + "name": "liquid pint (US)", + "names": [ + { + "value": "liquid pint (US)", + "lang": "en" + }, + { + "value": "pint", + "lang": "en" + } + ], + "symbols": { + "unicode": "liq pint (US)", + "ascii": "liq pint (US)", + "html": "liq pint (US)", + "latex": "\\ensuremath{\\mathrm{liq pint (US)}}", + "id": "liq pint (US)", + "mathml": "liq pint (US)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu176" + }, + { + "type": "unitsml", + "id": "u:us_pint" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[pt_us]" + } + ], + "short": "us_pint", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu177", + "unitsml_id": "u:us_fluid_ounce", + "name": "fluid ounce (US)", + "names": [ + { + "value": "fluid ounce (US)", + "lang": "en" + }, + { + "value": "fluid ounce", + "lang": "en" + }, + { + "value": "ounce", + "lang": "en" + } + ], + "symbols": { + "unicode": "fl oz (US)", + "ascii": "fl oz (US)", + "html": "fl oz (US)", + "latex": "\\ensuremath{\\mathrm{fl oz (US)}}", + "id": "fl oz (US)", + "mathml": "fl oz (US)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu177" + }, + { + "type": "unitsml", + "id": "u:us_fluid_ounce" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[foz_us]" + } + ], + "short": "us_fluid_ounce", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu178", + "unitsml_id": "u:petro_barrel", + "name": "barrel (US) for petroleum", + "names": [ + { + "value": "barrel (US) for petroleum", + "lang": "en" + }, + { + "value": "barrel", + "lang": "en" + } + ], + "symbols": { + "unicode": "bbl (US)", + "ascii": "bbl (US)", + "html": "bbl (US)", + "latex": "\\ensuremath{\\mathrm{bbl (US)}}", + "id": "bbl (US)", + "mathml": "bbl (US)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu178" + }, + { + "type": "unitsml", + "id": "u:petro_barrel" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[bbl_us]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/BBL" + } + ], + "short": "petro_barrel", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu179", + "unitsml_id": "u:us_bushel", + "name": "bushel (US)", + "names": [ + { + "value": "bushel (US)", + "lang": "en" + }, + { + "value": "bushel", + "lang": "en" + } + ], + "symbols": { + "unicode": "bu (US)", + "ascii": "bu (US)", + "html": "bu (US)", + "latex": "\\ensuremath{\\mathrm{bu (US)}}", + "id": "bu (US)", + "mathml": "bu (US)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu179" + }, + { + "type": "unitsml", + "id": "u:us_bushel" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[bu_us]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/BU_US" + } + ], + "short": "us_bushel", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu18", + "unitsml_id": "u:ohm", + "name": "ohm", + "names": [ + { + "value": "ohm", + "lang": "en" + }, + { + "value": "ohm", + "lang": "fr" + } + ], + "symbols": { + "unicode": "Ω", + "ascii": "Ohm", + "html": "Ω", + "latex": "\\ensuremath{\\mathrm{\\Omega}}", + "id": "Ohm", + "mathml": "" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu18" + }, + { + "type": "unitsml", + "id": "u:ohm" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/ohm" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:Ohm" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/OHM" + } + ], + "short": "ohm", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq28", + "name": "electric resistance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd20", + "name": "electric resistance", + "expression": "L2Β·MΒ·T-3Β·I-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu180", + "unitsml_id": "u:us_dry_pint", + "name": "dry pint (US)", + "names": [ + { + "value": "dry pint (US)", + "lang": "en" + }, + { + "value": "pint", + "lang": "en" + } + ], + "symbols": { + "unicode": "dry pt (US)", + "ascii": "dry pt (US)", + "html": "dry pt (US)", + "latex": "\\ensuremath{\\mathrm{dry pt (US)}}", + "id": "dry pt (US)", + "mathml": "dry pt (US)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu180" + }, + { + "type": "unitsml", + "id": "u:us_dry_pint" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[pt_us]" + } + ], + "short": "us_dry_pint", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu182", + "unitsml_id": "u:light_year", + "name": "light year", + "names": [ + { + "value": "light year", + "lang": "en" + } + ], + "symbols": { + "unicode": "l.y.", + "ascii": "l.y.", + "html": "l.y.", + "latex": "\\ensuremath{\\mathrm{l.y.}}", + "id": "l.y.", + "mathml": "l.y." + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu182" + }, + { + "type": "unitsml", + "id": "u:light_year" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:const:code:[ly]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/LY" + } + ], + "short": "light_year", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu183", + "unitsml_id": "u:astronomical_unit", + "name": "astronomical unit", + "names": [ + { + "value": "astronomical unit", + "lang": "en" + }, + { + "value": "unitΓ© astronomique", + "lang": "fr" + } + ], + "symbols": { + "unicode": "ua", + "ascii": "ua", + "html": "ua", + "latex": "\\ensuremath{\\mathrm{ua}}", + "id": "ua", + "mathml": "ua" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu183" + }, + { + "type": "unitsml", + "id": "u:astronomical_unit" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/astronomicalunit" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/AU" + } + ], + "short": "astronomical_unit", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu184", + "unitsml_id": "u:parsec", + "name": "parsec", + "names": [ + { + "value": "parsec", + "lang": "en" + } + ], + "symbols": { + "unicode": "pc", + "ascii": "pc", + "html": "pc", + "latex": "\\ensuremath{\\mathrm{pc}}", + "id": "pc", + "mathml": "pc" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu184" + }, + { + "type": "unitsml", + "id": "u:parsec" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:pc" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/PARSEC" + } + ], + "short": "parsec", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu185", + "unitsml_id": "u:meter_to_the_power_four", + "name": "meter to the power four", + "names": [ + { + "value": "meter to the power four", + "lang": "en" + } + ], + "symbols": { + "unicode": "m⁴", + "ascii": "m^4", + "html": "m4", + "latex": "\\ensuremath{\\mathrm{m^4}}", + "id": "m^4", + "mathml": "m4" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu185" + }, + { + "type": "unitsml", + "id": "u:meter_to_the_power_four" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/M4" + } + ], + "short": "meter_to_the_power_four", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq144", + "name": "second axial moment of area", + "type": "derived" + }, + { + "id": "NISTq145", + "name": "second polar moment of area", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd57", + "name": "area moment of inertia", + "expression": "L4", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 4 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 4, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu188", + "unitsml_id": "u:kilogram_per_liter", + "name": "kilogram per liter", + "names": [ + { + "value": "kilogram per liter", + "lang": "en" + } + ], + "symbols": { + "unicode": "kg/l", + "ascii": "kg*l^-1", + "html": "kg/l", + "latex": "\\ensuremath{\\mathrm{kg/l}}", + "id": "kg*l^-1", + "mathml": "kg/l" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu188" + }, + { + "type": "unitsml", + "id": "u:kilogram_per_liter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/KiloGM-PER-L" + } + ], + "short": "kilogram_per_liter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq51", + "name": "density", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd30", + "name": "mass density", + "expression": "L-3Β·M", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -1, + "unit": { + "id": "NISTu130", + "name": "litre", + "symbol": "L" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu189", + "unitsml_id": "u:metric_ton_per_cubic_meter", + "name": "metric ton per cubic meter", + "names": [ + { + "value": "metric ton per cubic meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "t/mΒ³", + "ascii": "t*m^-3", + "html": "t/m3", + "latex": "\\ensuremath{\\mathrm{t/m^3}}", + "id": "t*m^-3", + "mathml": "t/m3" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu189" + }, + { + "type": "unitsml", + "id": "u:metric_ton_per_cubic_meter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/TONNE-PER-M3" + } + ], + "short": "metric_ton_per_cubic_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq51", + "name": "density", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd30", + "name": "mass density", + "expression": "L-3Β·M", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu88", + "name": "tonne", + "symbol": "t" + }, + "prefix": null + }, + { + "power": -3, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu19", + "unitsml_id": "u:siemens", + "name": "siemens", + "names": [ + { + "value": "siemens", + "lang": "en" + }, + { + "value": "siemens", + "lang": "fr" + } + ], + "symbols": { + "unicode": "S", + "ascii": "S", + "html": "S", + "latex": "\\ensuremath{\\mathrm{S}}", + "id": "S", + "mathml": "S" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu19" + }, + { + "type": "unitsml", + "id": "u:siemens" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/siemens" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:S" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/S" + } + ], + "short": "siemens", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq29", + "name": "electric conductance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd21", + "name": "electric conductance", + "expression": "L-2Β·M-1Β·T3Β·I2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu196", + "unitsml_id": "u:gram_force", + "name": "gram-force", + "names": [ + { + "value": "gram-force", + "lang": "en" + } + ], + "symbols": { + "unicode": "gf", + "ascii": "gf", + "html": "gf", + "latex": "\\ensuremath{\\mathrm{gf}}", + "id": "gf", + "mathml": "gf" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu196" + }, + { + "type": "unitsml", + "id": "u:gram_force" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:const:code:gf" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/GM_F" + } + ], + "short": "gram_force", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq13", + "name": "force", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd12", + "name": "force", + "expression": "LΒ·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + } + ] + }, + { + "id": "NISTu1e-1/1", + "unitsml_id": "u:meter_to_the_power_minus_one", + "name": "meter to the power minus one", + "names": [ + { + "value": "meter to the power minus one", + "lang": "en" + }, + { + "value": "reciprocal meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "m⁻¹", + "ascii": "m^-1", + "html": "m-1", + "latex": "\\ensuremath{\\mathrm{m^{-1}}}", + "id": "m^-1", + "mathml": "m1" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu1e-1/1" + }, + { + "type": "unitsml", + "id": "u:meter_to_the_power_minus_one" + } + ], + "references": [], + "short": "meter_to_the_power_minus_one", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq106", + "name": "curvature", + "type": "derived" + }, + { + "id": "NISTq115", + "name": "angular wavenumber", + "type": "derived" + }, + { + "id": "NISTq122", + "name": "attenuation coefficient", + "type": "derived" + }, + { + "id": "NISTq123", + "name": "phase coefficient", + "type": "derived" + }, + { + "id": "NISTq124", + "name": "propagation coefficient", + "type": "derived" + }, + { + "id": "NISTq50", + "name": "wavenumber", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd29", + "name": "wavenumber", + "expression": "L-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": -1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu1e-2/1", + "unitsml_id": "u:meter_to_the_power_minus_two", + "name": "meter to the power minus two", + "names": [ + { + "value": "meter to the power minus two", + "lang": "en" + }, + { + "value": "reciprocal square meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "m⁻²", + "ascii": "m^-2", + "html": "m-2", + "latex": "\\ensuremath{\\mathrm{m^{-2}}}", + "id": "m^-2", + "mathml": "m2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu1e-2/1" + }, + { + "type": "unitsml", + "id": "u:meter_to_the_power_minus_two" + } + ], + "references": [], + "short": "meter_to_the_power_minus_two", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq190", + "name": "fluence", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd96", + "name": "fluence", + "expression": "L-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": -2, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu1e-2/1.u3e-1/1", + "unitsml_id": "u:meter_to_the_power_minus_two_per_second", + "name": "meter to the power minus two per second", + "names": [ + { + "value": "meter to the power minus two per second", + "lang": "en" + }, + { + "value": "reciprocal square meter per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "m⁻²·s⁻¹", + "ascii": "m^-2*s^-1", + "html": "m-2/s", + "latex": "\\ensuremath{\\mathrm{m^{-2}/s}}", + "id": "m^-2*s^-1", + "mathml": "m2/s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu1e-2/1.u3e-1/1" + }, + { + "type": "unitsml", + "id": "u:meter_to_the_power_minus_two_per_second" + } + ], + "references": [], + "short": "meter_to_the_power_minus_two_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq191", + "name": "fluence rate", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd97", + "name": "fluence_rate", + "expression": "L-2Β·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": -2, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu1e2/1", + "unitsml_id": "u:square_meter", + "name": "square meter", + "names": [ + { + "value": "square meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "mΒ²", + "ascii": "m^2", + "html": "m2", + "latex": "\\ensuremath{\\mathrm{m^2}}", + "id": "m^2", + "mathml": "m2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu1e2/1" + }, + { + "type": "unitsml", + "id": "u:square_meter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/M2" + } + ], + "short": "square_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq8", + "name": "area", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd8", + "name": "area", + "expression": "L2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 2, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu1e2/1.u3e-1/1", + "unitsml_id": "u:meter_squared_per_second", + "name": "meter squared per second", + "names": [ + { + "value": "meter squared per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "mΒ²/s", + "ascii": "m^2*s^-1", + "html": "m2/s", + "latex": "\\ensuremath{\\mathrm{m^2/s}}", + "id": "m^2*s^-1", + "mathml": "m2/s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu1e2/1.u3e-1/1" + }, + { + "type": "unitsml", + "id": "u:meter_squared_per_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/M2-PER-SEC" + } + ], + "short": "meter_squared_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq85", + "name": "kinematic viscosity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd56", + "name": "kinematic viscosity", + "expression": "L2Β·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 2, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu1e3/1", + "unitsml_id": "u:cubic_meter", + "name": "cubic meter", + "names": [ + { + "value": "cubic meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "mΒ³", + "ascii": "m^3", + "html": "m3", + "latex": "\\ensuremath{\\mathrm{m^3}}", + "id": "m^3", + "mathml": "m3" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu1e3/1" + }, + { + "type": "unitsml", + "id": "u:cubic_meter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/M3" + } + ], + "short": "cubic_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + }, + { + "id": "NISTq146", + "name": "section modulus", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 3, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu1e3/1.u27p10'3", + "unitsml_id": "u:cubic_meter_per_kilogram", + "name": "cubic meter per kilogram", + "names": [ + { + "value": "cubic meter per kilogram", + "lang": "en" + } + ], + "symbols": { + "unicode": "mΒ³Β·kg", + "ascii": "m^3*kg", + "html": "m3/kg", + "latex": "\\ensuremath{\\mathrm{m^3/kg}}", + "id": "m^3*kg", + "mathml": "m3/kg" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu1e3/1.u27p10'3" + }, + { + "type": "unitsml", + "id": "u:cubic_meter_per_kilogram" + } + ], + "references": [], + "short": "cubic_meter_per_kilogram", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq52", + "name": "specific volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd31", + "name": "specific volume", + "expression": "L3Β·M-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 3, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + } + ] + }, + { + "id": "NISTu1e3/1.u3e-1/1", + "unitsml_id": "u:cubic_meter_per_second", + "name": "cubic meter per second", + "names": [ + { + "value": "cubic meter per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "mΒ³/s", + "ascii": "m^3*s^-1", + "html": "m3/s", + "latex": "\\ensuremath{\\mathrm{m^3/s}}", + "id": "m^3*s^-1", + "mathml": "m3/s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu1e3/1.u3e-1/1" + }, + { + "type": "unitsml", + "id": "u:cubic_meter_per_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/M3-PER-SEC" + } + ], + "short": "cubic_meter_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq151", + "name": "volume flow rate", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd66", + "name": "volume flow rate", + "expression": "L3Β·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 3, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu2", + "unitsml_id": "u:kilogram", + "name": "kilogram", + "names": [ + { + "value": "kilogram", + "lang": "en" + }, + { + "value": "kilogramme", + "lang": "fr" + } + ], + "symbols": { + "unicode": "kg", + "ascii": "kg", + "html": "kg", + "latex": "\\ensuremath{\\mathrm{kg}}", + "id": "kg", + "mathml": "kg" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu2" + }, + { + "type": "unitsml", + "id": "u:kilogram" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/kilogram" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/KiloGM" + } + ], + "short": "kilogram", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_base", + "name": "SI base units", + "short": "si-base", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + } + ] + }, + { + "id": "NISTu20", + "unitsml_id": "u:weber", + "name": "weber", + "names": [ + { + "value": "weber", + "lang": "en" + }, + { + "value": "weber", + "lang": "fr" + } + ], + "symbols": { + "unicode": "Wb", + "ascii": "Wb", + "html": "Wb", + "latex": "\\ensuremath{\\mathrm{Wb}}", + "id": "Wb", + "mathml": "Wb" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu20" + }, + { + "type": "unitsml", + "id": "u:weber" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/weber" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:Wb" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/WB" + } + ], + "short": "weber", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq30", + "name": "magnetic flux", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd22", + "name": "magnetic flux", + "expression": "L2Β·MΒ·T-2Β·I-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu201", + "unitsml_id": "u:av_pound", + "name": "pound (avoirdupois)", + "names": [ + { + "value": "pound (avoirdupois)", + "lang": "en" + }, + { + "value": "avoirdupois pound", + "lang": "en" + }, + { + "value": "pound", + "lang": "en" + } + ], + "symbols": { + "unicode": "lb", + "ascii": "lb", + "html": "lb", + "latex": "\\ensuremath{\\mathrm{lb}}", + "id": "lb", + "mathml": "lb" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu201" + }, + { + "type": "unitsml", + "id": "u:av_pound" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:avoirdupois:code:[lb_av]" + } + ], + "short": "av_pound", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu202", + "unitsml_id": "u:av_ounce", + "name": "ounce (avoirdupois)", + "names": [ + { + "value": "ounce (avoirdupois)", + "lang": "en" + }, + { + "value": "avoirdupois ounce", + "lang": "en" + }, + { + "value": "ounce", + "lang": "en" + } + ], + "symbols": { + "unicode": "oz", + "ascii": "oz", + "html": "oz", + "latex": "\\ensuremath{\\mathrm{oz}}", + "id": "oz", + "mathml": "oz" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu202" + }, + { + "type": "unitsml", + "id": "u:av_ounce" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:avoirdupois:code:[oz_av]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/OZ-FT" + } + ], + "short": "av_ounce", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu203", + "unitsml_id": "u:gross_hundredweight", + "name": "hundredweight (long, 112 lb)", + "names": [ + { + "value": "hundredweight (long, 112 lb)", + "lang": "en" + }, + { + "value": "hundredweight", + "lang": "en" + } + ], + "symbols": { + "unicode": "cwt (UK)", + "ascii": "cwt (UK)", + "html": "cwt (UK)", + "latex": "\\ensuremath{\\mathrm{cwt (UK)}}", + "id": "cwt (UK)", + "mathml": "cwt (UK)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu203" + }, + { + "type": "unitsml", + "id": "u:gross_hundredweight" + } + ], + "references": [], + "short": "gross_hundredweight", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu204", + "unitsml_id": "u:pound_per_cubic_foot", + "name": "pound per cubic foot", + "names": [ + { + "value": "pound per cubic foot", + "lang": "en" + } + ], + "symbols": { + "unicode": "lb/ftΒ³", + "ascii": "lb*ft^-3", + "html": "lb/ft3", + "latex": "\\ensuremath{\\mathrm{lb/ft^3}}", + "id": "lb*ft^-3", + "mathml": "lb/ft3" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu204" + }, + { + "type": "unitsml", + "id": "u:pound_per_cubic_foot" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/LB-PER-FT3" + } + ], + "short": "pound_per_cubic_foot", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq51", + "name": "density", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd30", + "name": "mass density", + "expression": "L-3Β·M", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu201", + "name": "pound (avoirdupois)", + "symbol": "lb" + }, + "prefix": null + }, + { + "power": -3, + "unit": { + "id": "NISTu78", + "name": "foot", + "symbol": "β€²" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu205", + "unitsml_id": "u:pound_force", + "name": "pound-force", + "names": [ + { + "value": "pound-force", + "lang": "en" + } + ], + "symbols": { + "unicode": "lbf", + "ascii": "lbf", + "html": "lbf", + "latex": "\\ensuremath{\\mathrm{lbf}}", + "id": "lbf", + "mathml": "lbf" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu205" + }, + { + "type": "unitsml", + "id": "u:pound_force" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:const:code:[lbf_av]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/LB_F" + } + ], + "short": "pound_force", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq128", + "name": "weight", + "type": "derived" + }, + { + "id": "NISTq13", + "name": "force", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd12", + "name": "force", + "expression": "LΒ·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu206", + "unitsml_id": "u:foot_pound_force", + "name": "foot pound-force", + "names": [ + { + "value": "foot pound-force", + "lang": "en" + } + ], + "symbols": { + "unicode": "ftΒ·lbf", + "ascii": "ft*lbf", + "html": "ft · lbf", + "latex": "\\ensuremath{\\mathrm{ft\\cdot lbf}}", + "id": "ft*lbf", + "mathml": "ft·lbf" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu206" + }, + { + "type": "unitsml", + "id": "u:foot_pound_force" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FT-LB_F" + } + ], + "short": "foot_pound_force", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq17", + "name": "energy", + "type": "derived" + }, + { + "id": "NISTq18", + "name": "work", + "type": "derived" + }, + { + "id": "NISTq182", + "name": "kinetic energy", + "type": "derived" + }, + { + "id": "NISTq183", + "name": "mechanical energy", + "type": "derived" + }, + { + "id": "NISTq184", + "name": "torque", + "type": "derived" + }, + { + "id": "NISTq185", + "name": "bending moment of force", + "type": "derived" + }, + { + "id": "NISTq60", + "name": "moment of force", + "type": "derived" + }, + { + "id": "NISTq77", + "name": "potential energy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu78", + "name": "foot", + "symbol": "β€²" + }, + "prefix": null + }, + { + "power": 1, + "unit": { + "id": "NISTu205", + "name": "pound-force", + "symbol": "lbf" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu207", + "unitsml_id": "u:pound_force_per_square_inch", + "name": "pound-force per square inch", + "names": [ + { + "value": "pound-force per square inch", + "lang": "en" + } + ], + "symbols": { + "unicode": "lbf/inΒ²", + "ascii": "psi", + "html": "psi", + "latex": "\\ensuremath{\\mathrm{psi}}", + "id": "psi", + "mathml": "psi" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu207" + }, + { + "type": "unitsml", + "id": "u:pound_force_per_square_inch" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:misc:code:[psi]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/LB_F-PER-IN2" + } + ], + "short": "pound_force_per_square_inch", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu205", + "name": "pound-force", + "symbol": "lbf" + }, + "prefix": null + }, + { + "power": -2, + "unit": { + "id": "NISTu8", + "name": "inch", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu208", + "unitsml_id": "u:inch_to_the_fourth_power", + "name": "inch to the fourth power", + "names": [ + { + "value": "inch to the fourth power", + "lang": "en" + } + ], + "symbols": { + "unicode": "in⁴", + "ascii": "in^4", + "html": "in4", + "latex": "\\ensuremath{\\mathrm{in^4}}", + "id": "in^4", + "mathml": "in4" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu208" + }, + { + "type": "unitsml", + "id": "u:inch_to_the_fourth_power" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/IN4" + } + ], + "short": "inch_to_the_fourth_power", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq155", + "name": "area moment of inertia", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd57", + "name": "area moment of inertia", + "expression": "L4", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 4 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 4, + "unit": { + "id": "NISTu8", + "name": "inch", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu209", + "unitsml_id": "u:inch_cubed", + "name": "inch cubed", + "names": [ + { + "value": "inch cubed", + "lang": "en" + } + ], + "symbols": { + "unicode": "inΒ³", + "ascii": "in^3", + "html": "in3", + "latex": "\\ensuremath{\\mathrm{in^3}}", + "id": "in^3_section_modulus", + "mathml": "in3" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu209" + }, + { + "type": "unitsml", + "id": "u:inch_cubed" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/IN3" + } + ], + "short": "inch_cubed", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq146", + "name": "section modulus", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 3, + "unit": { + "id": "NISTu8", + "name": "inch", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu21", + "unitsml_id": "u:tesla", + "name": "tesla", + "names": [ + { + "value": "tesla", + "lang": "en" + }, + { + "value": "tesla", + "lang": "fr" + } + ], + "symbols": { + "unicode": "T", + "ascii": "T", + "html": "T", + "latex": "\\ensuremath{\\mathrm{T}}", + "id": "T", + "mathml": "T" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu21" + }, + { + "type": "unitsml", + "id": "u:tesla" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/tesla" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:T" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/T" + } + ], + "short": "tesla", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq14", + "name": "magnetic flux density", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd13", + "name": "magnetic flux density", + "expression": "MΒ·T-2Β·I-1", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu210", + "unitsml_id": "u:foot_squared_per_second", + "name": "foot squared per second", + "names": [ + { + "value": "foot squared per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "ftΒ²/s", + "ascii": "ft^2*s^-1", + "html": "ft2/s", + "latex": "\\ensuremath{\\mathrm{ft^2/s}}", + "id": "ft^2*s^-1", + "mathml": "ft2/s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu210" + }, + { + "type": "unitsml", + "id": "u:foot_squared_per_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FT2-PER-SEC" + } + ], + "short": "foot_squared_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq85", + "name": "kinematic viscosity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd56", + "name": "kinematic viscosity", + "expression": "L2Β·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 2, + "unit": { + "id": "NISTu78", + "name": "foot", + "symbol": "β€²" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu211", + "unitsml_id": "u:foot_pound_force_per_second", + "name": "foot pound-force per second", + "names": [ + { + "value": "foot pound-force per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "ftΒ·lbf/2", + "ascii": "ft*lbf*s^-1", + "html": "ft · lbf/s", + "latex": "\\ensuremath{\\mathrm{ft\\cdot lbf/s}}", + "id": "ft*lbf*s^-1", + "mathml": "ft·lbf/s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu211" + }, + { + "type": "unitsml", + "id": "u:foot_pound_force_per_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FT-LB_F-PER-SEC" + } + ], + "short": "foot_pound_force_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq20", + "name": "power", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu78", + "name": "foot", + "symbol": "β€²" + }, + "prefix": null + }, + { + "power": 1, + "unit": { + "id": "NISTu205", + "name": "pound-force", + "symbol": "lbf" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu212", + "unitsml_id": "u:carat", + "name": "carat", + "names": [ + { + "value": "carat", + "lang": "en" + }, + { + "value": "metric carat", + "lang": "en" + }, + { + "value": "carat, metric", + "lang": "en" + } + ], + "symbols": { + "unicode": "ct", + "ascii": "ct", + "html": "ct", + "latex": "\\ensuremath{\\mathrm{ct}}", + "id": "ct", + "mathml": "ct" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu212" + }, + { + "type": "unitsml", + "id": "u:carat" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:misc:code:[car_m]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/CARAT" + } + ], + "short": "carat", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu213", + "unitsml_id": "u:tex", + "name": "tex", + "names": [ + { + "value": "tex", + "lang": "en" + } + ], + "symbols": { + "unicode": "tex", + "ascii": "tex", + "html": "tex", + "latex": "\\ensuremath{\\mathrm{tex}}", + "id": "tex", + "mathml": "tex" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu213" + }, + { + "type": "unitsml", + "id": "u:tex" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:heat:code:tex" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/TEX" + } + ], + "short": "tex", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq126", + "name": "linear density", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd58", + "name": "linear density", + "expression": "L-1Β·M", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu214", + "unitsml_id": "u:torr", + "name": "torr", + "names": [ + { + "value": "torr", + "lang": "en" + } + ], + "symbols": { + "unicode": "torr", + "ascii": "Torr", + "html": "Torr", + "latex": "\\ensuremath{\\mathrm{torr}}", + "id": "Torr", + "mathml": "Torr" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu214" + }, + { + "type": "unitsml", + "id": "u:torr" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/TORR" + } + ], + "short": "torr", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu215", + "unitsml_id": "u:mm_water", + "name": "conventional millimeter of water", + "names": [ + { + "value": "conventional millimeter of water", + "lang": "en" + }, + { + "value": "millimeter of water, conventional", + "lang": "en" + }, + { + "value": "millimeter of water", + "lang": "en" + } + ], + "symbols": { + "unicode": "mmHβ‚‚O", + "ascii": "mmH_2O", + "html": "mmH2O", + "latex": "\\ensuremath{\\mathrm{mmH_{2}O}}", + "id": "mmH_2O", + "mathml": "mmH2O" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu215" + }, + { + "type": "unitsml", + "id": "u:mm_water" + } + ], + "references": [], + "short": "mm_water", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu216", + "unitsml_id": "u:thermo_btu", + "name": "British thermal unit_th", + "names": [ + { + "value": "British thermal unit_th", + "lang": "en" + }, + { + "value": "thermochemical Btu", + "lang": "en" + } + ], + "symbols": { + "unicode": "Btu_th", + "ascii": "Btu_th", + "html": "Btuth", + "latex": "\\ensuremath{\\mathrm{Btu_{th}}}", + "id": "Btu_th", + "mathml": "Btuth" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu216" + }, + { + "type": "unitsml", + "id": "u:thermo_btu" + } + ], + "references": [], + "short": "thermo_btu", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq19", + "name": "amount of heat", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu217", + "unitsml_id": "u:kilogram_force_meter_per_second", + "name": "kilogram-force meter per second", + "names": [ + { + "value": "kilogram-force meter per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "kgfΒ·m/s", + "ascii": "kgf*m*s^-1", + "html": "kgf · m/s", + "latex": "\\ensuremath{\\mathrm{kgf\\cdot m/s}}", + "id": "kgf*m*s^-1", + "mathml": "kgf·m/s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu217" + }, + { + "type": "unitsml", + "id": "u:kilogram_force_meter_per_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/KiloGM_F-M-PER-SEC" + } + ], + "short": "kilogram_force_meter_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq20", + "name": "power", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": 1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu218", + "unitsml_id": "u:metric_horsepower", + "name": "horsepower, metric", + "names": [ + { + "value": "horsepower, metric", + "lang": "en" + }, + { + "value": "metric horsepower", + "lang": "en" + } + ], + "symbols": { + "unicode": "hp", + "ascii": "hp", + "html": "hp", + "latex": "\\ensuremath{\\mathrm{hp}}", + "id": "hp_metric", + "mathml": "hp" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu218" + }, + { + "type": "unitsml", + "id": "u:metric_horsepower" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/HP_Metric" + } + ], + "short": "metric_horsepower", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq20", + "name": "power", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu22", + "unitsml_id": "u:henry", + "name": "henry", + "names": [ + { + "value": "henry", + "lang": "en" + }, + { + "value": "henry", + "lang": "fr" + } + ], + "symbols": { + "unicode": "H", + "ascii": "H", + "html": "H", + "latex": "\\ensuremath{\\mathrm{H}}", + "id": "H", + "mathml": "H" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu22" + }, + { + "type": "unitsml", + "id": "u:henry" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/henry" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:H" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/H" + } + ], + "short": "henry", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq32", + "name": "inductance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd23", + "name": "inductance", + "expression": "L2Β·MΒ·T-2Β·I-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu22.u1e-1/1", + "unitsml_id": "u:henry_per_meter", + "name": "henry per meter", + "names": [ + { + "value": "henry per meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "H/m", + "ascii": "H*m^-1", + "html": "H/m", + "latex": "\\ensuremath{\\mathrm{H/m}}", + "id": "H*m^-1", + "mathml": "H/m" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu22.u1e-1/1" + }, + { + "type": "unitsml", + "id": "u:henry_per_meter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/H-PER-M" + } + ], + "short": "henry_per_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq72", + "name": "permeability", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd46", + "name": "permeability", + "expression": "LΒ·MΒ·T-2Β·I-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu22", + "name": "henry", + "symbol": "H" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu221", + "unitsml_id": "u:watt_per_square_meter_kelvin", + "name": "watt per square meter kelvin", + "names": [ + { + "value": "watt per square meter kelvin", + "lang": "en" + } + ], + "symbols": { + "unicode": "W/(mΒ²Β·K)", + "ascii": "W*m^-2*K^-1", + "html": "W/(m 2 · K)", + "latex": "\\ensuremath{\\mathrm{W/(m^2\\cdot K)}}", + "id": "W*m^-2*K^-1", + "mathml": "W/(m2·K)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu221" + }, + { + "type": "unitsml", + "id": "u:watt_per_square_meter_kelvin" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/W-PER-M2-K" + } + ], + "short": "watt_per_square_meter_kelvin", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq180", + "name": "coefficient of heat transfer", + "type": "derived" + }, + { + "id": "NISTq181", + "name": "surface coefficient of heat transfer", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd71", + "name": "heat transfer coefficient", + "expression": "MΒ·T-3Β·Theta-1", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": -1, + "unit": { + "id": "NISTu5", + "name": "kelvin", + "symbol": "Β°K" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu222", + "unitsml_id": "u:lambert", + "name": "lambert", + "names": [ + { + "value": "lambert", + "lang": "en" + } + ], + "symbols": { + "unicode": "L", + "ascii": "L", + "html": "L", + "latex": "\\ensuremath{\\mathrm{L}}", + "id": "Lambert", + "mathml": "L" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu222" + }, + { + "type": "unitsml", + "id": "u:lambert" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:cgs:code:Lmb" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/LA" + } + ], + "short": "lambert", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq56", + "name": "luminance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd27", + "name": "illuminance", + "expression": "L-2Β·J", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "luminous_intensity", + "symbol": "J", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu223", + "unitsml_id": "u:gilbert", + "name": "gilbert", + "names": [ + { + "value": "gilbert", + "lang": "en" + } + ], + "symbols": { + "unicode": "Gi", + "ascii": "Gi", + "html": "Gi", + "latex": "\\ensuremath{\\mathrm{Gi}}", + "id": "Gi", + "mathml": "Gi" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu223" + }, + { + "type": "unitsml", + "id": "u:gilbert" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:cgs:code:Gb" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/GI" + } + ], + "short": "gilbert", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq161", + "name": "magnetomotive force (Cardelli) (-SP811)", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd4", + "name": "electric current", + "expression": "I", + "components": [ + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu224", + "unitsml_id": "u:debye", + "name": "debye", + "names": [ + { + "value": "debye", + "lang": "en" + } + ], + "symbols": { + "unicode": "D", + "ascii": "D", + "html": "D", + "latex": "\\ensuremath{\\mathrm{D}}", + "id": "D", + "mathml": "D" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu224" + }, + { + "type": "unitsml", + "id": "u:debye" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/DEBYE" + } + ], + "short": "debye", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq162", + "name": "electric dipole moment", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd72", + "name": "electric dipole moment", + "expression": "LΒ·TΒ·I", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu225", + "unitsml_id": "u:abwatt", + "name": "abwatt", + "names": [ + { + "value": "abwatt", + "lang": "en" + } + ], + "symbols": { + "unicode": "aW", + "ascii": "aW (Cardelli)", + "html": "aW", + "latex": "\\ensuremath{\\mathrm{aW}}", + "id": "aW (Cardelli)", + "mathml": "aW" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu225" + }, + { + "type": "unitsml", + "id": "u:abwatt" + } + ], + "references": [], + "short": "abwatt", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq20", + "name": "power", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu226", + "unitsml_id": "u:slug", + "name": "slug", + "names": [ + { + "value": "slug", + "lang": "en" + } + ], + "symbols": { + "unicode": "slug", + "ascii": "slug", + "html": "slug", + "latex": "\\ensuremath{\\mathrm{D}}", + "id": "slug", + "mathml": "slug" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu226" + }, + { + "type": "unitsml", + "id": "u:slug" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/SLUG" + } + ], + "short": "slug", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu227", + "unitsml_id": "u:thermo_calorie", + "name": "thermochemical calorie", + "names": [ + { + "value": "thermochemical calorie", + "lang": "en" + }, + { + "value": "calorie_th", + "lang": "en" + }, + { + "value": "calorie", + "lang": "en" + } + ], + "symbols": { + "unicode": "cal", + "ascii": "cal", + "html": "cal", + "latex": "\\ensuremath{\\mathrm{cal}}", + "id": "cal", + "mathml": "cal" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu227" + }, + { + "type": "unitsml", + "id": "u:thermo_calorie" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:heat:code:cal_th" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/CAL_TH" + } + ], + "short": "thermo_calorie", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq17", + "name": "energy", + "type": "derived" + }, + { + "id": "NISTq18", + "name": "work", + "type": "derived" + }, + { + "id": "NISTq182", + "name": "kinetic energy", + "type": "derived" + }, + { + "id": "NISTq183", + "name": "mechanical energy", + "type": "derived" + }, + { + "id": "NISTq19", + "name": "amount of heat", + "type": "derived" + }, + { + "id": "NISTq77", + "name": "potential energy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu228", + "unitsml_id": "u:short_ton", + "name": "short ton", + "names": [ + { + "value": "short ton", + "lang": "en" + }, + { + "value": "ton", + "lang": "en" + } + ], + "symbols": { + "unicode": "t", + "ascii": "ton", + "html": "t", + "latex": "\\ensuremath{\\mathrm{t}}", + "id": "ton_short", + "mathml": "t" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu228" + }, + { + "type": "unitsml", + "id": "u:short_ton" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:avoirdupois:code:[ston_av]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/TON_SHORT" + } + ], + "short": "short_ton", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu229", + "unitsml_id": "u:long_ton", + "name": "long ton", + "names": [ + { + "value": "long ton", + "lang": "en" + }, + { + "value": "ton", + "lang": "en" + } + ], + "symbols": { + "unicode": "t", + "ascii": "ton", + "html": "t", + "latex": "\\ensuremath{\\mathrm{t}}", + "id": "ton_long", + "mathml": "t" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu229" + }, + { + "type": "unitsml", + "id": "u:long_ton" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:avoirdupois:code:[lton_av]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/TON_LONG" + } + ], + "short": "long_ton", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu23", + "unitsml_id": "u:degree_Celsius", + "name": "degree Celsius", + "names": [ + { + "value": "degree Celsius", + "lang": "en" + }, + { + "value": "degrΓ© Celsius", + "lang": "fr" + } + ], + "symbols": { + "unicode": "Β°C", + "ascii": "degC", + "html": "°C", + "latex": "\\ensuremath{\\mathrm{^{\\circ}C}}", + "id": "degC", + "mathml": "°C" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu23" + }, + { + "type": "unitsml", + "id": "u:degree_Celsius" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/degreeCelsius" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:Cel" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/DEG_C" + } + ], + "short": "degree_Celsius", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq192", + "name": "ITS-90 temperature (Β°C)", + "type": "derived" + }, + { + "id": "NISTq34", + "name": "Celsius temperature", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd5", + "name": "temperature", + "expression": "Theta", + "components": [ + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_interval", + "name": "continuous interval scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu230", + "unitsml_id": "u:hundredweight", + "name": "hundredweight (short, 100 lb)", + "names": [ + { + "value": "hundredweight (short, 100 lb)", + "lang": "en" + }, + { + "value": "hundredweight", + "lang": "en" + } + ], + "symbols": { + "unicode": "cwt (US)", + "ascii": "cwt (US)", + "html": "cwt (US)", + "latex": "\\ensuremath{\\mathrm{cwt (US)}}", + "id": "cwt (US)", + "mathml": "cwt (US)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu230" + }, + { + "type": "unitsml", + "id": "u:hundredweight" + } + ], + "references": [], + "short": "hundredweight", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu203", + "name": "hundredweight (long, 112 lb)", + "symbol": "cwt (UK)" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu231", + "unitsml_id": "u:troy_ounce", + "name": "ounce (troy or apothecary)", + "names": [ + { + "value": "ounce (troy or apothecary)", + "lang": "en" + }, + { + "value": "troy ounce", + "lang": "en" + }, + { + "value": "ounce", + "lang": "en" + } + ], + "symbols": { + "unicode": "oz", + "ascii": "oz", + "html": "oz", + "latex": "\\ensuremath{\\mathrm{oz}}", + "id": "oz_troy", + "mathml": "oz" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu231" + }, + { + "type": "unitsml", + "id": "u:troy_ounce" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:avoirdupois:code:[oz_av]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/OZ" + } + ], + "short": "troy_ounce", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu232", + "unitsml_id": "u:troy_pound", + "name": "pound (troy or apothecary)", + "names": [ + { + "value": "pound (troy or apothecary)", + "lang": "en" + }, + { + "value": "troy pound", + "lang": "en" + }, + { + "value": "pound", + "lang": "en" + } + ], + "symbols": { + "unicode": "lb", + "ascii": "lb", + "html": "lb", + "latex": "\\ensuremath{\\mathrm{lb}}", + "id": "lb_troy", + "mathml": "lb" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu232" + }, + { + "type": "unitsml", + "id": "u:troy_pound" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:avoirdupois:code:[lb_av]" + } + ], + "short": "troy_pound", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu233", + "unitsml_id": "u:pennyweight", + "name": "pennyweight", + "names": [ + { + "value": "pennyweight", + "lang": "en" + } + ], + "symbols": { + "unicode": "dwt (troy)", + "ascii": "dwt (troy)", + "html": "dwt (troy)", + "latex": "\\ensuremath{\\mathrm{dwt (troy)}}", + "id": "dwt (troy)", + "mathml": "dwt (troy)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu233" + }, + { + "type": "unitsml", + "id": "u:pennyweight" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:troy:code:[pwt_tr]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/PENNYWEIGHT" + } + ], + "short": "pennyweight", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu234", + "unitsml_id": "u:apothecaries_dram", + "name": "dram (apothecary)", + "names": [ + { + "value": "dram (apothecary)", + "lang": "en" + }, + { + "value": "apothecary dram", + "lang": "en" + }, + { + "value": "dram", + "lang": "en" + } + ], + "symbols": { + "unicode": "dr", + "ascii": "dr", + "html": "dr", + "latex": "\\ensuremath{\\mathrm{dr}}", + "id": "dr", + "mathml": "dr" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu234" + }, + { + "type": "unitsml", + "id": "u:apothecaries_dram" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:avoirdupois:code:[dr_av]" + } + ], + "short": "apothecaries_dram", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu235", + "unitsml_id": "u:scruple", + "name": "scruple", + "names": [ + { + "value": "scruple", + "lang": "en" + }, + { + "value": "apothecary scruple", + "lang": "en" + } + ], + "symbols": { + "unicode": "scr (ap.)", + "ascii": "scr (ap.)", + "html": "scr (ap.)", + "latex": "\\ensuremath{\\mathrm{scr (ap.)}}", + "id": "scr (ap.)", + "mathml": "scr (ap.)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu235" + }, + { + "type": "unitsml", + "id": "u:scruple" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:apoth:code:[sc_ap]" + } + ], + "short": "scruple", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu236", + "unitsml_id": "u:poundal", + "name": "poundal", + "names": [ + { + "value": "poundal", + "lang": "en" + } + ], + "symbols": { + "unicode": "pdl", + "ascii": "pdl", + "html": "pdl", + "latex": "\\ensuremath{\\mathrm{pdl}}", + "id": "pdl", + "mathml": "pdl" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu236" + }, + { + "type": "unitsml", + "id": "u:poundal" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/PDL" + } + ], + "short": "poundal", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq128", + "name": "weight", + "type": "derived" + }, + { + "id": "NISTq13", + "name": "force", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd12", + "name": "force", + "expression": "LΒ·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu237", + "unitsml_id": "u:kip", + "name": "kip", + "names": [ + { + "value": "kip", + "lang": "en" + } + ], + "symbols": { + "unicode": "kip", + "ascii": "kip", + "html": "kip", + "latex": "\\ensuremath{\\mathrm{kip}}", + "id": "kip", + "mathml": "kip" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu237" + }, + { + "type": "unitsml", + "id": "u:kip" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/KIP_F" + } + ], + "short": "kip", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu238", + "unitsml_id": "u:ton_force", + "name": "ton-force (2000 lb)", + "names": [ + { + "value": "ton-force (2000 lb)", + "lang": "en" + } + ], + "symbols": { + "unicode": "ton-force (2000 lb)", + "ascii": "ton-force (2000 lb)", + "html": "ton-force (2000 lb)", + "latex": "\\ensuremath{\\mathrm{ton-force (2000 lb)}}", + "id": "ton-force (2000 lb)", + "mathml": "ton-force (2000 lb)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu238" + }, + { + "type": "unitsml", + "id": "u:ton_force" + } + ], + "references": [], + "short": "ton_force", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq128", + "name": "weight", + "type": "derived" + }, + { + "id": "NISTq13", + "name": "force", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd12", + "name": "force", + "expression": "LΒ·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu239", + "unitsml_id": "u:barye", + "name": "barye", + "names": [ + { + "value": "barye", + "lang": "en" + } + ], + "symbols": { + "unicode": "barye", + "ascii": "barye", + "html": "barye", + "latex": "\\ensuremath{\\mathrm{barye}}", + "id": "barye", + "mathml": "barye" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu239" + }, + { + "type": "unitsml", + "id": "u:barye" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/BARYE" + } + ], + "short": "barye", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu240", + "unitsml_id": "u:electronvolt", + "name": "electronvolt", + "names": [ + { + "value": "electronvolt", + "lang": "en" + }, + { + "value": "Γ©lectronvolt", + "lang": "fr" + } + ], + "symbols": { + "unicode": "eV", + "ascii": "eV", + "html": "eV", + "latex": "\\ensuremath{\\mathrm{eV}}", + "id": "eV", + "mathml": "eV" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu240" + }, + { + "type": "unitsml", + "id": "u:electronvolt" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/electronvolt" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:eV" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/EV" + } + ], + "short": "electronvolt", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq17", + "name": "energy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu241", + "unitsml_id": "u:unified_atomic_mass_unit", + "name": "unified atomic mass unit", + "names": [ + { + "value": "unified atomic mass unit", + "lang": "en" + } + ], + "symbols": { + "unicode": "u", + "ascii": "u", + "html": "u", + "latex": "\\ensuremath{\\mathrm{u}}", + "id": "u", + "mathml": "u" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu241" + }, + { + "type": "unitsml", + "id": "u:unified_atomic_mass_unit" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:u" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/U" + } + ], + "short": "unified_atomic_mass_unit", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu242", + "unitsml_id": "u:natural_unit_of_velocity", + "name": "natural unit of velocity", + "names": [ + { + "value": "natural unit of velocity", + "lang": "en" + } + ], + "symbols": { + "unicode": "𝑐", + "ascii": "c", + "html": "c", + "latex": "\\ensuremath{\\mathit{c}}", + "id": "c", + "mathml": "c" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu242" + }, + { + "type": "unitsml", + "id": "u:natural_unit_of_velocity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/C" + } + ], + "short": "natural_unit_of_velocity", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq12", + "name": "velocity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd11", + "name": "velocity", + "expression": "LΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu243", + "unitsml_id": "u:natural_unit_of_action", + "name": "natural unit of action", + "names": [ + { + "value": "natural unit of action", + "lang": "en" + } + ], + "symbols": { + "unicode": "ℏ", + "ascii": "h-bar", + "html": "ħ", + "latex": "\\ensuremath{\\mathit{\\hbar}}", + "id": "h-bar", + "mathml": "ħ" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu243" + }, + { + "type": "unitsml", + "id": "u:natural_unit_of_action" + } + ], + "references": [], + "short": "natural_unit_of_action", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq154", + "name": "action", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd60", + "name": "action", + "expression": "L2Β·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu244", + "unitsml_id": "u:natural_unit_of_mass", + "name": "natural unit of mass", + "names": [ + { + "value": "natural unit of mass", + "lang": "en" + } + ], + "symbols": { + "unicode": "π‘šβ‚‘", + "ascii": "m_e", + "html": "me", + "latex": "\\ensuremath{\\mathit{m}_\\mathrm{e}}", + "id": "m_e", + "mathml": "me" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu244" + }, + { + "type": "unitsml", + "id": "u:natural_unit_of_mass" + } + ], + "references": [], + "short": "natural_unit_of_mass", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu245", + "unitsml_id": "u:natural_unit_of_time", + "name": "natural unit of time", + "names": [ + { + "value": "natural unit of time", + "lang": "en" + } + ], + "symbols": { + "unicode": "ℏ/π‘šβ‚‘π‘Β²", + "ascii": "h-bar*(m_e*c^2)", + "html": "ħ/mec2", + "latex": "\\ensuremath{\\mathit{\\hbar}/(\\mathit{m}_\\mathrm{e}\\mathit{c}^\\mathrm{2}})", + "id": "h-bar*(m_e*c^2)", + "mathml": "ħ/mec2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu245" + }, + { + "type": "unitsml", + "id": "u:natural_unit_of_time" + } + ], + "references": [], + "short": "natural_unit_of_time", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq3", + "name": "time", + "type": "base" + } + ], + "dimension": { + "id": "NISTd3", + "name": "time", + "expression": "T", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu246", + "unitsml_id": "u:atomic_unit_of_charge", + "name": "atomic unit of charge", + "names": [ + { + "value": "atomic unit of charge", + "lang": "en" + } + ], + "symbols": { + "unicode": "𝑒", + "ascii": "e", + "html": "e", + "latex": "\\ensuremath{\\mathit{e}}", + "id": "e", + "mathml": "e" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu246" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_charge" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/E" + } + ], + "short": "atomic_unit_of_charge", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq22", + "name": "electric charge", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd17", + "name": "electric charge", + "expression": "TΒ·I", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu247", + "unitsml_id": "u:atomic_unit_of_mass", + "name": "atomic unit of mass", + "names": [ + { + "value": "atomic unit of mass", + "lang": "en" + } + ], + "symbols": { + "unicode": "π‘šβ‚‘", + "ascii": "m_e", + "html": "me", + "latex": "\\ensuremath{\\mathit{m}_\\mathrm{e}}", + "id": "m_e_atomic", + "mathml": "me" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu247" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_mass" + } + ], + "references": [], + "short": "atomic_unit_of_mass", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu248", + "unitsml_id": "u:atomic_unit_of_action", + "name": "atomic unit of action", + "names": [ + { + "value": "atomic unit of action", + "lang": "en" + } + ], + "symbols": { + "unicode": "ℏ", + "ascii": "h-bar", + "html": "ħ", + "latex": "\\ensuremath{\\mathit{\\hbar}}", + "id": "h-bar_atomic", + "mathml": "ħ" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu248" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_action" + } + ], + "references": [], + "short": "atomic_unit_of_action", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq154", + "name": "action", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd60", + "name": "action", + "expression": "L2Β·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu249", + "unitsml_id": "u:atomic_unit_of_length", + "name": "atomic unit of length", + "names": [ + { + "value": "atomic unit of length", + "lang": "en" + } + ], + "symbols": { + "unicode": "π‘Žβ‚€", + "ascii": "a_0", + "html": "a0", + "latex": "\\ensuremath{\\mathit{a}_\\mathrm{0}}", + "id": "a_0", + "mathml": "a0" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu249" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_length" + } + ], + "references": [], + "short": "atomic_unit_of_length", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu25", + "unitsml_id": "u:becquerel", + "name": "becquerel", + "names": [ + { + "value": "becquerel", + "lang": "en" + }, + { + "value": "becquerel", + "lang": "fr" + } + ], + "symbols": { + "unicode": "Bq", + "ascii": "Bq", + "html": "Bq", + "latex": "\\ensuremath{\\mathrm{Bq}}", + "id": "Bq", + "mathml": "Bq" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu25" + }, + { + "type": "unitsml", + "id": "u:becquerel" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/becquerel" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:Bq" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/BQ" + } + ], + "short": "becquerel", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq35", + "name": "activity referred to a radionuclide", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd24", + "name": "frequency", + "expression": "T-1", + "components": [ + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu250", + "unitsml_id": "u:atomic_unit_of_energy", + "name": "atomic unit of energy", + "names": [ + { + "value": "atomic unit of energy", + "lang": "en" + } + ], + "symbols": { + "unicode": "𝐸ₕ", + "ascii": "E_h", + "html": "Eh", + "latex": "\\ensuremath{\\mathit{E}_\\mathrm{h}}", + "id": "E_h", + "mathml": "Eh" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu250" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_energy" + } + ], + "references": [], + "short": "atomic_unit_of_energy", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq17", + "name": "energy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu251", + "unitsml_id": "u:atomic_unit_of_time", + "name": "atomic unit of time", + "names": [ + { + "value": "atomic unit of time", + "lang": "en" + } + ], + "symbols": { + "unicode": "ℏ/𝐸ₕ", + "ascii": "h-bar/E_h", + "html": "ħ/Eh", + "latex": "\\ensuremath{\\mathit{\\hbar}/\\mathit{E}_\\mathrm{h}}", + "id": "h-bar/E_h", + "mathml": "ħ/Eh" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu251" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_time" + } + ], + "references": [], + "short": "atomic_unit_of_time", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq3", + "name": "time", + "type": "base" + } + ], + "dimension": { + "id": "NISTd3", + "name": "time", + "expression": "T", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu252", + "unitsml_id": "u:atomic_unit_of_magnetizability", + "name": "atomic unit of magnetizability", + "names": [ + { + "value": "atomic unit of magnetizability", + "lang": "en" + } + ], + "symbols": { + "unicode": "π‘’Β²π‘Žβ‚€Β²/π‘šβ‚‘", + "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}}", + "id": "e^2*a_0^2*m_e-1", + "mathml": "e2a02/me" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu252" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_magnetizability" + } + ], + "references": [], + "short": "atomic_unit_of_magnetizability", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq163", + "name": "magnetizability", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd54", + "name": "magnetizability", + "expression": "L2Β·MΒ·T2Β·I2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": 2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu253", + "unitsml_id": "u:atomic_unit_of_magnetic_flux_density", + "name": "atomic unit of magnetic flux density", + "names": [ + { + "value": "atomic unit of magnetic flux density", + "lang": "en" + } + ], + "symbols": { + "unicode": "ℏ/π‘’π‘Žβ‚€Β²", + "ascii": "h-bar*(e*a_0^2)-1", + "html": "ħ/ea02", + "latex": "\\ensuremath{\\mathit{\\hbar}/\\mathit{e}a_0^2}", + "id": "h-bar*(e*a_0^2)-1", + "mathml": "ħ/ea02" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu253" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_magnetic_flux_density" + } + ], + "references": [], + "short": "atomic_unit_of_magnetic_flux_density", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq14", + "name": "magnetic flux density", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd13", + "name": "magnetic flux density", + "expression": "MΒ·T-2Β·I-1", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu254", + "unitsml_id": "u:atomic_unit_of_magnetic_dipole_moment", + "name": "atomic unit of magnetic dipole moment", + "names": [ + { + "value": "atomic unit of magnetic dipole moment", + "lang": "en" + } + ], + "symbols": { + "unicode": "ℏ𝑒/π‘šβ‚‘", + "ascii": "h-bar*e*(m_e)-1", + "html": "ħe/me", + "latex": "\\ensuremath{\\mathit{\\hbar e}/\\mathit{m}_\\mathrm{e}}", + "id": "h-bar*e*(m_e)-1", + "mathml": "ħe/me" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu254" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_magnetic_dipole_moment" + } + ], + "references": [], + "short": "atomic_unit_of_magnetic_dipole_moment", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq164", + "name": "magnetic dipole moment", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd73", + "name": "magnetic dipole moment", + "expression": "L2Β·I", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu255", + "unitsml_id": "u:atomic_unit_of_momentum", + "name": "atomic unit of momentum", + "names": [ + { + "value": "atomic unit of momentum", + "lang": "en" + } + ], + "symbols": { + "unicode": "ℏ/π‘Žβ‚€", + "ascii": "h-bar*(a_0)-1", + "html": "ħ/a0", + "latex": "\\ensuremath{\\mathit{\\hbar}/\\mathit{a}_0}", + "id": "h-bar*(a_0)-1", + "mathml": "ħ/a0" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu255" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_momentum" + } + ], + "references": [], + "short": "atomic_unit_of_momentum", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq131", + "name": "momentum", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd61", + "name": "momentum", + "expression": "LΒ·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu256", + "unitsml_id": "u:atomic_unit_of_charge_density", + "name": "atomic unit of charge density", + "names": [ + { + "value": "atomic unit of charge density", + "lang": "en" + } + ], + "symbols": { + "unicode": "π‘’π‘Žβ‚€Β³", + "ascii": "e*(a_0^3)", + "html": "ea03", + "latex": "\\ensuremath{\\mathit{e}\\mathit{a}_0^{3}}", + "id": "e*(a_0^3)", + "mathml": "ea03" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu256" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_charge_density" + } + ], + "references": [], + "short": "atomic_unit_of_charge_density", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq69", + "name": "electric charge density", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd43", + "name": "electric charge density", + "expression": "L-3Β·TΒ·I", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu257", + "unitsml_id": "u:atomic_unit_of_current", + "name": "atomic unit of current", + "names": [ + { + "value": "atomic unit of current", + "lang": "en" + } + ], + "symbols": { + "unicode": "𝑒𝐸ₕ/ℏ", + "ascii": "eE_h*h-bar^-1", + "html": "eEh/ħ", + "latex": "\\ensuremath{\\mathit{e}E_{h}/\\mathit{\\hbar}}", + "id": "eE_h*h-bar^-1", + "mathml": "eEh/ħ" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu257" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_current" + } + ], + "references": [], + "short": "atomic_unit_of_current", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq4", + "name": "electric current", + "type": "base" + } + ], + "dimension": { + "id": "NISTd4", + "name": "electric current", + "expression": "I", + "components": [ + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu258", + "unitsml_id": "u:atomic_unit_of_electric_dipole_moment", + "name": "atomic unit of electric dipole moment", + "names": [ + { + "value": "atomic unit of electric dipole moment", + "lang": "en" + } + ], + "symbols": { + "unicode": "π‘’π‘Žβ‚€", + "ascii": "e*a_0", + "html": "ea0", + "latex": "\\ensuremath{\\mathit{e}\\mathit{a}_0}", + "id": "e*a_0", + "mathml": "ea0" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu258" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_electric_dipole_moment" + } + ], + "references": [], + "short": "atomic_unit_of_electric_dipole_moment", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq162", + "name": "electric dipole moment", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd72", + "name": "electric dipole moment", + "expression": "LΒ·TΒ·I", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu259", + "unitsml_id": "u:atomic_unit_of_electric_field", + "name": "atomic unit of electric field", + "names": [ + { + "value": "atomic unit of electric field", + "lang": "en" + } + ], + "symbols": { + "unicode": "𝐸ₕ/π‘’π‘Žβ‚€", + "ascii": "E_h*(e*a_0)", + "html": "Eh/ea0", + "latex": "\\ensuremath{\\mathit{E}_{h}/\\mathit{\\e}\\mathit{a}_0}", + "id": "E_h*(e*a_0)", + "mathml": "Eh/ea0" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu259" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_electric_field" + } + ], + "references": [], + "short": "atomic_unit_of_electric_field", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq68", + "name": "electric field strength", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd42", + "name": "electric field strength", + "expression": "LΒ·MΒ·T-3Β·I-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu26", + "unitsml_id": "u:fermi", + "name": "fermi", + "names": [ + { + "value": "fermi", + "lang": "en" + } + ], + "symbols": { + "unicode": "fermi", + "ascii": "fermi", + "html": "fermi", + "latex": "\\ensuremath{\\mathrm{fermi}}", + "id": "fermi", + "mathml": "fermi" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu26" + }, + { + "type": "unitsml", + "id": "u:fermi" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FM" + } + ], + "short": "fermi", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + }, + { + "id": "NISTq48", + "name": "distance", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": { + "id": "NISTp10_-15", + "name": "femto", + "symbol": "f" + } + } + ] + }, + { + "id": "NISTu260", + "unitsml_id": "u:atomic_unit_of_electric_field_gradient", + "name": "atomic unit of electric field gradient", + "names": [ + { + "value": "atomic unit of electric field gradient", + "lang": "en" + } + ], + "symbols": { + "unicode": "𝐸ₕ/π‘’π‘Žβ‚€Β²", + "ascii": "E_h*(e*a_0^2)", + "html": "Eh/ea02", + "latex": "\\ensuremath{\\mathit{E}_{h}/\\mathit{\\e}\\mathit{a}_0^2}", + "id": "E_h*(e*a_0^2)", + "mathml": "Eh/ea02" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu260" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_electric_field_gradient" + } + ], + "references": [], + "short": "atomic_unit_of_electric_field_gradient", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq165", + "name": "electric field gradient", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd74", + "name": "electric field gradient", + "expression": "MΒ·T-3Β·I-1", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu261", + "unitsml_id": "u:atomic_unit_of_electric_potential", + "name": "atomic unit of electric potential", + "names": [ + { + "value": "atomic unit of electric potential", + "lang": "en" + } + ], + "symbols": { + "unicode": "𝐸ₕ/𝑒", + "ascii": "E_h*e-1", + "html": "Eh/e", + "latex": "\\ensuremath{\\mathit{E}_{h}/\\mathit{\\e}}", + "id": "E_h*e-1", + "mathml": "Eh/e" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu261" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_electric_potential" + } + ], + "references": [], + "short": "atomic_unit_of_electric_potential", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq166", + "name": "electric potential", + "type": "derived" + }, + { + "id": "NISTq24", + "name": "electric potential difference", + "type": "derived" + }, + { + "id": "NISTq26", + "name": "electromotive force", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd18", + "name": "electric potential difference", + "expression": "L2Β·MΒ·T-3Β·I-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu262", + "unitsml_id": "u:atomic_unit_of_force", + "name": "atomic unit of force", + "names": [ + { + "value": "atomic unit of force", + "lang": "en" + } + ], + "symbols": { + "unicode": "𝐸ₕ/π‘Žβ‚€", + "ascii": "E_h*(a_0)-1", + "html": "Eh/a0", + "latex": "\\ensuremath{\\mathit{E}_{h}/\\mathit{a}_0}", + "id": "E_h*(a_0)-1", + "mathml": "Eh/a0" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu262" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_force" + } + ], + "references": [], + "short": "atomic_unit_of_force", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq128", + "name": "weight", + "type": "derived" + }, + { + "id": "NISTq13", + "name": "force", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd12", + "name": "force", + "expression": "LΒ·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu263", + "unitsml_id": "u:atomic_unit_of_electric_quadrupole_moment", + "name": "atomic unit of electric quadrupole moment", + "names": [ + { + "value": "atomic unit of electric quadrupole moment", + "lang": "en" + } + ], + "symbols": { + "unicode": "π‘’π‘Žβ‚€Β²", + "ascii": "e*a_0^2", + "html": "ea02", + "latex": "\\ensuremath{\\mathit{e}\\mathit{a}_0^2}", + "id": "e*a_0^2", + "mathml": "ea0>2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu263" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_electric_quadrupole_moment" + } + ], + "references": [], + "short": "atomic_unit_of_electric_quadrupole_moment", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq167", + "name": "electric quadrupole moment", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd75", + "name": "electric quadrupole moment", + "expression": "L2Β·TΒ·I", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu264", + "unitsml_id": "u:atomic_unit_of_electric_polarizability", + "name": "atomic unit of electric polarizability", + "names": [ + { + "value": "atomic unit of electric polarizability", + "lang": "en" + } + ], + "symbols": { + "unicode": "π‘’Β²π‘Žβ‚€Β²/𝐸ₕ", + "ascii": "e^2*a_0^2*(E_h)^-1", + "html": "e2a02/Eh", + "latex": "\\ensuremath{\\mathit{e}\\mathit{a}_0^2/\\mathit{E}_h}", + "id": "e^2*a_0^2*(E_h)^-1", + "mathml": "e2a02/Eh" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu264" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_electric_polarizability" + } + ], + "references": [], + "short": "atomic_unit_of_electric_polarizability", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq168", + "name": "polarizability", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd76", + "name": "polarizability", + "expression": "MΒ·T4Β·I2", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": 4 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu265", + "unitsml_id": "u:statohm", + "name": "statohm", + "names": [ + { + "value": "statohm", + "lang": "en" + }, + { + "value": "ESU of resistance", + "lang": "en" + } + ], + "symbols": { + "unicode": "statohm", + "ascii": "statohm", + "html": "statohm", + "latex": "\\ensuremath{\\mathrm{statohm}}", + "id": "statohm", + "mathml": "statohm" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu265" + }, + { + "type": "unitsml", + "id": "u:statohm" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/OHM_Stat" + } + ], + "short": "statohm", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq28", + "name": "electric resistance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd20", + "name": "electric resistance", + "expression": "L2Β·MΒ·T-3Β·I-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu266", + "unitsml_id": "u:statfarad", + "name": "statfarad", + "names": [ + { + "value": "statfarad", + "lang": "en" + }, + { + "value": "ESU of capacitance", + "lang": "en" + } + ], + "symbols": { + "unicode": "statF", + "ascii": "statF", + "html": "statF", + "latex": "\\ensuremath{\\mathrm{statF}}", + "id": "statF", + "mathml": "statF" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu266" + }, + { + "type": "unitsml", + "id": "u:statfarad" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FARAD_Stat" + } + ], + "short": "statfarad", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq169", + "name": "electric capacitance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd19", + "name": "capacitance", + "expression": "L-2Β·M-1Β·T4Β·I2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 4 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu267", + "unitsml_id": "u:statampere", + "name": "statampere", + "names": [ + { + "value": "statampere", + "lang": "en" + }, + { + "value": "ESU of current", + "lang": "en" + } + ], + "symbols": { + "unicode": "statA", + "ascii": "statA", + "html": "statA", + "latex": "\\ensuremath{\\mathrm{statA}}", + "id": "statA", + "mathml": "statA" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu267" + }, + { + "type": "unitsml", + "id": "u:statampere" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/A_Stat" + } + ], + "short": "statampere", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq170", + "name": "electric current intensity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd4", + "name": "electric current", + "expression": "I", + "components": [ + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu268", + "unitsml_id": "u:statvolt", + "name": "statvolt", + "names": [ + { + "value": "statvolt", + "lang": "en" + }, + { + "value": "ESU of Electric potential", + "lang": "en" + } + ], + "symbols": { + "unicode": "statV", + "ascii": "statV", + "html": "statV", + "latex": "statV", + "id": "statV", + "mathml": "statV" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu268" + }, + { + "type": "unitsml", + "id": "u:statvolt" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/V_Stat" + } + ], + "short": "statvolt", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq166", + "name": "electric potential", + "type": "derived" + }, + { + "id": "NISTq24", + "name": "electric potential difference", + "type": "derived" + }, + { + "id": "NISTq26", + "name": "electromotive force", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd18", + "name": "electric potential difference", + "expression": "L2Β·MΒ·T-3Β·I-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu269", + "unitsml_id": "u:stathenry", + "name": "stathenry", + "names": [ + { + "value": "stathenry", + "lang": "en" + }, + { + "value": "ESU of inductance", + "lang": "en" + } + ], + "symbols": { + "unicode": "statH", + "ascii": "statH", + "html": "statH", + "latex": "\\ensuremath{\\mathrm{statH}}", + "id": "statH", + "mathml": "statH" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu269" + }, + { + "type": "unitsml", + "id": "u:stathenry" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/H_Stat" + } + ], + "short": "stathenry", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq171", + "name": "electric inductance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd23", + "name": "inductance", + "expression": "L2Β·MΒ·T-2Β·I-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu27", + "unitsml_id": "u:gram", + "name": "gram", + "names": [ + { + "value": "gram", + "lang": "en" + }, + { + "value": "gramme", + "lang": "fr" + } + ], + "symbols": { + "unicode": "g", + "ascii": "g", + "html": "g", + "latex": "\\ensuremath{\\mathrm{g}}", + "id": "g", + "mathml": "g" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu27" + }, + { + "type": "unitsml", + "id": "u:gram" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/gram" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:base-unit:code:g" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/GM" + } + ], + "short": "gram", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_base", + "name": "SI base units", + "short": "si-base", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu270", + "unitsml_id": "u:statmho", + "name": "statmho", + "names": [ + { + "value": "statmho", + "lang": "en" + }, + { + "value": "ESU of conductance", + "lang": "en" + } + ], + "symbols": { + "unicode": "statmho", + "ascii": "statmho", + "html": "statmho", + "latex": "\\ensuremath{\\mathrm{statmho}}", + "id": "statmho", + "mathml": "statmho" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu270" + }, + { + "type": "unitsml", + "id": "u:statmho" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MHO_Stat" + } + ], + "short": "statmho", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq29", + "name": "electric conductance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd21", + "name": "electric conductance", + "expression": "L-2Β·M-1Β·T3Β·I2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu271", + "unitsml_id": "u:statcoulomb", + "name": "statcoulomb", + "names": [ + { + "value": "statcoulomb", + "lang": "en" + }, + { + "value": "ESU of charge", + "lang": "en" + } + ], + "symbols": { + "unicode": "statcoulomb", + "ascii": "statcoulomb", + "html": "statcoulomb", + "latex": "\\ensuremath{\\mathrm{statcoulomb}}", + "id": "statcoulomb", + "mathml": "statcoulomb" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu271" + }, + { + "type": "unitsml", + "id": "u:statcoulomb" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/C_Stat" + } + ], + "short": "statcoulomb", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq22", + "name": "electric charge", + "type": "derived" + }, + { + "id": "NISTq23", + "name": "amount of electricity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd17", + "name": "electric charge", + "expression": "TΒ·I", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu272", + "unitsml_id": "u:statweber", + "name": "statweber", + "names": [ + { + "value": "statweber", + "lang": "en" + } + ], + "symbols": { + "unicode": "statWb", + "ascii": "statWb", + "html": "statWb", + "latex": "\\ensuremath{\\mathrm{statWb}}", + "id": "statWb", + "mathml": "statWb" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu272" + }, + { + "type": "unitsml", + "id": "u:statweber" + } + ], + "references": [], + "short": "statweber", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq30", + "name": "magnetic flux", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd22", + "name": "magnetic flux", + "expression": "L2Β·MΒ·T-2Β·I-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu273", + "unitsml_id": "u:stattesla", + "name": "stattesla", + "names": [ + { + "value": "stattesla", + "lang": "en" + } + ], + "symbols": { + "unicode": "statT", + "ascii": "statT", + "html": "statT", + "latex": "\\ensuremath{\\mathrm{statT}}", + "id": "statT", + "mathml": "statT" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu273" + }, + { + "type": "unitsml", + "id": "u:stattesla" + } + ], + "references": [], + "short": "stattesla", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq14", + "name": "magnetic flux density", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd13", + "name": "magnetic flux density", + "expression": "MΒ·T-2Β·I-1", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu274", + "unitsml_id": "u:statwatt", + "name": "statwatt", + "names": [ + { + "value": "statwatt", + "lang": "en" + } + ], + "symbols": { + "unicode": "statwatt", + "ascii": "statwatt", + "html": "statwatt", + "latex": "\\ensuremath{\\mathrm{statwatt}}", + "id": "statwatt", + "mathml": "statwatt" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu274" + }, + { + "type": "unitsml", + "id": "u:statwatt" + } + ], + "references": [], + "short": "statwatt", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq20", + "name": "power", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu275", + "unitsml_id": "u:av_dram", + "name": "dram (avoirdupois)", + "names": [ + { + "value": "dram (avoirdupois)", + "lang": "en" + }, + { + "value": "dram", + "lang": "en" + } + ], + "symbols": { + "unicode": "dr (avdp)", + "ascii": "dr (avdp)", + "html": "dr (avdp)", + "latex": "\\ensuremath{\\mathrm{dr~(avdp)}}", + "id": "dr (avdp)", + "mathml": "dr (avdp)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu275" + }, + { + "type": "unitsml", + "id": "u:av_dram" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:avoirdupois:code:[dr_av]" + } + ], + "short": "av_dram", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu276", + "unitsml_id": "u:footcandle", + "name": "footcandle", + "names": [ + { + "value": "footcandle", + "lang": "en" + } + ], + "symbols": { + "unicode": "ft.c", + "ascii": "ft.c", + "html": "ft.c", + "latex": "\\ensuremath{\\mathrm{ft.c}}", + "id": "ft.c", + "mathml": "ft.c" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu276" + }, + { + "type": "unitsml", + "id": "u:footcandle" + } + ], + "references": [], + "short": "footcandle", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq47", + "name": "illuminance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd27", + "name": "illuminance", + "expression": "L-2Β·J", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "luminous_intensity", + "symbol": "J", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu277", + "unitsml_id": "u:footlambert", + "name": "footlambert", + "names": [ + { + "value": "footlambert", + "lang": "en" + } + ], + "symbols": { + "unicode": "ft.L", + "ascii": "ft.L", + "html": "ft.L", + "latex": "\\ensuremath{\\mathrm{ft.L}}", + "id": "ft.L", + "mathml": "ft.L" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu277" + }, + { + "type": "unitsml", + "id": "u:footlambert" + } + ], + "references": [], + "short": "footlambert", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq56", + "name": "luminance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd27", + "name": "illuminance", + "expression": "L-2Β·J", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "luminous_intensity", + "symbol": "J", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu278", + "unitsml_id": "u:computer_pica", + "name": "pica (computer)", + "names": [ + { + "value": "pica (computer)", + "lang": "en" + } + ], + "symbols": { + "unicode": "pc", + "ascii": "pc", + "html": "pc", + "latex": "\\ensuremath{\\mathrm{pc}}", + "id": "pica_computer", + "mathml": "pc" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu278" + }, + { + "type": "unitsml", + "id": "u:computer_pica" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:pc" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/PARSEC" + } + ], + "short": "computer_pica", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + }, + { + "id": "NISTq48", + "name": "distance", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu279", + "unitsml_id": "u:printers_pica", + "name": "pica (printer's)", + "names": [ + { + "value": "pica (printer's)", + "lang": "en" + } + ], + "symbols": { + "unicode": "pc", + "ascii": "pc", + "html": "pc", + "latex": "\\ensuremath{\\mathrm{pc}}", + "id": "pica_printer", + "mathml": "pc" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu279" + }, + { + "type": "unitsml", + "id": "u:printers_pica" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:pc" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/PARSEC" + } + ], + "short": "printers_pica", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu27p10'3.u1.u3e-1/1", + "unitsml_id": "u:kilogram_meter_per_second", + "name": "kilogram meter per second", + "names": [ + { + "value": "kilogram meter per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "NΒ·m/s", + "ascii": "kg*m*s^-1", + "html": "kg · m/s", + "latex": "\\ensuremath{\\mathrm{kg\\cdot m/s}}", + "id": "kg*m*s^-1", + "mathml": "kg·m/s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu27p10'3.u1.u3e-1/1" + }, + { + "type": "unitsml", + "id": "u:kilogram_meter_per_second" + } + ], + "references": [], + "short": "kilogram_meter_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq131", + "name": "momentum", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd61", + "name": "momentum", + "expression": "LΒ·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": 1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu27p10'3.u1e-1/1", + "unitsml_id": "u:kilogram_per_meter", + "name": "kilogram per meter", + "names": [ + { + "value": "kilogram per meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "kg/m", + "ascii": "kg*m^-1", + "html": "kg/m", + "latex": "\\ensuremath{\\mathrm{kg/m}}", + "id": "kg*m^-1", + "mathml": "kg/m" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu27p10'3.u1e-1/1" + }, + { + "type": "unitsml", + "id": "u:kilogram_per_meter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/KiloGM-PER-M" + } + ], + "short": "kilogram_per_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq126", + "name": "linear density", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd58", + "name": "linear density", + "expression": "L-1Β·M", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu27p10'3.u1e-2/1", + "unitsml_id": "u:kilogram_per_square_meter", + "name": "kilogram per square meter", + "names": [ + { + "value": "kilogram per square meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "kg/mΒ²", + "ascii": "kg*m^-2", + "html": "kg/m2", + "latex": "\\ensuremath{\\mathrm{kg/m^2}}", + "id": "kg*m^-2", + "mathml": "kg/m2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu27p10'3.u1e-2/1" + }, + { + "type": "unitsml", + "id": "u:kilogram_per_square_meter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/KiloGM-PER-M2" + } + ], + "short": "kilogram_per_square_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq31", + "name": "surface density", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd51", + "name": "surface density", + "expression": "L-2Β·M", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -2, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu27p10'3.u1e-3/1", + "unitsml_id": "u:kilogram_per_cubic_meter", + "name": "kilogram per cubic meter", + "names": [ + { + "value": "kilogram per cubic meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "kgΒ·m⁻³", + "ascii": "kg*m^-3", + "html": "kg/m3", + "latex": "\\ensuremath{\\mathrm{kg/m^3}}", + "id": "kg*m^-3", + "mathml": "kg/m3" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu27p10'3.u1e-3/1" + }, + { + "type": "unitsml", + "id": "u:kilogram_per_cubic_meter" + } + ], + "references": [], + "short": "kilogram_per_cubic_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq33", + "name": "mass concentration", + "type": "derived" + }, + { + "id": "NISTq51", + "name": "density", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd30", + "name": "mass density", + "expression": "L-3Β·M", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -3, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu27p10'3.u1e2/1", + "unitsml_id": "u:kilogram_meter_squared", + "name": "kilogram meter squared", + "names": [ + { + "value": "kilogram meter squared", + "lang": "en" + } + ], + "symbols": { + "unicode": "kgΒ·mΒ²", + "ascii": "kg*m^2", + "html": "kg · m2", + "latex": "\\ensuremath{\\mathrm{kg\\cdot m^2}}", + "id": "kg*m^2", + "mathml": "kg·m2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu27p10'3.u1e2/1" + }, + { + "type": "unitsml", + "id": "u:kilogram_meter_squared" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/KiloGM-M2" + } + ], + "short": "kilogram_meter_squared", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq127", + "name": "mass moment of inertia", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd59", + "name": "mass moment of inertia", + "expression": "L2Β·M", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -2, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu27p10'3.u1e2/1.u3e-1/1", + "unitsml_id": "u:kilogram_meter_squared_per_second", + "name": "kilogram meter squared per second", + "names": [ + { + "value": "kilogram meter squared per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "kgΒ·mΒ²/s", + "ascii": "kg*m^2*s^-1", + "html": "kg · m2/s", + "latex": "\\ensuremath{\\mathrm{kg\\cdot m^2/s}}", + "id": "kg*m^2*s^-1", + "mathml": "kg·m2/s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu27p10'3.u1e2/1.u3e-1/1" + }, + { + "type": "unitsml", + "id": "u:kilogram_meter_squared_per_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/KiloGM-M2-PER-SEC" + } + ], + "short": "kilogram_meter_squared_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq132", + "name": "moment of momentum", + "type": "derived" + }, + { + "id": "NISTq132", + "name": "moment of momentum", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd60", + "name": "action", + "expression": "L2Β·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": 2, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu27p10'3.u3e-1/1", + "unitsml_id": "u:kilogram_per_second", + "name": "kilogram per second", + "names": [ + { + "value": "kilogram per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "kg/s", + "ascii": "kg*s^-1", + "html": "kg/s", + "latex": "\\ensuremath{\\mathrm{kg/s}}", + "id": "kg*s^-1", + "mathml": "kg/s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu27p10'3.u3e-1/1" + }, + { + "type": "unitsml", + "id": "u:kilogram_per_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/KiloGM-PER-SEC" + } + ], + "short": "kilogram_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq150", + "name": "mass flow rate", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd65", + "name": "mass flow rate", + "expression": "MΒ·T-1", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu28", + "unitsml_id": "u:gray", + "name": "gray", + "names": [ + { + "value": "gray", + "lang": "en" + }, + { + "value": "gray", + "lang": "fr" + } + ], + "symbols": { + "unicode": "Gy", + "ascii": "Gy", + "html": "Gy", + "latex": "\\ensuremath{\\mathrm{Gy}}", + "id": "Gy", + "mathml": "Gy" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu28" + }, + { + "type": "unitsml", + "id": "u:gray" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/gray" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:Gy" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/GRAY" + } + ], + "short": "gray", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq36", + "name": "absorbed dose", + "type": "derived" + }, + { + "id": "NISTq37", + "name": "specific energy imparted", + "type": "derived" + }, + { + "id": "NISTq38", + "name": "kerma", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd25", + "name": "absorbed dose", + "expression": "L2Β·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu28.u3e-1/1", + "unitsml_id": "u:gray_per_second", + "name": "gray per second", + "names": [ + { + "value": "gray per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "Gy/s", + "ascii": "Gy*s^-1", + "html": "Gy/s", + "latex": "\\ensuremath{\\mathrm{Gy/s}}", + "id": "Gy*s^-1", + "mathml": "Gy/s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu28.u3e-1/1" + }, + { + "type": "unitsml", + "id": "u:gray_per_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/GRAY-PER-SEC" + } + ], + "short": "gray_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq194", + "name": "kerma rate", + "type": "derived" + }, + { + "id": "NISTq76", + "name": "absorbed dose rate", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd50", + "name": "absorbed dose rate", + "expression": "L2Β·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu28", + "name": "gray", + "symbol": "Gy" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu280", + "unitsml_id": "u:computer_point", + "name": "point (computer)", + "names": [ + { + "value": "point (computer)", + "lang": "en" + } + ], + "symbols": { + "unicode": "pt", + "ascii": "pt", + "html": "pt", + "latex": "\\ensuremath{\\mathrm{pt}}", + "id": "pt_computer", + "mathml": "pt" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu280" + }, + { + "type": "unitsml", + "id": "u:computer_point" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/PT" + } + ], + "short": "computer_point", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + }, + { + "id": "NISTq48", + "name": "distance", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu281", + "unitsml_id": "u:us_survey_rod", + "name": "rod (based on US survey foot)", + "names": [ + { + "value": "rod (based on US survey foot)", + "lang": "en" + }, + { + "value": "rod", + "lang": "en" + } + ], + "symbols": { + "unicode": "rd", + "ascii": "rd", + "html": "rd", + "latex": "rd", + "id": "rd", + "mathml": "rd" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu281" + }, + { + "type": "unitsml", + "id": "u:us_survey_rod" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-lengths:code:[rd_us]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/ROD" + } + ], + "short": "us_survey_rod", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu282", + "unitsml_id": "u:us_survey_fathom", + "name": "fathom (based on US survey foot)", + "names": [ + { + "value": "fathom (based on US survey foot)", + "lang": "en" + }, + { + "value": "fathom", + "lang": "en" + } + ], + "symbols": { + "unicode": "fath", + "ascii": "fath", + "html": "fath", + "latex": "\\ensuremath{\\mathrm{fath}}", + "id": "fath", + "mathml": "fath" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu282" + }, + { + "type": "unitsml", + "id": "u:us_survey_fathom" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[fth_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FATH" + } + ], + "short": "us_survey_fathom", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu283", + "unitsml_id": "u:circular_mil", + "name": "circular mil", + "names": [ + { + "value": "circular mil", + "lang": "en" + } + ], + "symbols": { + "unicode": "cmil", + "ascii": "cmil", + "html": "cmil", + "latex": "\\ensuremath{\\mathrm{cmil}}", + "id": "cmil", + "mathml": "cmil" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu283" + }, + { + "type": "unitsml", + "id": "u:circular_mil" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[cml_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MIL_Circ" + } + ], + "short": "circular_mil", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq8", + "name": "area", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd8", + "name": "area", + "expression": "L2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu284", + "unitsml_id": "u:horsepower", + "name": "horsepower", + "names": [ + { + "value": "horsepower", + "lang": "en" + } + ], + "symbols": { + "unicode": "hp", + "ascii": "hp", + "html": "hp", + "latex": "\\ensuremath{\\mathrm{hp}}", + "id": "hp", + "mathml": "hp" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu284" + }, + { + "type": "unitsml", + "id": "u:horsepower" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:heat:code:[HP]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/HP" + } + ], + "short": "horsepower", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq20", + "name": "power", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu285", + "unitsml_id": "u:boiler_horsepower", + "name": "horsepower, boiler", + "names": [ + { + "value": "horsepower, boiler", + "lang": "en" + }, + { + "value": "boiler horsepower", + "lang": "en" + } + ], + "symbols": { + "unicode": "hp", + "ascii": "hp", + "html": "hp", + "latex": "\\ensuremath{\\mathrm{hp}}", + "id": "hp_boiler", + "mathml": "hp" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu285" + }, + { + "type": "unitsml", + "id": "u:boiler_horsepower" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/HP_Boiler" + } + ], + "short": "boiler_horsepower", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq20", + "name": "power", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu286", + "unitsml_id": "u:water_horsepower", + "name": "horsepower, water", + "names": [ + { + "value": "horsepower, water", + "lang": "en" + }, + { + "value": "water horsepower", + "lang": "en" + } + ], + "symbols": { + "unicode": "hp", + "ascii": "hp", + "html": "hp", + "latex": "\\ensuremath{\\mathrm{hp}}", + "id": "hp_water", + "mathml": "hp" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu286" + }, + { + "type": "unitsml", + "id": "u:water_horsepower" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/HP_H2O" + } + ], + "short": "water_horsepower", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq20", + "name": "power", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu287", + "unitsml_id": "u:uk_horsepower", + "name": "horsepower (UK)", + "names": [ + { + "value": "horsepower (UK)", + "lang": "en" + } + ], + "symbols": { + "unicode": "hp", + "ascii": "hp", + "html": "hp", + "latex": "\\ensuremath{\\mathrm{hp}}", + "id": "hp_UK", + "mathml": "hp" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu287" + }, + { + "type": "unitsml", + "id": "u:uk_horsepower" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/HP" + } + ], + "short": "uk_horsepower", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq20", + "name": "power", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu288", + "unitsml_id": "u:degree_Rankine", + "name": "degree Rankine", + "names": [ + { + "value": "degree Rankine", + "lang": "en" + } + ], + "symbols": { + "unicode": "Β°R", + "ascii": "degR", + "html": "°R", + "latex": "\\ensuremath{mathrm{^{\\circ}R}}", + "id": "degR", + "mathml": "°R" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu288" + }, + { + "type": "unitsml", + "id": "u:degree_Rankine" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:heat:code:[degR]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/DEG_R" + } + ], + "short": "degree_Rankine", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq5", + "name": "thermodynamic temperature", + "type": "base" + } + ], + "dimension": { + "id": "NISTd5", + "name": "temperature", + "expression": "Theta", + "components": [ + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu289", + "unitsml_id": "u:dalton", + "name": "dalton", + "names": [ + { + "value": "dalton", + "lang": "en" + }, + { + "value": "dalton", + "lang": "fr" + } + ], + "symbols": { + "unicode": "Da", + "ascii": "Da", + "html": "Da", + "latex": "\\ensuremath{\\mathrm{Da}}", + "id": "Da", + "mathml": "Da" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu289" + }, + { + "type": "unitsml", + "id": "u:dalton" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/dalton" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/DA" + } + ], + "short": "dalton", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu241", + "name": "unified atomic mass unit", + "symbol": "u" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu29", + "unitsml_id": "u:sievert", + "name": "sievert", + "names": [ + { + "value": "sievert", + "lang": "en" + }, + { + "value": "sievert", + "lang": "fr" + } + ], + "symbols": { + "unicode": "Sv", + "ascii": "Sv", + "html": "Sv", + "latex": "\\ensuremath{\\mathrm{Sv}}", + "id": "Sv", + "mathml": "Sv" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu29" + }, + { + "type": "unitsml", + "id": "u:sievert" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/sievert" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:Sv" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/SV" + } + ], + "short": "sievert", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq39", + "name": "dose equivalent", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd25", + "name": "absorbed dose", + "expression": "L2Β·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu290", + "unitsml_id": "u:natural_unit_of_length", + "name": "natural unit of length", + "names": [ + { + "value": "natural unit of length", + "lang": "en" + } + ], + "symbols": { + "unicode": "Ζ›_C", + "ascii": "lambda-bar_C", + "html": "ƛC", + "latex": "\\ensuremath{\\lambdabar_C}", + "id": "lambda-bar_C", + "mathml": "ƛC" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu290" + }, + { + "type": "unitsml", + "id": "u:natural_unit_of_length" + } + ], + "references": [], + "short": "natural_unit_of_length", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu291", + "unitsml_id": "u:atomic_unit_of_1st_hyperpolarizability", + "name": "atomic unit of 1st hyperpolarizability", + "names": [ + { + "value": "atomic unit of 1st hyperpolarizability", + "lang": "en" + } + ], + "symbols": { + "unicode": "π‘’Β³π‘Žβ‚€Β³πΈβ‚•Β³", + "ascii": "e^3a_0^3*(E_h^3)", + "html": "e3a03Eh3", + "latex": "\\ensuremath{\\mathit{e}^3/\\mathit(a}_0^3\\mathit{E}_h^3}", + "id": "e^3a_0^3*(E_h^3)", + "mathml": "e3a03Eh3" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu291" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_1st_hyperpolarizability" + } + ], + "references": [], + "short": "atomic_unit_of_1st_hyperpolarizability", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq172", + "name": "1st hyperpolarizability", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd77", + "name": "hyperpolarizability 1st", + "expression": "L-1Β·M-2Β·T7Β·I3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": -2 + }, + { + "key": "time", + "symbol": "T", + "power": 7 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu292", + "unitsml_id": "u:atomic_unit_of_2nd_hyperpolarizability", + "name": "atomic unit of 2nd hyperpolarizability", + "names": [ + { + "value": "atomic unit of 2nd hyperpolarizability", + "lang": "en" + } + ], + "symbols": { + "unicode": "π‘’β΄π‘Žβ‚€β΄πΈβ‚•β΄", + "ascii": "e^4a_0^4*(E_h^3)", + "html": "e4a04Eh3", + "latex": "\\ensuremath{\\mathit{e}^4/\\mathit(a}_0^4\\mathit{E}_h^3}", + "id": "e^4a_0^4*(E_h^3)", + "mathml": "e4a04Eh3" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu292" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_2nd_hyperpolarizability" + } + ], + "references": [], + "short": "atomic_unit_of_2nd_hyperpolarizability", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq173", + "name": "2nd hyperpolarizability", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd78", + "name": "hyperpolarizability 2nd", + "expression": "L-2Β·M-3Β·T10Β·I4", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": -3 + }, + { + "key": "time", + "symbol": "T", + "power": 10 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 4 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu293", + "unitsml_id": "u:atomic_unit_of_permittivity", + "name": "atomic unit of permittivity", + "names": [ + { + "value": "atomic unit of permittivity", + "lang": "en" + } + ], + "symbols": { + "unicode": "𝑒²/π‘Žβ‚€πΈβ‚•", + "ascii": "e^2*(a_0*E_h)-1", + "html": "e2/a0Eh", + "latex": "\\ensuremath{\\mathit{e}^2/\\mathit(a}_0\\mathit{E}_h}", + "id": "e^2*(a_0*E_h)-1", + "mathml": "e2/a0Eh" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu293" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_permittivity" + } + ], + "references": [], + "short": "atomic_unit_of_permittivity", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq71", + "name": "permittivity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd45", + "name": "permittivity", + "expression": "L-3Β·M-1Β·T4Β·I2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 4 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu294", + "unitsml_id": "u:atomic_unit_of_velocity", + "name": "atomic unit of velocity", + "names": [ + { + "value": "atomic unit of velocity", + "lang": "en" + } + ], + "symbols": { + "unicode": "π‘Žβ‚€πΈβ‚•/ℏ", + "ascii": "a_0*E_h*h-bar-1", + "html": "a0Eh/ħ", + "latex": "\\ensuremath{\\mathit{a}_\\mathrm{0}\\mathit{E}_{h}/\\mathit{\\hbar}}", + "id": "a_0*E_h*h-bar-1", + "mathml": "a0Eh/ħ" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu294" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_velocity" + } + ], + "references": [], + "short": "atomic_unit_of_velocity", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq12", + "name": "velocity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd11", + "name": "velocity", + "expression": "LΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu295", + "unitsml_id": "u:natural_unit_of_energy", + "name": "natural unit of energy", + "names": [ + { + "value": "natural unit of energy", + "lang": "en" + } + ], + "symbols": { + "unicode": "π‘šβ‚‘π‘Β²", + "ascii": "m_e*c^2", + "html": "mec2", + "latex": "\\ensuremath{\\mathit{m}_e\\mathit{c}^2}", + "id": "m_e*c^2", + "mathml": "mec2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu295" + }, + { + "type": "unitsml", + "id": "u:natural_unit_of_energy" + } + ], + "references": [], + "short": "natural_unit_of_energy", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq17", + "name": "energy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu296", + "unitsml_id": "u:natural_unit_of_momentum", + "name": "natural unit of momentum", + "names": [ + { + "value": "natural unit of momentum", + "lang": "en" + } + ], + "symbols": { + "unicode": "π‘šβ‚‘π‘", + "ascii": "m_e*c", + "html": "mec", + "latex": "\\ensuremath{\\mathit{m}_e\\mathit{c}}", + "id": "m_e*c", + "mathml": "mec" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu296" + }, + { + "type": "unitsml", + "id": "u:natural_unit_of_momentum" + } + ], + "references": [], + "short": "natural_unit_of_momentum", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq131", + "name": "momentum", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd61", + "name": "momentum", + "expression": "LΒ·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu297", + "unitsml_id": "u:natural_unit_of_action_in_eV_s", + "name": "natural unit of action in eV s", + "names": [ + { + "value": "natural unit of action in eV s", + "lang": "en" + } + ], + "symbols": { + "unicode": "ℏ", + "ascii": "h-bar", + "html": "ħ", + "latex": "\\ensuremath{mathrm{\\hbar}}", + "id": "h-bar_eV_s", + "mathml": "ħ" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu297" + }, + { + "type": "unitsml", + "id": "u:natural_unit_of_action_in_eV_s" + } + ], + "references": [], + "short": "natural_unit_of_action_in_eV_s", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq154", + "name": "action", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd60", + "name": "action", + "expression": "L2Β·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu298", + "unitsml_id": "u:natural_unit_of_energy_in_MeV", + "name": "natural unit of energy in MeV", + "names": [ + { + "value": "natural unit of energy in MeV", + "lang": "en" + } + ], + "symbols": { + "unicode": "π‘šβ‚‘π‘Β²", + "ascii": "m_e*c^2", + "html": "mec2", + "latex": "\\ensuremath{\\mathit{m}_e\\mathit{c}^2}", + "id": "m_e*c^2_MeV", + "mathml": "mec2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu298" + }, + { + "type": "unitsml", + "id": "u:natural_unit_of_energy_in_MeV" + } + ], + "references": [], + "short": "natural_unit_of_energy_in_MeV", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq17", + "name": "energy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu299", + "unitsml_id": "u:natural_unit_of_momentum_in_MeV_per_c", + "name": "natural unit of momentum in MeV/c", + "names": [ + { + "value": "natural unit of momentum in MeV/c", + "lang": "en" + } + ], + "symbols": { + "unicode": "π‘šβ‚‘π‘", + "ascii": "m_e*c", + "html": "mec", + "latex": "\\ensuremath{\\mathit{m}_e\\mathit{c}}", + "id": "m_e*c_MeV/C", + "mathml": "mec" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu299" + }, + { + "type": "unitsml", + "id": "u:natural_unit_of_momentum_in_MeV_per_c" + } + ], + "references": [], + "short": "natural_unit_of_momentum_in_MeV_per_c", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq131", + "name": "momentum", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd61", + "name": "momentum", + "expression": "LΒ·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu3", + "unitsml_id": "u:second", + "name": "second", + "names": [ + { + "value": "second", + "lang": "en" + }, + { + "value": "seconde", + "lang": "fr" + } + ], + "symbols": { + "unicode": "β€³", + "ascii": "\"", + "html": "″", + "latex": "\\ensuremath{\\mathrm{''}}", + "id": "dprime_s", + "mathml": "" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu3" + }, + { + "type": "unitsml", + "id": "u:second" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/second" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:base-unit:code:s" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/SEC" + } + ], + "short": "second", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq109", + "name": "period duration", + "type": "derived" + }, + { + "id": "NISTq110", + "name": "time constant", + "type": "derived" + }, + { + "id": "NISTq3", + "name": "time", + "type": "base" + } + ], + "dimension": { + "id": "NISTd3", + "name": "time", + "expression": "T", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_base", + "name": "SI base units", + "short": "si-base", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu30", + "unitsml_id": "u:katal", + "name": "katal", + "names": [ + { + "value": "katal", + "lang": "en" + }, + { + "value": "katal", + "lang": "fr" + } + ], + "symbols": { + "unicode": "kat", + "ascii": "kat", + "html": "kat", + "latex": "\\ensuremath{\\mathrm{kat}}", + "id": "kat", + "mathml": "kat" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu30" + }, + { + "type": "unitsml", + "id": "u:katal" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/katal" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:chemical:code:kat" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/KAT" + } + ], + "short": "katal", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq44", + "name": "catalytic activity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd26", + "name": "catalytic activity", + "expression": "T-1Β·N", + "components": [ + { + "key": "time", + "symbol": "T", + "power": -1 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu30.u1e-3/1", + "unitsml_id": "u:katal_per_cubic_meter", + "name": "katal per cubic meter", + "names": [ + { + "value": "katal per cubic meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "kat/mΒ³", + "ascii": "kat*m^-3", + "html": "kat/m3", + "latex": "\\ensuremath{\\mathrm{kat/m^3}}", + "id": "kat*m^-3", + "mathml": "kat/m3" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu30.u1e-3/1" + }, + { + "type": "unitsml", + "id": "u:katal_per_cubic_meter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/KAT-PER-M3" + } + ], + "short": "katal_per_cubic_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq84", + "name": "catalytic activity concentration", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd55", + "name": "catalytic activity concentration", + "expression": "M-3Β·T-1Β·N", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": -3 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu30", + "name": "katal", + "symbol": "kat" + }, + "prefix": null + }, + { + "power": -3, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu300", + "unitsml_id": "u:imperial_quart", + "name": "quart (UK)", + "names": [ + { + "value": "quart (UK)", + "lang": "en" + }, + { + "value": "quart", + "lang": "en" + } + ], + "symbols": { + "unicode": "qt (UK)", + "ascii": "qt (UK)", + "html": "qt (UK)", + "latex": "\\ensuremath{\\mathrm{qt (UK)}}", + "id": "qt (UK)", + "mathml": "qt (UK)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu300" + }, + { + "type": "unitsml", + "id": "u:imperial_quart" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[qt_us]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/QT_UK" + } + ], + "short": "imperial_quart", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu301", + "unitsml_id": "u:us_dry_quart", + "name": "dry quart (US)", + "names": [ + { + "value": "dry quart (US)", + "lang": "en" + }, + { + "value": "quart", + "lang": "en" + } + ], + "symbols": { + "unicode": "dry qt (US)", + "ascii": "dry qt (US)", + "html": "dry qt (US)", + "latex": "\\ensuremath{\\mathrm{dry qt (US)}}", + "id": "dry qt (US)", + "mathml": "dry qt (US)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu301" + }, + { + "type": "unitsml", + "id": "u:us_dry_quart" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[qt_us]" + } + ], + "short": "us_dry_quart", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu302", + "unitsml_id": "u:us_quart", + "name": "liquid quart (US)", + "names": [ + { + "value": "liquid quart (US)", + "lang": "en" + }, + { + "value": "quart", + "lang": "en" + } + ], + "symbols": { + "unicode": "liq qt (US)", + "ascii": "liq qt (US)", + "html": "liq qt (US)", + "latex": "\\ensuremath{\\mathrm{liq qt (US)}}", + "id": "liq qt (US)", + "mathml": "liq qt (US)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu302" + }, + { + "type": "unitsml", + "id": "u:us_quart" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[qt_us]" + } + ], + "short": "us_quart", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu303", + "unitsml_id": "u:us_teaspoon", + "name": "teaspoon", + "names": [ + { + "value": "teaspoon", + "lang": "en" + } + ], + "symbols": { + "unicode": "tsp", + "ascii": "tsp", + "html": "tsp", + "latex": "\\ensuremath{\\mathrm{tsp}}", + "id": "tsp", + "mathml": "tsp" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu303" + }, + { + "type": "unitsml", + "id": "u:us_teaspoon" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[tsp_us]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/TSP" + } + ], + "short": "us_teaspoon", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu304", + "unitsml_id": "u:us_tablespoon", + "name": "tablespoon", + "names": [ + { + "value": "tablespoon", + "lang": "en" + } + ], + "symbols": { + "unicode": "tbsp", + "ascii": "tbsp", + "html": "tbsp", + "latex": "\\ensuremath{\\mathrm{tbsp}}", + "id": "tbsp", + "mathml": "tbsp" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu304" + }, + { + "type": "unitsml", + "id": "u:us_tablespoon" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[tbs_us]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/TBSP" + } + ], + "short": "us_tablespoon", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu305", + "unitsml_id": "u:us_label_tablespoon", + "name": "tablespoon (FDA)", + "names": [ + { + "value": "tablespoon (FDA)", + "lang": "en" + }, + { + "value": "teaspoon", + "lang": "en" + } + ], + "symbols": { + "unicode": "tbsp", + "ascii": "tbsp", + "html": "tbsp", + "latex": "\\ensuremath{\\mathrm{tbsp}}", + "id": "tbsp_label", + "mathml": "tbsp" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu305" + }, + { + "type": "unitsml", + "id": "u:us_label_tablespoon" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[tsp_us]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/TBSP" + } + ], + "short": "us_label_tablespoon", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu306", + "unitsml_id": "u:us_label_teaspoon", + "name": "teaspoon (FDA)", + "names": [ + { + "value": "teaspoon (FDA)", + "lang": "en" + }, + { + "value": "teaspoon", + "lang": "en" + } + ], + "symbols": { + "unicode": "tsp", + "ascii": "tsp", + "html": "tsp", + "latex": "\\ensuremath{\\mathrm{tsp}}", + "id": "tsp_label", + "mathml": "tsp" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu306" + }, + { + "type": "unitsml", + "id": "u:us_label_teaspoon" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[tsp_us]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/TSP" + } + ], + "short": "us_label_teaspoon", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu307", + "unitsml_id": "u:us_label_cup", + "name": "cup (FDA)", + "names": [ + { + "value": "cup (FDA)", + "lang": "en" + }, + { + "value": "cup", + "lang": "en" + } + ], + "symbols": { + "unicode": "cup", + "ascii": "cup", + "html": "cup", + "latex": "\\ensuremath{\\mathrm{cup}}", + "id": "cup_label", + "mathml": "cup" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu307" + }, + { + "type": "unitsml", + "id": "u:us_label_cup" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[cup_us]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/CUP" + } + ], + "short": "us_label_cup", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu308", + "unitsml_id": "u:us_label_fluid_ounce", + "name": "fluid ounce (FDA)", + "names": [ + { + "value": "fluid ounce (FDA)", + "lang": "en" + }, + { + "value": "fluid ounce", + "lang": "en" + }, + { + "value": "ounce", + "lang": "en" + } + ], + "symbols": { + "unicode": "fl oz (US label)", + "ascii": "fl oz (US label)", + "html": "fl oz (US label)", + "latex": "\\ensuremath{\\mathrm{fl oz (US label)}}", + "id": "fl oz (US label)", + "mathml": "fl oz (US label)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu308" + }, + { + "type": "unitsml", + "id": "u:us_label_fluid_ounce" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[foz_us]" + } + ], + "short": "us_label_fluid_ounce", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu309", + "unitsml_id": "u:us_label_ounce", + "name": "ounce (FDA)", + "names": [ + { + "value": "ounce (FDA)", + "lang": "en" + }, + { + "value": "ounce", + "lang": "en" + } + ], + "symbols": { + "unicode": "oz (US label)", + "ascii": "oz (US label)", + "html": "oz (US label)", + "latex": "\\ensuremath{\\mathrm{oz (US label)}}", + "id": "oz (US label)", + "mathml": "oz (US label)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu309" + }, + { + "type": "unitsml", + "id": "u:us_label_ounce" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:avoirdupois:code:[oz_av]" + } + ], + "short": "us_label_ounce", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu31", + "unitsml_id": "u:hertz", + "name": "hertz", + "names": [ + { + "value": "hertz", + "lang": "en" + }, + { + "value": "hertz", + "lang": "fr" + } + ], + "symbols": { + "unicode": "Hz", + "ascii": "Hz", + "html": "Hz", + "latex": "\\ensuremath{\\mathrm{Hz}}", + "id": "Hz", + "mathml": "Hz" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu31" + }, + { + "type": "unitsml", + "id": "u:hertz" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/hertz" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:Hz" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/HZ" + } + ], + "short": "hertz", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq45", + "name": "frequency", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd24", + "name": "frequency", + "expression": "T-1", + "components": [ + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu310", + "unitsml_id": "u:us_survey_chain", + "name": "chain (based on US survey foot)", + "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": { + "unicode": "ch", + "ascii": "ch", + "html": "ch", + "latex": "\\ensuremath{\\mathrm{ch}}", + "id": "ch", + "mathml": "ch" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu310" + }, + { + "type": "unitsml", + "id": "u:us_survey_chain" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-lengths:code:[ch_us]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/CH" + } + ], + "short": "us_survey_chain", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu311", + "unitsml_id": "u:us_survey_link", + "name": "link (based on US survey foot)", + "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": { + "unicode": "lnk", + "ascii": "lnk", + "html": "lnk", + "latex": "\\ensuremath{\\mathrm{lnk}}", + "id": "lnk", + "mathml": "lnk" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu311" + }, + { + "type": "unitsml", + "id": "u:us_survey_link" + } + ], + "references": [], + "short": "us_survey_link", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu312", + "unitsml_id": "u:us_survey_furlong", + "name": "furlong (based on US survey foot)", + "names": [ + { + "value": "furlong (based on US survey foot)", + "lang": "en" + }, + { + "value": "furlong", + "lang": "en" + } + ], + "symbols": { + "unicode": "fur", + "ascii": "fur", + "html": "fur", + "latex": "\\ensuremath{\\mathrm{fur}}", + "id": "fur", + "mathml": "fur" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu312" + }, + { + "type": "unitsml", + "id": "u:us_survey_furlong" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-lengths:code:[fur_us]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FUR" + } + ], + "short": "us_survey_furlong", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu313", + "unitsml_id": "u:us_survey_mile", + "name": "mile (based on US survey foot)", + "names": [ + { + "value": "mile (based on US survey foot)", + "lang": "en" + }, + { + "value": "survey mile", + "lang": "en" + }, + { + "value": "mile", + "lang": "en" + } + ], + "symbols": { + "unicode": "mi", + "ascii": "mi", + "html": "mi", + "latex": "\\ensuremath{\\mathrm{mi}}", + "id": "mi_US_survey", + "mathml": "mi" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu313" + }, + { + "type": "unitsml", + "id": "u:us_survey_mile" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[mi_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MI_US" + } + ], + "short": "us_survey_mile", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu314", + "unitsml_id": "u:us_survey_yard", + "name": "yard (based on US survey foot)", + "names": [ + { + "value": "yard (based on US survey foot)", + "lang": "en" + }, + { + "value": "yard", + "lang": "en" + } + ], + "symbols": { + "unicode": "yd", + "ascii": "yd", + "html": "yd", + "latex": "\\ensuremath{\\mathrm{yd}}", + "id": "yd_US_survey", + "mathml": "yd" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu314" + }, + { + "type": "unitsml", + "id": "u:us_survey_yard" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[yd_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/YD" + } + ], + "short": "us_survey_yard", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu315", + "unitsml_id": "u:us_survey_foot", + "name": "foot (based on US survey foot)", + "names": [ + { + "value": "foot (based on US survey foot)", + "lang": "en" + }, + { + "value": "survey foot", + "lang": "en" + }, + { + "value": "foot", + "lang": "en" + } + ], + "symbols": { + "unicode": "ft", + "ascii": "ft", + "html": "ft", + "latex": "\\ensuremath{\\mathrm{ft}}", + "id": "ft_US_survey", + "mathml": "ft" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu315" + }, + { + "type": "unitsml", + "id": "u:us_survey_foot" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[ft_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FT_US" + } + ], + "short": "us_survey_foot", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu316", + "unitsml_id": "u:us_survey_inch", + "name": "inch (based on US survey foot)", + "names": [ + { + "value": "inch (based on US survey foot)", + "lang": "en" + }, + { + "value": "inch", + "lang": "en" + } + ], + "symbols": { + "unicode": "in", + "ascii": "in", + "html": "in", + "latex": "\\ensuremath{\\mathrm{in}}", + "id": "in_US_survey", + "mathml": "in" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu316" + }, + { + "type": "unitsml", + "id": "u:us_survey_inch" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[in_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/IN" + } + ], + "short": "us_survey_inch", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu317", + "unitsml_id": "u:us_acre", + "name": "acre (based on US survey foot)", + "names": [ + { + "value": "acre (based on US survey foot)", + "lang": "en" + }, + { + "value": "acre", + "lang": "en" + } + ], + "symbols": { + "unicode": "ac", + "ascii": "ac", + "html": "ac", + "latex": "\\ensuremath{\\mathrm{ac}}", + "id": "ac", + "mathml": "ac" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu317" + }, + { + "type": "unitsml", + "id": "u:us_acre" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-lengths:code:[acr_us]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/AC" + } + ], + "short": "us_acre", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq8", + "name": "area", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd8", + "name": "area", + "expression": "L2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu318", + "unitsml_id": "u:cm_Hg", + "name": "conventional centimeter of mercury", + "names": [ + { + "value": "conventional centimeter of mercury", + "lang": "en" + }, + { + "value": "centimeter of mercury, conventional", + "lang": "en" + }, + { + "value": "centimeter of mercury", + "lang": "en" + } + ], + "symbols": { + "unicode": "cmHg", + "ascii": "cmHg", + "html": "cmHg", + "latex": "\\ensuremath{\\mathrm{cmHg}}", + "id": "cmHg", + "mathml": "cmHg" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu318" + }, + { + "type": "unitsml", + "id": "u:cm_Hg" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/CentiM_HG" + } + ], + "short": "cm_Hg", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu319", + "unitsml_id": "u:0C_cm_Hg", + "name": "centimeter of mercury (0 degC)", + "names": [ + { + "value": "centimeter of mercury (0 degC)", + "lang": "en" + } + ], + "symbols": { + "unicode": "cmHg", + "ascii": "cmHg", + "html": "cmHg", + "latex": "\\ensuremath{\\mathrm{cmHg}}", + "id": "cmHg_0degC", + "mathml": "cmHg" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu319" + }, + { + "type": "unitsml", + "id": "u:0C_cm_Hg" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/CentiM_HG_0DEG_C" + } + ], + "short": "0C_cm_Hg", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu32", + "unitsml_id": "u:lumen", + "name": "lumen", + "names": [ + { + "value": "lumen", + "lang": "en" + }, + { + "value": "lumen", + "lang": "fr" + } + ], + "symbols": { + "unicode": "lm", + "ascii": "lm", + "html": "lm", + "latex": "\\ensuremath{\\mathrm{lm}}", + "id": "lm", + "mathml": "lm" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu32" + }, + { + "type": "unitsml", + "id": "u:lumen" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/lumen" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:lm" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/LM" + } + ], + "short": "lumen", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq46", + "name": "luminous flux", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd7", + "name": "luminous intensity", + "expression": "J", + "components": [ + { + "key": "luminous_intensity", + "symbol": "J", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu320", + "unitsml_id": "u:4C_cm_water", + "name": "centimeter of water (4 degC)", + "names": [ + { + "value": "centimeter of water (4 degC)", + "lang": "en" + } + ], + "symbols": { + "unicode": "cmHβ‚‚O", + "ascii": "cmH_2O", + "html": "cmH2O", + "latex": "\\ensuremath{\\mathrm{cmH_{2}O}}", + "id": "cmH_2O_4degC", + "mathml": "cmH2O" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu320" + }, + { + "type": "unitsml", + "id": "u:4C_cm_water" + } + ], + "references": [], + "short": "4C_cm_water", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu321", + "unitsml_id": "u:cm_water", + "name": "conventional centimeter of water", + "names": [ + { + "value": "conventional centimeter of water", + "lang": "en" + }, + { + "value": "centimeter of water, conventional", + "lang": "en" + }, + { + "value": "centimeter of water", + "lang": "en" + } + ], + "symbols": { + "unicode": "cmHβ‚‚O", + "ascii": "cmH_2O", + "html": "cmH2O", + "latex": "\\ensuremath{\\mathrm{cmH_{2}O}}", + "id": "cmH_2O", + "mathml": "cmH2O" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu321" + }, + { + "type": "unitsml", + "id": "u:cm_water" + } + ], + "references": [], + "short": "cm_water", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu322", + "unitsml_id": "u:in_water", + "name": "conventional inch of water", + "names": [ + { + "value": "conventional inch of water", + "lang": "en" + }, + { + "value": "inch of water, conventional", + "lang": "en" + }, + { + "value": "inch of water", + "lang": "en" + } + ], + "symbols": { + "unicode": "inHβ‚‚O", + "ascii": "inH_2O", + "html": "inH2O", + "latex": "\\ensuremath{\\mathrm{inH_{2}O}}", + "id": "inH_2O", + "mathml": "inH2O" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu322" + }, + { + "type": "unitsml", + "id": "u:in_water" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/IN_H2O" + } + ], + "short": "in_water", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu323", + "unitsml_id": "u:39F_in_water", + "name": "inch of water (39.2 degF)", + "names": [ + { + "value": "inch of water (39.2 degF)", + "lang": "en" + } + ], + "symbols": { + "unicode": "inHβ‚‚O", + "ascii": "inH_2O", + "html": "inH2O", + "latex": "\\ensuremath{\\mathrm{inH_{2}O}}", + "id": "inH_2O_39degF", + "mathml": "inH2O" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu323" + }, + { + "type": "unitsml", + "id": "u:39F_in_water" + } + ], + "references": [], + "short": "39F_in_water", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu324", + "unitsml_id": "u:60F_in_water", + "name": "inch of water (60 degF)", + "names": [ + { + "value": "inch of water (60 degF)", + "lang": "en" + } + ], + "symbols": { + "unicode": "inHβ‚‚O", + "ascii": "inH_2O", + "html": "inH2O", + "latex": "\\ensuremath{\\mathrm{inH_{2}O}}", + "id": "inH_2O_60degF", + "mathml": "inH2O" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu324" + }, + { + "type": "unitsml", + "id": "u:60F_in_water" + } + ], + "references": [], + "short": "60F_in_water", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu325", + "unitsml_id": "u:ft_water", + "name": "conventional foot of water", + "names": [ + { + "value": "conventional foot of water", + "lang": "en" + }, + { + "value": "foot of water, conventional", + "lang": "en" + }, + { + "value": "foot of water", + "lang": "en" + } + ], + "symbols": { + "unicode": "ftHβ‚‚O", + "ascii": "ftH_2O", + "html": "ftH2O", + "latex": "\\ensuremath{\\mathrm{ftH_{2}O}}", + "id": "ftH_2O", + "mathml": "ftH2O" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu325" + }, + { + "type": "unitsml", + "id": "u:ft_water" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FT_H2O" + } + ], + "short": "ft_water", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu326", + "unitsml_id": "u:39F_ft_water", + "name": "foot of water (39.2 degF)", + "names": [ + { + "value": "foot of water (39.2 degF)", + "lang": "en" + } + ], + "symbols": { + "unicode": "ftHβ‚‚O", + "ascii": "ftH_2O", + "html": "ftH2O", + "latex": "\\ensuremath{\\mathrm{ftH_{2}O}}", + "id": "ftH_2O_39degF", + "mathml": "ftH2O" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu326" + }, + { + "type": "unitsml", + "id": "u:39F_ft_water" + } + ], + "references": [], + "short": "39F_ft_water", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu327", + "unitsml_id": "u:32F_in_Hg", + "name": "inch of mercury (32 degF)", + "names": [ + { + "value": "inch of mercury (32 degF)", + "lang": "en" + } + ], + "symbols": { + "unicode": "β€³Hg", + "ascii": "\"Hg", + "html": "″Hg", + "latex": "\\ensuremath{\\mathrm{''Hg}}", + "id": "dprime_Hg_32degF", + "mathml": "″Hg" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu327" + }, + { + "type": "unitsml", + "id": "u:32F_in_Hg" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/IN_HG_32DEG_F" + } + ], + "short": "32F_in_Hg", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu328", + "unitsml_id": "u:60F_in_Hg", + "name": "inch of mercury (60 degF)", + "names": [ + { + "value": "inch of mercury (60 degF)", + "lang": "en" + } + ], + "symbols": { + "unicode": "β€³Hg", + "ascii": "\"Hg", + "html": "″Hg", + "latex": "\\ensuremath{\\mathrm{''Hg}}", + "id": "dprime_Hg_60degF", + "mathml": "″Hg" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu328" + }, + { + "type": "unitsml", + "id": "u:60F_in_Hg" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/IN_HG_60DEG_F" + } + ], + "short": "60F_in_Hg", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu329", + "unitsml_id": "u:in_Hg", + "name": "conventional inch of mercury", + "names": [ + { + "value": "conventional inch of mercury", + "lang": "en" + }, + { + "value": "inch of mercury, conventional", + "lang": "en" + }, + { + "value": "inch of mercury", + "lang": "en" + } + ], + "symbols": { + "unicode": "β€³Hg", + "ascii": "\"Hg", + "html": "″Hg", + "latex": "\\ensuremath{\\mathrm{''Hg}}", + "id": "dprime_Hg", + "mathml": "″Hg" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu329" + }, + { + "type": "unitsml", + "id": "u:in_Hg" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/IN_HG" + } + ], + "short": "in_Hg", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu33", + "unitsml_id": "u:lux", + "name": "lux", + "names": [ + { + "value": "lux", + "lang": "en" + }, + { + "value": "lux", + "lang": "fr" + } + ], + "symbols": { + "unicode": "lx", + "ascii": "lx", + "html": "lx", + "latex": "\\ensuremath{\\mathrm{lx}}", + "id": "lx", + "mathml": "lx" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu33" + }, + { + "type": "unitsml", + "id": "u:lux" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/lux" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:lx" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/LUX" + } + ], + "short": "lux", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq47", + "name": "illuminance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd27", + "name": "illuminance", + "expression": "L-2Β·J", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "luminous_intensity", + "symbol": "J", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu330", + "unitsml_id": "u:ft_Hg", + "name": "conventional foot of mercury", + "names": [ + { + "value": "conventional foot of mercury", + "lang": "en" + }, + { + "value": "foot of mercury, conventional", + "lang": "en" + }, + { + "value": "foot of mercury", + "lang": "en" + } + ], + "symbols": { + "unicode": "β€²Hg", + "ascii": "'Hg", + "html": "′Hg", + "latex": "\\ensuremath{\\mathrm{'Hg}}", + "id": "prime_Hg", + "mathml": "′Hg" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu330" + }, + { + "type": "unitsml", + "id": "u:ft_Hg" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FT_HG" + } + ], + "short": "ft_Hg", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu331", + "unitsml_id": "u:us_therm", + "name": "therm (US)", + "names": [ + { + "value": "therm (US)", + "lang": "en" + } + ], + "symbols": { + "unicode": "thm (US)", + "ascii": "thm (US)", + "html": "thm (US)", + "latex": "\\ensuremath{\\mathrm{thm (US)}}", + "id": "thm (US)", + "mathml": "thm (US)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu331" + }, + { + "type": "unitsml", + "id": "u:us_therm" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/THM_US" + } + ], + "short": "us_therm", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq17", + "name": "energy", + "type": "derived" + }, + { + "id": "NISTq18", + "name": "work", + "type": "derived" + }, + { + "id": "NISTq182", + "name": "kinetic energy", + "type": "derived" + }, + { + "id": "NISTq183", + "name": "mechanical energy", + "type": "derived" + }, + { + "id": "NISTq19", + "name": "amount of heat", + "type": "derived" + }, + { + "id": "NISTq77", + "name": "potential energy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu332", + "unitsml_id": "u:pH", + "name": "pH", + "names": [ + { + "value": "pH", + "lang": "en" + } + ], + "symbols": { + "unicode": "pH", + "ascii": "pH", + "html": "pH", + "latex": "\\ensuremath{\\mathrm{pH}}", + "id": "pH", + "mathml": "pH" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu332" + }, + { + "type": "unitsml", + "id": "u:pH" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:chemical:code:[pH]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/PH" + } + ], + "short": "pH", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq174", + "name": "index of acidity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd94", + "name": "acidity index", + "expression": "1", + "components": [], + "dimensionless": true + }, + "scale": { + "id": "logarithmic_ratio", + "name": "logarithmic ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu333", + "unitsml_id": "u:table_btu", + "name": "British thermal unit_IT", + "names": [ + { + "value": "British thermal unit_IT", + "lang": "en" + }, + { + "value": "International Table Btu", + "lang": "en" + }, + { + "value": "British thermal unit", + "lang": "en" + } + ], + "symbols": { + "unicode": "Btu", + "ascii": "Btu", + "html": "Btu", + "latex": "\\ensuremath{\\mathrm{Btu}}", + "id": "Btu", + "mathml": "Btu" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu333" + }, + { + "type": "unitsml", + "id": "u:table_btu" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:heat:code:[Btu]" + } + ], + "short": "table_btu", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq19", + "name": "amount of heat", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu334", + "unitsml_id": "u:mean_btu", + "name": "British thermal unit (mean)", + "names": [ + { + "value": "British thermal unit (mean)", + "lang": "en" + } + ], + "symbols": { + "unicode": "Btu", + "ascii": "Btu", + "html": "Btu", + "latex": "\\ensuremath{\\mathrm{Btu}}", + "id": "Btu_mean", + "mathml": "Btu" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu334" + }, + { + "type": "unitsml", + "id": "u:mean_btu" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/BTU_MEAN" + } + ], + "short": "mean_btu", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq19", + "name": "amount of heat", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu335", + "unitsml_id": "u:39F_btu", + "name": "British thermal unit (39 degF)", + "names": [ + { + "value": "British thermal unit (39 degF)", + "lang": "en" + } + ], + "symbols": { + "unicode": "Btu", + "ascii": "Btu", + "html": "Btu", + "latex": "\\ensuremath{\\mathrm{Btu}}", + "id": "Btu_39degF", + "mathml": "Btu" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu335" + }, + { + "type": "unitsml", + "id": "u:39F_btu" + } + ], + "references": [], + "short": "39F_btu", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq19", + "name": "amount of heat", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu336", + "unitsml_id": "u:59F_btu", + "name": "British thermal unit (59 degF)", + "names": [ + { + "value": "British thermal unit (59 degF)", + "lang": "en" + } + ], + "symbols": { + "unicode": "Btu", + "ascii": "Btu", + "html": "Btu", + "latex": "\\ensuremath{\\mathrm{Btu}}", + "id": "Btu_59degF", + "mathml": "Btu" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu336" + }, + { + "type": "unitsml", + "id": "u:59F_btu" + } + ], + "references": [], + "short": "59F_btu", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq19", + "name": "amount of heat", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu337", + "unitsml_id": "u:60F_btu", + "name": "British thermal unit (60 degF)", + "names": [ + { + "value": "British thermal unit (60 degF)", + "lang": "en" + } + ], + "symbols": { + "unicode": "Btu", + "ascii": "Btu", + "html": "Btu", + "latex": "\\ensuremath{\\mathrm{Btu}}", + "id": "Btu_60degF", + "mathml": "Btu" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu337" + }, + { + "type": "unitsml", + "id": "u:60F_btu" + } + ], + "references": [], + "short": "60F_btu", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq19", + "name": "amount of heat", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu338", + "unitsml_id": "u:tropical_year", + "name": "year, tropical", + "names": [ + { + "value": "year, tropical", + "lang": "en" + }, + { + "value": "tropical year", + "lang": "en" + }, + { + "value": "year", + "lang": "en" + } + ], + "symbols": { + "unicode": "a", + "ascii": "a", + "html": "a", + "latex": "\\ensuremath{\\mathrm{a}}", + "id": "a_tropical_year", + "mathml": "a" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu338" + }, + { + "type": "unitsml", + "id": "u:tropical_year" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:a_t" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/YR_TROPICAL" + } + ], + "short": "tropical_year", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq3", + "name": "time", + "type": "base" + } + ], + "dimension": { + "id": "NISTd3", + "name": "time", + "expression": "T", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu339", + "unitsml_id": "u:sidereal_year", + "name": "year, sidereal", + "names": [ + { + "value": "year, sidereal", + "lang": "en" + }, + { + "value": "sidereal year", + "lang": "en" + }, + { + "value": "year", + "lang": "en" + } + ], + "symbols": { + "unicode": "a", + "ascii": "a", + "html": "a", + "latex": "\\ensuremath{\\mathrm{a}}", + "id": "a_sidereal_year", + "mathml": "a" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu339" + }, + { + "type": "unitsml", + "id": "u:sidereal_year" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:a" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/YR_Sidereal" + } + ], + "short": "sidereal_year", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq3", + "name": "time", + "type": "base" + } + ], + "dimension": { + "id": "NISTd3", + "name": "time", + "expression": "T", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu340", + "unitsml_id": "u:sidereal_day", + "name": "day, sidereal", + "names": [ + { + "value": "day, sidereal", + "lang": "en" + }, + { + "value": "sidereal day", + "lang": "en" + }, + { + "value": "day", + "lang": "en" + } + ], + "symbols": { + "unicode": "d", + "ascii": "d", + "html": "d", + "latex": "\\ensuremath{\\mathrm{d}}", + "id": "d_sidereal", + "mathml": "d" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu340" + }, + { + "type": "unitsml", + "id": "u:sidereal_day" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:d" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/DAY_Sidereal" + } + ], + "short": "sidereal_day", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq3", + "name": "time", + "type": "base" + } + ], + "dimension": { + "id": "NISTd3", + "name": "time", + "expression": "T", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu341", + "unitsml_id": "u:sidereal_hour", + "name": "hour, sidereal", + "names": [ + { + "value": "hour, sidereal", + "lang": "en" + }, + { + "value": "sidereal hour", + "lang": "en" + }, + { + "value": "hour", + "lang": "en" + } + ], + "symbols": { + "unicode": "h", + "ascii": "h", + "html": "h", + "latex": "\\ensuremath{\\mathrm{h}}", + "id": "h_sidereal", + "mathml": "h" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu341" + }, + { + "type": "unitsml", + "id": "u:sidereal_hour" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:h" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/HR_Sidereal" + } + ], + "short": "sidereal_hour", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq3", + "name": "time", + "type": "base" + } + ], + "dimension": { + "id": "NISTd3", + "name": "time", + "expression": "T", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu342", + "unitsml_id": "u:sidereal_minute", + "name": "minute, sidereal", + "names": [ + { + "value": "minute, sidereal", + "lang": "en" + }, + { + "value": "sidereal minute", + "lang": "en" + }, + { + "value": "minute", + "lang": "en" + } + ], + "symbols": { + "unicode": "min", + "ascii": "min", + "html": "min", + "latex": "\\ensuremath{\\mathrm{min}}", + "id": "min_sidereal", + "mathml": "min" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu342" + }, + { + "type": "unitsml", + "id": "u:sidereal_minute" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:'" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MIN_Sidereal" + } + ], + "short": "sidereal_minute", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq3", + "name": "time", + "type": "base" + } + ], + "dimension": { + "id": "NISTd3", + "name": "time", + "expression": "T", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu343", + "unitsml_id": "u:sidereal_second", + "name": "second, sidereal", + "names": [ + { + "value": "second, sidereal", + "lang": "en" + }, + { + "value": "sidereal second", + "lang": "en" + }, + { + "value": "second", + "lang": "en" + } + ], + "symbols": { + "unicode": "s", + "ascii": "s", + "html": "s", + "latex": "\\ensuremath{\\mathrm{s}}", + "id": "s_sidereal", + "mathml": "s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu343" + }, + { + "type": "unitsml", + "id": "u:sidereal_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/S" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:base-unit:code:s" + } + ], + "short": "sidereal_second", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq3", + "name": "time", + "type": "base" + } + ], + "dimension": { + "id": "NISTd3", + "name": "time", + "expression": "T", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu344", + "unitsml_id": "u:printers_point", + "name": "point (printer's)", + "names": [ + { + "value": "point (printer's)", + "lang": "en" + } + ], + "symbols": { + "unicode": "pt", + "ascii": "pt", + "html": "pt", + "latex": "\\ensuremath{\\mathrm{pt}}", + "id": "pt_printer", + "mathml": "pt" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu344" + }, + { + "type": "unitsml", + "id": "u:printers_point" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/PT_BIG" + } + ], + "short": "printers_point", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu345", + "unitsml_id": "u:shake", + "name": "shake", + "names": [ + { + "value": "shake", + "lang": "en" + } + ], + "symbols": { + "unicode": "shake", + "ascii": "shake", + "html": "shake", + "latex": "\\ensuremath{\\mathrm{shake}}", + "id": "shake", + "mathml": "shake" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu345" + }, + { + "type": "unitsml", + "id": "u:shake" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/SH" + } + ], + "short": "shake", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq3", + "name": "time", + "type": "base" + } + ], + "dimension": { + "id": "NISTd3", + "name": "time", + "expression": "T", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu346", + "unitsml_id": "u:denier", + "name": "denier", + "names": [ + { + "value": "denier", + "lang": "en" + } + ], + "symbols": { + "unicode": "den", + "ascii": "den", + "html": "den", + "latex": "\\ensuremath{\\mathrm{den}}", + "id": "den", + "mathml": "den" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu346" + }, + { + "type": "unitsml", + "id": "u:denier" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:heat:code:[den]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/DENIER" + } + ], + "short": "denier", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq176", + "name": "mass divided by length", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd58", + "name": "linear density", + "expression": "L-1Β·M", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu347", + "unitsml_id": "u:nato_mil", + "name": "angular mil (NATO)", + "names": [ + { + "value": "angular mil (NATO)", + "lang": "en" + }, + { + "value": "angular mil", + "lang": "en" + }, + { + "value": "mil", + "lang": "en" + } + ], + "symbols": { + "unicode": "mil", + "ascii": "mil", + "html": "mil", + "latex": "\\ensuremath{\\mathrm{mil}}", + "id": "mil_nato", + "mathml": "mil" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu347" + }, + { + "type": "unitsml", + "id": "u:nato_mil" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[mil_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MilLength" + } + ], + "short": "nato_mil", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq9", + "name": "plane angle", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd9", + "name": "plane angle", + "expression": "1", + "components": [ + { + "key": "plane_angle", + "symbol": "phi", + "power": 1 + } + ], + "dimensionless": true + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu348", + "unitsml_id": "u:pound_mole", + "name": "pound-mole", + "names": [ + { + "value": "pound-mole", + "lang": "en" + }, + { + "value": "pound mole", + "lang": "en" + } + ], + "symbols": { + "unicode": "lbmol", + "ascii": "lbmol", + "html": "lbmol", + "latex": "\\ensuremath{\\mathrm{lbmol}}", + "id": "lbmol", + "mathml": "lbmol" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu348" + }, + { + "type": "unitsml", + "id": "u:pound_mole" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MOL_LB" + } + ], + "short": "pound_mole", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq6", + "name": "amount of substance", + "type": "base" + } + ], + "dimension": { + "id": "NISTd6", + "name": "substance amount", + "expression": "N", + "components": [ + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu349", + "unitsml_id": "u:ton_refrigeration", + "name": "ton of refrigeration (12 000 Btu_IT/h)", + "names": [ + { + "value": "ton of refrigeration (12 000 Btu_IT/h)", + "lang": "en" + }, + { + "value": "ton of refrigeration", + "lang": "en" + }, + { + "value": "ton", + "lang": "en" + } + ], + "symbols": { + "unicode": "ton", + "ascii": "ton", + "html": "ton", + "latex": "\\ensuremath{\\mathrm{ton}}", + "id": "ton_refrigeration", + "mathml": "ton" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu349" + }, + { + "type": "unitsml", + "id": "u:ton_refrigeration" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/TON_FG" + } + ], + "short": "ton_refrigeration", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq20", + "name": "power", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu350", + "unitsml_id": "u:bit", + "name": "bit", + "names": [ + { + "value": "bit", + "lang": "en" + } + ], + "symbols": { + "unicode": "bit", + "ascii": "bit", + "html": "bit", + "latex": "\\ensuremath{\\mathrm{bit}}", + "id": "bit", + "mathml": "bit" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu350" + }, + { + "type": "unitsml", + "id": "u:bit" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:infotech:code:bit_s" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/BIT" + } + ], + "short": "bit", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq177", + "name": "storage capacity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd95", + "name": "storage capacity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "scale": { + "id": "discrete", + "name": "discrete scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu351", + "unitsml_id": "u:byte", + "name": "byte", + "names": [ + { + "value": "byte", + "lang": "en" + } + ], + "symbols": { + "unicode": "B", + "ascii": "B", + "html": "B", + "latex": "\\ensuremath{\\mathrm{B}}", + "id": "byte_B", + "mathml": "B" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu351" + }, + { + "type": "unitsml", + "id": "u:byte" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:infotech:code:By" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/BYTE" + } + ], + "short": "byte", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq177", + "name": "storage capacity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd95", + "name": "storage capacity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "scale": { + "id": "discrete", + "name": "discrete scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu352", + "unitsml_id": "u:us_peck", + "name": "peck", + "names": [ + { + "value": "peck", + "lang": "en" + } + ], + "symbols": { + "unicode": "pk", + "ascii": "pk", + "html": "pk", + "latex": "\\ensuremath{\\mathrm{pk}}", + "id": "pk", + "mathml": "pk" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu352" + }, + { + "type": "unitsml", + "id": "u:us_peck" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[pk_us]" + } + ], + "short": "us_peck", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu353", + "unitsml_id": "u:us_minim", + "name": "minim", + "names": [ + { + "value": "minim", + "lang": "en" + } + ], + "symbols": { + "unicode": "min", + "ascii": "min", + "html": "min", + "latex": "\\ensuremath{\\mathrm{min}}", + "id": "minim", + "mathml": "min" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu353" + }, + { + "type": "unitsml", + "id": "u:us_minim" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[min_us]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MIN" + } + ], + "short": "us_minim", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu354", + "unitsml_id": "u:us_cup", + "name": "cup (US)", + "names": [ + { + "value": "cup (US)", + "lang": "en" + }, + { + "value": "cup", + "lang": "en" + } + ], + "symbols": { + "unicode": "cup", + "ascii": "cup", + "html": "cup", + "latex": "\\ensuremath{\\mathrm{cup}}", + "id": "cup", + "mathml": "cup" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu354" + }, + { + "type": "unitsml", + "id": "u:us_cup" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[cup_us]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/CUP_US" + } + ], + "short": "us_cup", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu355", + "unitsml_id": "u:us_fluid_dram", + "name": "fluid dram", + "names": [ + { + "value": "fluid dram", + "lang": "en" + }, + { + "value": "dram, fluid", + "lang": "en" + }, + { + "value": "dram", + "lang": "en" + } + ], + "symbols": { + "unicode": "fl dr", + "ascii": "fl dr", + "html": "fl dr", + "latex": "\\ensuremath{\\mathrm{fl dr}}", + "id": "fl dr", + "mathml": "fl dr" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu355" + }, + { + "type": "unitsml", + "id": "u:us_fluid_dram" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[fdr_us]" + } + ], + "short": "us_fluid_dram", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu356", + "unitsml_id": "u:us_gill", + "name": "gill (US)", + "names": [ + { + "value": "gill (US)", + "lang": "en" + }, + { + "value": "gill", + "lang": "en" + } + ], + "symbols": { + "unicode": "gi", + "ascii": "gi", + "html": "gi", + "latex": "\\ensuremath{\\mathrm{gi}}", + "id": "gi", + "mathml": "gi" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu356" + }, + { + "type": "unitsml", + "id": "u:us_gill" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[gil_us]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/GI_US" + } + ], + "short": "us_gill", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu357", + "unitsml_id": "u:imperial_gill", + "name": "gill [Canadian and UK (Imperial)]", + "names": [ + { + "value": "gill [Canadian and UK (Imperial)]", + "lang": "en" + }, + { + "value": "imperial gill", + "lang": "en" + }, + { + "value": "gill", + "lang": "en" + } + ], + "symbols": { + "unicode": "gi", + "ascii": "gi", + "html": "gi", + "latex": "\\ensuremath{\\mathrm{gi}}", + "id": "gi_imperial", + "mathml": "gi" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu357" + }, + { + "type": "unitsml", + "id": "u:imperial_gill" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[gil_us]" + } + ], + "short": "imperial_gill", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu358", + "unitsml_id": "u:cubic_foot_per_minute", + "name": "cubic foot per minute", + "names": [ + { + "value": "cubic foot per minute", + "lang": "en" + } + ], + "symbols": { + "unicode": "ftΒ³min", + "ascii": "ft^3*min^-1", + "html": "ft3/min", + "latex": "\\ensuremath{\\mathrm{ft^3/min}}", + "id": "ft^3*min^-1", + "mathml": "ft3/min" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu358" + }, + { + "type": "unitsml", + "id": "u:cubic_foot_per_minute" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FT3-PER-MIN" + } + ], + "short": "cubic_foot_per_minute", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq151", + "name": "volume flow rate", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd66", + "name": "volume flow rate", + "expression": "L3Β·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 3, + "unit": { + "id": "NISTu78", + "name": "foot", + "symbol": "β€²" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu36", + "name": "minute", + "symbol": "β€²" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu359", + "unitsml_id": "u:cubic_foot_per_second", + "name": "cubic foot per second", + "names": [ + { + "value": "cubic foot per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "ftΒ³sec", + "ascii": "ft^3*sec^-1", + "html": "ft3/sec", + "latex": "\\ensuremath{\\mathrm{ft^3/sec}}", + "id": "ft^3*sec^-1", + "mathml": "ft3/sec" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu359" + }, + { + "type": "unitsml", + "id": "u:cubic_foot_per_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FT3-PER-SEC" + } + ], + "short": "cubic_foot_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq151", + "name": "volume flow rate", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd66", + "name": "volume flow rate", + "expression": "L3Β·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 3, + "unit": { + "id": "NISTu78", + "name": "foot", + "symbol": "β€²" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu36", + "unitsml_id": "u:minute", + "name": "minute", + "names": [ + { + "value": "minute", + "lang": "en" + }, + { + "value": "minute", + "lang": "fr" + } + ], + "symbols": { + "unicode": "β€²", + "ascii": "'", + "html": "′", + "latex": "\\ensuremath{\\mathrm{'}}", + "id": "prime_min", + "mathml": "" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu36" + }, + { + "type": "unitsml", + "id": "u:minute" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/minute" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:'" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MIN" + } + ], + "short": "minute", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq3", + "name": "time", + "type": "base" + } + ], + "dimension": { + "id": "NISTd3", + "name": "time", + "expression": "T", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu360", + "unitsml_id": "u:cubic_inch_per_minute", + "name": "cubic inch per minute", + "names": [ + { + "value": "cubic inch per minute", + "lang": "en" + } + ], + "symbols": { + "unicode": "inΒ³min", + "ascii": "in^3*min^-1", + "html": "in3/min", + "latex": "\\ensuremath{\\mathrm{in^3/min}}", + "id": "in^3*min^-1", + "mathml": "in3/min" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu360" + }, + { + "type": "unitsml", + "id": "u:cubic_inch_per_minute" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/IN3-PER-MIN" + } + ], + "short": "cubic_inch_per_minute", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq151", + "name": "volume flow rate", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd66", + "name": "volume flow rate", + "expression": "L3Β·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 3, + "unit": { + "id": "NISTu8", + "name": "inch", + "symbol": "β€³" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu36", + "name": "minute", + "symbol": "β€²" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu361", + "unitsml_id": "u:microinch", + "name": "microinch", + "names": [ + { + "value": "microinch", + "lang": "en" + } + ], + "symbols": { + "unicode": "ΞΌin", + "ascii": "uin", + "html": "μin", + "latex": "\\ensuremath{\\mathrm{mu}in}", + "id": "uin", + "mathml": "μin" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu361" + }, + { + "type": "unitsml", + "id": "u:microinch" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MicroIN" + } + ], + "short": "microinch", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu8", + "name": "inch", + "symbol": "β€³" + }, + "prefix": { + "id": "NISTp10_-6", + "name": "micro", + "symbol": "ΞΌ" + } + } + ] + }, + { + "id": "NISTu362", + "unitsml_id": "u:millibar", + "name": "millibar", + "names": [ + { + "value": "millibar", + "lang": "en" + } + ], + "symbols": { + "unicode": "mbar", + "ascii": "mbar", + "html": "mbar", + "latex": "\\ensuremath{\\mathrm{mbar}}", + "id": "mbar", + "mathml": "mbar" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu362" + }, + { + "type": "unitsml", + "id": "u:millibar" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MilliBAR" + } + ], + "short": "millibar", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu91", + "name": "bar", + "symbol": "bar" + }, + "prefix": { + "id": "NISTp10_-3", + "name": "milli", + "symbol": "m" + } + } + ] + }, + { + "id": "NISTu363", + "unitsml_id": "u:mile_per_gallon", + "name": "mile per gallon (US)", + "names": [ + { + "value": "mile per gallon (US)", + "lang": "en" + }, + { + "value": "mile per gallon", + "lang": "en" + } + ], + "symbols": { + "unicode": "mi/gal", + "ascii": "mi/gal", + "html": "mi/gal", + "latex": "\\ensuremath{\\mathrm{mi/gal}}", + "id": "mi/gal", + "mathml": "mi/gal" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu363" + }, + { + "type": "unitsml", + "id": "u:mile_per_gallon" + } + ], + "references": [], + "short": "mile_per_gallon", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq198", + "name": "fuel efficiency", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd99", + "name": "fuel efficiency", + "expression": "L-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu83", + "name": "mile", + "symbol": "mi" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu175", + "name": "gallon (US)", + "symbol": "gal (US)" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu364", + "unitsml_id": "u:gallon_per_minute", + "name": "gallon (US) per minute", + "names": [ + { + "value": "gallon (US) per minute", + "lang": "en" + }, + { + "value": "gallon per minute", + "lang": "en" + } + ], + "symbols": { + "unicode": "gpm", + "ascii": "gal*min^-1", + "html": "gal/min", + "latex": "\\ensurement{\\mathrm{gal/min}}", + "id": "gal*min^-1", + "mathml": "gal/min" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu364" + }, + { + "type": "unitsml", + "id": "u:gallon_per_minute" + } + ], + "references": [], + "short": "gallon_per_minute", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq151", + "name": "volume flow rate", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd66", + "name": "volume flow rate", + "expression": "L3Β·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu175", + "name": "gallon (US)", + "symbol": "gal (US)" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu36", + "name": "minute", + "symbol": "β€²" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu365", + "unitsml_id": "u:milliliter", + "name": "milliliter", + "names": [ + { + "value": "milliliter", + "lang": "en" + } + ], + "symbols": { + "unicode": "ml", + "ascii": "ml", + "html": "ml", + "latex": "\\ensuremath{\\mathrm{ml}}", + "id": "ml", + "mathml": "ml" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu365" + }, + { + "type": "unitsml", + "id": "u:milliliter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MilliL" + } + ], + "short": "milliliter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu130", + "name": "litre", + "symbol": "L" + }, + "prefix": { + "id": "NISTp10_-3", + "name": "milli", + "symbol": "m" + } + } + ] + }, + { + "id": "NISTu366", + "unitsml_id": "u:mole_per_liter", + "name": "mole per liter", + "names": [ + { + "value": "mole per liter", + "lang": "en" + } + ], + "symbols": { + "unicode": "mol/L", + "ascii": "mol*L^-1", + "html": "mol/L", + "latex": "\\ensuremath{\\mathrm{mol/L}}", + "id": "mol*L^-1", + "mathml": "mol/L" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu366" + }, + { + "type": "unitsml", + "id": "u:mole_per_liter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MOL-PER-L" + } + ], + "short": "mole_per_liter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq55", + "name": "amount of substance concentration", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd34", + "name": "concentration", + "expression": "L-3Β·N", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu6", + "name": "mole", + "symbol": "mol" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu130", + "name": "litre", + "symbol": "L" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu37", + "unitsml_id": "u:hour", + "name": "hour", + "names": [ + { + "value": "hour", + "lang": "en" + }, + { + "value": "heure", + "lang": "fr" + } + ], + "symbols": { + "unicode": "h", + "ascii": "h", + "html": "h", + "latex": "\\ensuremath{\\mathrm{h}}", + "id": "h", + "mathml": "h" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu37" + }, + { + "type": "unitsml", + "id": "u:hour" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/hour" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:h" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/HR" + } + ], + "short": "hour", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq3", + "name": "time", + "type": "base" + } + ], + "dimension": { + "id": "NISTd3", + "name": "time", + "expression": "T", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu376", + "unitsml_id": "u:light_week", + "name": "light week", + "names": [ + { + "value": "light week", + "lang": "en" + } + ], + "symbols": { + "unicode": "l.w.", + "ascii": "l.w.", + "html": "l.w.", + "latex": "\\ensuremath{\\mathrm{l.w.}}", + "id": "l.w.", + "mathml": "l.w." + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu376" + }, + { + "type": "unitsml", + "id": "u:light_week" + } + ], + "references": [], + "short": "light_week", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu377", + "unitsml_id": "u:light_hour", + "name": "light hour", + "names": [ + { + "value": "light hour", + "lang": "en" + } + ], + "symbols": { + "unicode": "l.h.", + "ascii": "l.h.", + "html": "l.h.", + "latex": "\\ensuremath{\\mathrm{l.h.}}", + "id": "l.h.", + "mathml": "l.h." + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu377" + }, + { + "type": "unitsml", + "id": "u:light_hour" + } + ], + "references": [], + "short": "light_hour", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu378", + "unitsml_id": "u:light_minute", + "name": "light minute", + "names": [ + { + "value": "light minute", + "lang": "en" + } + ], + "symbols": { + "unicode": "l.m.", + "ascii": "l.m.", + "html": "l.m.", + "latex": "\\ensuremath{\\mathrm{l.m.}}", + "id": "l.m.", + "mathml": "l.m." + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu378" + }, + { + "type": "unitsml", + "id": "u:light_minute" + } + ], + "references": [], + "short": "light_minute", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu379", + "unitsml_id": "u:light_second", + "name": "light second", + "names": [ + { + "value": "light second", + "lang": "en" + } + ], + "symbols": { + "unicode": "l.s.", + "ascii": "l.s.", + "html": "l.s.", + "latex": "\\ensuremath{\\mathrm{l.s.}}", + "id": "l.s.", + "mathml": "l.s." + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu379" + }, + { + "type": "unitsml", + "id": "u:light_second" + } + ], + "references": [], + "short": "light_second", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu38", + "unitsml_id": "u:day", + "name": "day", + "names": [ + { + "value": "day", + "lang": "en" + }, + { + "value": "jour", + "lang": "fr" + } + ], + "symbols": { + "unicode": "d", + "ascii": "d", + "html": "d", + "latex": "\\ensuremath{\\mathrm{d}}", + "id": "d", + "mathml": "d" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu38" + }, + { + "type": "unitsml", + "id": "u:day" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/day" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:d" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/DAY" + } + ], + "short": "day", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq3", + "name": "time", + "type": "base" + } + ], + "dimension": { + "id": "NISTd3", + "name": "time", + "expression": "T", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu380", + "unitsml_id": "u:kilometer_per_liter", + "name": "kilometer per liter", + "names": [ + { + "value": "kilometer per liter", + "lang": "en" + } + ], + "symbols": { + "unicode": "km/L", + "ascii": "km/L", + "html": "km/L", + "latex": "\\ensuremath{\\mathrm{km/L}}", + "id": "km/L", + "mathml": "km/L" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu380" + }, + { + "type": "unitsml", + "id": "u:kilometer_per_liter" + } + ], + "references": [], + "short": "kilometer_per_liter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq198", + "name": "fuel efficiency", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd99", + "name": "fuel efficiency", + "expression": "L-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -1, + "unit": { + "id": "NISTu130", + "name": "litre", + "symbol": "L" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu381", + "unitsml_id": "u:decibel_milliwatt", + "name": "dBm", + "names": [ + { + "value": "dBm", + "lang": "en" + }, + { + "value": "decibel-milliwatt", + "lang": "en" + } + ], + "symbols": { + "unicode": "dB_mW", + "ascii": "dB_mW", + "html": "dBmW", + "latex": "\\ensuremath{\\mathrm{dB_{mW}}}", + "id": "dB_mW", + "mathml": "dBmW" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu381" + }, + { + "type": "unitsml", + "id": "u:decibel_milliwatt" + } + ], + "references": [], + "short": "decibel_milliwatt", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq90", + "name": "ratio logarithm (B)", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd67", + "name": "logarithmic ratio", + "expression": "1", + "components": [], + "dimensionless": true + }, + "scale": { + "id": "logarithmic_ratio", + "name": "logarithmic ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu382", + "unitsml_id": "u:relative_humidity", + "name": "relative humidity", + "names": [ + { + "value": "relative humidity", + "lang": "en" + }, + { + "value": "percent relative humidity", + "lang": "en" + } + ], + "symbols": { + "unicode": "%rh", + "ascii": "%rh", + "html": "%rh", + "latex": "\\ensuremath{\\mathrm{\\%rh}}", + "id": "rh_percent", + "mathml": "%rh" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu382" + }, + { + "type": "unitsml", + "id": "u:relative_humidity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/PERCENT_RH" + } + ], + "short": "relative_humidity", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq199", + "name": "relative humidity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd80", + "name": "ratio quantity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu383", + "unitsml_id": "u:octave", + "name": "octave", + "names": [ + { + "value": "octave", + "lang": "en" + } + ], + "symbols": { + "unicode": "oct", + "ascii": "oct", + "html": "oct", + "latex": "\\ensuremath{\\mathrm{oct}}", + "id": "oct", + "mathml": "oct" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu383" + }, + { + "type": "unitsml", + "id": "u:octave" + } + ], + "references": [], + "short": "octave", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq200", + "name": "logarithmic frequency range", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd67", + "name": "logarithmic ratio", + "expression": "1", + "components": [], + "dimensionless": true + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu384", + "unitsml_id": "u:decade", + "name": "decade", + "names": [ + { + "value": "decade", + "lang": "en" + } + ], + "symbols": { + "unicode": "dec", + "ascii": "dec", + "html": "dec", + "latex": "\\ensuremath{\\mathrm{dec}}", + "id": "dec", + "mathml": "dec" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu384" + }, + { + "type": "unitsml", + "id": "u:decade" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/DECADE" + } + ], + "short": "decade", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq200", + "name": "logarithmic frequency range", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd67", + "name": "logarithmic ratio", + "expression": "1", + "components": [], + "dimensionless": true + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu385", + "unitsml_id": "u:erlang", + "name": "erlang", + "names": [ + { + "value": "erlang", + "lang": "en" + } + ], + "symbols": { + "unicode": "E", + "ascii": "E", + "html": "E", + "latex": "\\ensuremath{\\mathrm{E}}", + "id": "E_erlang", + "mathml": "E" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu385" + }, + { + "type": "unitsml", + "id": "u:erlang" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/ERLANG" + } + ], + "short": "erlang", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq201", + "name": "traffic intensity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd100", + "name": "traffic intensity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu386", + "unitsml_id": "u:baud", + "name": "baud", + "names": [ + { + "value": "baud", + "lang": "en" + } + ], + "symbols": { + "unicode": "Bd", + "ascii": "Bd", + "html": "Bd", + "latex": "\\ensuremath{\\mathrm{Bd}}", + "id": "Bd", + "mathml": "Bd" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu386" + }, + { + "type": "unitsml", + "id": "u:baud" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:infotech:code:Bd" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/BAUD" + } + ], + "short": "baud", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq202", + "name": "symbol rate", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd101", + "name": "symbol rate", + "expression": "T-1", + "components": [ + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "discrete", + "name": "discrete scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu387", + "unitsml_id": "u:shannon", + "name": "shannon", + "names": [ + { + "value": "shannon", + "lang": "en" + } + ], + "symbols": { + "unicode": "Sh", + "ascii": "Sh", + "html": "Sh", + "latex": "\\ensuremath{\\mathrm{Sh}}", + "id": "Sh", + "mathml": "Sh" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu387" + }, + { + "type": "unitsml", + "id": "u:shannon" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/SHANNON" + } + ], + "short": "shannon", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq203", + "name": "information content", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd102", + "name": "information content", + "expression": "1", + "components": [], + "dimensionless": true + }, + "scale": { + "id": "discrete", + "name": "discrete scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu388", + "unitsml_id": "u:hartley", + "name": "hartley", + "names": [ + { + "value": "hartley", + "lang": "en" + } + ], + "symbols": { + "unicode": "Hart", + "ascii": "Hart", + "html": "Hart", + "latex": "\\ensuremath{\\mathrm{Hart}}", + "id": "Hart", + "mathml": "Hart" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu388" + }, + { + "type": "unitsml", + "id": "u:hartley" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/HART" + } + ], + "short": "hartley", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq203", + "name": "information content", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd102", + "name": "information content", + "expression": "1", + "components": [], + "dimensionless": true + }, + "scale": { + "id": "discrete", + "name": "discrete scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu39", + "unitsml_id": "u:angstrom", + "name": "Γ₯ngstrΓΆm", + "names": [ + { + "value": "Γ₯ngstrΓΆm", + "lang": "en" + } + ], + "symbols": { + "unicode": "β„«", + "ascii": "Aring", + "html": "Å", + "latex": "\\ensuremath{\\mathrm{\\AA}}", + "id": "Aring", + "mathml": "Å" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu39" + }, + { + "type": "unitsml", + "id": "u:angstrom" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:misc:code:Ao" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/ANGSTROM" + } + ], + "short": "angstrom", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + }, + { + "id": "NISTq48", + "name": "distance", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu3e-1/1", + "unitsml_id": "u:second_to_the_power_minus_one", + "name": "second to the power minus one", + "names": [ + { + "value": "second to the power minus one", + "lang": "en" + } + ], + "symbols": { + "unicode": "s⁻¹", + "ascii": "s^-1", + "html": "s-1", + "latex": "\\ensuremath{\\mathrm{s^{-1}}}", + "id": "s^-1", + "mathml": "s1" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu3e-1/1" + }, + { + "type": "unitsml", + "id": "u:second_to_the_power_minus_one" + } + ], + "references": [], + "short": "second_to_the_power_minus_one", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq112", + "name": "rotational frequency", + "type": "derived" + }, + { + "id": "NISTq113", + "name": "angular frequency", + "type": "derived" + }, + { + "id": "NISTq120", + "name": "damping coefficient", + "type": "derived" + }, + { + "id": "NISTq189", + "name": "emission rate", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd24", + "name": "frequency", + "expression": "T-1", + "components": [ + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu4", + "unitsml_id": "u:ampere", + "name": "ampere", + "names": [ + { + "value": "ampere", + "lang": "en" + }, + { + "value": "ampΓ¨re", + "lang": "fr" + } + ], + "symbols": { + "unicode": "A", + "ascii": "A", + "html": "A", + "latex": "\\ensuremath{\\mathrm{A}}", + "id": "A", + "mathml": "A" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu4" + }, + { + "type": "unitsml", + "id": "u:ampere" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/ampere" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:A" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/A" + } + ], + "short": "ampere", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq4", + "name": "electric current", + "type": "base" + } + ], + "dimension": { + "id": "NISTd4", + "name": "electric current", + "expression": "I", + "components": [ + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_base", + "name": "SI base units", + "short": "si-base", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu4.u1e-1/1", + "unitsml_id": "u:ampere_per_meter", + "name": "ampere per meter", + "names": [ + { + "value": "ampere per meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "AΒ·m⁻¹", + "ascii": "A*m^-1", + "html": "A/m", + "latex": "\\ensuremath{\\mathrm{A/m}}", + "id": "A*m^-1", + "mathml": "A/m" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu4.u1e-1/1" + }, + { + "type": "unitsml", + "id": "u:ampere_per_meter" + } + ], + "references": [], + "short": "ampere_per_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq54", + "name": "magnetic field strength", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd33", + "name": "magnetic field strength", + "expression": "L-1Β·I", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu4", + "name": "ampere", + "symbol": "A" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu4.u1e-2/1", + "unitsml_id": "u:ampere_per_square_meter", + "name": "ampere per square meter", + "names": [ + { + "value": "ampere per square meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "AΒ·m⁻²", + "ascii": "A*m^-2", + "html": "A/m2", + "latex": "\\ensuremath{\\mathrm{A/m^2}}", + "id": "A*m^-2", + "mathml": "A/m2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu4.u1e-2/1" + }, + { + "type": "unitsml", + "id": "u:ampere_per_square_meter" + } + ], + "references": [], + "short": "ampere_per_square_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq53", + "name": "current density", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd32", + "name": "current density", + "expression": "L-2Β·I", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu4", + "name": "ampere", + "symbol": "A" + }, + "prefix": null + }, + { + "power": -2, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu400", + "unitsml_id": "u:parts_per_million", + "name": "parts per million", + "names": [ + { + "value": "parts per million", + "lang": "en" + } + ], + "symbols": { + "unicode": "ppm", + "ascii": "ppm", + "html": "ppm", + "latex": "\\ensuremath{\\mathrm{ppm}}", + "id": "ppm", + "mathml": "ppm" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu400" + }, + { + "type": "unitsml", + "id": "u:parts_per_million" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:dimless:code:[ppm]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/PPM" + } + ], + "short": "parts_per_million", + "root": false, + "composite": false, + "quantities": [ + { + "id": "NISTq186", + "name": "mass fraction", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd85", + "name": "mass mole fraction", + "expression": "1", + "components": [], + "dimensionless": true + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu401", + "unitsml_id": "u:var", + "name": "var", + "names": [ + { + "value": "var", + "lang": "en" + } + ], + "symbols": { + "unicode": "var", + "ascii": "var", + "html": "var", + "latex": "\\ensuremath{\\mathrm{var}}", + "id": "var", + "mathml": "var" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu401" + }, + { + "type": "unitsml", + "id": "u:var" + } + ], + "references": [], + "short": "var", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq187", + "name": "apparent power", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu16", + "name": "volt", + "symbol": "V" + }, + "prefix": null + }, + { + "power": 1, + "unit": { + "id": "NISTu4", + "name": "ampere", + "symbol": "A" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu42", + "unitsml_id": "u:are", + "name": "are", + "names": [ + { + "value": "are", + "lang": "en" + } + ], + "symbols": { + "unicode": "a", + "ascii": "a", + "html": "a", + "latex": "\\ensuremath{\\mathrm{a}}", + "id": "a", + "mathml": "a" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu42" + }, + { + "type": "unitsml", + "id": "u:are" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:ar" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/ARE" + } + ], + "short": "are", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq8", + "name": "area", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd8", + "name": "area", + "expression": "L2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_nist_acceptable", + "name": "non-SI but acceptable by NIST SP 811", + "short": "nonsi-nist-acceptable", + "acceptable": true + }, + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu43", + "unitsml_id": "u:barn", + "name": "barn", + "names": [ + { + "value": "barn", + "lang": "en" + } + ], + "symbols": { + "unicode": "b", + "ascii": "b", + "html": "b", + "latex": "\\ensuremath{\\mathrm{b}}", + "id": "barn", + "mathml": "b" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu43" + }, + { + "type": "unitsml", + "id": "u:barn" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:misc:code:b" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/BARN" + } + ], + "short": "barn", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq8", + "name": "area", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd8", + "name": "area", + "expression": "L2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu44", + "unitsml_id": "u:hectare", + "name": "hectare", + "names": [ + { + "value": "hectare", + "lang": "en" + }, + { + "value": "hectare", + "lang": "fr" + } + ], + "symbols": { + "unicode": "ha", + "ascii": "ha", + "html": "ha", + "latex": "\\ensuremath{\\mathrm{ha}}", + "id": "ha", + "mathml": "ha" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu44" + }, + { + "type": "unitsml", + "id": "u:hectare" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/hectare" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/HA" + } + ], + "short": "hectare", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq8", + "name": "area", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd8", + "name": "area", + "expression": "L2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu45", + "unitsml_id": "u:square_foot", + "name": "square foot", + "names": [ + { + "value": "square foot", + "lang": "en" + } + ], + "symbols": { + "unicode": "ftΒ²", + "ascii": "ft^2", + "html": "ft2", + "latex": "\\ensuremath{\\mathrm{ft^2}}", + "id": "ft^2", + "mathml": "ft2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu45" + }, + { + "type": "unitsml", + "id": "u:square_foot" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[sft_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FT2" + } + ], + "short": "square_foot", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq8", + "name": "area", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd8", + "name": "area", + "expression": "L2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 2, + "unit": { + "id": "NISTu78", + "name": "foot", + "symbol": "β€²" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu46", + "unitsml_id": "u:square_inch", + "name": "square inch", + "names": [ + { + "value": "square inch", + "lang": "en" + } + ], + "symbols": { + "unicode": "inΒ²", + "ascii": "in^2", + "html": "in2", + "latex": "\\ensuremath{\\mathrm{in^2}}", + "id": "in^2", + "mathml": "in2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu46" + }, + { + "type": "unitsml", + "id": "u:square_inch" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[sin_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/IN2" + } + ], + "short": "square_inch", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq8", + "name": "area", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd8", + "name": "area", + "expression": "L2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 2, + "unit": { + "id": "NISTu8", + "name": "inch", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu47", + "unitsml_id": "u:abampere", + "name": "abampere", + "names": [ + { + "value": "abampere", + "lang": "en" + }, + { + "value": "EMU of current", + "lang": "en" + } + ], + "symbols": { + "unicode": "abA", + "ascii": "abA", + "html": "abA", + "latex": "\\ensuremath{\\mathrm{abA}}", + "id": "abA", + "mathml": "abA" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu47" + }, + { + "type": "unitsml", + "id": "u:abampere" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/A_Ab" + } + ], + "short": "abampere", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq4", + "name": "electric current", + "type": "base" + } + ], + "dimension": { + "id": "NISTd4", + "name": "electric current", + "expression": "I", + "components": [ + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu48", + "unitsml_id": "u:abcoulomb", + "name": "abcoulomb", + "names": [ + { + "value": "abcoulomb", + "lang": "en" + } + ], + "symbols": { + "unicode": "abC", + "ascii": "abC", + "html": "abC", + "latex": "\\ensuremath{\\mathrm{abC}}", + "id": "abC", + "mathml": "abC" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu48" + }, + { + "type": "unitsml", + "id": "u:abcoulomb" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/C_Ab" + } + ], + "short": "abcoulomb", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq22", + "name": "electric charge", + "type": "derived" + }, + { + "id": "NISTq23", + "name": "amount of electricity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd17", + "name": "electric charge", + "expression": "TΒ·I", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu49", + "unitsml_id": "u:abfarad", + "name": "abfarad", + "names": [ + { + "value": "abfarad", + "lang": "en" + }, + { + "value": "EMU of capacitance", + "lang": "en" + } + ], + "symbols": { + "unicode": "abF", + "ascii": "abF", + "html": "abF", + "latex": "\\ensuremath{\\mathrm{abF}}", + "id": "abF", + "mathml": "abF" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu49" + }, + { + "type": "unitsml", + "id": "u:abfarad" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FARAD_Ab" + } + ], + "short": "abfarad", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq27", + "name": "capacitance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd19", + "name": "capacitance", + "expression": "L-2Β·M-1Β·T4Β·I2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 4 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu5", + "unitsml_id": "u:kelvin", + "name": "kelvin", + "names": [ + { + "value": "kelvin", + "lang": "en" + }, + { + "value": "kelvin", + "lang": "fr" + } + ], + "symbols": { + "unicode": "Β°K", + "ascii": "degK", + "html": "°K", + "latex": "\\ensuremath{\\mathrm{^{\\circ}K}}", + "id": "degK", + "mathml": "°K" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu5" + }, + { + "type": "unitsml", + "id": "u:kelvin" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/kelvin" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:base-unit:code:K" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/K" + } + ], + "short": "kelvin", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq193", + "name": "ITS-90 temperature (K)", + "type": "derived" + }, + { + "id": "NISTq196", + "name": "PLTS-2000 temperature (K)", + "type": "derived" + }, + { + "id": "NISTq5", + "name": "thermodynamic temperature", + "type": "base" + } + ], + "dimension": { + "id": "NISTd5", + "name": "temperature", + "expression": "Theta", + "components": [ + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_base", + "name": "SI base units", + "short": "si-base", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu50", + "unitsml_id": "u:abhenry", + "name": "abhenry", + "names": [ + { + "value": "abhenry", + "lang": "en" + }, + { + "value": "EMU of inductance", + "lang": "en" + } + ], + "symbols": { + "unicode": "abH", + "ascii": "abH", + "html": "abH", + "latex": "\\ensuremath{\\mathrm{abH}}", + "id": "abH", + "mathml": "abH" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu50" + }, + { + "type": "unitsml", + "id": "u:abhenry" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/H_Ab" + } + ], + "short": "abhenry", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq32", + "name": "inductance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd23", + "name": "inductance", + "expression": "L2Β·MΒ·T-2Β·I-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu51", + "unitsml_id": "u:abmho", + "name": "abmho", + "names": [ + { + "value": "abmho", + "lang": "en" + } + ], + "symbols": { + "unicode": "(abΞ©)⁻¹", + "ascii": "abS", + "html": "(abΩ)-1", + "latex": "\\ensuremath{\\mathrm{(ab\\Omega)^{-1}}", + "id": "abS", + "mathml": "(abΩ)-1" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu51" + }, + { + "type": "unitsml", + "id": "u:abmho" + } + ], + "references": [], + "short": "abmho", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq29", + "name": "electric conductance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd21", + "name": "electric conductance", + "expression": "L-2Β·M-1Β·T3Β·I2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu52", + "unitsml_id": "u:abohm", + "name": "abohm", + "names": [ + { + "value": "abohm", + "lang": "en" + }, + { + "value": "EMU of resistance", + "lang": "en" + } + ], + "symbols": { + "unicode": "abΞ©", + "ascii": "abohm", + "html": "abΩ", + "latex": "\\ensuremath{\\mathrm{ab\\Omega}}", + "id": "abohm", + "mathml": "abΩ" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu52" + }, + { + "type": "unitsml", + "id": "u:abohm" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/OHM_Ab" + } + ], + "short": "abohm", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq28", + "name": "electric resistance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd20", + "name": "electric resistance", + "expression": "L2Β·MΒ·T-3Β·I-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu53", + "unitsml_id": "u:abvolt", + "name": "abvolt", + "names": [ + { + "value": "abvolt", + "lang": "en" + }, + { + "value": "EMU of electric potential", + "lang": "en" + } + ], + "symbols": { + "unicode": "abV", + "ascii": "abV", + "html": "abV", + "latex": "\\ensuremath{\\mathrm{abV}}", + "id": "abV", + "mathml": "abV" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu53" + }, + { + "type": "unitsml", + "id": "u:abvolt" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/V_Ab" + } + ], + "short": "abvolt", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq24", + "name": "electric potential difference", + "type": "derived" + }, + { + "id": "NISTq25", + "name": "potential difference", + "type": "derived" + }, + { + "id": "NISTq26", + "name": "electromotive force", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd18", + "name": "electric potential difference", + "expression": "L2Β·MΒ·T-3Β·I-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu54", + "unitsml_id": "u:ampere_hour", + "name": "ampere hour", + "names": [ + { + "value": "ampere hour", + "lang": "en" + } + ], + "symbols": { + "unicode": "AΒ·h", + "ascii": "A*h", + "html": "A · h", + "latex": "\\ensuremath{\\mathrm{A\\cdot h}}", + "id": "A*h", + "mathml": "A·h" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu54" + }, + { + "type": "unitsml", + "id": "u:ampere_hour" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/A-HR" + } + ], + "short": "ampere_hour", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq22", + "name": "electric charge", + "type": "derived" + }, + { + "id": "NISTq23", + "name": "amount of electricity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd17", + "name": "electric charge", + "expression": "TΒ·I", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu4", + "name": "ampere", + "symbol": "A" + }, + "prefix": null + }, + { + "power": 1, + "unit": { + "id": "NISTu37", + "name": "hour", + "symbol": "h" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu55", + "unitsml_id": "u:biot", + "name": "biot", + "names": [ + { + "value": "biot", + "lang": "en" + } + ], + "symbols": { + "unicode": "Bi", + "ascii": "Bi", + "html": "Bi", + "latex": "\\ensuremath{\\mathrm{Bi}}", + "id": "Bi", + "mathml": "Bi" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu55" + }, + { + "type": "unitsml", + "id": "u:biot" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:cgs:code:Bi" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/BIOT" + } + ], + "short": "biot", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq4", + "name": "electric current", + "type": "base" + } + ], + "dimension": { + "id": "NISTd4", + "name": "electric current", + "expression": "I", + "components": [ + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu47", + "name": "abampere", + "symbol": "abA" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu57", + "unitsml_id": "u:us_survey_acre_foot", + "name": "acre-foot (based on US survey foot)", + "names": [ + { + "value": "acre-foot (based on US survey foot)", + "lang": "en" + }, + { + "value": "acre-foot", + "lang": "en" + } + ], + "symbols": { + "unicode": "acΒ·ft", + "ascii": "ac*ft", + "html": "ac · ft", + "latex": "\\ensuremath{\\mathrm{ac\\cdot ft}}", + "id": "ac*ft", + "mathml": "ac·ft" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu57" + }, + { + "type": "unitsml", + "id": "u:us_survey_acre_foot" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/AC-FT" + } + ], + "short": "us_survey_acre_foot", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu317", + "name": "acre (based on US survey foot)", + "symbol": "ac" + }, + "prefix": null + }, + { + "power": 1, + "unit": { + "id": "NISTu78", + "name": "foot", + "symbol": "β€²" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu58", + "unitsml_id": "u:maxwell", + "name": "maxwell", + "names": [ + { + "value": "maxwell", + "lang": "en" + } + ], + "symbols": { + "unicode": "Mx", + "ascii": "Mx", + "html": "Mx", + "latex": "\\ensuremath{\\mathrm{Mx}}", + "id": "Mx", + "mathml": "Mx" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu58" + }, + { + "type": "unitsml", + "id": "u:maxwell" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:cgs:code:Mx" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MX" + } + ], + "short": "maxwell", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq30", + "name": "magnetic flux", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd22", + "name": "magnetic flux", + "expression": "L2Β·MΒ·T-2Β·I-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu5e-1/1", + "unitsml_id": "u:kelvin_to_the_power_minus_one", + "name": "kelvin to the power minus one", + "names": [ + { + "value": "kelvin to the power minus one", + "lang": "en" + } + ], + "symbols": { + "unicode": "K⁻¹", + "ascii": "K^-1", + "html": "K-1", + "latex": "\\ensuremath{\\mathrm{K^{-1}}}", + "id": "K^-1", + "mathml": "K1" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu5e-1/1" + }, + { + "type": "unitsml", + "id": "u:kelvin_to_the_power_minus_one" + } + ], + "references": [], + "short": "kelvin_to_the_power_minus_one", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq156", + "name": "linear expansion coefficient", + "type": "derived" + }, + { + "id": "NISTq157", + "name": "cubic expansion coefficient", + "type": "derived" + }, + { + "id": "NISTq158", + "name": "relative pressure coefficient", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd68", + "name": "linear expansion coefficient", + "expression": "Theta-1", + "components": [ + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": -1, + "unit": { + "id": "NISTu5", + "name": "kelvin", + "symbol": "Β°K" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu6", + "unitsml_id": "u:mole", + "name": "mole", + "names": [ + { + "value": "mole", + "lang": "en" + }, + { + "value": "mole", + "lang": "fr" + } + ], + "symbols": { + "unicode": "mol", + "ascii": "mol", + "html": "mol", + "latex": "\\ensuremath{\\mathrm{mol}}", + "id": "mol", + "mathml": "mol" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu6" + }, + { + "type": "unitsml", + "id": "u:mole" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/mole" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:mol" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MOL" + } + ], + "short": "mole", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq6", + "name": "amount of substance", + "type": "base" + } + ], + "dimension": { + "id": "NISTd6", + "name": "substance amount", + "expression": "N", + "components": [ + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_base", + "name": "SI base units", + "short": "si-base", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu6.u1e-3/1", + "unitsml_id": "u:mole_per_cubic_meter", + "name": "mole per cubic meter", + "names": [ + { + "value": "mole per cubic meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "molΒ·m⁻³", + "ascii": "mol*m^-3", + "html": "mol/m3", + "latex": "\\ensuremath{\\mathrm{mol/m^3}}", + "id": "mol*m^-3", + "mathml": "mol/m3" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu6.u1e-3/1" + }, + { + "type": "unitsml", + "id": "u:mole_per_cubic_meter" + } + ], + "references": [], + "short": "mole_per_cubic_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq55", + "name": "amount of substance concentration", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd34", + "name": "concentration", + "expression": "L-3Β·N", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu6", + "name": "mole", + "symbol": "mol" + }, + "prefix": null + }, + { + "power": -3, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu6.u27p10'3e-1/1", + "unitsml_id": "u:mole_per_kilogram", + "name": "mole per kilogram", + "names": [ + { + "value": "mole per kilogram", + "lang": "en" + } + ], + "symbols": { + "unicode": "mol/kg", + "ascii": "mol*kg^-1", + "html": "mol/kg", + "latex": "\\ensuremath{\\mathrm{mol/kg}}", + "id": "mol*kg^-1", + "mathml": "mol/kg" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu6.u27p10'3e-1/1" + }, + { + "type": "unitsml", + "id": "u:mole_per_kilogram" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MOL-PER-KiloGM" + } + ], + "short": "mole_per_kilogram", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq179", + "name": "molality of solute B", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd79", + "name": "molality", + "expression": "MΒ·N", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu6", + "name": "mole", + "symbol": "mol" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + } + ] + }, + { + "id": "NISTu60", + "unitsml_id": "u:table_calorie", + "name": "I.T. calorie", + "names": [ + { + "value": "I.T. calorie", + "lang": "en" + }, + { + "value": "calorie_IT", + "lang": "en" + }, + { + "value": "calorie", + "lang": "en" + } + ], + "symbols": { + "unicode": "cal_IT", + "ascii": "cal_IT", + "html": "calIT", + "latex": "\\ensuremath{\\mathrm{cal_{IT}}}", + "id": "cal_IT", + "mathml": "calIT" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu60" + }, + { + "type": "unitsml", + "id": "u:table_calorie" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:heat:code:cal" + } + ], + "short": "table_calorie", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq17", + "name": "energy", + "type": "derived" + }, + { + "id": "NISTq18", + "name": "work", + "type": "derived" + }, + { + "id": "NISTq182", + "name": "kinetic energy", + "type": "derived" + }, + { + "id": "NISTq183", + "name": "mechanical energy", + "type": "derived" + }, + { + "id": "NISTq19", + "name": "amount of heat", + "type": "derived" + }, + { + "id": "NISTq77", + "name": "potential energy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu61", + "unitsml_id": "u:one", + "name": "one", + "names": [ + { + "value": "one", + "lang": "en" + } + ], + "symbols": { + "unicode": "1", + "ascii": "1", + "html": "1", + "latex": "\\ensuremath{\\mathrm{1}}", + "id": "1", + "mathml": "1" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu61" + }, + { + "type": "unitsml", + "id": "u:one" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/ONE" + } + ], + "short": "one", + "root": false, + "composite": false, + "quantities": [ + { + "id": "NISTq111", + "name": "rotation", + "type": "derived" + }, + { + "id": "NISTq121", + "name": "ratio logarithm (Np)", + "type": "derived" + }, + { + "id": "NISTq125", + "name": "relative mass density", + "type": "derived" + }, + { + "id": "NISTq136", + "name": "linear strain", + "type": "derived" + }, + { + "id": "NISTq137", + "name": "shear strain", + "type": "derived" + }, + { + "id": "NISTq138", + "name": "volume strain", + "type": "derived" + }, + { + "id": "NISTq140", + "name": "Poisson number", + "type": "derived" + }, + { + "id": "NISTq147", + "name": "dynamic friction factor", + "type": "derived" + }, + { + "id": "NISTq188", + "name": "nil", + "type": "derived" + }, + { + "id": "NISTq93", + "name": "refractive index", + "type": "derived" + }, + { + "id": "NISTq94", + "name": "relative permeability", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd80", + "name": "ratio quantity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu62", + "unitsml_id": "u:erg", + "name": "erg", + "names": [ + { + "value": "erg", + "lang": "en" + } + ], + "symbols": { + "unicode": "erg", + "ascii": "erg", + "html": "erg", + "latex": "\\ensuremath{\\mathrm{erg}}", + "id": "erg", + "mathml": "erg" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu62" + }, + { + "type": "unitsml", + "id": "u:erg" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:cgs:code:erg" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/ERG" + } + ], + "short": "erg", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq17", + "name": "energy", + "type": "derived" + }, + { + "id": "NISTq18", + "name": "work", + "type": "derived" + }, + { + "id": "NISTq182", + "name": "kinetic energy", + "type": "derived" + }, + { + "id": "NISTq183", + "name": "mechanical energy", + "type": "derived" + }, + { + "id": "NISTq19", + "name": "amount of heat", + "type": "derived" + }, + { + "id": "NISTq77", + "name": "potential energy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu63", + "unitsml_id": "u:table_kg_calorie", + "name": "kilocalorie_IT", + "names": [ + { + "value": "kilocalorie_IT", + "lang": "en" + } + ], + "symbols": { + "unicode": "kcal_IT", + "ascii": "kcal_IT", + "html": "kcalIT", + "latex": "\\ensuremath{\\mathrm{kcal_{IT}}}", + "id": "kcal_IT", + "mathml": "kcalIT" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu63" + }, + { + "type": "unitsml", + "id": "u:table_kg_calorie" + } + ], + "references": [], + "short": "table_kg_calorie", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq17", + "name": "energy", + "type": "derived" + }, + { + "id": "NISTq18", + "name": "work", + "type": "derived" + }, + { + "id": "NISTq182", + "name": "kinetic energy", + "type": "derived" + }, + { + "id": "NISTq183", + "name": "mechanical energy", + "type": "derived" + }, + { + "id": "NISTq19", + "name": "amount of heat", + "type": "derived" + }, + { + "id": "NISTq77", + "name": "potential energy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu64", + "unitsml_id": "u:thermo_kg_calorie", + "name": "kilocalorie_th", + "names": [ + { + "value": "kilocalorie_th", + "lang": "en" + } + ], + "symbols": { + "unicode": "kcal_th", + "ascii": "kcal_th", + "html": "kcalth", + "latex": "\\ensuremath{\\mathrm{kcal_{th}}}", + "id": "kcal_th", + "mathml": "kcalth" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu64" + }, + { + "type": "unitsml", + "id": "u:thermo_kg_calorie" + } + ], + "references": [], + "short": "thermo_kg_calorie", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq17", + "name": "energy", + "type": "derived" + }, + { + "id": "NISTq18", + "name": "work", + "type": "derived" + }, + { + "id": "NISTq182", + "name": "kinetic energy", + "type": "derived" + }, + { + "id": "NISTq183", + "name": "mechanical energy", + "type": "derived" + }, + { + "id": "NISTq19", + "name": "amount of heat", + "type": "derived" + }, + { + "id": "NISTq77", + "name": "potential energy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu65", + "unitsml_id": "u:kilowatt_hour", + "name": "kilowatt hour", + "names": [ + { + "value": "kilowatt hour", + "lang": "en" + } + ], + "symbols": { + "unicode": "kWΒ·h", + "ascii": "kW*h", + "html": "kW · h", + "latex": "\\ensuremath{\\mathrm{kW\\cdot h}}", + "id": "kW*h", + "mathml": "kW·h" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu65" + }, + { + "type": "unitsml", + "id": "u:kilowatt_hour" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/KiloW-HR" + } + ], + "short": "kilowatt_hour", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq17", + "name": "energy", + "type": "derived" + }, + { + "id": "NISTq18", + "name": "work", + "type": "derived" + }, + { + "id": "NISTq182", + "name": "kinetic energy", + "type": "derived" + }, + { + "id": "NISTq183", + "name": "mechanical energy", + "type": "derived" + }, + { + "id": "NISTq19", + "name": "amount of heat", + "type": "derived" + }, + { + "id": "NISTq77", + "name": "potential energy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu14", + "name": "watt", + "symbol": "W" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": 1, + "unit": { + "id": "NISTu37", + "name": "hour", + "symbol": "h" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu69", + "unitsml_id": "u:watt_hour", + "name": "watt hour", + "names": [ + { + "value": "watt hour", + "lang": "en" + } + ], + "symbols": { + "unicode": "WΒ·h", + "ascii": "W*h", + "html": "W · h", + "latex": "\\ensuremath{\\mathrm{W\\cdot h}}", + "id": "W*h", + "mathml": "W·h" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu69" + }, + { + "type": "unitsml", + "id": "u:watt_hour" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/W-HR" + } + ], + "short": "watt_hour", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq17", + "name": "energy", + "type": "derived" + }, + { + "id": "NISTq18", + "name": "work", + "type": "derived" + }, + { + "id": "NISTq182", + "name": "kinetic energy", + "type": "derived" + }, + { + "id": "NISTq183", + "name": "mechanical energy", + "type": "derived" + }, + { + "id": "NISTq19", + "name": "amount of heat", + "type": "derived" + }, + { + "id": "NISTq77", + "name": "potential energy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu14", + "name": "watt", + "symbol": "W" + }, + "prefix": null + }, + { + "power": 1, + "unit": { + "id": "NISTu37", + "name": "hour", + "symbol": "h" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu7", + "unitsml_id": "u:candela", + "name": "candela", + "names": [ + { + "value": "candela", + "lang": "en" + }, + { + "value": "candela", + "lang": "fr" + } + ], + "symbols": { + "unicode": "cd", + "ascii": "cd", + "html": "cd", + "latex": "\\ensuremath{\\mathrm{cd}}", + "id": "cd", + "mathml": "cd" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu7" + }, + { + "type": "unitsml", + "id": "u:candela" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/candela" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:base-unit:code:cd" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/CD" + } + ], + "short": "candela", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq7", + "name": "luminous intensity", + "type": "base" + } + ], + "dimension": { + "id": "NISTd7", + "name": "luminous intensity", + "expression": "J", + "components": [ + { + "key": "luminous_intensity", + "symbol": "J", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_base", + "name": "SI base units", + "short": "si-base", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu7.u1e-2/1", + "unitsml_id": "u:candela_per_square_meter", + "name": "candela per square meter", + "names": [ + { + "value": "candela per square meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "cdΒ·m⁻²", + "ascii": "cd*m^-2", + "html": "cd/m2", + "latex": "\\ensuremath{\\mathrm{cd/m^2}}", + "id": "cd*m^-2", + "mathml": "cd/m2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu7.u1e-2/1" + }, + { + "type": "unitsml", + "id": "u:candela_per_square_meter" + } + ], + "references": [], + "short": "candela_per_square_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq56", + "name": "luminance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd27", + "name": "illuminance", + "expression": "L-2Β·J", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "luminous_intensity", + "symbol": "J", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu7", + "name": "candela", + "symbol": "cd" + }, + "prefix": null + }, + { + "power": -2, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu71", + "unitsml_id": "u:dyne", + "name": "dyne", + "names": [ + { + "value": "dyne", + "lang": "en" + } + ], + "symbols": { + "unicode": "dyn", + "ascii": "dyn", + "html": "dyn", + "latex": "\\ensuremath{\\mathrm{dyn}}", + "id": "dyn", + "mathml": "dyn" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu71" + }, + { + "type": "unitsml", + "id": "u:dyne" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:cgs:code:dyn" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/DYN" + } + ], + "short": "dyne", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq13", + "name": "force", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd12", + "name": "force", + "expression": "LΒ·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu72", + "unitsml_id": "u:kilogram_force", + "name": "kilogram-force", + "names": [ + { + "value": "kilogram-force", + "lang": "en" + } + ], + "symbols": { + "unicode": "kgf", + "ascii": "kgf", + "html": "kgf", + "latex": "\\ensuremath{\\mathrm{kgf}}", + "id": "kgf", + "mathml": "kgf" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu72" + }, + { + "type": "unitsml", + "id": "u:kilogram_force" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/KiloGM_F" + } + ], + "short": "kilogram_force", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq13", + "name": "force", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd12", + "name": "force", + "expression": "LΒ·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + } + ] + }, + { + "id": "NISTu73", + "unitsml_id": "u:kilopond", + "name": "kilopond", + "names": [ + { + "value": "kilopond", + "lang": "en" + } + ], + "symbols": { + "unicode": "kp", + "ascii": "kp", + "html": "kp", + "latex": "\\ensuremath{\\mathrm{kp}}", + "id": "kp", + "mathml": "kp" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu73" + }, + { + "type": "unitsml", + "id": "u:kilopond" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/KiloPOND" + } + ], + "short": "kilopond", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq13", + "name": "force", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd12", + "name": "force", + "expression": "LΒ·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu74", + "unitsml_id": "u:calorie_th_per_second", + "name": "calorie_th per second", + "names": [ + { + "value": "calorie_th per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "cal_th/s", + "ascii": "cal_th*s^-1", + "html": "calth/s", + "latex": "\\ensuremath{\\mathrm{cal_{th}}}", + "id": "cal_th*s^-1", + "mathml": "calth/s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu74" + }, + { + "type": "unitsml", + "id": "u:calorie_th_per_second" + } + ], + "references": [], + "short": "calorie_th_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq20", + "name": "power", + "type": "derived" + }, + { + "id": "NISTq21", + "name": "radiant flux", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu227", + "name": "thermochemical calorie", + "symbol": "cal" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu75", + "unitsml_id": "u:kilocalorie_th_per_second", + "name": "kilocalorie_th per second", + "names": [ + { + "value": "kilocalorie_th per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "kcal_th/s", + "ascii": "kcal_th*s^-1", + "html": "kcalth/s", + "latex": "\\ensuremath{\\mathrm{kcal_{th}}}", + "id": "kcal_th*s^-1", + "mathml": "kcalth/s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu75" + }, + { + "type": "unitsml", + "id": "u:kilocalorie_th_per_second" + } + ], + "references": [], + "short": "kilocalorie_th_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq20", + "name": "power", + "type": "derived" + }, + { + "id": "NISTq21", + "name": "radiant flux", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu227", + "name": "thermochemical calorie", + "symbol": "cal" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu78", + "unitsml_id": "u:foot", + "name": "foot", + "names": [ + { + "value": "foot", + "lang": "en" + } + ], + "symbols": { + "unicode": "β€²", + "ascii": "'", + "html": "′", + "latex": "\\ensuremath{\\mathrm{'}}", + "id": "prime_ft", + "mathml": "" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu78" + }, + { + "type": "unitsml", + "id": "u:foot" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[ft_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FT" + } + ], + "short": "foot", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + }, + { + "id": "NISTq48", + "name": "distance", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu8", + "unitsml_id": "u:inch", + "name": "inch", + "names": [ + { + "value": "inch", + "lang": "en" + } + ], + "symbols": { + "unicode": "β€³", + "ascii": "\"", + "html": "″", + "latex": "\\ensuremath{\\mathrm{''}}", + "id": "dprime_in", + "mathml": "" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu8" + }, + { + "type": "unitsml", + "id": "u:inch" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[in_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/IN" + } + ], + "short": "inch", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + }, + { + "id": "NISTq48", + "name": "distance", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu83", + "unitsml_id": "u:mile", + "name": "mile", + "names": [ + { + "value": "mile", + "lang": "en" + } + ], + "symbols": { + "unicode": "mi", + "ascii": "mi", + "html": "mi", + "latex": "\\ensuremath{\\mathrm{mi}}", + "id": "mi", + "mathml": "mi" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu83" + }, + { + "type": "unitsml", + "id": "u:mile" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[mi_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MI" + } + ], + "short": "mile", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + }, + { + "id": "NISTq48", + "name": "distance", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu84", + "unitsml_id": "u:yard", + "name": "yard", + "names": [ + { + "value": "yard", + "lang": "en" + } + ], + "symbols": { + "unicode": "yd", + "ascii": "yd", + "html": "yd", + "latex": "\\ensuremath{\\mathrm{yd}}", + "id": "yd", + "mathml": "yd" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu84" + }, + { + "type": "unitsml", + "id": "u:yard" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[yd_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/YD" + } + ], + "short": "yard", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + }, + { + "id": "NISTq48", + "name": "distance", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu85", + "unitsml_id": "u:phot", + "name": "phot", + "names": [ + { + "value": "phot", + "lang": "en" + } + ], + "symbols": { + "unicode": "ph", + "ascii": "ph", + "html": "ph", + "latex": "\\ensuremath{\\mathrm{ph}}", + "id": "ph", + "mathml": "ph" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu85" + }, + { + "type": "unitsml", + "id": "u:phot" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:cgs:code:ph" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/PHOT" + } + ], + "short": "phot", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq47", + "name": "illuminance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd27", + "name": "illuminance", + "expression": "L-2Β·J", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "luminous_intensity", + "symbol": "J", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu86", + "unitsml_id": "u:grain", + "name": "grain (troy or apothecary)", + "names": [ + { + "value": "grain (troy or apothecary)", + "lang": "en" + }, + { + "value": "troy grain", + "lang": "en" + }, + { + "value": "apothecary grain", + "lang": "en" + }, + { + "value": "grain", + "lang": "en" + } + ], + "symbols": { + "unicode": "gr", + "ascii": "gr", + "html": "gr", + "latex": "\\ensuremath{\\mathrm{gr}}", + "id": "gr", + "mathml": "gr" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu86" + }, + { + "type": "unitsml", + "id": "u:grain" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:avoirdupois:code:[gr]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/GRAIN" + } + ], + "short": "grain", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu88", + "unitsml_id": "u:metric_ton", + "name": "tonne", + "names": [ + { + "value": "tonne", + "lang": "en" + }, + { + "value": "metric ton", + "lang": "en" + }, + { + "value": "ton", + "lang": "en" + }, + { + "value": "tonne", + "lang": "fr" + } + ], + "symbols": { + "unicode": "t", + "ascii": "t", + "html": "t", + "latex": "\\ensuremath{\\mathrm{t}}", + "id": "t", + "mathml": "t" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu88" + }, + { + "type": "unitsml", + "id": "u:metric_ton" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/tonne" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:t" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/TON_Metric" + } + ], + "short": "metric_ton", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu89", + "unitsml_id": "u:erg_per_second", + "name": "erg per second", + "names": [ + { + "value": "erg per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "ergΒ·s⁻¹", + "ascii": "erg*s^-1", + "html": "erg/s", + "latex": "\\ensuremath{\\mathrm{erg/s}}", + "id": "erg*s^-1", + "mathml": "erg/s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu89" + }, + { + "type": "unitsml", + "id": "u:erg_per_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/ERG-PER-SEC" + } + ], + "short": "erg_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq20", + "name": "power", + "type": "derived" + }, + { + "id": "NISTq21", + "name": "radiant flux", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu62", + "name": "erg", + "symbol": "erg" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu9", + "unitsml_id": "u:radian", + "name": "radian", + "names": [ + { + "value": "radian", + "lang": "en" + }, + { + "value": "radian", + "lang": "fr" + } + ], + "symbols": { + "unicode": "rad", + "ascii": "rad", + "html": "rad", + "latex": "\\ensuremath{\\mathrm{rad}}", + "id": "rad", + "mathml": "rad" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu9" + }, + { + "type": "unitsml", + "id": "u:radian" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/radian" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:base-unit:code:rad" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/RAD" + } + ], + "short": "radian", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq195", + "name": "phase", + "type": "derived" + }, + { + "id": "NISTq9", + "name": "plane angle", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd98", + "name": "phase", + "expression": "1", + "components": [ + { + "key": "plane_angle", + "symbol": "phi", + "power": 1 + } + ], + "dimensionless": true + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu9.u1e-1/1", + "unitsml_id": "u:radian_per_meter", + "name": "radian per meter", + "names": [ + { + "value": "radian per meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "rad/m", + "ascii": "rad*m^-1", + "html": "rad/m", + "latex": "\\ensuremath{\\mathrm{rad/m}}", + "id": "rad*m^-1", + "mathml": "rad/m" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu9.u1e-1/1" + }, + { + "type": "unitsml", + "id": "u:radian_per_meter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/RAD-PER-M" + } + ], + "short": "radian_per_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq115", + "name": "angular wavenumber", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd29", + "name": "wavenumber", + "expression": "L-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu9", + "name": "radian", + "symbol": "rad" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu9.u3e-1/1", + "unitsml_id": "u:radian_per_second", + "name": "radian per second", + "names": [ + { + "value": "radian per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "rad/s", + "ascii": "rad*s^-1", + "html": "rad/s", + "latex": "\\ensuremath{\\mathrm{rad/s}}", + "id": "rad*s^-1", + "mathml": "rad/s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu9.u3e-1/1" + }, + { + "type": "unitsml", + "id": "u:radian_per_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/RAD-PER-SEC" + } + ], + "short": "radian_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq113", + "name": "angular frequency", + "type": "derived" + }, + { + "id": "NISTq57", + "name": "angular velocity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd24", + "name": "frequency", + "expression": "T-1", + "components": [ + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu9", + "name": "radian", + "symbol": "rad" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu9.u3e-2/1", + "unitsml_id": "u:radian_per_second_squared", + "name": "radian per second squared", + "names": [ + { + "value": "radian per second squared", + "lang": "en" + } + ], + "symbols": { + "unicode": "rad/sΒ²", + "ascii": "rad*s^-2", + "html": "rad/s2", + "latex": "\\ensuremath{\\mathrm{rad/s^2}}", + "id": "rad*s^-2", + "mathml": "rad/s2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu9.u3e-2/1" + }, + { + "type": "unitsml", + "id": "u:radian_per_second_squared" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/RAD-PER-SEC2" + } + ], + "short": "radian_per_second_squared", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq58", + "name": "angular acceleration", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd35", + "name": "angular acceleration", + "expression": "T-2", + "components": [ + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu9", + "name": "radian", + "symbol": "rad" + }, + "prefix": null + }, + { + "power": -2, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu91", + "unitsml_id": "u:bar", + "name": "bar", + "names": [ + { + "value": "bar", + "lang": "en" + } + ], + "symbols": { + "unicode": "bar", + "ascii": "bar", + "html": "bar", + "latex": "\\ensuremath{\\mathrm{bar}}", + "id": "bar", + "mathml": "bar" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu91" + }, + { + "type": "unitsml", + "id": "u:bar" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:bar" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/BAR" + } + ], + "short": "bar", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu92", + "unitsml_id": "u:dyne_per_square_centimeter", + "name": "dyne per square centimeter", + "names": [ + { + "value": "dyne per square centimeter", + "lang": "en" + } + ], + "symbols": { + "unicode": "dynΒ·cm⁻²", + "ascii": "dyn*cm^-2", + "html": "dyn/cm2", + "latex": "\\ensuremath{\\mathrm{dyn/cm^2}}", + "id": "dyn*cm^-2", + "mathml": "dyn/cm2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu92" + }, + { + "type": "unitsml", + "id": "u:dyne_per_square_centimeter" + } + ], + "references": [], + "short": "dyne_per_square_centimeter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu71", + "name": "dyne", + "symbol": "dyn" + }, + "prefix": null + }, + { + "power": -2, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": { + "id": "NISTp10_-2", + "name": "centi", + "symbol": "c" + } + } + ] + }, + { + "id": "NISTu93", + "unitsml_id": "u:gram_force_per_square_centimeter", + "name": "gram-force per square centimeter", + "names": [ + { + "value": "gram-force per square centimeter", + "lang": "en" + } + ], + "symbols": { + "unicode": "gfΒ·cm⁻²", + "ascii": "gf*cm^-2", + "html": "gf/cm2", + "latex": "\\ensuremath{\\mathrm{gf/cm^2}}", + "id": "gf*cm^-2", + "mathml": "gf/cm2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu93" + }, + { + "type": "unitsml", + "id": "u:gram_force_per_square_centimeter" + } + ], + "references": [], + "short": "gram_force_per_square_centimeter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + "prefix": null + }, + { + "power": -2, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": { + "id": "NISTp10_-2", + "name": "centi", + "symbol": "c" + } + } + ] + }, + { + "id": "NISTu94", + "unitsml_id": "u:kilogram_force_per_square_centimeter", + "name": "kilogram-force per square centimeter", + "names": [ + { + "value": "kilogram-force per square centimeter", + "lang": "en" + } + ], + "symbols": { + "unicode": "kgfΒ·cm⁻²", + "ascii": "kgf*cm^-2", + "html": "kgf/cm2", + "latex": "\\ensuremath{\\mathrm{kgf/cm^2}}", + "id": "kgf*cm^-2", + "mathml": "kgf/cm2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu94" + }, + { + "type": "unitsml", + "id": "u:kilogram_force_per_square_centimeter" + } + ], + "references": [], + "short": "kilogram_force_per_square_centimeter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -2, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": { + "id": "NISTp10_-2", + "name": "centi", + "symbol": "c" + } + } + ] + }, + { + "id": "NISTu95", + "unitsml_id": "u:kilogram_force_per_square_meter", + "name": "kilogram-force per square meter", + "names": [ + { + "value": "kilogram-force per square meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "kgfΒ·m⁻²", + "ascii": "kgf*m^-2", + "html": "kgf/m2", + "latex": "\\ensuremath{\\mathrm{kgf/m^2}}", + "id": "kgf*m^-2", + "mathml": "kgf/m2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu95" + }, + { + "type": "unitsml", + "id": "u:kilogram_force_per_square_meter" + } + ], + "references": [], + "short": "kilogram_force_per_square_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -2, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu96", + "unitsml_id": "u:kilogram_force_per_square_millimeter", + "name": "kilogram-force per square millimeter", + "names": [ + { + "value": "kilogram-force per square millimeter", + "lang": "en" + } + ], + "symbols": { + "unicode": "kgfΒ·mm⁻²", + "ascii": "kgf*mm^-2", + "html": "kgf/mm2", + "latex": "\\ensuremath{\\mathrm{kgf/mm^2}}", + "id": "kgf*mm^-2", + "mathml": "kgf/mm2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu96" + }, + { + "type": "unitsml", + "id": "u:kilogram_force_per_square_millimeter" + } + ], + "references": [], + "short": "kilogram_force_per_square_millimeter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -2, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": { + "id": "NISTp10_-3", + "name": "milli", + "symbol": "m" + } + } + ] + }, + { + "id": "NISTu97", + "unitsml_id": "u:centipoise", + "name": "centipoise", + "names": [ + { + "value": "centipoise", + "lang": "en" + } + ], + "symbols": { + "unicode": "cP", + "ascii": "cP", + "html": "cP", + "latex": "\\ensuremath{\\mathrm{cP}}", + "id": "cP", + "mathml": "cP" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu97" + }, + { + "type": "unitsml", + "id": "u:centipoise" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/CentiPOISE" + } + ], + "short": "centipoise", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq59", + "name": "dynamic viscosity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd36", + "name": "dynamic viscosity", + "expression": "L-1Β·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu128", + "name": "poise", + "symbol": "P" + }, + "prefix": { + "id": "NISTp10_-2", + "name": "centi", + "symbol": "c" + } + } + ] + }, + { + "id": "NISTu98", + "unitsml_id": "u:curie", + "name": "curie", + "names": [ + { + "value": "curie", + "lang": "en" + } + ], + "symbols": { + "unicode": "Ci", + "ascii": "Ci", + "html": "Ci", + "latex": "\\ensuremath{\\mathrm{Ci}}", + "id": "Ci", + "mathml": "Ci" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu98" + }, + { + "type": "unitsml", + "id": "u:curie" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:cgs:code:Ci" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/CI" + } + ], + "short": "curie", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq35", + "name": "activity referred to a radionuclide", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd24", + "name": "frequency", + "expression": "T-1", + "components": [ + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_nist_acceptable", + "name": "non-SI but acceptable by NIST SP 811", + "short": "nonsi-nist-acceptable", + "acceptable": true + }, + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu99", + "unitsml_id": "u:rad", + "name": "rad (absorbed dose)", + "names": [ + { + "value": "rad (absorbed dose)", + "lang": "en" + } + ], + "symbols": { + "unicode": "rad", + "ascii": "rad", + "html": "rad", + "latex": "\\ensuremath{\\mathrm{rad}}", + "id": "rad_radiation", + "mathml": "rad" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu99" + }, + { + "type": "unitsml", + "id": "u:rad" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:base-unit:code:rad" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/RAD_R" + } + ], + "short": "rad", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq36", + "name": "absorbed dose", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd25", + "name": "absorbed dose", + "expression": "L2Β·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_nist_acceptable", + "name": "non-SI but acceptable by NIST SP 811", + "short": "nonsi-nist-acceptable", + "acceptable": true + }, + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + } + ], + "quantities": [ + { + "id": "NISTq1", + "unitsml_id": "q:length", + "name": "length", + "names": [ + { + "value": "length", + "lang": "en" + }, + { + "value": "longueur", + "lang": "fr" + } + ], + "short": "length", + "type": "base", + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + { + "id": "NISTu122", + "name": "micron", + "symbol": "ΞΌ" + }, + { + "id": "NISTu123", + "name": "mil (length)", + "symbol": "thou" + }, + { + "id": "NISTu131", + "name": "nautical mile", + "symbol": "M" + }, + { + "id": "NISTu182", + "name": "light year", + "symbol": "l.y." + }, + { + "id": "NISTu183", + "name": "astronomical unit", + "symbol": "ua" + }, + { + "id": "NISTu184", + "name": "parsec", + "symbol": "pc" + }, + { + "id": "NISTu249", + "name": "atomic unit of length", + "symbol": "π‘Žβ‚€" + }, + { + "id": "NISTu26", + "name": "fermi", + "symbol": "fermi" + }, + { + "id": "NISTu278", + "name": "pica (computer)", + "symbol": "pc" + }, + { + "id": "NISTu279", + "name": "pica (printer's)", + "symbol": "pc" + }, + { + "id": "NISTu280", + "name": "point (computer)", + "symbol": "pt" + }, + { + "id": "NISTu281", + "name": "rod (based on US survey foot)", + "symbol": "rd" + }, + { + "id": "NISTu282", + "name": "fathom (based on US survey foot)", + "symbol": "fath" + }, + { + "id": "NISTu290", + "name": "natural unit of length", + "symbol": "Ζ›_C" + }, + { + "id": "NISTu310", + "name": "chain (based on US survey foot)", + "symbol": "ch" + }, + { + "id": "NISTu311", + "name": "link (based on US survey foot)", + "symbol": "lnk" + }, + { + "id": "NISTu312", + "name": "furlong (based on US survey foot)", + "symbol": "fur" + }, + { + "id": "NISTu313", + "name": "mile (based on US survey foot)", + "symbol": "mi" + }, + { + "id": "NISTu314", + "name": "yard (based on US survey foot)", + "symbol": "yd" + }, + { + "id": "NISTu315", + "name": "foot (based on US survey foot)", + "symbol": "ft" + }, + { + "id": "NISTu316", + "name": "inch (based on US survey foot)", + "symbol": "in" + }, + { + "id": "NISTu344", + "name": "point (printer's)", + "symbol": "pt" + }, + { + "id": "NISTu361", + "name": "microinch", + "symbol": "ΞΌin" + }, + { + "id": "NISTu376", + "name": "light week", + "symbol": "l.w." + }, + { + "id": "NISTu377", + "name": "light hour", + "symbol": "l.h." + }, + { + "id": "NISTu378", + "name": "light minute", + "symbol": "l.m." + }, + { + "id": "NISTu379", + "name": "light second", + "symbol": "l.s." + }, + { + "id": "NISTu39", + "name": "Γ₯ngstrΓΆm", + "symbol": "β„«" + }, + { + "id": "NISTu78", + "name": "foot", + "symbol": "β€²" + }, + { + "id": "NISTu8", + "name": "inch", + "symbol": "β€³" + }, + { + "id": "NISTu83", + "name": "mile", + "symbol": "mi" + }, + { + "id": "NISTu84", + "name": "yard", + "symbol": "yd" + } + ], + "unit_count": 33, + "identifiers": [ + { + "type": "nist", + "id": "NISTq1" + }, + { + "type": "unitsml", + "id": "q:length" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/LENG" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Length" + } + ] + }, + { + "id": "NISTq10", + "unitsml_id": "q:volume", + "name": "volume", + "names": [ + { + "value": "volume", + "lang": "en" + }, + { + "value": "volume", + "lang": "fr" + } + ], + "short": "volume", + "type": "derived", + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu115", + "name": "stere", + "symbol": "st" + }, + { + "id": "NISTu130", + "name": "litre", + "symbol": "L" + }, + { + "id": "NISTu168", + "name": "cubic inch", + "symbol": "inΒ³" + }, + { + "id": "NISTu169", + "name": "cubic foot", + "symbol": "ftΒ³" + }, + { + "id": "NISTu170", + "name": "cubic yard", + "symbol": "ydΒ³" + }, + { + "id": "NISTu171", + "name": "gallon (UK)", + "symbol": "gal (UK)" + }, + { + "id": "NISTu172", + "name": "pint (UK)", + "symbol": "pt (UK)" + }, + { + "id": "NISTu173", + "name": "fluid ounce (UK)", + "symbol": "fl oz (UK)" + }, + { + "id": "NISTu175", + "name": "gallon (US)", + "symbol": "gal (US)" + }, + { + "id": "NISTu176", + "name": "liquid pint (US)", + "symbol": "liq pint (US)" + }, + { + "id": "NISTu177", + "name": "fluid ounce (US)", + "symbol": "fl oz (US)" + }, + { + "id": "NISTu178", + "name": "barrel (US) for petroleum", + "symbol": "bbl (US)" + }, + { + "id": "NISTu179", + "name": "bushel (US)", + "symbol": "bu (US)" + }, + { + "id": "NISTu180", + "name": "dry pint (US)", + "symbol": "dry pt (US)" + }, + { + "id": "NISTu1e3/1", + "name": "cubic meter", + "symbol": "mΒ³" + }, + { + "id": "NISTu300", + "name": "quart (UK)", + "symbol": "qt (UK)" + }, + { + "id": "NISTu301", + "name": "dry quart (US)", + "symbol": "dry qt (US)" + }, + { + "id": "NISTu302", + "name": "liquid quart (US)", + "symbol": "liq qt (US)" + }, + { + "id": "NISTu303", + "name": "teaspoon", + "symbol": "tsp" + }, + { + "id": "NISTu304", + "name": "tablespoon", + "symbol": "tbsp" + }, + { + "id": "NISTu305", + "name": "tablespoon (FDA)", + "symbol": "tbsp" + }, + { + "id": "NISTu306", + "name": "teaspoon (FDA)", + "symbol": "tsp" + }, + { + "id": "NISTu307", + "name": "cup (FDA)", + "symbol": "cup" + }, + { + "id": "NISTu308", + "name": "fluid ounce (FDA)", + "symbol": "fl oz (US label)" + }, + { + "id": "NISTu352", + "name": "peck", + "symbol": "pk" + }, + { + "id": "NISTu353", + "name": "minim", + "symbol": "min" + }, + { + "id": "NISTu354", + "name": "cup (US)", + "symbol": "cup" + }, + { + "id": "NISTu355", + "name": "fluid dram", + "symbol": "fl dr" + }, + { + "id": "NISTu356", + "name": "gill (US)", + "symbol": "gi" + }, + { + "id": "NISTu357", + "name": "gill [Canadian and UK (Imperial)]", + "symbol": "gi" + }, + { + "id": "NISTu365", + "name": "milliliter", + "symbol": "ml" + }, + { + "id": "NISTu57", + "name": "acre-foot (based on US survey foot)", + "symbol": "acΒ·ft" + } + ], + "unit_count": 32, + "identifiers": [ + { + "type": "nist", + "id": "NISTq10" + }, + { + "type": "unitsml", + "id": "q:volume" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/VOLU" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Volume" + } + ] + }, + { + "id": "NISTq100", + "unitsml_id": "q:diameter", + "name": "diameter", + "names": [ + { + "value": "diameter", + "lang": "en" + } + ], + "short": "diameter", + "type": "derived", + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq100" + }, + { + "type": "unitsml", + "id": "q:diameter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Diameter" + } + ] + }, + { + "id": "NISTq101", + "unitsml_id": "q:length_of_path", + "name": "length of path", + "names": [ + { + "value": "length of path", + "lang": "en" + } + ], + "short": "length_of_path", + "type": "derived", + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq101" + }, + { + "type": "unitsml", + "id": "q:length_of_path" + } + ], + "references": [] + }, + { + "id": "NISTq102", + "unitsml_id": "q:cartesian_coordinates", + "name": "cartesian coordinates", + "names": [ + { + "value": "cartesian coordinates", + "lang": "en" + } + ], + "short": "cartesian_coordinates", + "type": "derived", + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq102" + }, + { + "type": "unitsml", + "id": "q:cartesian_coordinates" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/CartesianCoordinates" + } + ] + }, + { + "id": "NISTq103", + "unitsml_id": "q:position_vector", + "name": "position vector", + "names": [ + { + "value": "position vector", + "lang": "en" + } + ], + "short": "position_vector", + "type": "derived", + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq103" + }, + { + "type": "unitsml", + "id": "q:position_vector" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/PositionVector" + } + ] + }, + { + "id": "NISTq104", + "unitsml_id": "q:displacement", + "name": "displacement", + "names": [ + { + "value": "displacement", + "lang": "en" + } + ], + "short": "displacement", + "type": "derived", + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq104" + }, + { + "type": "unitsml", + "id": "q:displacement" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Displacement" + } + ] + }, + { + "id": "NISTq105", + "unitsml_id": "q:radius_of_curvature", + "name": "radius of curvature", + "names": [ + { + "value": "radius of curvature", + "lang": "en" + } + ], + "short": "radius_of_curvature", + "type": "derived", + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq105" + }, + { + "type": "unitsml", + "id": "q:radius_of_curvature" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/RadiusOfCurvature" + } + ] + }, + { + "id": "NISTq106", + "unitsml_id": "q:curvature", + "name": "curvature", + "names": [ + { + "value": "curvature", + "lang": "en" + } + ], + "short": "curvature", + "type": "derived", + "dimension": { + "id": "NISTd29", + "name": "wavenumber", + "expression": "L-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1e-1/1", + "name": "meter to the power minus one", + "symbol": "m⁻¹" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq106" + }, + { + "type": "unitsml", + "id": "q:curvature" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Curvature" + } + ] + }, + { + "id": "NISTq107", + "unitsml_id": "q:speed_of_propagation_of_waves", + "name": "speed of propagation of waves", + "names": [ + { + "value": "speed of propagation of waves", + "lang": "en" + } + ], + "short": "speed_of_propagation_of_waves", + "type": "derived", + "dimension": { + "id": "NISTd11", + "name": "velocity", + "expression": "LΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1.u3e-1/1", + "name": "meter per second", + "symbol": "mΒ·s⁻¹" + }, + { + "id": "NISTu160", + "name": "kilometer per hour", + "symbol": "km/h" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq107" + }, + { + "type": "unitsml", + "id": "q:speed_of_propagation_of_waves" + } + ], + "references": [] + }, + { + "id": "NISTq108", + "unitsml_id": "q:acceleration_of_free_fall", + "name": "acceleration of free fall", + "names": [ + { + "value": "acceleration of free fall", + "lang": "en" + } + ], + "short": "acceleration_of_free_fall", + "type": "derived", + "dimension": { + "id": "NISTd28", + "name": "acceleration", + "expression": "LΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1.u3e-2/1", + "name": "meter per second squared", + "symbol": "mΒ·s⁻²" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq108" + }, + { + "type": "unitsml", + "id": "q:acceleration_of_free_fall" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/AccelerationOfGravity" + } + ] + }, + { + "id": "NISTq109", + "unitsml_id": "q:period_duration", + "name": "period duration", + "names": [ + { + "value": "period duration", + "lang": "en" + }, + { + "value": "period", + "lang": "en" + } + ], + "short": "period_duration", + "type": "derived", + "dimension": { + "id": "NISTd3", + "name": "time", + "expression": "T", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq109" + }, + { + "type": "unitsml", + "id": "q:period_duration" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Period" + } + ] + }, + { + "id": "NISTq11", + "unitsml_id": "q:solid_angle", + "name": "solid angle", + "names": [ + { + "value": "solid angle", + "lang": "en" + }, + { + "value": "angle solide", + "lang": "fr" + } + ], + "short": "solid_angle", + "type": "derived", + "dimension": { + "id": "NISTd64", + "name": "solid angle", + "expression": "1", + "components": [ + { + "key": "plane_angle", + "symbol": "phi", + "power": 1 + } + ], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu10", + "name": "steradian", + "symbol": "sr" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq11" + }, + { + "type": "unitsml", + "id": "q:solid_angle" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ANGS" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/SolidAngle" + } + ] + }, + { + "id": "NISTq110", + "unitsml_id": "q:time_constant", + "name": "time constant", + "names": [ + { + "value": "time constant", + "lang": "en" + } + ], + "short": "time_constant", + "type": "derived", + "dimension": { + "id": "NISTd3", + "name": "time", + "expression": "T", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq110" + }, + { + "type": "unitsml", + "id": "q:time_constant" + } + ], + "references": [] + }, + { + "id": "NISTq111", + "unitsml_id": "q:rotation", + "name": "rotation", + "names": [ + { + "value": "rotation", + "lang": "en" + } + ], + "short": "rotation", + "type": "derived", + "dimension": { + "id": "NISTd80", + "name": "ratio quantity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu61", + "name": "one", + "symbol": "1" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq111" + }, + { + "type": "unitsml", + "id": "q:rotation" + } + ], + "references": [] + }, + { + "id": "NISTq112", + "unitsml_id": "q:rotational_frequency", + "name": "rotational frequency", + "names": [ + { + "value": "rotational frequency", + "lang": "en" + } + ], + "short": "rotational_frequency", + "type": "derived", + "dimension": { + "id": "NISTd24", + "name": "frequency", + "expression": "T-1", + "components": [ + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu3e-1/1", + "name": "second to the power minus one", + "symbol": "s⁻¹" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq112" + }, + { + "type": "unitsml", + "id": "q:rotational_frequency" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/RotationalFrequency" + } + ] + }, + { + "id": "NISTq113", + "unitsml_id": "q:angular_frequency", + "name": "angular frequency", + "names": [ + { + "value": "angular frequency", + "lang": "en" + } + ], + "short": "angular_frequency", + "type": "derived", + "dimension": { + "id": "NISTd24", + "name": "frequency", + "expression": "T-1", + "components": [ + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu3e-1/1", + "name": "second to the power minus one", + "symbol": "s⁻¹" + }, + { + "id": "NISTu9.u3e-1/1", + "name": "radian per second", + "symbol": "rad/s" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq113" + }, + { + "type": "unitsml", + "id": "q:angular_frequency" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/AngularFrequency" + } + ] + }, + { + "id": "NISTq114", + "unitsml_id": "q:wavelength", + "name": "wavelength", + "names": [ + { + "value": "wavelength", + "lang": "en" + } + ], + "short": "wavelength", + "type": "derived", + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq114" + }, + { + "type": "unitsml", + "id": "q:wavelength" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Wavelength" + } + ] + }, + { + "id": "NISTq115", + "unitsml_id": "q:angular_wavenumber", + "name": "angular wavenumber", + "names": [ + { + "value": "angular wavenumber", + "lang": "en" + }, + { + "value": "angular repetency", + "lang": "en" + } + ], + "short": "angular_wavenumber", + "type": "derived", + "dimension": { + "id": "NISTd29", + "name": "wavenumber", + "expression": "L-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1e-1/1", + "name": "meter to the power minus one", + "symbol": "m⁻¹" + }, + { + "id": "NISTu9.u1e-1/1", + "name": "radian per meter", + "symbol": "rad/m" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq115" + }, + { + "type": "unitsml", + "id": "q:angular_wavenumber" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/AngularWavenumber" + } + ] + }, + { + "id": "NISTq116", + "unitsml_id": "q:phase_velocity", + "name": "phase velocity", + "names": [ + { + "value": "phase velocity", + "lang": "en" + }, + { + "value": "phase speed", + "lang": "en" + } + ], + "short": "phase_velocity", + "type": "derived", + "dimension": { + "id": "NISTd11", + "name": "velocity", + "expression": "LΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1.u3e-1/1", + "name": "meter per second", + "symbol": "mΒ·s⁻¹" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq116" + }, + { + "type": "unitsml", + "id": "q:phase_velocity" + } + ], + "references": [] + }, + { + "id": "NISTq117", + "unitsml_id": "q:group_velocity", + "name": "group velocity", + "names": [ + { + "value": "group velocity", + "lang": "en" + }, + { + "value": "group speed", + "lang": "en" + } + ], + "short": "group_velocity", + "type": "derived", + "dimension": { + "id": "NISTd11", + "name": "velocity", + "expression": "LΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1.u3e-1/1", + "name": "meter per second", + "symbol": "mΒ·s⁻¹" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq117" + }, + { + "type": "unitsml", + "id": "q:group_velocity" + } + ], + "references": [] + }, + { + "id": "NISTq118", + "unitsml_id": "q:level_of_a_field_quantity", + "name": "level of a field quantity", + "names": [ + { + "value": "level of a field quantity", + "lang": "en" + } + ], + "short": "level_of_a_field_quantity", + "type": "derived", + "dimension": { + "id": "NISTd83", + "name": "level of field quantity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu153", + "name": "neper", + "symbol": "Np" + }, + { + "id": "NISTu154", + "name": "bel", + "symbol": "B" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq118" + }, + { + "type": "unitsml", + "id": "q:level_of_a_field_quantity" + } + ], + "references": [] + }, + { + "id": "NISTq119", + "unitsml_id": "q:level_of_a_power_quantity", + "name": "level of a power quantity", + "names": [ + { + "value": "level of a power quantity", + "lang": "en" + } + ], + "short": "level_of_a_power_quantity", + "type": "derived", + "dimension": { + "id": "NISTd84", + "name": "field power level", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu153", + "name": "neper", + "symbol": "Np" + }, + { + "id": "NISTu154", + "name": "bel", + "symbol": "B" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq119" + }, + { + "type": "unitsml", + "id": "q:level_of_a_power_quantity" + } + ], + "references": [] + }, + { + "id": "NISTq12", + "unitsml_id": "q:velocity", + "name": "velocity", + "names": [ + { + "value": "velocity", + "lang": "en" + }, + { + "value": "speed", + "lang": "en" + }, + { + "value": "vitesse", + "lang": "fr" + } + ], + "short": "velocity", + "type": "derived", + "dimension": { + "id": "NISTd11", + "name": "velocity", + "expression": "LΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1.u3e-1/1", + "name": "meter per second", + "symbol": "mΒ·s⁻¹" + }, + { + "id": "NISTu107", + "name": "foot per minute", + "symbol": "ftΒ·min⁻¹" + }, + { + "id": "NISTu108", + "name": "foot per second", + "symbol": "ftΒ·s⁻¹" + }, + { + "id": "NISTu109", + "name": "inch per second", + "symbol": "inΒ·s⁻¹" + }, + { + "id": "NISTu110", + "name": "mile per hour", + "symbol": "miΒ·h⁻¹" + }, + { + "id": "NISTu111", + "name": "mile per minute", + "symbol": "miΒ·min⁻¹" + }, + { + "id": "NISTu112", + "name": "mile per second", + "symbol": "miΒ·s⁻¹" + }, + { + "id": "NISTu152", + "name": "nautical mile per hour", + "symbol": "kn" + }, + { + "id": "NISTu160", + "name": "kilometer per hour", + "symbol": "km/h" + }, + { + "id": "NISTu242", + "name": "natural unit of velocity", + "symbol": "𝑐" + }, + { + "id": "NISTu294", + "name": "atomic unit of velocity", + "symbol": "π‘Žβ‚€πΈβ‚•/ℏ" + } + ], + "unit_count": 11, + "identifiers": [ + { + "type": "nist", + "id": "NISTq12" + }, + { + "type": "unitsml", + "id": "q:velocity" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/VELO" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Speed" + } + ] + }, + { + "id": "NISTq120", + "unitsml_id": "q:damping_coefficient", + "name": "damping coefficient", + "names": [ + { + "value": "damping coefficient", + "lang": "en" + } + ], + "short": "damping_coefficient", + "type": "derived", + "dimension": { + "id": "NISTd24", + "name": "frequency", + "expression": "T-1", + "components": [ + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu163", + "name": "neper per second", + "symbol": "Np/s" + }, + { + "id": "NISTu3e-1/1", + "name": "second to the power minus one", + "symbol": "s⁻¹" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq120" + }, + { + "type": "unitsml", + "id": "q:damping_coefficient" + } + ], + "references": [] + }, + { + "id": "NISTq121", + "unitsml_id": "q:logarithmic_decrement", + "name": "ratio logarithm (Np)", + "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", + "type": "derived", + "dimension": { + "id": "NISTd67", + "name": "logarithmic ratio", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu153", + "name": "neper", + "symbol": "Np" + }, + { + "id": "NISTu61", + "name": "one", + "symbol": "1" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq121" + }, + { + "type": "unitsml", + "id": "q:logarithmic_decrement" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/RLGN" + } + ] + }, + { + "id": "NISTq122", + "unitsml_id": "q:attenuation_coefficient", + "name": "attenuation coefficient", + "names": [ + { + "value": "attenuation coefficient", + "lang": "en" + } + ], + "short": "attenuation_coefficient", + "type": "derived", + "dimension": { + "id": "NISTd29", + "name": "wavenumber", + "expression": "L-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1e-1/1", + "name": "meter to the power minus one", + "symbol": "m⁻¹" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq122" + }, + { + "type": "unitsml", + "id": "q:attenuation_coefficient" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/AttenuationCoefficient" + } + ] + }, + { + "id": "NISTq123", + "unitsml_id": "q:phase_coefficient", + "name": "phase coefficient", + "names": [ + { + "value": "phase coefficient", + "lang": "en" + } + ], + "short": "phase_coefficient", + "type": "derived", + "dimension": { + "id": "NISTd29", + "name": "wavenumber", + "expression": "L-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1e-1/1", + "name": "meter to the power minus one", + "symbol": "m⁻¹" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq123" + }, + { + "type": "unitsml", + "id": "q:phase_coefficient" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/PhaseCoefficient" + } + ] + }, + { + "id": "NISTq124", + "unitsml_id": "q:propagation_coefficient", + "name": "propagation coefficient", + "names": [ + { + "value": "propagation coefficient", + "lang": "en" + } + ], + "short": "propagation_coefficient", + "type": "derived", + "dimension": { + "id": "NISTd29", + "name": "wavenumber", + "expression": "L-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1e-1/1", + "name": "meter to the power minus one", + "symbol": "m⁻¹" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq124" + }, + { + "type": "unitsml", + "id": "q:propagation_coefficient" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/PropagationCoefficient" + } + ] + }, + { + "id": "NISTq125", + "unitsml_id": "q:relative_mass_density", + "name": "relative mass density", + "names": [ + { + "value": "relative mass density", + "lang": "en" + }, + { + "value": "relative density", + "lang": "en" + } + ], + "short": "relative_mass_density", + "type": "derived", + "dimension": { + "id": "NISTd80", + "name": "ratio quantity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu61", + "name": "one", + "symbol": "1" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq125" + }, + { + "type": "unitsml", + "id": "q:relative_mass_density" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/RelativeMassDensity" + } + ] + }, + { + "id": "NISTq126", + "unitsml_id": "q:linear_density", + "name": "linear density", + "names": [ + { + "value": "linear density", + "lang": "en" + }, + { + "value": "lineic mass", + "lang": "en" + } + ], + "short": "linear_density", + "type": "derived", + "dimension": { + "id": "NISTd58", + "name": "linear density", + "expression": "L-1Β·M", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu213", + "name": "tex", + "symbol": "tex" + }, + { + "id": "NISTu27p10'3.u1e-1/1", + "name": "kilogram per meter", + "symbol": "kg/m" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq126" + }, + { + "type": "unitsml", + "id": "q:linear_density" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/LinearDensity" + } + ] + }, + { + "id": "NISTq127", + "unitsml_id": "q:mass_moment_of_inertia", + "name": "mass moment of inertia", + "names": [ + { + "value": "mass moment of inertia", + "lang": "en" + }, + { + "value": "moment of inertia", + "lang": "en" + } + ], + "short": "mass_moment_of_inertia", + "type": "derived", + "dimension": { + "id": "NISTd59", + "name": "mass moment of inertia", + "expression": "L2Β·M", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu27p10'3.u1e2/1", + "name": "kilogram meter squared", + "symbol": "kgΒ·mΒ²" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq127" + }, + { + "type": "unitsml", + "id": "q:mass_moment_of_inertia" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/SecondAxialMomentOfArea" + } + ] + }, + { + "id": "NISTq128", + "unitsml_id": "q:weight", + "name": "weight", + "names": [ + { + "value": "weight", + "lang": "en" + } + ], + "short": "weight", + "type": "derived", + "dimension": { + "id": "NISTd12", + "name": "force", + "expression": "LΒ·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu205", + "name": "pound-force", + "symbol": "lbf" + }, + { + "id": "NISTu236", + "name": "poundal", + "symbol": "pdl" + }, + { + "id": "NISTu238", + "name": "ton-force (2000 lb)", + "symbol": "ton-force (2000 lb)" + }, + { + "id": "NISTu262", + "name": "atomic unit of force", + "symbol": "𝐸ₕ/π‘Žβ‚€" + } + ], + "unit_count": 4, + "identifiers": [ + { + "type": "nist", + "id": "NISTq128" + }, + { + "type": "unitsml", + "id": "q:weight" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Weight" + } + ] + }, + { + "id": "NISTq129", + "unitsml_id": "q:impulse", + "name": "impulse", + "names": [ + { + "value": "impulse", + "lang": "en" + } + ], + "short": "impulse", + "type": "derived", + "dimension": { + "id": "NISTd61", + "name": "momentum", + "expression": "LΒ·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu11.u3", + "name": "newton second", + "symbol": "NΒ·s" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq129" + }, + { + "type": "unitsml", + "id": "q:impulse" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Impulse" + } + ] + }, + { + "id": "NISTq13", + "unitsml_id": "q:force", + "name": "force", + "names": [ + { + "value": "force", + "lang": "en" + }, + { + "value": "force", + "lang": "fr" + } + ], + "short": "force", + "type": "derived", + "dimension": { + "id": "NISTd12", + "name": "force", + "expression": "LΒ·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu11", + "name": "newton", + "symbol": "N" + }, + { + "id": "NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + { + "id": "NISTu205", + "name": "pound-force", + "symbol": "lbf" + }, + { + "id": "NISTu236", + "name": "poundal", + "symbol": "pdl" + }, + { + "id": "NISTu238", + "name": "ton-force (2000 lb)", + "symbol": "ton-force (2000 lb)" + }, + { + "id": "NISTu262", + "name": "atomic unit of force", + "symbol": "𝐸ₕ/π‘Žβ‚€" + }, + { + "id": "NISTu71", + "name": "dyne", + "symbol": "dyn" + }, + { + "id": "NISTu72", + "name": "kilogram-force", + "symbol": "kgf" + }, + { + "id": "NISTu73", + "name": "kilopond", + "symbol": "kp" + } + ], + "unit_count": 9, + "identifiers": [ + { + "type": "nist", + "id": "NISTq13" + }, + { + "type": "unitsml", + "id": "q:force" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/FORC" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Force" + } + ] + }, + { + "id": "NISTq130", + "unitsml_id": "q:gravitational_constant", + "name": "gravitational constant", + "names": [ + { + "value": "gravitational constant", + "lang": "en" + } + ], + "short": "gravitational_constant", + "type": "derived", + "dimension": { + "id": "NISTd62", + "name": "gravitational constant", + "expression": "L3Β·M-1Β·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu11.u1e2/1.u27p10'3e-2/1", + "name": "newton meter squared per kilogram squared", + "symbol": "NΒ·mΒ²/kgΒ²" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq130" + }, + { + "type": "unitsml", + "id": "q:gravitational_constant" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/GravitationalAttraction" + } + ] + }, + { + "id": "NISTq131", + "unitsml_id": "q:momentum", + "name": "momentum", + "names": [ + { + "value": "momentum", + "lang": "en" + } + ], + "short": "momentum", + "type": "derived", + "dimension": { + "id": "NISTd61", + "name": "momentum", + "expression": "LΒ·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu255", + "name": "atomic unit of momentum", + "symbol": "ℏ/π‘Žβ‚€" + }, + { + "id": "NISTu27p10'3.u1.u3e-1/1", + "name": "kilogram meter per second", + "symbol": "NΒ·m/s" + }, + { + "id": "NISTu296", + "name": "natural unit of momentum", + "symbol": "π‘šβ‚‘π‘" + }, + { + "id": "NISTu299", + "name": "natural unit of momentum in MeV/c", + "symbol": "π‘šβ‚‘π‘" + } + ], + "unit_count": 4, + "identifiers": [ + { + "type": "nist", + "id": "NISTq131" + }, + { + "type": "unitsml", + "id": "q:momentum" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Momentum" + } + ] + }, + { + "id": "NISTq132", + "unitsml_id": "q:moment_of_momentum", + "name": "moment of momentum", + "names": [ + { + "value": "moment of momentum", + "lang": "en" + }, + { + "value": "angular momentum", + "lang": "en" + } + ], + "short": "moment_of_momentum", + "type": "derived", + "dimension": { + "id": "NISTd60", + "name": "action", + "expression": "L2Β·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu27p10'3.u1e2/1.u3e-1/1", + "name": "kilogram meter squared per second", + "symbol": "kgΒ·mΒ²/s" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq132" + }, + { + "type": "unitsml", + "id": "q:moment_of_momentum" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/AngularMomentum" + } + ] + }, + { + "id": "NISTq133", + "unitsml_id": "q:angular_impulse", + "name": "angular impulse", + "names": [ + { + "value": "angular impulse", + "lang": "en" + } + ], + "short": "angular_impulse", + "type": "derived", + "dimension": { + "id": "NISTd60", + "name": "action", + "expression": "L2Β·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu11.u1.u3", + "name": "newton meter second", + "symbol": "NΒ·mΒ·s" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq133" + }, + { + "type": "unitsml", + "id": "q:angular_impulse" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/AngularImpulse" + } + ] + }, + { + "id": "NISTq134", + "unitsml_id": "q:normal_stress", + "name": "normal stress", + "names": [ + { + "value": "normal stress", + "lang": "en" + } + ], + "short": "normal_stress", + "type": "derived", + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu12", + "name": "pascal", + "symbol": "Pa" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq134" + }, + { + "type": "unitsml", + "id": "q:normal_stress" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/NormalStress" + } + ] + }, + { + "id": "NISTq135", + "unitsml_id": "q:shear_stress", + "name": "shear stress", + "names": [ + { + "value": "shear stress", + "lang": "en" + } + ], + "short": "shear_stress", + "type": "derived", + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu12", + "name": "pascal", + "symbol": "Pa" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq135" + }, + { + "type": "unitsml", + "id": "q:shear_stress" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ShearStress" + } + ] + }, + { + "id": "NISTq136", + "unitsml_id": "q:linear_strain", + "name": "linear strain", + "names": [ + { + "value": "linear strain", + "lang": "en" + } + ], + "short": "linear_strain", + "type": "derived", + "dimension": { + "id": "NISTd80", + "name": "ratio quantity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu61", + "name": "one", + "symbol": "1" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq136" + }, + { + "type": "unitsml", + "id": "q:linear_strain" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/LinearStrain" + } + ] + }, + { + "id": "NISTq137", + "unitsml_id": "q:shear_strain", + "name": "shear strain", + "names": [ + { + "value": "shear strain", + "lang": "en" + } + ], + "short": "shear_strain", + "type": "derived", + "dimension": { + "id": "NISTd80", + "name": "ratio quantity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu61", + "name": "one", + "symbol": "1" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq137" + }, + { + "type": "unitsml", + "id": "q:shear_strain" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ShearStrain" + } + ] + }, + { + "id": "NISTq138", + "unitsml_id": "q:volume_strain", + "name": "volume strain", + "names": [ + { + "value": "volume strain", + "lang": "en" + } + ], + "short": "volume_strain", + "type": "derived", + "dimension": { + "id": "NISTd80", + "name": "ratio quantity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu61", + "name": "one", + "symbol": "1" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq138" + }, + { + "type": "unitsml", + "id": "q:volume_strain" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/VolumeStrain" + } + ] + }, + { + "id": "NISTq139", + "unitsml_id": "q:compressibility", + "name": "compressibility", + "names": [ + { + "value": "compressibility", + "lang": "en" + } + ], + "short": "compressibility", + "type": "derived", + "dimension": { + "id": "NISTd63", + "name": "compressibility", + "expression": "LΒ·M-1Β·T2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu12e-1/1", + "name": "pascal to the power minus one", + "symbol": "Pa⁻¹" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq139" + }, + { + "type": "unitsml", + "id": "q:compressibility" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Compressibility" + } + ] + }, + { + "id": "NISTq14", + "unitsml_id": "q:magnetic_flux_density", + "name": "magnetic flux density", + "names": [ + { + "value": "magnetic flux density", + "lang": "en" + }, + { + "value": "induction magnΓ©tique", + "lang": "fr" + } + ], + "short": "magnetic_flux_density", + "type": "derived", + "dimension": { + "id": "NISTd13", + "name": "magnetic flux density", + "expression": "MΒ·T-2Β·I-1", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu116", + "name": "gamma", + "symbol": "Ξ³" + }, + { + "id": "NISTu119", + "name": "gauss", + "symbol": "G" + }, + { + "id": "NISTu21", + "name": "tesla", + "symbol": "T" + }, + { + "id": "NISTu253", + "name": "atomic unit of magnetic flux density", + "symbol": "ℏ/π‘’π‘Žβ‚€Β²" + }, + { + "id": "NISTu273", + "name": "stattesla", + "symbol": "statT" + } + ], + "unit_count": 5, + "identifiers": [ + { + "type": "nist", + "id": "NISTq14" + }, + { + "type": "unitsml", + "id": "q:magnetic_flux_density" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/MGFD" + } + ] + }, + { + "id": "NISTq140", + "unitsml_id": "q:poisson_number", + "name": "Poisson number", + "names": [ + { + "value": "Poisson number", + "lang": "en" + } + ], + "short": "poisson_number", + "type": "derived", + "dimension": { + "id": "NISTd80", + "name": "ratio quantity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu61", + "name": "one", + "symbol": "1" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq140" + }, + { + "type": "unitsml", + "id": "q:poisson_number" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/PoissonRatio" + } + ] + }, + { + "id": "NISTq141", + "unitsml_id": "q:modulus_of_elasticity", + "name": "modulus of elasticity", + "names": [ + { + "value": "modulus of elasticity", + "lang": "en" + } + ], + "short": "modulus_of_elasticity", + "type": "derived", + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu12", + "name": "pascal", + "symbol": "Pa" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq141" + }, + { + "type": "unitsml", + "id": "q:modulus_of_elasticity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ModulusOfElasticity" + } + ] + }, + { + "id": "NISTq142", + "unitsml_id": "q:modulus_of_rigidity", + "name": "modulus of rigidity", + "names": [ + { + "value": "modulus of rigidity", + "lang": "en" + }, + { + "value": "shear modulus", + "lang": "en" + } + ], + "short": "modulus_of_rigidity", + "type": "derived", + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu12", + "name": "pascal", + "symbol": "Pa" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq142" + }, + { + "type": "unitsml", + "id": "q:modulus_of_rigidity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ShearModulus" + } + ] + }, + { + "id": "NISTq143", + "unitsml_id": "q:modulus_of_compression", + "name": "modulus of compression", + "names": [ + { + "value": "modulus of compression", + "lang": "en" + }, + { + "value": "bulk modulus", + "lang": "en" + } + ], + "short": "modulus_of_compression", + "type": "derived", + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu12", + "name": "pascal", + "symbol": "Pa" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq143" + }, + { + "type": "unitsml", + "id": "q:modulus_of_compression" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/BulkModulus" + } + ] + }, + { + "id": "NISTq144", + "unitsml_id": "q:second_axial_moment_of_area", + "name": "second axial moment of area", + "names": [ + { + "value": "second axial moment of area", + "lang": "en" + } + ], + "short": "second_axial_moment_of_area", + "type": "derived", + "dimension": { + "id": "NISTd57", + "name": "area moment of inertia", + "expression": "L4", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 4 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu185", + "name": "meter to the power four", + "symbol": "m⁴" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq144" + }, + { + "type": "unitsml", + "id": "q:second_axial_moment_of_area" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/SecondAxialMomentOfArea" + } + ] + }, + { + "id": "NISTq145", + "unitsml_id": "q:second_polar_moment_of_area", + "name": "second polar moment of area", + "names": [ + { + "value": "second polar moment of area", + "lang": "en" + } + ], + "short": "second_polar_moment_of_area", + "type": "derived", + "dimension": { + "id": "NISTd57", + "name": "area moment of inertia", + "expression": "L4", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 4 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu185", + "name": "meter to the power four", + "symbol": "m⁴" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq145" + }, + { + "type": "unitsml", + "id": "q:second_polar_moment_of_area" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/SecondPolarMomentOfArea" + } + ] + }, + { + "id": "NISTq146", + "unitsml_id": "q:section_modulus", + "name": "section modulus", + "names": [ + { + "value": "section modulus", + "lang": "en" + } + ], + "short": "section_modulus", + "type": "derived", + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1e3/1", + "name": "cubic meter", + "symbol": "mΒ³" + }, + { + "id": "NISTu209", + "name": "inch cubed", + "symbol": "inΒ³" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq146" + }, + { + "type": "unitsml", + "id": "q:section_modulus" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/SectionModulus" + } + ] + }, + { + "id": "NISTq147", + "unitsml_id": "q:dynamic_friction_factor", + "name": "dynamic friction factor", + "names": [ + { + "value": "dynamic friction factor", + "lang": "en" + } + ], + "short": "dynamic_friction_factor", + "type": "derived", + "dimension": { + "id": "NISTd80", + "name": "ratio quantity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu61", + "name": "one", + "symbol": "1" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq147" + }, + { + "type": "unitsml", + "id": "q:dynamic_friction_factor" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/DynamicFriction" + } + ] + }, + { + "id": "NISTq15", + "unitsml_id": "q:pressure", + "name": "pressure", + "names": [ + { + "value": "pressure", + "lang": "en" + }, + { + "value": "pression, contrainte", + "lang": "fr" + } + ], + "short": "pressure", + "type": "derived", + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu12", + "name": "pascal", + "symbol": "Pa" + }, + { + "id": "NISTu134", + "name": "standard atmosphere", + "symbol": "atm" + }, + { + "id": "NISTu135", + "name": "technical atmosphere", + "symbol": "at" + }, + { + "id": "NISTu156", + "name": "conventional millimeter of mercury", + "symbol": "mmHg" + }, + { + "id": "NISTu207", + "name": "pound-force per square inch", + "symbol": "lbf/inΒ²" + }, + { + "id": "NISTu214", + "name": "torr", + "symbol": "torr" + }, + { + "id": "NISTu215", + "name": "conventional millimeter of water", + "symbol": "mmHβ‚‚O" + }, + { + "id": "NISTu239", + "name": "barye", + "symbol": "barye" + }, + { + "id": "NISTu318", + "name": "conventional centimeter of mercury", + "symbol": "cmHg" + }, + { + "id": "NISTu319", + "name": "centimeter of mercury (0 degC)", + "symbol": "cmHg" + }, + { + "id": "NISTu320", + "name": "centimeter of water (4 degC)", + "symbol": "cmHβ‚‚O" + }, + { + "id": "NISTu321", + "name": "conventional centimeter of water", + "symbol": "cmHβ‚‚O" + }, + { + "id": "NISTu322", + "name": "conventional inch of water", + "symbol": "inHβ‚‚O" + }, + { + "id": "NISTu323", + "name": "inch of water (39.2 degF)", + "symbol": "inHβ‚‚O" + }, + { + "id": "NISTu324", + "name": "inch of water (60 degF)", + "symbol": "inHβ‚‚O" + }, + { + "id": "NISTu325", + "name": "conventional foot of water", + "symbol": "ftHβ‚‚O" + }, + { + "id": "NISTu326", + "name": "foot of water (39.2 degF)", + "symbol": "ftHβ‚‚O" + }, + { + "id": "NISTu327", + "name": "inch of mercury (32 degF)", + "symbol": "β€³Hg" + }, + { + "id": "NISTu328", + "name": "inch of mercury (60 degF)", + "symbol": "β€³Hg" + }, + { + "id": "NISTu329", + "name": "conventional inch of mercury", + "symbol": "β€³Hg" + }, + { + "id": "NISTu330", + "name": "conventional foot of mercury", + "symbol": "β€²Hg" + }, + { + "id": "NISTu362", + "name": "millibar", + "symbol": "mbar" + }, + { + "id": "NISTu91", + "name": "bar", + "symbol": "bar" + }, + { + "id": "NISTu92", + "name": "dyne per square centimeter", + "symbol": "dynΒ·cm⁻²" + }, + { + "id": "NISTu93", + "name": "gram-force per square centimeter", + "symbol": "gfΒ·cm⁻²" + }, + { + "id": "NISTu94", + "name": "kilogram-force per square centimeter", + "symbol": "kgfΒ·cm⁻²" + }, + { + "id": "NISTu95", + "name": "kilogram-force per square meter", + "symbol": "kgfΒ·m⁻²" + }, + { + "id": "NISTu96", + "name": "kilogram-force per square millimeter", + "symbol": "kgfΒ·mm⁻²" + } + ], + "unit_count": 28, + "identifiers": [ + { + "type": "nist", + "id": "NISTq15" + }, + { + "type": "unitsml", + "id": "q:pressure" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/PRES" + } + ] + }, + { + "id": "NISTq150", + "unitsml_id": "q:mass_flow_rate", + "name": "mass flow rate", + "names": [ + { + "value": "mass flow rate", + "lang": "en" + } + ], + "short": "mass_flow_rate", + "type": "derived", + "dimension": { + "id": "NISTd65", + "name": "mass flow rate", + "expression": "MΒ·T-1", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu27p10'3.u3e-1/1", + "name": "kilogram per second", + "symbol": "kg/s" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq150" + }, + { + "type": "unitsml", + "id": "q:mass_flow_rate" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/MassFlowRate" + } + ] + }, + { + "id": "NISTq151", + "unitsml_id": "q:volume_flow_rate", + "name": "volume flow rate", + "names": [ + { + "value": "volume flow rate", + "lang": "en" + } + ], + "short": "volume_flow_rate", + "type": "derived", + "dimension": { + "id": "NISTd66", + "name": "volume flow rate", + "expression": "L3Β·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1e3/1.u3e-1/1", + "name": "cubic meter per second", + "symbol": "mΒ³/s" + }, + { + "id": "NISTu358", + "name": "cubic foot per minute", + "symbol": "ftΒ³min" + }, + { + "id": "NISTu359", + "name": "cubic foot per second", + "symbol": "ftΒ³sec" + }, + { + "id": "NISTu360", + "name": "cubic inch per minute", + "symbol": "inΒ³min" + }, + { + "id": "NISTu364", + "name": "gallon (US) per minute", + "symbol": "gpm" + } + ], + "unit_count": 5, + "identifiers": [ + { + "type": "nist", + "id": "NISTq151" + }, + { + "type": "unitsml", + "id": "q:volume_flow_rate" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/VolumeFlowRate" + } + ] + }, + { + "id": "NISTq152", + "unitsml_id": "q:lagrange_function", + "name": "Lagrange function", + "names": [ + { + "value": "Lagrange function", + "lang": "en" + } + ], + "short": "lagrange_function", + "type": "derived", + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu13", + "name": "joule", + "symbol": "J" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq152" + }, + { + "type": "unitsml", + "id": "q:lagrange_function" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/LagrangeFunction" + } + ] + }, + { + "id": "NISTq153", + "unitsml_id": "q:hamilton_function", + "name": "Hamilton function", + "names": [ + { + "value": "Hamilton function", + "lang": "en" + } + ], + "short": "hamilton_function", + "type": "derived", + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu13", + "name": "joule", + "symbol": "J" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq153" + }, + { + "type": "unitsml", + "id": "q:hamilton_function" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/HamiltonFunction" + } + ] + }, + { + "id": "NISTq154", + "unitsml_id": "q:action", + "name": "action", + "names": [ + { + "value": "action", + "lang": "en" + } + ], + "short": "action", + "type": "derived", + "dimension": { + "id": "NISTd60", + "name": "action", + "expression": "L2Β·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu13.u3", + "name": "joule second", + "symbol": "JΒ·s" + }, + { + "id": "NISTu243", + "name": "natural unit of action", + "symbol": "ℏ" + }, + { + "id": "NISTu248", + "name": "atomic unit of action", + "symbol": "ℏ" + }, + { + "id": "NISTu297", + "name": "natural unit of action in eV s", + "symbol": "ℏ" + } + ], + "unit_count": 4, + "identifiers": [ + { + "type": "nist", + "id": "NISTq154" + }, + { + "type": "unitsml", + "id": "q:action" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Action" + } + ] + }, + { + "id": "NISTq155", + "unitsml_id": "q:area_moment_of_inertia", + "name": "area moment of inertia", + "names": [ + { + "value": "area moment of inertia", + "lang": "en" + }, + { + "value": "second moment of area", + "lang": "en" + } + ], + "short": "area_moment_of_inertia", + "type": "derived", + "dimension": { + "id": "NISTd57", + "name": "area moment of inertia", + "expression": "L4", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 4 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu208", + "name": "inch to the fourth power", + "symbol": "in⁴" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq155" + }, + { + "type": "unitsml", + "id": "q:area_moment_of_inertia" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/PolarMomentOfInertia" + } + ] + }, + { + "id": "NISTq156", + "unitsml_id": "q:linear_expansion_coefficient", + "name": "linear expansion coefficient", + "names": [ + { + "value": "linear expansion coefficient", + "lang": "en" + } + ], + "short": "linear_expansion_coefficient", + "type": "derived", + "dimension": { + "id": "NISTd68", + "name": "linear expansion coefficient", + "expression": "Theta-1", + "components": [ + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu5e-1/1", + "name": "kelvin to the power minus one", + "symbol": "K⁻¹" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq156" + }, + { + "type": "unitsml", + "id": "q:linear_expansion_coefficient" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/LinearExpansionCoefficient" + } + ] + }, + { + "id": "NISTq157", + "unitsml_id": "q:cubic_expansion_coefficient", + "name": "cubic expansion coefficient", + "names": [ + { + "value": "cubic expansion coefficient", + "lang": "en" + } + ], + "short": "cubic_expansion_coefficient", + "type": "derived", + "dimension": { + "id": "NISTd68", + "name": "linear expansion coefficient", + "expression": "Theta-1", + "components": [ + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu5e-1/1", + "name": "kelvin to the power minus one", + "symbol": "K⁻¹" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq157" + }, + { + "type": "unitsml", + "id": "q:cubic_expansion_coefficient" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/CubicExpansionCoefficient" + } + ] + }, + { + "id": "NISTq158", + "unitsml_id": "q:relative_pressure_coefficient", + "name": "relative pressure coefficient", + "names": [ + { + "value": "relative pressure coefficient", + "lang": "en" + } + ], + "short": "relative_pressure_coefficient", + "type": "derived", + "dimension": { + "id": "NISTd68", + "name": "linear expansion coefficient", + "expression": "Theta-1", + "components": [ + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu5e-1/1", + "name": "kelvin to the power minus one", + "symbol": "K⁻¹" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq158" + }, + { + "type": "unitsml", + "id": "q:relative_pressure_coefficient" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/RelativePressureCoefficient" + } + ] + }, + { + "id": "NISTq159", + "unitsml_id": "q:pressure_coefficient", + "name": "pressure coefficient", + "names": [ + { + "value": "pressure coefficient", + "lang": "en" + } + ], + "short": "pressure_coefficient", + "type": "derived", + "dimension": { + "id": "NISTd69", + "name": "pressure coefficient", + "expression": "L-1Β·MΒ·T-2Β·Theta-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu12.u5e-1/1", + "name": "pascal per kelvin", + "symbol": "Pa/K" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq159" + }, + { + "type": "unitsml", + "id": "q:pressure_coefficient" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/PressureCoefficient" + } + ] + }, + { + "id": "NISTq16", + "unitsml_id": "q:stress", + "name": "stress", + "names": [ + { + "value": "stress", + "lang": "en" + } + ], + "short": "stress", + "type": "derived", + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu12", + "name": "pascal", + "symbol": "Pa" + }, + { + "id": "NISTu134", + "name": "standard atmosphere", + "symbol": "atm" + }, + { + "id": "NISTu135", + "name": "technical atmosphere", + "symbol": "at" + }, + { + "id": "NISTu156", + "name": "conventional millimeter of mercury", + "symbol": "mmHg" + }, + { + "id": "NISTu318", + "name": "conventional centimeter of mercury", + "symbol": "cmHg" + }, + { + "id": "NISTu319", + "name": "centimeter of mercury (0 degC)", + "symbol": "cmHg" + }, + { + "id": "NISTu320", + "name": "centimeter of water (4 degC)", + "symbol": "cmHβ‚‚O" + }, + { + "id": "NISTu321", + "name": "conventional centimeter of water", + "symbol": "cmHβ‚‚O" + }, + { + "id": "NISTu322", + "name": "conventional inch of water", + "symbol": "inHβ‚‚O" + }, + { + "id": "NISTu323", + "name": "inch of water (39.2 degF)", + "symbol": "inHβ‚‚O" + }, + { + "id": "NISTu324", + "name": "inch of water (60 degF)", + "symbol": "inHβ‚‚O" + }, + { + "id": "NISTu325", + "name": "conventional foot of water", + "symbol": "ftHβ‚‚O" + }, + { + "id": "NISTu326", + "name": "foot of water (39.2 degF)", + "symbol": "ftHβ‚‚O" + }, + { + "id": "NISTu327", + "name": "inch of mercury (32 degF)", + "symbol": "β€³Hg" + }, + { + "id": "NISTu328", + "name": "inch of mercury (60 degF)", + "symbol": "β€³Hg" + }, + { + "id": "NISTu329", + "name": "conventional inch of mercury", + "symbol": "β€³Hg" + }, + { + "id": "NISTu330", + "name": "conventional foot of mercury", + "symbol": "β€²Hg" + }, + { + "id": "NISTu362", + "name": "millibar", + "symbol": "mbar" + }, + { + "id": "NISTu91", + "name": "bar", + "symbol": "bar" + }, + { + "id": "NISTu92", + "name": "dyne per square centimeter", + "symbol": "dynΒ·cm⁻²" + }, + { + "id": "NISTu93", + "name": "gram-force per square centimeter", + "symbol": "gfΒ·cm⁻²" + }, + { + "id": "NISTu94", + "name": "kilogram-force per square centimeter", + "symbol": "kgfΒ·cm⁻²" + }, + { + "id": "NISTu95", + "name": "kilogram-force per square meter", + "symbol": "kgfΒ·m⁻²" + }, + { + "id": "NISTu96", + "name": "kilogram-force per square millimeter", + "symbol": "kgfΒ·mm⁻²" + } + ], + "unit_count": 24, + "identifiers": [ + { + "type": "nist", + "id": "NISTq16" + }, + { + "type": "unitsml", + "id": "q:stress" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Stress" + } + ] + }, + { + "id": "NISTq160", + "unitsml_id": "q:isothermal_compressibility", + "name": "isothermal compressibility", + "names": [ + { + "value": "isothermal compressibility", + "lang": "en" + } + ], + "short": "isothermal_compressibility", + "type": "derived", + "dimension": { + "id": "NISTd70", + "name": "isothermal compressibility", + "expression": "LΒ·M-1Β·T2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu12e-1/1", + "name": "pascal to the power minus one", + "symbol": "Pa⁻¹" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq160" + }, + { + "type": "unitsml", + "id": "q:isothermal_compressibility" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/IsothermalCompressibility" + } + ] + }, + { + "id": "NISTq161", + "unitsml_id": "q:magnetomotive_force", + "name": "magnetomotive force (Cardelli) (-SP811)", + "names": [ + { + "value": "magnetomotive force (Cardelli) (-SP811)", + "lang": "en" + } + ], + "short": "magnetomotive_force", + "type": "derived", + "dimension": { + "id": "NISTd4", + "name": "electric current", + "expression": "I", + "components": [ + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu223", + "name": "gilbert", + "symbol": "Gi" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq161" + }, + { + "type": "unitsml", + "id": "q:magnetomotive_force" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/MagnetomotiveForce" + } + ] + }, + { + "id": "NISTq162", + "unitsml_id": "q:electric_dipole_moment", + "name": "electric dipole moment", + "names": [ + { + "value": "electric dipole moment", + "lang": "en" + } + ], + "short": "electric_dipole_moment", + "type": "derived", + "dimension": { + "id": "NISTd72", + "name": "electric dipole moment", + "expression": "LΒ·TΒ·I", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu224", + "name": "debye", + "symbol": "D" + }, + { + "id": "NISTu258", + "name": "atomic unit of electric dipole moment", + "symbol": "π‘’π‘Žβ‚€" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq162" + }, + { + "type": "unitsml", + "id": "q:electric_dipole_moment" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ElectricDipoleMoment" + } + ] + }, + { + "id": "NISTq163", + "unitsml_id": "q:magnetizability", + "name": "magnetizability", + "names": [ + { + "value": "magnetizability", + "lang": "en" + } + ], + "short": "magnetizability", + "type": "derived", + "dimension": { + "id": "NISTd54", + "name": "magnetizability", + "expression": "L2Β·MΒ·T2Β·I2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": 2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu252", + "name": "atomic unit of magnetizability", + "symbol": "π‘’Β²π‘Žβ‚€Β²/π‘šβ‚‘" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq163" + }, + { + "type": "unitsml", + "id": "q:magnetizability" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Magnetization" + } + ] + }, + { + "id": "NISTq164", + "unitsml_id": "q:magnetic_dipole_moment", + "name": "magnetic dipole moment", + "names": [ + { + "value": "magnetic dipole moment", + "lang": "en" + } + ], + "short": "magnetic_dipole_moment", + "type": "derived", + "dimension": { + "id": "NISTd73", + "name": "magnetic dipole moment", + "expression": "L2Β·I", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu254", + "name": "atomic unit of magnetic dipole moment", + "symbol": "ℏ𝑒/π‘šβ‚‘" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq164" + }, + { + "type": "unitsml", + "id": "q:magnetic_dipole_moment" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/MagneticDipoleMoment" + } + ] + }, + { + "id": "NISTq165", + "unitsml_id": "q:electric_field_gradient", + "name": "electric field gradient", + "names": [ + { + "value": "electric field gradient", + "lang": "en" + } + ], + "short": "electric_field_gradient", + "type": "derived", + "dimension": { + "id": "NISTd74", + "name": "electric field gradient", + "expression": "MΒ·T-3Β·I-1", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu260", + "name": "atomic unit of electric field gradient", + "symbol": "𝐸ₕ/π‘’π‘Žβ‚€Β²" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq165" + }, + { + "type": "unitsml", + "id": "q:electric_field_gradient" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ElectricField" + } + ] + }, + { + "id": "NISTq166", + "unitsml_id": "q:electric_potential", + "name": "electric potential", + "names": [ + { + "value": "electric potential", + "lang": "en" + } + ], + "short": "electric_potential", + "type": "derived", + "dimension": { + "id": "NISTd18", + "name": "electric potential difference", + "expression": "L2Β·MΒ·T-3Β·I-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu261", + "name": "atomic unit of electric potential", + "symbol": "𝐸ₕ/𝑒" + }, + { + "id": "NISTu268", + "name": "statvolt", + "symbol": "statV" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq166" + }, + { + "type": "unitsml", + "id": "q:electric_potential" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ElectricPotential" + } + ] + }, + { + "id": "NISTq167", + "unitsml_id": "q:electric_quadrupole_moment", + "name": "electric quadrupole moment", + "names": [ + { + "value": "electric quadrupole moment", + "lang": "en" + } + ], + "short": "electric_quadrupole_moment", + "type": "derived", + "dimension": { + "id": "NISTd75", + "name": "electric quadrupole moment", + "expression": "L2Β·TΒ·I", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu263", + "name": "atomic unit of electric quadrupole moment", + "symbol": "π‘’π‘Žβ‚€Β²" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq167" + }, + { + "type": "unitsml", + "id": "q:electric_quadrupole_moment" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ElectricQuadrupoleMoment" + } + ] + }, + { + "id": "NISTq168", + "unitsml_id": "q:polarizability", + "name": "polarizability", + "names": [ + { + "value": "polarizability", + "lang": "en" + } + ], + "short": "polarizability", + "type": "derived", + "dimension": { + "id": "NISTd76", + "name": "polarizability", + "expression": "MΒ·T4Β·I2", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": 4 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu264", + "name": "atomic unit of electric polarizability", + "symbol": "π‘’Β²π‘Žβ‚€Β²/𝐸ₕ" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq168" + }, + { + "type": "unitsml", + "id": "q:polarizability" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Polarizability" + } + ] + }, + { + "id": "NISTq169", + "unitsml_id": "q:electric_capacitance", + "name": "electric capacitance", + "names": [ + { + "value": "electric capacitance", + "lang": "en" + } + ], + "short": "electric_capacitance", + "type": "derived", + "dimension": { + "id": "NISTd19", + "name": "capacitance", + "expression": "L-2Β·M-1Β·T4Β·I2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 4 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu266", + "name": "statfarad", + "symbol": "statF" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq169" + }, + { + "type": "unitsml", + "id": "q:electric_capacitance" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Capacitance" + } + ] + }, + { + "id": "NISTq17", + "unitsml_id": "q:energy", + "name": "energy", + "names": [ + { + "value": "energy", + "lang": "en" + }, + { + "value": "Γ©nergie", + "lang": "fr" + } + ], + "short": "energy", + "type": "derived", + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu117", + "name": "therm (EC)", + "symbol": "thm (EC)" + }, + { + "id": "NISTu126", + "name": "kilogram-force meter", + "symbol": "kgfΒ·m" + }, + { + "id": "NISTu13", + "name": "joule", + "symbol": "J" + }, + { + "id": "NISTu14.u3", + "name": "watt second", + "symbol": "WΒ·s" + }, + { + "id": "NISTu166", + "name": "ton of TNT (energy equivalent)", + "symbol": "ton" + }, + { + "id": "NISTu206", + "name": "foot pound-force", + "symbol": "ftΒ·lbf" + }, + { + "id": "NISTu227", + "name": "thermochemical calorie", + "symbol": "cal" + }, + { + "id": "NISTu240", + "name": "electronvolt", + "symbol": "eV" + }, + { + "id": "NISTu250", + "name": "atomic unit of energy", + "symbol": "𝐸ₕ" + }, + { + "id": "NISTu295", + "name": "natural unit of energy", + "symbol": "π‘šβ‚‘π‘Β²" + }, + { + "id": "NISTu298", + "name": "natural unit of energy in MeV", + "symbol": "π‘šβ‚‘π‘Β²" + }, + { + "id": "NISTu331", + "name": "therm (US)", + "symbol": "thm (US)" + }, + { + "id": "NISTu60", + "name": "I.T. calorie", + "symbol": "cal_IT" + }, + { + "id": "NISTu62", + "name": "erg", + "symbol": "erg" + }, + { + "id": "NISTu63", + "name": "kilocalorie_IT", + "symbol": "kcal_IT" + }, + { + "id": "NISTu64", + "name": "kilocalorie_th", + "symbol": "kcal_th" + }, + { + "id": "NISTu65", + "name": "kilowatt hour", + "symbol": "kWΒ·h" + }, + { + "id": "NISTu69", + "name": "watt hour", + "symbol": "WΒ·h" + } + ], + "unit_count": 18, + "identifiers": [ + { + "type": "nist", + "id": "NISTq17" + }, + { + "type": "unitsml", + "id": "q:energy" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ENGY" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Energy" + } + ] + }, + { + "id": "NISTq170", + "unitsml_id": "q:electric_current_intensity", + "name": "electric current intensity", + "names": [ + { + "value": "electric current intensity", + "lang": "en" + } + ], + "short": "electric_current_intensity", + "type": "derived", + "dimension": { + "id": "NISTd4", + "name": "electric current", + "expression": "I", + "components": [ + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu267", + "name": "statampere", + "symbol": "statA" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq170" + }, + { + "type": "unitsml", + "id": "q:electric_current_intensity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ElectricCurrentIntensity" + } + ] + }, + { + "id": "NISTq171", + "unitsml_id": "q:electric_inductance", + "name": "electric inductance", + "names": [ + { + "value": "electric inductance", + "lang": "en" + } + ], + "short": "electric_inductance", + "type": "derived", + "dimension": { + "id": "NISTd23", + "name": "inductance", + "expression": "L2Β·MΒ·T-2Β·I-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu269", + "name": "stathenry", + "symbol": "statH" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq171" + }, + { + "type": "unitsml", + "id": "q:electric_inductance" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Inductance" + } + ] + }, + { + "id": "NISTq172", + "unitsml_id": "q:first_hyperpolarizability", + "name": "1st hyperpolarizability", + "names": [ + { + "value": "1st hyperpolarizability", + "lang": "en" + } + ], + "short": "first_hyperpolarizability", + "type": "derived", + "dimension": { + "id": "NISTd77", + "name": "hyperpolarizability 1st", + "expression": "L-1Β·M-2Β·T7Β·I3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": -2 + }, + { + "key": "time", + "symbol": "T", + "power": 7 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 3 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu291", + "name": "atomic unit of 1st hyperpolarizability", + "symbol": "π‘’Β³π‘Žβ‚€Β³πΈβ‚•Β³" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq172" + }, + { + "type": "unitsml", + "id": "q:first_hyperpolarizability" + } + ], + "references": [] + }, + { + "id": "NISTq173", + "unitsml_id": "q:second_hyperpolarizability", + "name": "2nd hyperpolarizability", + "names": [ + { + "value": "2nd hyperpolarizability", + "lang": "en" + } + ], + "short": "second_hyperpolarizability", + "type": "derived", + "dimension": { + "id": "NISTd78", + "name": "hyperpolarizability 2nd", + "expression": "L-2Β·M-3Β·T10Β·I4", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": -3 + }, + { + "key": "time", + "symbol": "T", + "power": 10 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 4 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu292", + "name": "atomic unit of 2nd hyperpolarizability", + "symbol": "π‘’β΄π‘Žβ‚€β΄πΈβ‚•β΄" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq173" + }, + { + "type": "unitsml", + "id": "q:second_hyperpolarizability" + } + ], + "references": [] + }, + { + "id": "NISTq174", + "unitsml_id": "q:index_of_acidity", + "name": "index of acidity", + "names": [ + { + "value": "index of acidity", + "lang": "en" + } + ], + "short": "index_of_acidity", + "type": "derived", + "dimension": { + "id": "NISTd94", + "name": "acidity index", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu332", + "name": "pH", + "symbol": "pH" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq174" + }, + { + "type": "unitsml", + "id": "q:index_of_acidity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Acidity" + } + ] + }, + { + "id": "NISTq175", + "unitsml_id": "q:fahrenheit_temperature", + "name": "Fahrenheit temperature", + "names": [ + { + "value": "Fahrenheit temperature", + "lang": "en" + } + ], + "short": "fahrenheit_temperature", + "type": "derived", + "dimension": { + "id": "NISTd5", + "name": "temperature", + "expression": "Theta", + "components": [ + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu133", + "name": "degree Fahrenheit", + "symbol": "Β°F" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq175" + }, + { + "type": "unitsml", + "id": "q:fahrenheit_temperature" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/FahrenheitTemperature" + } + ] + }, + { + "id": "NISTq176", + "unitsml_id": "q:mass_divided_by_length", + "name": "mass divided by length", + "names": [ + { + "value": "mass divided by length", + "lang": "en" + } + ], + "short": "mass_divided_by_length", + "type": "derived", + "dimension": { + "id": "NISTd58", + "name": "linear density", + "expression": "L-1Β·M", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu346", + "name": "denier", + "symbol": "den" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq176" + }, + { + "type": "unitsml", + "id": "q:mass_divided_by_length" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/LineicMass" + } + ] + }, + { + "id": "NISTq177", + "unitsml_id": "q:storage_capacity", + "name": "storage capacity", + "names": [ + { + "value": "storage capacity", + "lang": "en" + }, + { + "value": "storage size", + "lang": "en" + } + ], + "short": "storage_capacity", + "type": "derived", + "dimension": { + "id": "NISTd95", + "name": "storage capacity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu350", + "name": "bit", + "symbol": "bit" + }, + { + "id": "NISTu351", + "name": "byte", + "symbol": "B" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq177" + }, + { + "type": "unitsml", + "id": "q:storage_capacity" + } + ], + "references": [] + }, + { + "id": "NISTq179", + "unitsml_id": "q:molality_of_solute_B", + "name": "molality of solute B", + "names": [ + { + "value": "molality of solute B", + "lang": "en" + } + ], + "short": "molality_of_solute_B", + "type": "derived", + "dimension": { + "id": "NISTd79", + "name": "molality", + "expression": "MΒ·N", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu6.u27p10'3e-1/1", + "name": "mole per kilogram", + "symbol": "mol/kg" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq179" + }, + { + "type": "unitsml", + "id": "q:molality_of_solute_B" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/MolalityOfSolute" + } + ] + }, + { + "id": "NISTq18", + "unitsml_id": "q:work", + "name": "work", + "names": [ + { + "value": "work", + "lang": "en" + } + ], + "short": "work", + "type": "derived", + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu117", + "name": "therm (EC)", + "symbol": "thm (EC)" + }, + { + "id": "NISTu126", + "name": "kilogram-force meter", + "symbol": "kgfΒ·m" + }, + { + "id": "NISTu13", + "name": "joule", + "symbol": "J" + }, + { + "id": "NISTu14.u3", + "name": "watt second", + "symbol": "WΒ·s" + }, + { + "id": "NISTu206", + "name": "foot pound-force", + "symbol": "ftΒ·lbf" + }, + { + "id": "NISTu227", + "name": "thermochemical calorie", + "symbol": "cal" + }, + { + "id": "NISTu331", + "name": "therm (US)", + "symbol": "thm (US)" + }, + { + "id": "NISTu60", + "name": "I.T. calorie", + "symbol": "cal_IT" + }, + { + "id": "NISTu62", + "name": "erg", + "symbol": "erg" + }, + { + "id": "NISTu63", + "name": "kilocalorie_IT", + "symbol": "kcal_IT" + }, + { + "id": "NISTu64", + "name": "kilocalorie_th", + "symbol": "kcal_th" + }, + { + "id": "NISTu65", + "name": "kilowatt hour", + "symbol": "kWΒ·h" + }, + { + "id": "NISTu69", + "name": "watt hour", + "symbol": "WΒ·h" + } + ], + "unit_count": 13, + "identifiers": [ + { + "type": "nist", + "id": "NISTq18" + }, + { + "type": "unitsml", + "id": "q:work" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Work" + } + ] + }, + { + "id": "NISTq180", + "unitsml_id": "q:coefficient_of_heat_transfer", + "name": "coefficient of heat transfer", + "names": [ + { + "value": "coefficient of heat transfer", + "lang": "en" + } + ], + "short": "coefficient_of_heat_transfer", + "type": "derived", + "dimension": { + "id": "NISTd71", + "name": "heat transfer coefficient", + "expression": "MΒ·T-3Β·Theta-1", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu221", + "name": "watt per square meter kelvin", + "symbol": "W/(mΒ²Β·K)" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq180" + }, + { + "type": "unitsml", + "id": "q:coefficient_of_heat_transfer" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/CoefficientOfHeatTransfer" + } + ] + }, + { + "id": "NISTq181", + "unitsml_id": "q:surface_coefficient_of_heat_transfer", + "name": "surface coefficient of heat transfer", + "names": [ + { + "value": "surface coefficient of heat transfer", + "lang": "en" + } + ], + "short": "surface_coefficient_of_heat_transfer", + "type": "derived", + "dimension": { + "id": "NISTd71", + "name": "heat transfer coefficient", + "expression": "MΒ·T-3Β·Theta-1", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu221", + "name": "watt per square meter kelvin", + "symbol": "W/(mΒ²Β·K)" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq181" + }, + { + "type": "unitsml", + "id": "q:surface_coefficient_of_heat_transfer" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/SurfaceCoefficientOfHeatTransfer" + } + ] + }, + { + "id": "NISTq182", + "unitsml_id": "q:kinetic_energy", + "name": "kinetic energy", + "names": [ + { + "value": "kinetic energy", + "lang": "en" + } + ], + "short": "kinetic_energy", + "type": "derived", + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu117", + "name": "therm (EC)", + "symbol": "thm (EC)" + }, + { + "id": "NISTu13", + "name": "joule", + "symbol": "J" + }, + { + "id": "NISTu14.u3", + "name": "watt second", + "symbol": "WΒ·s" + }, + { + "id": "NISTu206", + "name": "foot pound-force", + "symbol": "ftΒ·lbf" + }, + { + "id": "NISTu227", + "name": "thermochemical calorie", + "symbol": "cal" + }, + { + "id": "NISTu331", + "name": "therm (US)", + "symbol": "thm (US)" + }, + { + "id": "NISTu60", + "name": "I.T. calorie", + "symbol": "cal_IT" + }, + { + "id": "NISTu62", + "name": "erg", + "symbol": "erg" + }, + { + "id": "NISTu63", + "name": "kilocalorie_IT", + "symbol": "kcal_IT" + }, + { + "id": "NISTu64", + "name": "kilocalorie_th", + "symbol": "kcal_th" + }, + { + "id": "NISTu65", + "name": "kilowatt hour", + "symbol": "kWΒ·h" + }, + { + "id": "NISTu69", + "name": "watt hour", + "symbol": "WΒ·h" + } + ], + "unit_count": 12, + "identifiers": [ + { + "type": "nist", + "id": "NISTq182" + }, + { + "type": "unitsml", + "id": "q:kinetic_energy" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/KineticEnergy" + } + ] + }, + { + "id": "NISTq183", + "unitsml_id": "q:mechanical_energy", + "name": "mechanical energy", + "names": [ + { + "value": "mechanical energy", + "lang": "en" + } + ], + "short": "mechanical_energy", + "type": "derived", + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu117", + "name": "therm (EC)", + "symbol": "thm (EC)" + }, + { + "id": "NISTu13", + "name": "joule", + "symbol": "J" + }, + { + "id": "NISTu14.u3", + "name": "watt second", + "symbol": "WΒ·s" + }, + { + "id": "NISTu206", + "name": "foot pound-force", + "symbol": "ftΒ·lbf" + }, + { + "id": "NISTu227", + "name": "thermochemical calorie", + "symbol": "cal" + }, + { + "id": "NISTu331", + "name": "therm (US)", + "symbol": "thm (US)" + }, + { + "id": "NISTu60", + "name": "I.T. calorie", + "symbol": "cal_IT" + }, + { + "id": "NISTu62", + "name": "erg", + "symbol": "erg" + }, + { + "id": "NISTu63", + "name": "kilocalorie_IT", + "symbol": "kcal_IT" + }, + { + "id": "NISTu64", + "name": "kilocalorie_th", + "symbol": "kcal_th" + }, + { + "id": "NISTu65", + "name": "kilowatt hour", + "symbol": "kWΒ·h" + }, + { + "id": "NISTu69", + "name": "watt hour", + "symbol": "WΒ·h" + } + ], + "unit_count": 12, + "identifiers": [ + { + "type": "nist", + "id": "NISTq183" + }, + { + "type": "unitsml", + "id": "q:mechanical_energy" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/MechanicalEnergy" + } + ] + }, + { + "id": "NISTq184", + "unitsml_id": "q:torque", + "name": "torque", + "names": [ + { + "value": "torque", + "lang": "en" + } + ], + "short": "torque", + "type": "derived", + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu11.u1", + "name": "newton meter", + "symbol": "NΒ·m" + }, + { + "id": "NISTu126", + "name": "kilogram-force meter", + "symbol": "kgfΒ·m" + }, + { + "id": "NISTu206", + "name": "foot pound-force", + "symbol": "ftΒ·lbf" + } + ], + "unit_count": 3, + "identifiers": [ + { + "type": "nist", + "id": "NISTq184" + }, + { + "type": "unitsml", + "id": "q:torque" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Torque" + } + ] + }, + { + "id": "NISTq185", + "unitsml_id": "q:bending_moment_of_force", + "name": "bending moment of force", + "names": [ + { + "value": "bending moment of force", + "lang": "en" + } + ], + "short": "bending_moment_of_force", + "type": "derived", + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu11.u1", + "name": "newton meter", + "symbol": "NΒ·m" + }, + { + "id": "NISTu126", + "name": "kilogram-force meter", + "symbol": "kgfΒ·m" + }, + { + "id": "NISTu206", + "name": "foot pound-force", + "symbol": "ftΒ·lbf" + } + ], + "unit_count": 3, + "identifiers": [ + { + "type": "nist", + "id": "NISTq185" + }, + { + "type": "unitsml", + "id": "q:bending_moment_of_force" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/BendingMomentOfForce" + } + ] + }, + { + "id": "NISTq186", + "unitsml_id": "q:mass_fraction", + "name": "mass fraction", + "names": [ + { + "value": "mass fraction", + "lang": "en" + }, + { + "value": "mole fraction", + "lang": "en" + } + ], + "short": "mass_fraction", + "type": "derived", + "dimension": { + "id": "NISTd85", + "name": "mass mole fraction", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu400", + "name": "parts per million", + "symbol": "ppm" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq186" + }, + { + "type": "unitsml", + "id": "q:mass_fraction" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/MassFraction" + } + ] + }, + { + "id": "NISTq187", + "unitsml_id": "q:apparent_power", + "name": "apparent power", + "names": [ + { + "value": "apparent power", + "lang": "en" + } + ], + "short": "apparent_power", + "type": "derived", + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu401", + "name": "var", + "symbol": "var" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq187" + }, + { + "type": "unitsml", + "id": "q:apparent_power" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ApparentPower" + } + ] + }, + { + "id": "NISTq188", + "unitsml_id": "q:nil", + "name": "nil", + "names": [ + { + "value": "nil", + "lang": "en" + } + ], + "short": "nil", + "type": "derived", + "dimension": { + "id": "NISTd80", + "name": "ratio quantity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu61", + "name": "one", + "symbol": "1" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq188" + }, + { + "type": "unitsml", + "id": "q:nil" + } + ], + "references": [] + }, + { + "id": "NISTq189", + "unitsml_id": "q:emission_rate", + "name": "emission rate", + "names": [ + { + "value": "emission rate", + "lang": "en" + }, + { + "value": "taux d'Γ©mission", + "lang": "fr" + } + ], + "short": "emission_rate", + "type": "derived", + "dimension": { + "id": "NISTd24", + "name": "frequency", + "expression": "T-1", + "components": [ + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu3e-1/1", + "name": "second to the power minus one", + "symbol": "s⁻¹" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq189" + }, + { + "type": "unitsml", + "id": "q:emission_rate" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/EMIR" + } + ] + }, + { + "id": "NISTq19", + "unitsml_id": "q:amount_of_heat", + "name": "amount of heat", + "names": [ + { + "value": "amount of heat", + "lang": "en" + }, + { + "value": "heat", + "lang": "en" + } + ], + "short": "amount_of_heat", + "type": "derived", + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu117", + "name": "therm (EC)", + "symbol": "thm (EC)" + }, + { + "id": "NISTu13", + "name": "joule", + "symbol": "J" + }, + { + "id": "NISTu14.u3", + "name": "watt second", + "symbol": "WΒ·s" + }, + { + "id": "NISTu216", + "name": "British thermal unit_th", + "symbol": "Btu_th" + }, + { + "id": "NISTu227", + "name": "thermochemical calorie", + "symbol": "cal" + }, + { + "id": "NISTu331", + "name": "therm (US)", + "symbol": "thm (US)" + }, + { + "id": "NISTu333", + "name": "British thermal unit_IT", + "symbol": "Btu" + }, + { + "id": "NISTu334", + "name": "British thermal unit (mean)", + "symbol": "Btu" + }, + { + "id": "NISTu335", + "name": "British thermal unit (39 degF)", + "symbol": "Btu" + }, + { + "id": "NISTu336", + "name": "British thermal unit (59 degF)", + "symbol": "Btu" + }, + { + "id": "NISTu337", + "name": "British thermal unit (60 degF)", + "symbol": "Btu" + }, + { + "id": "NISTu60", + "name": "I.T. calorie", + "symbol": "cal_IT" + }, + { + "id": "NISTu62", + "name": "erg", + "symbol": "erg" + }, + { + "id": "NISTu63", + "name": "kilocalorie_IT", + "symbol": "kcal_IT" + }, + { + "id": "NISTu64", + "name": "kilocalorie_th", + "symbol": "kcal_th" + }, + { + "id": "NISTu65", + "name": "kilowatt hour", + "symbol": "kWΒ·h" + }, + { + "id": "NISTu69", + "name": "watt hour", + "symbol": "WΒ·h" + } + ], + "unit_count": 17, + "identifiers": [ + { + "type": "nist", + "id": "NISTq19" + }, + { + "type": "unitsml", + "id": "q:amount_of_heat" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Heat" + } + ] + }, + { + "id": "NISTq190", + "unitsml_id": "q:fluence", + "name": "fluence", + "names": [ + { + "value": "fluence", + "lang": "en" + }, + { + "value": "fluence", + "lang": "fr" + } + ], + "short": "fluence", + "type": "derived", + "dimension": { + "id": "NISTd96", + "name": "fluence", + "expression": "L-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1e-2/1", + "name": "meter to the power minus two", + "symbol": "m⁻²" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq190" + }, + { + "type": "unitsml", + "id": "q:fluence" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/FLUE" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/EnergyFluence" + } + ] + }, + { + "id": "NISTq191", + "unitsml_id": "q:fluence_rate", + "name": "fluence rate", + "names": [ + { + "value": "fluence rate", + "lang": "en" + }, + { + "value": "dΓ©bit de fluence", + "lang": "fr" + } + ], + "short": "fluence_rate", + "type": "derived", + "dimension": { + "id": "NISTd97", + "name": "fluence_rate", + "expression": "L-2Β·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1e-2/1.u3e-1/1", + "name": "meter to the power minus two per second", + "symbol": "m⁻²·s⁻¹" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq191" + }, + { + "type": "unitsml", + "id": "q:fluence_rate" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/FLUR" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/EnergyFluenceRate" + } + ] + }, + { + "id": "NISTq192", + "unitsml_id": "q:ITS-90_temperature_celsius", + "name": "ITS-90 temperature (Β°C)", + "names": [ + { + "value": "ITS-90 temperature (Β°C)", + "lang": "en" + }, + { + "value": "tempΓ©rature ITS-90 (℃)", + "lang": "fr" + } + ], + "short": "ITS-90_temperature_celsius", + "type": "derived", + "dimension": { + "id": "NISTd5", + "name": "temperature", + "expression": "Theta", + "components": [ + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu23", + "name": "degree Celsius", + "symbol": "Β°C" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq192" + }, + { + "type": "unitsml", + "id": "q:ITS-90_temperature_celsius" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ITSC" + } + ] + }, + { + "id": "NISTq193", + "unitsml_id": "q:ITS-90_temperature_kelvin", + "name": "ITS-90 temperature (K)", + "names": [ + { + "value": "ITS-90 temperature (K)", + "lang": "en" + }, + { + "value": "tempΓ©rature ITS-90 (K)", + "lang": "fr" + } + ], + "short": "ITS-90_temperature_kelvin", + "type": "derived", + "dimension": { + "id": "NISTd5", + "name": "temperature", + "expression": "Theta", + "components": [ + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu5", + "name": "kelvin", + "symbol": "Β°K" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq193" + }, + { + "type": "unitsml", + "id": "q:ITS-90_temperature_kelvin" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ITSK" + } + ] + }, + { + "id": "NISTq194", + "unitsml_id": "q:kerma_rate", + "name": "kerma rate", + "names": [ + { + "value": "kerma rate", + "lang": "en" + }, + { + "value": "kerma rate", + "lang": "fr" + } + ], + "short": "kerma_rate", + "type": "derived", + "dimension": { + "id": "NISTd50", + "name": "absorbed dose rate", + "expression": "L2Β·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu28.u3e-1/1", + "name": "gray per second", + "symbol": "Gy/s" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq194" + }, + { + "type": "unitsml", + "id": "q:kerma_rate" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/KRMR" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/KermaRate" + } + ] + }, + { + "id": "NISTq195", + "unitsml_id": "q:phase", + "name": "phase", + "names": [ + { + "value": "phase", + "lang": "en" + }, + { + "value": "phase", + "lang": "fr" + } + ], + "short": "phase", + "type": "derived", + "dimension": { + "id": "NISTd98", + "name": "phase", + "expression": "1", + "components": [ + { + "key": "plane_angle", + "symbol": "phi", + "power": 1 + } + ], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu9", + "name": "radian", + "symbol": "rad" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq195" + }, + { + "type": "unitsml", + "id": "q:phase" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/PHAS" + } + ] + }, + { + "id": "NISTq196", + "unitsml_id": "q:PLTS-2000_temperature", + "name": "PLTS-2000 temperature (K)", + "names": [ + { + "value": "PLTS-2000 temperature (K)", + "lang": "en" + }, + { + "value": "tempΓ©rature PLTS-2000 (K)", + "lang": "fr" + } + ], + "short": "PLTS-2000_temperature", + "type": "derived", + "dimension": { + "id": "NISTd5", + "name": "temperature", + "expression": "Theta", + "components": [ + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu5", + "name": "kelvin", + "symbol": "Β°K" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq196" + }, + { + "type": "unitsml", + "id": "q:PLTS-2000_temperature" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/PLTS" + } + ] + }, + { + "id": "NISTq197", + "unitsml_id": "q:exposure", + "name": "exposure", + "names": [ + { + "value": "exposure", + "lang": "en" + }, + { + "value": "exposition (rayons x et Ξ³)", + "lang": "fr" + } + ], + "short": "exposure", + "type": "derived", + "dimension": { + "id": "NISTd49", + "name": "exposure", + "expression": "M-1Β·TΒ·I", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu15.u27p10'3e-1/1", + "name": "coulomb per kilogram", + "symbol": "C/kg" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq197" + }, + { + "type": "unitsml", + "id": "q:exposure" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/XPOS" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Exposure" + } + ] + }, + { + "id": "NISTq198", + "unitsml_id": "q:fuel_efficiency", + "name": "fuel efficiency", + "names": [ + { + "value": "fuel efficiency", + "lang": "en" + }, + { + "value": "fuel economy", + "lang": "en" + } + ], + "short": "fuel_efficiency", + "type": "derived", + "dimension": { + "id": "NISTd99", + "name": "fuel efficiency", + "expression": "L-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu363", + "name": "mile per gallon (US)", + "symbol": "mi/gal" + }, + { + "id": "NISTu380", + "name": "kilometer per liter", + "symbol": "km/L" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq198" + }, + { + "type": "unitsml", + "id": "q:fuel_efficiency" + } + ], + "references": [] + }, + { + "id": "NISTq199", + "unitsml_id": "q:relative_humidity", + "name": "relative humidity", + "names": [ + { + "value": "relative humidity", + "lang": "en" + } + ], + "short": "relative_humidity", + "type": "derived", + "dimension": { + "id": "NISTd80", + "name": "ratio quantity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu382", + "name": "relative humidity", + "symbol": "%rh" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq199" + }, + { + "type": "unitsml", + "id": "q:relative_humidity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/RelativeHumidity" + } + ] + }, + { + "id": "NISTq2", + "unitsml_id": "q:mass", + "name": "mass", + "names": [ + { + "value": "mass", + "lang": "en" + }, + { + "value": "masse", + "lang": "fr" + } + ], + "short": "mass", + "type": "base", + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu125", + "name": "kilogram-force second squared per meter", + "symbol": "kgfΒ·sΒ²m⁻¹" + }, + { + "id": "NISTu2", + "name": "kilogram", + "symbol": "kg" + }, + { + "id": "NISTu201", + "name": "pound (avoirdupois)", + "symbol": "lb" + }, + { + "id": "NISTu202", + "name": "ounce (avoirdupois)", + "symbol": "oz" + }, + { + "id": "NISTu203", + "name": "hundredweight (long, 112 lb)", + "symbol": "cwt (UK)" + }, + { + "id": "NISTu212", + "name": "carat", + "symbol": "ct" + }, + { + "id": "NISTu226", + "name": "slug", + "symbol": "slug" + }, + { + "id": "NISTu228", + "name": "short ton", + "symbol": "t" + }, + { + "id": "NISTu229", + "name": "long ton", + "symbol": "t" + }, + { + "id": "NISTu230", + "name": "hundredweight (short, 100 lb)", + "symbol": "cwt (US)" + }, + { + "id": "NISTu231", + "name": "ounce (troy or apothecary)", + "symbol": "oz" + }, + { + "id": "NISTu232", + "name": "pound (troy or apothecary)", + "symbol": "lb" + }, + { + "id": "NISTu233", + "name": "pennyweight", + "symbol": "dwt (troy)" + }, + { + "id": "NISTu234", + "name": "dram (apothecary)", + "symbol": "dr" + }, + { + "id": "NISTu235", + "name": "scruple", + "symbol": "scr (ap.)" + }, + { + "id": "NISTu237", + "name": "kip", + "symbol": "kip" + }, + { + "id": "NISTu241", + "name": "unified atomic mass unit", + "symbol": "u" + }, + { + "id": "NISTu244", + "name": "natural unit of mass", + "symbol": "π‘šβ‚‘" + }, + { + "id": "NISTu247", + "name": "atomic unit of mass", + "symbol": "π‘šβ‚‘" + }, + { + "id": "NISTu27", + "name": "gram", + "symbol": "g" + }, + { + "id": "NISTu275", + "name": "dram (avoirdupois)", + "symbol": "dr (avdp)" + }, + { + "id": "NISTu289", + "name": "dalton", + "symbol": "Da" + }, + { + "id": "NISTu309", + "name": "ounce (FDA)", + "symbol": "oz (US label)" + }, + { + "id": "NISTu86", + "name": "grain (troy or apothecary)", + "symbol": "gr" + }, + { + "id": "NISTu88", + "name": "tonne", + "symbol": "t" + } + ], + "unit_count": 25, + "identifiers": [ + { + "type": "nist", + "id": "NISTq2" + }, + { + "type": "unitsml", + "id": "q:mass" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/MASS" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Mass" + } + ] + }, + { + "id": "NISTq20", + "unitsml_id": "q:power", + "name": "power", + "names": [ + { + "value": "power", + "lang": "en" + }, + { + "value": "puissance, flux Γ©nergΓ©tique", + "lang": "fr" + } + ], + "short": "power", + "type": "derived", + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu127", + "name": "horsepower, electric", + "symbol": "hp" + }, + { + "id": "NISTu14", + "name": "watt", + "symbol": "W" + }, + { + "id": "NISTu211", + "name": "foot pound-force per second", + "symbol": "ftΒ·lbf/2" + }, + { + "id": "NISTu217", + "name": "kilogram-force meter per second", + "symbol": "kgfΒ·m/s" + }, + { + "id": "NISTu218", + "name": "horsepower, metric", + "symbol": "hp" + }, + { + "id": "NISTu225", + "name": "abwatt", + "symbol": "aW" + }, + { + "id": "NISTu274", + "name": "statwatt", + "symbol": "statwatt" + }, + { + "id": "NISTu284", + "name": "horsepower", + "symbol": "hp" + }, + { + "id": "NISTu285", + "name": "horsepower, boiler", + "symbol": "hp" + }, + { + "id": "NISTu286", + "name": "horsepower, water", + "symbol": "hp" + }, + { + "id": "NISTu287", + "name": "horsepower (UK)", + "symbol": "hp" + }, + { + "id": "NISTu349", + "name": "ton of refrigeration (12 000 Btu_IT/h)", + "symbol": "ton" + }, + { + "id": "NISTu74", + "name": "calorie_th per second", + "symbol": "cal_th/s" + }, + { + "id": "NISTu75", + "name": "kilocalorie_th per second", + "symbol": "kcal_th/s" + }, + { + "id": "NISTu89", + "name": "erg per second", + "symbol": "ergΒ·s⁻¹" + } + ], + "unit_count": 15, + "identifiers": [ + { + "type": "nist", + "id": "NISTq20" + }, + { + "type": "unitsml", + "id": "q:power" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/POWR" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Power" + } + ] + }, + { + "id": "NISTq200", + "unitsml_id": "q:logarithmic_frequency_range", + "name": "logarithmic frequency range", + "names": [ + { + "value": "logarithmic frequency range", + "lang": "en" + } + ], + "short": "logarithmic_frequency_range", + "type": "derived", + "dimension": { + "id": "NISTd67", + "name": "logarithmic ratio", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu383", + "name": "octave", + "symbol": "oct" + }, + { + "id": "NISTu384", + "name": "decade", + "symbol": "dec" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq200" + }, + { + "type": "unitsml", + "id": "q:logarithmic_frequency_range" + } + ], + "references": [] + }, + { + "id": "NISTq201", + "unitsml_id": "q:traffic_intensity", + "name": "traffic intensity", + "names": [ + { + "value": "traffic intensity", + "lang": "en" + } + ], + "short": "traffic_intensity", + "type": "derived", + "dimension": { + "id": "NISTd100", + "name": "traffic intensity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu385", + "name": "erlang", + "symbol": "E" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq201" + }, + { + "type": "unitsml", + "id": "q:traffic_intensity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/TrafficIntensity" + } + ] + }, + { + "id": "NISTq202", + "unitsml_id": "q:symbol_rate", + "name": "symbol rate", + "names": [ + { + "value": "symbol rate", + "lang": "en" + } + ], + "short": "symbol_rate", + "type": "derived", + "dimension": { + "id": "NISTd101", + "name": "symbol rate", + "expression": "T-1", + "components": [ + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu386", + "name": "baud", + "symbol": "Bd" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq202" + }, + { + "type": "unitsml", + "id": "q:symbol_rate" + } + ], + "references": [] + }, + { + "id": "NISTq203", + "unitsml_id": "q:information_content", + "name": "information content", + "names": [ + { + "value": "information content", + "lang": "en" + }, + { + "value": "information entropy", + "lang": "en" + } + ], + "short": "information_content", + "type": "derived", + "dimension": { + "id": "NISTd102", + "name": "information content", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu387", + "name": "shannon", + "symbol": "Sh" + }, + { + "id": "NISTu388", + "name": "hartley", + "symbol": "Hart" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq203" + }, + { + "type": "unitsml", + "id": "q:information_content" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/InformationContent" + } + ] + }, + { + "id": "NISTq21", + "unitsml_id": "q:radiant_flux", + "name": "radiant flux", + "names": [ + { + "value": "radiant flux", + "lang": "en" + } + ], + "short": "radiant_flux", + "type": "derived", + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu127", + "name": "horsepower, electric", + "symbol": "hp" + }, + { + "id": "NISTu14", + "name": "watt", + "symbol": "W" + }, + { + "id": "NISTu74", + "name": "calorie_th per second", + "symbol": "cal_th/s" + }, + { + "id": "NISTu75", + "name": "kilocalorie_th per second", + "symbol": "kcal_th/s" + }, + { + "id": "NISTu89", + "name": "erg per second", + "symbol": "ergΒ·s⁻¹" + } + ], + "unit_count": 5, + "identifiers": [ + { + "type": "nist", + "id": "NISTq21" + }, + { + "type": "unitsml", + "id": "q:radiant_flux" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/RadiantFlux" + } + ] + }, + { + "id": "NISTq22", + "unitsml_id": "q:electric_charge", + "name": "electric charge", + "names": [ + { + "value": "electric charge", + "lang": "en" + }, + { + "value": "charge Γ©lectrique", + "lang": "fr" + } + ], + "short": "electric_charge", + "type": "derived", + "dimension": { + "id": "NISTd17", + "name": "electric charge", + "expression": "TΒ·I", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu15", + "name": "coulomb", + "symbol": "C" + }, + { + "id": "NISTu246", + "name": "atomic unit of charge", + "symbol": "𝑒" + }, + { + "id": "NISTu271", + "name": "statcoulomb", + "symbol": "statcoulomb" + }, + { + "id": "NISTu48", + "name": "abcoulomb", + "symbol": "abC" + }, + { + "id": "NISTu54", + "name": "ampere hour", + "symbol": "AΒ·h" + } + ], + "unit_count": 5, + "identifiers": [ + { + "type": "nist", + "id": "NISTq22" + }, + { + "type": "unitsml", + "id": "q:electric_charge" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ELCH" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ElectricCharge" + } + ] + }, + { + "id": "NISTq23", + "unitsml_id": "q:amount_of_electricity", + "name": "amount of electricity", + "names": [ + { + "value": "amount of electricity", + "lang": "en" + } + ], + "short": "amount_of_electricity", + "type": "derived", + "dimension": { + "id": "NISTd17", + "name": "electric charge", + "expression": "TΒ·I", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu15", + "name": "coulomb", + "symbol": "C" + }, + { + "id": "NISTu271", + "name": "statcoulomb", + "symbol": "statcoulomb" + }, + { + "id": "NISTu48", + "name": "abcoulomb", + "symbol": "abC" + }, + { + "id": "NISTu54", + "name": "ampere hour", + "symbol": "AΒ·h" + } + ], + "unit_count": 4, + "identifiers": [ + { + "type": "nist", + "id": "NISTq23" + }, + { + "type": "unitsml", + "id": "q:amount_of_electricity" + } + ], + "references": [] + }, + { + "id": "NISTq24", + "unitsml_id": "q:electric_potential_difference", + "name": "electric potential difference", + "names": [ + { + "value": "electric potential difference", + "lang": "en" + }, + { + "value": "diffΓ©rence de potentiel Γ©lectrique", + "lang": "fr" + } + ], + "short": "electric_potential_difference", + "type": "derived", + "dimension": { + "id": "NISTd18", + "name": "electric potential difference", + "expression": "L2Β·MΒ·T-3Β·I-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu16", + "name": "volt", + "symbol": "V" + }, + { + "id": "NISTu261", + "name": "atomic unit of electric potential", + "symbol": "𝐸ₕ/𝑒" + }, + { + "id": "NISTu268", + "name": "statvolt", + "symbol": "statV" + }, + { + "id": "NISTu53", + "name": "abvolt", + "symbol": "abV" + } + ], + "unit_count": 4, + "identifiers": [ + { + "type": "nist", + "id": "NISTq24" + }, + { + "type": "unitsml", + "id": "q:electric_potential_difference" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ELPD" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ElectricPotentialDifference" + } + ] + }, + { + "id": "NISTq25", + "unitsml_id": "q:potential_difference", + "name": "potential difference", + "names": [ + { + "value": "potential difference", + "lang": "en" + } + ], + "short": "potential_difference", + "type": "derived", + "dimension": { + "id": "NISTd18", + "name": "electric potential difference", + "expression": "L2Β·MΒ·T-3Β·I-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu16", + "name": "volt", + "symbol": "V" + }, + { + "id": "NISTu53", + "name": "abvolt", + "symbol": "abV" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq25" + }, + { + "type": "unitsml", + "id": "q:potential_difference" + } + ], + "references": [] + }, + { + "id": "NISTq26", + "unitsml_id": "q:electromotive_force", + "name": "electromotive force", + "names": [ + { + "value": "electromotive force", + "lang": "en" + } + ], + "short": "electromotive_force", + "type": "derived", + "dimension": { + "id": "NISTd18", + "name": "electric potential difference", + "expression": "L2Β·MΒ·T-3Β·I-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu16", + "name": "volt", + "symbol": "V" + }, + { + "id": "NISTu261", + "name": "atomic unit of electric potential", + "symbol": "𝐸ₕ/𝑒" + }, + { + "id": "NISTu268", + "name": "statvolt", + "symbol": "statV" + }, + { + "id": "NISTu53", + "name": "abvolt", + "symbol": "abV" + } + ], + "unit_count": 4, + "identifiers": [ + { + "type": "nist", + "id": "NISTq26" + }, + { + "type": "unitsml", + "id": "q:electromotive_force" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ElectromotiveForce" + } + ] + }, + { + "id": "NISTq27", + "unitsml_id": "q:capacitance", + "name": "capacitance", + "names": [ + { + "value": "capacitance", + "lang": "en" + }, + { + "value": "capacitΓ© Γ©lectrique", + "lang": "fr" + } + ], + "short": "capacitance", + "type": "derived", + "dimension": { + "id": "NISTd19", + "name": "capacitance", + "expression": "L-2Β·M-1Β·T4Β·I2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 4 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu17", + "name": "farad", + "symbol": "F" + }, + { + "id": "NISTu49", + "name": "abfarad", + "symbol": "abF" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq27" + }, + { + "type": "unitsml", + "id": "q:capacitance" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ELCA" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Capacitance" + } + ] + }, + { + "id": "NISTq28", + "unitsml_id": "q:electric_resistance", + "name": "electric resistance", + "names": [ + { + "value": "electric resistance", + "lang": "en" + }, + { + "value": "rΓ©sistance Γ©lectrique", + "lang": "fr" + } + ], + "short": "electric_resistance", + "type": "derived", + "dimension": { + "id": "NISTd20", + "name": "electric resistance", + "expression": "L2Β·MΒ·T-3Β·I-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu18", + "name": "ohm", + "symbol": "Ω" + }, + { + "id": "NISTu265", + "name": "statohm", + "symbol": "statohm" + }, + { + "id": "NISTu52", + "name": "abohm", + "symbol": "abΞ©" + } + ], + "unit_count": 3, + "identifiers": [ + { + "type": "nist", + "id": "NISTq28" + }, + { + "type": "unitsml", + "id": "q:electric_resistance" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ELRE" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Resistance" + } + ] + }, + { + "id": "NISTq29", + "unitsml_id": "q:electric_conductance", + "name": "electric conductance", + "names": [ + { + "value": "electric conductance", + "lang": "en" + }, + { + "value": "conductance Γ©lectrique", + "lang": "fr" + } + ], + "short": "electric_conductance", + "type": "derived", + "dimension": { + "id": "NISTd21", + "name": "electric conductance", + "expression": "L-2Β·M-1Β·T3Β·I2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu19", + "name": "siemens", + "symbol": "S" + }, + { + "id": "NISTu270", + "name": "statmho", + "symbol": "statmho" + }, + { + "id": "NISTu51", + "name": "abmho", + "symbol": "(abΞ©)⁻¹" + } + ], + "unit_count": 3, + "identifiers": [ + { + "type": "nist", + "id": "NISTq29" + }, + { + "type": "unitsml", + "id": "q:electric_conductance" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ELCO" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Conductance" + } + ] + }, + { + "id": "NISTq3", + "unitsml_id": "q:time", + "name": "time", + "names": [ + { + "value": "time", + "lang": "en" + }, + { + "value": "duration", + "lang": "en" + }, + { + "value": "temps", + "lang": "fr" + } + ], + "short": "time", + "type": "base", + "dimension": { + "id": "NISTd3", + "name": "time", + "expression": "T", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu106", + "name": "year (365 days)", + "symbol": "a" + }, + { + "id": "NISTu245", + "name": "natural unit of time", + "symbol": "ℏ/π‘šβ‚‘π‘Β²" + }, + { + "id": "NISTu251", + "name": "atomic unit of time", + "symbol": "ℏ/𝐸ₕ" + }, + { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + { + "id": "NISTu338", + "name": "year, tropical", + "symbol": "a" + }, + { + "id": "NISTu339", + "name": "year, sidereal", + "symbol": "a" + }, + { + "id": "NISTu340", + "name": "day, sidereal", + "symbol": "d" + }, + { + "id": "NISTu341", + "name": "hour, sidereal", + "symbol": "h" + }, + { + "id": "NISTu342", + "name": "minute, sidereal", + "symbol": "min" + }, + { + "id": "NISTu343", + "name": "second, sidereal", + "symbol": "s" + }, + { + "id": "NISTu345", + "name": "shake", + "symbol": "shake" + }, + { + "id": "NISTu36", + "name": "minute", + "symbol": "β€²" + }, + { + "id": "NISTu37", + "name": "hour", + "symbol": "h" + }, + { + "id": "NISTu38", + "name": "day", + "symbol": "d" + } + ], + "unit_count": 14, + "identifiers": [ + { + "type": "nist", + "id": "NISTq3" + }, + { + "type": "unitsml", + "id": "q:time" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/TIME" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Time" + } + ] + }, + { + "id": "NISTq30", + "unitsml_id": "q:magnetic_flux", + "name": "magnetic flux", + "names": [ + { + "value": "magnetic flux", + "lang": "en" + }, + { + "value": "flux d'induction magnΓ©tique", + "lang": "fr" + } + ], + "short": "magnetic_flux", + "type": "derived", + "dimension": { + "id": "NISTd22", + "name": "magnetic flux", + "expression": "L2Β·MΒ·T-2Β·I-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu20", + "name": "weber", + "symbol": "Wb" + }, + { + "id": "NISTu272", + "name": "statweber", + "symbol": "statWb" + }, + { + "id": "NISTu58", + "name": "maxwell", + "symbol": "Mx" + } + ], + "unit_count": 3, + "identifiers": [ + { + "type": "nist", + "id": "NISTq30" + }, + { + "type": "unitsml", + "id": "q:magnetic_flux" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/MGFL" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/MagneticFlux" + } + ] + }, + { + "id": "NISTq31", + "unitsml_id": "q:surface_density", + "name": "surface density", + "names": [ + { + "value": "surface density", + "lang": "en" + }, + { + "value": "areic mass", + "lang": "en" + }, + { + "value": "masse surfacique", + "lang": "fr" + } + ], + "short": "surface_density", + "type": "derived", + "dimension": { + "id": "NISTd51", + "name": "surface density", + "expression": "L-2Β·M", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu27p10'3.u1e-2/1", + "name": "kilogram per square meter", + "symbol": "kg/mΒ²" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq31" + }, + { + "type": "unitsml", + "id": "q:surface_density" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/SUDE" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/AreaMass" + } + ] + }, + { + "id": "NISTq32", + "unitsml_id": "q:inductance", + "name": "inductance", + "names": [ + { + "value": "inductance", + "lang": "en" + }, + { + "value": "inductance", + "lang": "fr" + } + ], + "short": "inductance", + "type": "derived", + "dimension": { + "id": "NISTd23", + "name": "inductance", + "expression": "L2Β·MΒ·T-2Β·I-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu22", + "name": "henry", + "symbol": "H" + }, + { + "id": "NISTu50", + "name": "abhenry", + "symbol": "abH" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq32" + }, + { + "type": "unitsml", + "id": "q:inductance" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ELIN" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Inductance" + } + ] + }, + { + "id": "NISTq33", + "unitsml_id": "q:mass_concentration", + "name": "mass concentration", + "names": [ + { + "value": "mass concentration", + "lang": "en" + }, + { + "value": "concentration massique", + "lang": "fr" + } + ], + "short": "mass_concentration", + "type": "derived", + "dimension": { + "id": "NISTd30", + "name": "mass density", + "expression": "L-3Β·M", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu27p10'3.u1e-3/1", + "name": "kilogram per cubic meter", + "symbol": "kgΒ·m⁻³" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq33" + }, + { + "type": "unitsml", + "id": "q:mass_concentration" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/MACO" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/MassConcentration" + } + ] + }, + { + "id": "NISTq34", + "unitsml_id": "q:celsius_temperature", + "name": "Celsius temperature", + "names": [ + { + "value": "Celsius temperature", + "lang": "en" + }, + { + "value": "tempΓ©rature Celsius", + "lang": "fr" + } + ], + "short": "celsius_temperature", + "type": "derived", + "dimension": { + "id": "NISTd5", + "name": "temperature", + "expression": "Theta", + "components": [ + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu23", + "name": "degree Celsius", + "symbol": "Β°C" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq34" + }, + { + "type": "unitsml", + "id": "q:celsius_temperature" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/TEMC" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/CelsiusTemperature" + } + ] + }, + { + "id": "NISTq35", + "unitsml_id": "q:activity_referred_to_a_radionuclide", + "name": "activity referred to a radionuclide", + "names": [ + { + "value": "activity referred to a radionuclide", + "lang": "en" + }, + { + "value": "activitΓ© d'un radionuclΓ©ide", + "lang": "fr" + } + ], + "short": "activity_referred_to_a_radionuclide", + "type": "derived", + "dimension": { + "id": "NISTd24", + "name": "frequency", + "expression": "T-1", + "components": [ + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu25", + "name": "becquerel", + "symbol": "Bq" + }, + { + "id": "NISTu98", + "name": "curie", + "symbol": "Ci" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq35" + }, + { + "type": "unitsml", + "id": "q:activity_referred_to_a_radionuclide" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ARRN" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Activity" + } + ] + }, + { + "id": "NISTq36", + "unitsml_id": "q:absorbed_dose", + "name": "absorbed dose", + "names": [ + { + "value": "absorbed dose", + "lang": "en" + }, + { + "value": "dose absorbΓ©e", + "lang": "fr" + } + ], + "short": "absorbed_dose", + "type": "derived", + "dimension": { + "id": "NISTd25", + "name": "absorbed dose", + "expression": "L2Β·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu28", + "name": "gray", + "symbol": "Gy" + }, + { + "id": "NISTu99", + "name": "rad (absorbed dose)", + "symbol": "rad" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq36" + }, + { + "type": "unitsml", + "id": "q:absorbed_dose" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ABDO" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/AbsorbedDose" + } + ] + }, + { + "id": "NISTq37", + "unitsml_id": "q:specific_energy_imparted", + "name": "specific energy imparted", + "names": [ + { + "value": "specific energy imparted", + "lang": "en" + } + ], + "short": "specific_energy_imparted", + "type": "derived", + "dimension": { + "id": "NISTd25", + "name": "absorbed dose", + "expression": "L2Β·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu28", + "name": "gray", + "symbol": "Gy" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq37" + }, + { + "type": "unitsml", + "id": "q:specific_energy_imparted" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/SpecificEnergyImparted" + } + ] + }, + { + "id": "NISTq38", + "unitsml_id": "q:kerma", + "name": "kerma", + "names": [ + { + "value": "kerma", + "lang": "en" + }, + { + "value": "kerma", + "lang": "fr" + } + ], + "short": "kerma", + "type": "derived", + "dimension": { + "id": "NISTd25", + "name": "absorbed dose", + "expression": "L2Β·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu28", + "name": "gray", + "symbol": "Gy" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq38" + }, + { + "type": "unitsml", + "id": "q:kerma" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/KRMA" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Kerma" + } + ] + }, + { + "id": "NISTq39", + "unitsml_id": "q:dose_equivalent", + "name": "dose equivalent", + "names": [ + { + "value": "dose equivalent", + "lang": "en" + }, + { + "value": "Γ©quivalent de dose", + "lang": "fr" + } + ], + "short": "dose_equivalent", + "type": "derived", + "dimension": { + "id": "NISTd25", + "name": "absorbed dose", + "expression": "L2Β·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu100", + "name": "rem", + "symbol": "rem" + }, + { + "id": "NISTu29", + "name": "sievert", + "symbol": "Sv" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq39" + }, + { + "type": "unitsml", + "id": "q:dose_equivalent" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/DOEQ" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/DoseEquivalent" + } + ] + }, + { + "id": "NISTq4", + "unitsml_id": "q:electric_current", + "name": "electric current", + "names": [ + { + "value": "electric current", + "lang": "en" + }, + { + "value": "courant Γ©lectrique", + "lang": "fr" + } + ], + "short": "electric_current", + "type": "base", + "dimension": { + "id": "NISTd4", + "name": "electric current", + "expression": "I", + "components": [ + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu257", + "name": "atomic unit of current", + "symbol": "𝑒𝐸ₕ/ℏ" + }, + { + "id": "NISTu4", + "name": "ampere", + "symbol": "A" + }, + { + "id": "NISTu47", + "name": "abampere", + "symbol": "abA" + }, + { + "id": "NISTu55", + "name": "biot", + "symbol": "Bi" + } + ], + "unit_count": 4, + "identifiers": [ + { + "type": "nist", + "id": "NISTq4" + }, + { + "type": "unitsml", + "id": "q:electric_current" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ELCU" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ElectricCurrent" + } + ] + }, + { + "id": "NISTq40", + "unitsml_id": "q:ambient_dose_equivalent", + "name": "ambient dose equivalent", + "names": [ + { + "value": "ambient dose equivalent", + "lang": "en" + } + ], + "short": "ambient_dose_equivalent", + "type": "derived", + "dimension": { + "id": "NISTd25", + "name": "absorbed dose", + "expression": "L2Β·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [], + "unit_count": 0, + "identifiers": [ + { + "type": "nist", + "id": "NISTq40" + }, + { + "type": "unitsml", + "id": "q:ambient_dose_equivalent" + } + ], + "references": [] + }, + { + "id": "NISTq41", + "unitsml_id": "q:directional_dose_equivalent", + "name": "directional dose equivalent", + "names": [ + { + "value": "directional dose equivalent", + "lang": "en" + } + ], + "short": "directional_dose_equivalent", + "type": "derived", + "dimension": { + "id": "NISTd25", + "name": "absorbed dose", + "expression": "L2Β·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [], + "unit_count": 0, + "identifiers": [ + { + "type": "nist", + "id": "NISTq41" + }, + { + "type": "unitsml", + "id": "q:directional_dose_equivalent" + } + ], + "references": [] + }, + { + "id": "NISTq42", + "unitsml_id": "q:personal_dose_equivalent", + "name": "personal dose equivalent", + "names": [ + { + "value": "personal dose equivalent", + "lang": "en" + } + ], + "short": "personal_dose_equivalent", + "type": "derived", + "dimension": { + "id": "NISTd25", + "name": "absorbed dose", + "expression": "L2Β·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [], + "unit_count": 0, + "identifiers": [ + { + "type": "nist", + "id": "NISTq42" + }, + { + "type": "unitsml", + "id": "q:personal_dose_equivalent" + } + ], + "references": [] + }, + { + "id": "NISTq43", + "unitsml_id": "q:organ_dose_equivalent", + "name": "organ dose equivalent", + "names": [ + { + "value": "organ dose equivalent", + "lang": "en" + } + ], + "short": "organ_dose_equivalent", + "type": "derived", + "dimension": { + "id": "NISTd25", + "name": "absorbed dose", + "expression": "L2Β·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [], + "unit_count": 0, + "identifiers": [ + { + "type": "nist", + "id": "NISTq43" + }, + { + "type": "unitsml", + "id": "q:organ_dose_equivalent" + } + ], + "references": [] + }, + { + "id": "NISTq44", + "unitsml_id": "q:catalytic_activity", + "name": "catalytic activity", + "names": [ + { + "value": "catalytic activity", + "lang": "en" + }, + { + "value": "activitΓ© catalytique", + "lang": "fr" + } + ], + "short": "catalytic_activity", + "type": "derived", + "dimension": { + "id": "NISTd26", + "name": "catalytic activity", + "expression": "T-1Β·N", + "components": [ + { + "key": "time", + "symbol": "T", + "power": -1 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu30", + "name": "katal", + "symbol": "kat" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq44" + }, + { + "type": "unitsml", + "id": "q:catalytic_activity" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/CATA" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/CatalyticActivity" + } + ] + }, + { + "id": "NISTq45", + "unitsml_id": "q:frequency", + "name": "frequency", + "names": [ + { + "value": "frequency", + "lang": "en" + }, + { + "value": "frΓ©quence", + "lang": "fr" + } + ], + "short": "frequency", + "type": "derived", + "dimension": { + "id": "NISTd24", + "name": "frequency", + "expression": "T-1", + "components": [ + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu31", + "name": "hertz", + "symbol": "Hz" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq45" + }, + { + "type": "unitsml", + "id": "q:frequency" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/FREQ" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Frequency" + } + ] + }, + { + "id": "NISTq46", + "unitsml_id": "q:luminous_flux", + "name": "luminous flux", + "names": [ + { + "value": "luminous flux", + "lang": "en" + }, + { + "value": "flux lumineux", + "lang": "fr" + } + ], + "short": "luminous_flux", + "type": "derived", + "dimension": { + "id": "NISTd7", + "name": "luminous intensity", + "expression": "J", + "components": [ + { + "key": "luminous_intensity", + "symbol": "J", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu32", + "name": "lumen", + "symbol": "lm" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq46" + }, + { + "type": "unitsml", + "id": "q:luminous_flux" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/LUFL" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/LuminousFlux" + } + ] + }, + { + "id": "NISTq47", + "unitsml_id": "q:illuminance", + "name": "illuminance", + "names": [ + { + "value": "illuminance", + "lang": "en" + }, + { + "value": "Γ©clairement lumineux", + "lang": "fr" + } + ], + "short": "illuminance", + "type": "derived", + "dimension": { + "id": "NISTd27", + "name": "illuminance", + "expression": "L-2Β·J", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "luminous_intensity", + "symbol": "J", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu276", + "name": "footcandle", + "symbol": "ft.c" + }, + { + "id": "NISTu33", + "name": "lux", + "symbol": "lx" + }, + { + "id": "NISTu85", + "name": "phot", + "symbol": "ph" + } + ], + "unit_count": 3, + "identifiers": [ + { + "type": "nist", + "id": "NISTq47" + }, + { + "type": "unitsml", + "id": "q:illuminance" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ILLU" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Illuminance" + } + ] + }, + { + "id": "NISTq48", + "unitsml_id": "q:distance", + "name": "distance", + "names": [ + { + "value": "distance", + "lang": "en" + } + ], + "short": "distance", + "type": "base", + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + { + "id": "NISTu122", + "name": "micron", + "symbol": "ΞΌ" + }, + { + "id": "NISTu123", + "name": "mil (length)", + "symbol": "thou" + }, + { + "id": "NISTu131", + "name": "nautical mile", + "symbol": "M" + }, + { + "id": "NISTu26", + "name": "fermi", + "symbol": "fermi" + }, + { + "id": "NISTu278", + "name": "pica (computer)", + "symbol": "pc" + }, + { + "id": "NISTu280", + "name": "point (computer)", + "symbol": "pt" + }, + { + "id": "NISTu39", + "name": "Γ₯ngstrΓΆm", + "symbol": "β„«" + }, + { + "id": "NISTu78", + "name": "foot", + "symbol": "β€²" + }, + { + "id": "NISTu8", + "name": "inch", + "symbol": "β€³" + }, + { + "id": "NISTu83", + "name": "mile", + "symbol": "mi" + }, + { + "id": "NISTu84", + "name": "yard", + "symbol": "yd" + } + ], + "unit_count": 12, + "identifiers": [ + { + "type": "nist", + "id": "NISTq48" + }, + { + "type": "unitsml", + "id": "q:distance" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Distance" + } + ] + }, + { + "id": "NISTq49", + "unitsml_id": "q:acceleration", + "name": "acceleration", + "names": [ + { + "value": "acceleration", + "lang": "en" + }, + { + "value": "accΓ©lΓ©ration", + "lang": "fr" + } + ], + "short": "acceleration", + "type": "derived", + "dimension": { + "id": "NISTd28", + "name": "acceleration", + "expression": "LΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1.u3e-2/1", + "name": "meter per second squared", + "symbol": "mΒ·s⁻²" + }, + { + "id": "NISTu143", + "name": "gal", + "symbol": "Gal" + }, + { + "id": "NISTu167", + "name": "foot per second squared", + "symbol": "ft/sΒ²" + } + ], + "unit_count": 3, + "identifiers": [ + { + "type": "nist", + "id": "NISTq49" + }, + { + "type": "unitsml", + "id": "q:acceleration" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ACCE" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Acceleration" + } + ] + }, + { + "id": "NISTq5", + "unitsml_id": "q:temperature", + "name": "thermodynamic temperature", + "names": [ + { + "value": "thermodynamic temperature", + "lang": "en" + }, + { + "value": "tempΓ©rature thermodynamique", + "lang": "fr" + } + ], + "short": "temperature", + "type": "base", + "dimension": { + "id": "NISTd5", + "name": "temperature", + "expression": "Theta", + "components": [ + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu288", + "name": "degree Rankine", + "symbol": "Β°R" + }, + { + "id": "NISTu5", + "name": "kelvin", + "symbol": "Β°K" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq5" + }, + { + "type": "unitsml", + "id": "q:temperature" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/TEMT" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ThermodynamicTemperature" + } + ] + }, + { + "id": "NISTq50", + "unitsml_id": "q:wavenumber", + "name": "wavenumber", + "names": [ + { + "value": "wavenumber", + "lang": "en" + }, + { + "value": "repetency", + "lang": "en" + }, + { + "value": "nombre d'ondes", + "lang": "fr" + } + ], + "short": "wavenumber", + "type": "derived", + "dimension": { + "id": "NISTd29", + "name": "wavenumber", + "expression": "L-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu120", + "name": "kayser", + "symbol": "K" + }, + { + "id": "NISTu1e-1/1", + "name": "meter to the power minus one", + "symbol": "m⁻¹" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq50" + }, + { + "type": "unitsml", + "id": "q:wavenumber" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/WANU" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Repetency" + } + ] + }, + { + "id": "NISTq51", + "unitsml_id": "q:density", + "name": "density", + "names": [ + { + "value": "density", + "lang": "en" + }, + { + "value": "mass density", + "lang": "en" + }, + { + "value": "masse volumique", + "lang": "fr" + } + ], + "short": "density", + "type": "derived", + "dimension": { + "id": "NISTd30", + "name": "mass density", + "expression": "L-3Β·M", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu188", + "name": "kilogram per liter", + "symbol": "kg/l" + }, + { + "id": "NISTu189", + "name": "metric ton per cubic meter", + "symbol": "t/mΒ³" + }, + { + "id": "NISTu204", + "name": "pound per cubic foot", + "symbol": "lb/ftΒ³" + }, + { + "id": "NISTu27p10'3.u1e-3/1", + "name": "kilogram per cubic meter", + "symbol": "kgΒ·m⁻³" + } + ], + "unit_count": 4, + "identifiers": [ + { + "type": "nist", + "id": "NISTq51" + }, + { + "type": "unitsml", + "id": "q:density" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/DENS" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Density" + } + ] + }, + { + "id": "NISTq52", + "unitsml_id": "q:specific_volume", + "name": "specific volume", + "names": [ + { + "value": "specific volume", + "lang": "en" + }, + { + "value": "massic volume", + "lang": "en" + }, + { + "value": "volume massique", + "lang": "fr" + } + ], + "short": "specific_volume", + "type": "derived", + "dimension": { + "id": "NISTd31", + "name": "specific volume", + "expression": "L3Β·M-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1e3/1.u27p10'3", + "name": "cubic meter per kilogram", + "symbol": "mΒ³Β·kg" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq52" + }, + { + "type": "unitsml", + "id": "q:specific_volume" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/SPVO" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/SpecificVolume" + } + ] + }, + { + "id": "NISTq53", + "unitsml_id": "q:current_density", + "name": "current density", + "names": [ + { + "value": "current density", + "lang": "en" + }, + { + "value": "densitΓ© de courant", + "lang": "fr" + } + ], + "short": "current_density", + "type": "derived", + "dimension": { + "id": "NISTd32", + "name": "current density", + "expression": "L-2Β·I", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu4.u1e-2/1", + "name": "ampere per square meter", + "symbol": "AΒ·m⁻²" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq53" + }, + { + "type": "unitsml", + "id": "q:current_density" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/CUDE" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Conductivity" + } + ] + }, + { + "id": "NISTq54", + "unitsml_id": "q:magnetic_field_strength", + "name": "magnetic field strength", + "names": [ + { + "value": "magnetic field strength", + "lang": "en" + }, + { + "value": "champ magnΓ©tique", + "lang": "fr" + } + ], + "short": "magnetic_field_strength", + "type": "derived", + "dimension": { + "id": "NISTd33", + "name": "magnetic field strength", + "expression": "L-1Β·I", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu4.u1e-1/1", + "name": "ampere per meter", + "symbol": "AΒ·m⁻¹" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq54" + }, + { + "type": "unitsml", + "id": "q:magnetic_field_strength" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/MAFD" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/MagneticFieldStrength_H" + } + ] + }, + { + "id": "NISTq55", + "unitsml_id": "q:amount_concentration", + "name": "amount of substance concentration", + "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", + "type": "derived", + "dimension": { + "id": "NISTd34", + "name": "concentration", + "expression": "L-3Β·N", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu366", + "name": "mole per liter", + "symbol": "mol/L" + }, + { + "id": "NISTu6.u1e-3/1", + "name": "mole per cubic meter", + "symbol": "molΒ·m⁻³" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq55" + }, + { + "type": "unitsml", + "id": "q:amount_concentration" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/AMSC" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/MolecularConcentration" + } + ] + }, + { + "id": "NISTq56", + "unitsml_id": "q:luminance", + "name": "luminance", + "names": [ + { + "value": "luminance", + "lang": "en" + }, + { + "value": "luminance lumineuse", + "lang": "fr" + } + ], + "short": "luminance", + "type": "derived", + "dimension": { + "id": "NISTd27", + "name": "illuminance", + "expression": "L-2Β·J", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "luminous_intensity", + "symbol": "J", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu124", + "name": "stilb", + "symbol": "sb" + }, + { + "id": "NISTu222", + "name": "lambert", + "symbol": "L" + }, + { + "id": "NISTu277", + "name": "footlambert", + "symbol": "ft.L" + }, + { + "id": "NISTu7.u1e-2/1", + "name": "candela per square meter", + "symbol": "cdΒ·m⁻²" + } + ], + "unit_count": 4, + "identifiers": [ + { + "type": "nist", + "id": "NISTq56" + }, + { + "type": "unitsml", + "id": "q:luminance" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/LUMA" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Luminance" + } + ] + }, + { + "id": "NISTq57", + "unitsml_id": "q:angular_velocity", + "name": "angular velocity", + "names": [ + { + "value": "angular velocity", + "lang": "en" + }, + { + "value": "vitesse angulaire", + "lang": "fr" + } + ], + "short": "angular_velocity", + "type": "derived", + "dimension": { + "id": "NISTd11", + "name": "velocity", + "expression": "LΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu9.u3e-1/1", + "name": "radian per second", + "symbol": "rad/s" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq57" + }, + { + "type": "unitsml", + "id": "q:angular_velocity" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/VELA" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/AngularVelocity" + } + ] + }, + { + "id": "NISTq58", + "unitsml_id": "q:angular_acceleration", + "name": "angular acceleration", + "names": [ + { + "value": "angular acceleration", + "lang": "en" + }, + { + "value": "accelΓ©ration angulaire", + "lang": "fr" + } + ], + "short": "angular_acceleration", + "type": "derived", + "dimension": { + "id": "NISTd35", + "name": "angular acceleration", + "expression": "T-2", + "components": [ + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu9.u3e-2/1", + "name": "radian per second squared", + "symbol": "rad/sΒ²" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq58" + }, + { + "type": "unitsml", + "id": "q:angular_acceleration" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ACCA" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/AngularAcceleration" + } + ] + }, + { + "id": "NISTq59", + "unitsml_id": "q:dynamic_viscosity", + "name": "dynamic viscosity", + "names": [ + { + "value": "dynamic viscosity", + "lang": "en" + }, + { + "value": "viscositΓ© dynamique", + "lang": "fr" + } + ], + "short": "dynamic_viscosity", + "type": "derived", + "dimension": { + "id": "NISTd36", + "name": "dynamic viscosity", + "expression": "L-1Β·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu12.u3", + "name": "pascal second", + "symbol": "PaΒ·s" + }, + { + "id": "NISTu128", + "name": "poise", + "symbol": "P" + }, + { + "id": "NISTu97", + "name": "centipoise", + "symbol": "cP" + } + ], + "unit_count": 3, + "identifiers": [ + { + "type": "nist", + "id": "NISTq59" + }, + { + "type": "unitsml", + "id": "q:dynamic_viscosity" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/DYVI" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/DynamicViscosity" + } + ] + }, + { + "id": "NISTq6", + "unitsml_id": "q:substance_amount", + "name": "amount of substance", + "names": [ + { + "value": "amount of substance", + "lang": "en" + }, + { + "value": "quantitΓ© de matiΓ¨re", + "lang": "fr" + } + ], + "short": "substance_amount", + "type": "base", + "dimension": { + "id": "NISTd6", + "name": "substance amount", + "expression": "N", + "components": [ + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu348", + "name": "pound-mole", + "symbol": "lbmol" + }, + { + "id": "NISTu6", + "name": "mole", + "symbol": "mol" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq6" + }, + { + "type": "unitsml", + "id": "q:substance_amount" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/AMSU" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/AmountOfSubstance" + } + ] + }, + { + "id": "NISTq60", + "unitsml_id": "q:moment_of_force", + "name": "moment of force", + "names": [ + { + "value": "moment of force", + "lang": "en" + }, + { + "value": "moment d’une force", + "lang": "fr" + } + ], + "short": "moment_of_force", + "type": "derived", + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu11.u1", + "name": "newton meter", + "symbol": "NΒ·m" + }, + { + "id": "NISTu126", + "name": "kilogram-force meter", + "symbol": "kgfΒ·m" + }, + { + "id": "NISTu206", + "name": "foot pound-force", + "symbol": "ftΒ·lbf" + } + ], + "unit_count": 3, + "identifiers": [ + { + "type": "nist", + "id": "NISTq60" + }, + { + "type": "unitsml", + "id": "q:moment_of_force" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/TORQ" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/MomentOfForce" + } + ] + }, + { + "id": "NISTq61", + "unitsml_id": "q:surface_tension", + "name": "surface tension", + "names": [ + { + "value": "surface tension", + "lang": "en" + }, + { + "value": "tension superficielle", + "lang": "fr" + } + ], + "short": "surface_tension", + "type": "derived", + "dimension": { + "id": "NISTd37", + "name": "surface tension", + "expression": "MΒ·T-2", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu11.u1e-1/1", + "name": "newton per meter", + "symbol": "N/m" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq61" + }, + { + "type": "unitsml", + "id": "q:surface_tension" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/SUTE" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/SurfaceTension" + } + ] + }, + { + "id": "NISTq62", + "unitsml_id": "q:heat_flux_density", + "name": "heat flux density", + "names": [ + { + "value": "heat flux density", + "lang": "en" + }, + { + "value": "flux thermique surfacique", + "lang": "fr" + } + ], + "short": "heat_flux_density", + "type": "derived", + "dimension": { + "id": "NISTd38", + "name": "heat flux density", + "expression": "MΒ·T-3", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu14.u1e-2/1", + "name": "watt per square meter", + "symbol": "W/mΒ²" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq62" + }, + { + "type": "unitsml", + "id": "q:heat_flux_density" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/HEFD" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/HeatFluxDensity" + } + ] + }, + { + "id": "NISTq63", + "unitsml_id": "q:heat_capacity", + "name": "heat capacity", + "names": [ + { + "value": "heat capacity", + "lang": "en" + }, + { + "value": "capacitΓ© thermique", + "lang": "fr" + } + ], + "short": "heat_capacity", + "type": "derived", + "dimension": { + "id": "NISTd39", + "name": "heat capacity", + "expression": "L2Β·MΒ·T-2Β·Theta-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu13.u5e-1/1", + "name": "joule per kelvin", + "symbol": "J/K" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq63" + }, + { + "type": "unitsml", + "id": "q:heat_capacity" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/HECA" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/HeatCapacity" + } + ] + }, + { + "id": "NISTq64", + "unitsml_id": "q:specific_heat_capacity", + "name": "specific heat capacity", + "names": [ + { + "value": "specific heat capacity", + "lang": "en" + }, + { + "value": "capacitΓ© thermique massique", + "lang": "fr" + } + ], + "short": "specific_heat_capacity", + "type": "derived", + "dimension": { + "id": "NISTd40", + "name": "specific heat capacity", + "expression": "L2Β·T-2Β·Theta-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu13.u27p10'3e-1/1.u5e-1/1", + "name": "joule per kilogram kelvin", + "symbol": "J/(kgΒ·K)" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq64" + }, + { + "type": "unitsml", + "id": "q:specific_heat_capacity" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/SHEC" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/SpecificHeatCapacity" + } + ] + }, + { + "id": "NISTq65", + "unitsml_id": "q:specific_energy", + "name": "specific energy", + "names": [ + { + "value": "specific energy", + "lang": "en" + }, + { + "value": "Γ©nergie massique", + "lang": "fr" + } + ], + "short": "specific_energy", + "type": "derived", + "dimension": { + "id": "NISTd25", + "name": "absorbed dose", + "expression": "L2Β·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu13.u27p10'3e-1/1", + "name": "joule per kilogram", + "symbol": "J/kg" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq65" + }, + { + "type": "unitsml", + "id": "q:specific_energy" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/SENG" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/SpecificEnergy" + } + ] + }, + { + "id": "NISTq66", + "unitsml_id": "q:thermal_conductivity", + "name": "thermal conductivity", + "names": [ + { + "value": "thermal conductivity", + "lang": "en" + }, + { + "value": "conductivitΓ© thermique", + "lang": "fr" + } + ], + "short": "thermal_conductivity", + "type": "derived", + "dimension": { + "id": "NISTd41", + "name": "thermal conductivity", + "expression": "LΒ·MΒ·T-3Β·Theta-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu14.u1e-1/1.u5e-1/1", + "name": "watt per meter kelvin", + "symbol": "W/(mΒ·K)" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq66" + }, + { + "type": "unitsml", + "id": "q:thermal_conductivity" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/TCON" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ThermalConductivity" + } + ] + }, + { + "id": "NISTq67", + "unitsml_id": "q:energy_density", + "name": "energy density", + "names": [ + { + "value": "energy density", + "lang": "en" + }, + { + "value": "énergie volumique", + "lang": "fr" + } + ], + "short": "energy_density", + "type": "derived", + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu13.u1e-3/1", + "name": "joule per cubic meter", + "symbol": "J/mΒ³" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq67" + }, + { + "type": "unitsml", + "id": "q:energy_density" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ENGD" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/EnergyDensity" + } + ] + }, + { + "id": "NISTq68", + "unitsml_id": "q:electric_field_strength", + "name": "electric field strength", + "names": [ + { + "value": "electric field strength", + "lang": "en" + }, + { + "value": "champ électrique", + "lang": "fr" + } + ], + "short": "electric_field_strength", + "type": "derived", + "dimension": { + "id": "NISTd42", + "name": "electric field strength", + "expression": "LΒ·MΒ·T-3Β·I-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu16.u1e-1/1", + "name": "volt per meter", + "symbol": "V/m" + }, + { + "id": "NISTu259", + "name": "atomic unit of electric field", + "symbol": "𝐸ₕ/π‘’π‘Žβ‚€" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq68" + }, + { + "type": "unitsml", + "id": "q:electric_field_strength" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ELFS" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ElectricFieldStrength" + } + ] + }, + { + "id": "NISTq69", + "unitsml_id": "q:electric_charge_density", + "name": "electric charge density", + "names": [ + { + "value": "electric charge density", + "lang": "en" + }, + { + "value": "charge Γ©lectrique volumique", + "lang": "fr" + } + ], + "short": "electric_charge_density", + "type": "derived", + "dimension": { + "id": "NISTd43", + "name": "electric charge density", + "expression": "L-3Β·TΒ·I", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu15.u1e-3/1", + "name": "coulomb per cubic meter", + "symbol": "C/mΒ³" + }, + { + "id": "NISTu256", + "name": "atomic unit of charge density", + "symbol": "π‘’π‘Žβ‚€Β³" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq69" + }, + { + "type": "unitsml", + "id": "q:electric_charge_density" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ELCD" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ElectricChargeDensity" + } + ] + }, + { + "id": "NISTq7", + "unitsml_id": "q:luminous_intensity", + "name": "luminous intensity", + "names": [ + { + "value": "luminous intensity", + "lang": "en" + }, + { + "value": "intensitΓ© lumineuse", + "lang": "fr" + } + ], + "short": "luminous_intensity", + "type": "base", + "dimension": { + "id": "NISTd7", + "name": "luminous intensity", + "expression": "J", + "components": [ + { + "key": "luminous_intensity", + "symbol": "J", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu7", + "name": "candela", + "symbol": "cd" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq7" + }, + { + "type": "unitsml", + "id": "q:luminous_intensity" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/LUIN" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/LuminousIntensity" + } + ] + }, + { + "id": "NISTq70", + "unitsml_id": "q:electric_flux_density", + "name": "electric flux density", + "names": [ + { + "value": "electric flux density", + "lang": "en" + }, + { + "value": "induction Γ©lectrique", + "lang": "fr" + } + ], + "short": "electric_flux_density", + "type": "derived", + "dimension": { + "id": "NISTd44", + "name": "electric flux density", + "expression": "L-2Β·TΒ·I", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [], + "unit_count": 0, + "identifiers": [ + { + "type": "nist", + "id": "NISTq70" + }, + { + "type": "unitsml", + "id": "q:electric_flux_density" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ELFD" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ElectricFluxDensity" + } + ] + }, + { + "id": "NISTq71", + "unitsml_id": "q:permittivity", + "name": "permittivity", + "names": [ + { + "value": "permittivity", + "lang": "en" + }, + { + "value": "permittivitΓ©", + "lang": "fr" + } + ], + "short": "permittivity", + "type": "derived", + "dimension": { + "id": "NISTd45", + "name": "permittivity", + "expression": "L-3Β·M-1Β·T4Β·I2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 4 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu17.u1e-1/1", + "name": "farad per meter", + "symbol": "F/m" + }, + { + "id": "NISTu293", + "name": "atomic unit of permittivity", + "symbol": "𝑒²/π‘Žβ‚€πΈβ‚•" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq71" + }, + { + "type": "unitsml", + "id": "q:permittivity" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/PRMI" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Permittivity" + } + ] + }, + { + "id": "NISTq72", + "unitsml_id": "q:permeability", + "name": "permeability", + "names": [ + { + "value": "permeability", + "lang": "en" + }, + { + "value": "permΓ©abilittΓ©", + "lang": "fr" + } + ], + "short": "permeability", + "type": "derived", + "dimension": { + "id": "NISTd46", + "name": "permeability", + "expression": "LΒ·MΒ·T-2Β·I-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu157", + "name": "darcy", + "symbol": "D" + }, + { + "id": "NISTu22.u1e-1/1", + "name": "henry per meter", + "symbol": "H/m" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq72" + }, + { + "type": "unitsml", + "id": "q:permeability" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/PRME" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ElectromagneticPermeability" + } + ] + }, + { + "id": "NISTq73", + "unitsml_id": "q:molar_energy", + "name": "molar energy", + "names": [ + { + "value": "molar energy", + "lang": "en" + }, + { + "value": "Γ©nergie molaire", + "lang": "fr" + } + ], + "short": "molar_energy", + "type": "derived", + "dimension": { + "id": "NISTd47", + "name": "molar energy", + "expression": "L2Β·MΒ·T-2Β·N-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu13.u6e-1/1", + "name": "joule per mole", + "symbol": "J/mol" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq73" + }, + { + "type": "unitsml", + "id": "q:molar_energy" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/MOEG" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/MolarEnergy" + } + ] + }, + { + "id": "NISTq74", + "unitsml_id": "q:molar_entropy", + "name": "molar entropy", + "names": [ + { + "value": "molar entropy", + "lang": "en" + }, + { + "value": "entropie molaire", + "lang": "fr" + } + ], + "short": "molar_entropy", + "type": "derived", + "dimension": { + "id": "NISTd48", + "name": "molar entropy", + "expression": "L2Β·MΒ·T-2Β·Theta-1Β·N-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu13.u6e-1/1.u5e-1/1", + "name": "joule per mole kelvin", + "symbol": "J/(molΒ·K)" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq74" + }, + { + "type": "unitsml", + "id": "q:molar_entropy" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/MOEN" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/MolarEntropy" + } + ] + }, + { + "id": "NISTq75", + "unitsml_id": "q:exposure_x_and_gamma_rays", + "name": "exposure (x and gamma rays)", + "names": [ + { + "value": "exposure (x and gamma rays)", + "lang": "en" + } + ], + "short": "exposure_x_and_gamma_rays", + "type": "derived", + "dimension": { + "id": "NISTd49", + "name": "exposure", + "expression": "M-1Β·TΒ·I", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu118", + "name": "roentgen", + "symbol": "R" + }, + { + "id": "NISTu15.u27p10'3e-1/1", + "name": "coulomb per kilogram", + "symbol": "C/kg" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq75" + }, + { + "type": "unitsml", + "id": "q:exposure_x_and_gamma_rays" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ExposureOfIonizingRadiation" + } + ] + }, + { + "id": "NISTq76", + "unitsml_id": "q:absorbed_dose_rate", + "name": "absorbed dose rate", + "names": [ + { + "value": "absorbed dose rate", + "lang": "en" + }, + { + "value": "dΓ©bit de dose absorbΓ©e", + "lang": "fr" + } + ], + "short": "absorbed_dose_rate", + "type": "derived", + "dimension": { + "id": "NISTd50", + "name": "absorbed dose rate", + "expression": "L2Β·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu28.u3e-1/1", + "name": "gray per second", + "symbol": "Gy/s" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq76" + }, + { + "type": "unitsml", + "id": "q:absorbed_dose_rate" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ABDR" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/AbsorbedDoseRate" + } + ] + }, + { + "id": "NISTq77", + "unitsml_id": "q:potential_energy", + "name": "potential energy", + "names": [ + { + "value": "potential energy", + "lang": "en" + } + ], + "short": "potential_energy", + "type": "derived", + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu117", + "name": "therm (EC)", + "symbol": "thm (EC)" + }, + { + "id": "NISTu13", + "name": "joule", + "symbol": "J" + }, + { + "id": "NISTu14.u3", + "name": "watt second", + "symbol": "WΒ·s" + }, + { + "id": "NISTu206", + "name": "foot pound-force", + "symbol": "ftΒ·lbf" + }, + { + "id": "NISTu227", + "name": "thermochemical calorie", + "symbol": "cal" + }, + { + "id": "NISTu331", + "name": "therm (US)", + "symbol": "thm (US)" + }, + { + "id": "NISTu60", + "name": "I.T. calorie", + "symbol": "cal_IT" + }, + { + "id": "NISTu62", + "name": "erg", + "symbol": "erg" + }, + { + "id": "NISTu63", + "name": "kilocalorie_IT", + "symbol": "kcal_IT" + }, + { + "id": "NISTu64", + "name": "kilocalorie_th", + "symbol": "kcal_th" + }, + { + "id": "NISTu65", + "name": "kilowatt hour", + "symbol": "kWΒ·h" + }, + { + "id": "NISTu69", + "name": "watt hour", + "symbol": "WΒ·h" + } + ], + "unit_count": 12, + "identifiers": [ + { + "type": "nist", + "id": "NISTq77" + }, + { + "type": "unitsml", + "id": "q:potential_energy" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/PotentialEnergy" + } + ] + }, + { + "id": "NISTq78", + "unitsml_id": "q:irradiance", + "name": "irradiance", + "names": [ + { + "value": "irradiance", + "lang": "en" + } + ], + "short": "irradiance", + "type": "derived", + "dimension": { + "id": "NISTd38", + "name": "heat flux density", + "expression": "MΒ·T-3", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu14.u1e-2/1", + "name": "watt per square meter", + "symbol": "W/mΒ²" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq78" + }, + { + "type": "unitsml", + "id": "q:irradiance" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Irradiance" + } + ] + }, + { + "id": "NISTq79", + "unitsml_id": "q:entropy", + "name": "entropy", + "names": [ + { + "value": "entropy", + "lang": "en" + } + ], + "short": "entropy", + "type": "derived", + "dimension": { + "id": "NISTd39", + "name": "heat capacity", + "expression": "L2Β·MΒ·T-2Β·Theta-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu13.u5e-1/1", + "name": "joule per kelvin", + "symbol": "J/K" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq79" + }, + { + "type": "unitsml", + "id": "q:entropy" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Entropy" + } + ] + }, + { + "id": "NISTq8", + "unitsml_id": "q:area", + "name": "area", + "names": [ + { + "value": "area", + "lang": "en" + }, + { + "value": "superficie", + "lang": "fr" + } + ], + "short": "area", + "type": "derived", + "dimension": { + "id": "NISTd8", + "name": "area", + "expression": "L2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu164", + "name": "square yard", + "symbol": "ydΒ²" + }, + { + "id": "NISTu165", + "name": "square mile", + "symbol": "miΒ²" + }, + { + "id": "NISTu1e2/1", + "name": "square meter", + "symbol": "mΒ²" + }, + { + "id": "NISTu283", + "name": "circular mil", + "symbol": "cmil" + }, + { + "id": "NISTu317", + "name": "acre (based on US survey foot)", + "symbol": "ac" + }, + { + "id": "NISTu42", + "name": "are", + "symbol": "a" + }, + { + "id": "NISTu43", + "name": "barn", + "symbol": "b" + }, + { + "id": "NISTu44", + "name": "hectare", + "symbol": "ha" + }, + { + "id": "NISTu45", + "name": "square foot", + "symbol": "ftΒ²" + }, + { + "id": "NISTu46", + "name": "square inch", + "symbol": "inΒ²" + } + ], + "unit_count": 10, + "identifiers": [ + { + "type": "nist", + "id": "NISTq8" + }, + { + "type": "unitsml", + "id": "q:area" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/AREA" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Area" + } + ] + }, + { + "id": "NISTq80", + "unitsml_id": "q:specific_entropy", + "name": "specific entropy", + "names": [ + { + "value": "specific entropy", + "lang": "en" + } + ], + "short": "specific_entropy", + "type": "derived", + "dimension": { + "id": "NISTd40", + "name": "specific heat capacity", + "expression": "L2Β·T-2Β·Theta-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu13.u27p10'3e-1/1.u5e-1/1", + "name": "joule per kilogram kelvin", + "symbol": "J/(kgΒ·K)" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq80" + }, + { + "type": "unitsml", + "id": "q:specific_entropy" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/SpecificEntropy" + } + ] + }, + { + "id": "NISTq81", + "unitsml_id": "q:surface_charge_density", + "name": "surface charge density", + "names": [ + { + "value": "surface charge density", + "lang": "en" + }, + { + "value": "charge Γ©lectrique surfacique", + "lang": "fr" + } + ], + "short": "surface_charge_density", + "type": "derived", + "dimension": { + "id": "NISTd53", + "name": "surface charge density", + "expression": "M-2Β·TΒ·I", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": -2 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu15.u1e-2/1", + "name": "coulomb per square meter", + "symbol": "C/mΒ²" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq81" + }, + { + "type": "unitsml", + "id": "q:surface_charge_density" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/SUCD" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/AreaChargeDensity" + } + ] + }, + { + "id": "NISTq82", + "unitsml_id": "q:electric_displacement", + "name": "electric displacement", + "names": [ + { + "value": "electric displacement", + "lang": "en" + } + ], + "short": "electric_displacement", + "type": "derived", + "dimension": { + "id": "NISTd44", + "name": "electric flux density", + "expression": "L-2Β·TΒ·I", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu15.u1e-2/1", + "name": "coulomb per square meter", + "symbol": "C/mΒ²" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq82" + }, + { + "type": "unitsml", + "id": "q:electric_displacement" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ElectricDisplacement" + } + ] + }, + { + "id": "NISTq83", + "unitsml_id": "q:molar_heat_capacity", + "name": "molar heat capacity", + "names": [ + { + "value": "molar heat capacity", + "lang": "en" + } + ], + "short": "molar_heat_capacity", + "type": "derived", + "dimension": { + "id": "NISTd48", + "name": "molar entropy", + "expression": "L2Β·MΒ·T-2Β·Theta-1Β·N-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu13.u6e-1/1.u5e-1/1", + "name": "joule per mole kelvin", + "symbol": "J/(molΒ·K)" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq83" + }, + { + "type": "unitsml", + "id": "q:molar_heat_capacity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/MolarHeatCapacity" + } + ] + }, + { + "id": "NISTq84", + "unitsml_id": "q:catalytic_activity_concentration", + "name": "catalytic activity concentration", + "names": [ + { + "value": "catalytic activity concentration", + "lang": "en" + }, + { + "value": "concentration de l’activitΓ© catalytique", + "lang": "fr" + } + ], + "short": "catalytic_activity_concentration", + "type": "derived", + "dimension": { + "id": "NISTd55", + "name": "catalytic activity concentration", + "expression": "M-3Β·T-1Β·N", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": -3 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu30.u1e-3/1", + "name": "katal per cubic meter", + "symbol": "kat/mΒ³" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq84" + }, + { + "type": "unitsml", + "id": "q:catalytic_activity_concentration" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/CTAC" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/CatalyticActivityConcentration" + } + ] + }, + { + "id": "NISTq85", + "unitsml_id": "q:kinematic_viscosity", + "name": "kinematic viscosity", + "names": [ + { + "value": "kinematic viscosity", + "lang": "en" + }, + { + "value": "viscositΓ© cinΓ©matique", + "lang": "fr" + } + ], + "short": "kinematic_viscosity", + "type": "derived", + "dimension": { + "id": "NISTd56", + "name": "kinematic viscosity", + "expression": "L2Β·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu121", + "name": "centistokes", + "symbol": "cSt" + }, + { + "id": "NISTu142", + "name": "stokes", + "symbol": "St" + }, + { + "id": "NISTu1e2/1.u3e-1/1", + "name": "meter squared per second", + "symbol": "mΒ²/s" + }, + { + "id": "NISTu210", + "name": "foot squared per second", + "symbol": "ftΒ²/s" + } + ], + "unit_count": 4, + "identifiers": [ + { + "type": "nist", + "id": "NISTq85" + }, + { + "type": "unitsml", + "id": "q:kinematic_viscosity" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/KIVI" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/KinematicViscosity" + } + ] + }, + { + "id": "NISTq87", + "unitsml_id": "q:magnetic_field", + "name": "magnetic field", + "names": [ + { + "value": "magnetic field", + "lang": "en" + } + ], + "short": "magnetic_field", + "type": "derived", + "dimension": { + "id": "NISTd33", + "name": "magnetic field strength", + "expression": "L-1Β·I", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu144", + "name": "oersted", + "symbol": "Oe" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq87" + }, + { + "type": "unitsml", + "id": "q:magnetic_field" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/MagneticField" + } + ] + }, + { + "id": "NISTq88", + "unitsml_id": "q:radiant_intensity", + "name": "radiant intensity", + "names": [ + { + "value": "radiant intensity", + "lang": "en" + }, + { + "value": "intensitΓ© Γ©nergΓ©tique", + "lang": "fr" + } + ], + "short": "radiant_intensity", + "type": "derived", + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu14.u10e-1/1", + "name": "watt per steradian", + "symbol": "W/sr" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq88" + }, + { + "type": "unitsml", + "id": "q:radiant_intensity" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/RAIN" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/RadiantIntensity" + } + ] + }, + { + "id": "NISTq89", + "unitsml_id": "q:radiance", + "name": "radiance", + "names": [ + { + "value": "radiance", + "lang": "en" + }, + { + "value": "luminance Γ©nergΓ©tique", + "lang": "fr" + } + ], + "short": "radiance", + "type": "derived", + "dimension": { + "id": "NISTd38", + "name": "heat flux density", + "expression": "MΒ·T-3", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu14.u1e-2/1.u10e-1/1", + "name": "watt per square meter steradian", + "symbol": "W/(mΒ²Β·sr)" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq89" + }, + { + "type": "unitsml", + "id": "q:radiance" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/RADI" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Radiance" + } + ] + }, + { + "id": "NISTq9", + "unitsml_id": "q:plane_angle", + "name": "plane angle", + "names": [ + { + "value": "plane angle", + "lang": "en" + }, + { + "value": "angle", + "lang": "en" + }, + { + "value": "angle plan", + "lang": "fr" + } + ], + "short": "plane_angle", + "type": "derived", + "dimension": { + "id": "NISTd9", + "name": "plane angle", + "expression": "1", + "components": [ + { + "key": "plane_angle", + "symbol": "phi", + "power": 1 + } + ], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu147", + "name": "arcminute", + "symbol": "β€²" + }, + { + "id": "NISTu148", + "name": "arcsecond", + "symbol": "as" + }, + { + "id": "NISTu149", + "name": "degree (degree of arc)", + "symbol": "ΒΊ" + }, + { + "id": "NISTu159", + "name": "gon", + "symbol": "gon" + }, + { + "id": "NISTu347", + "name": "angular mil (NATO)", + "symbol": "mil" + }, + { + "id": "NISTu9", + "name": "radian", + "symbol": "rad" + } + ], + "unit_count": 6, + "identifiers": [ + { + "type": "nist", + "id": "NISTq9" + }, + { + "type": "unitsml", + "id": "q:plane_angle" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ANGP" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/PlaneAngle" + } + ] + }, + { + "id": "NISTq90", + "unitsml_id": "q:logarithmic_ratio_quantities", + "name": "ratio logarithm (B)", + "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", + "type": "derived", + "dimension": { + "id": "NISTd67", + "name": "logarithmic ratio", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu153", + "name": "neper", + "symbol": "Np" + }, + { + "id": "NISTu154", + "name": "bel", + "symbol": "B" + }, + { + "id": "NISTu155", + "name": "decibel", + "symbol": "dB" + }, + { + "id": "NISTu381", + "name": "dBm", + "symbol": "dB_mW" + } + ], + "unit_count": 4, + "identifiers": [ + { + "type": "nist", + "id": "NISTq90" + }, + { + "type": "unitsml", + "id": "q:logarithmic_ratio_quantities" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/RLGB" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/LinearLogarithmicRatio" + } + ] + }, + { + "id": "NISTq91", + "unitsml_id": "q:fluidity", + "name": "fluidity", + "names": [ + { + "value": "fluidity", + "lang": "en" + }, + { + "value": "reciprocal of dynamic viscosity", + "lang": "en" + } + ], + "short": "fluidity", + "type": "derived", + "dimension": { + "id": "NISTd52", + "name": "fluidity", + "expression": "LΒ·M-1Β·T", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu129", + "name": "rhe", + "symbol": "rhe" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq91" + }, + { + "type": "unitsml", + "id": "q:fluidity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Fluidity" + } + ] + }, + { + "id": "NISTq92", + "unitsml_id": "q:hydrodynamic_permeability", + "name": "hydrodynamic permeability", + "names": [ + { + "value": "hydrodynamic permeability", + "lang": "en" + } + ], + "short": "hydrodynamic_permeability", + "type": "derived", + "dimension": { + "id": "NISTd8", + "name": "area", + "expression": "L2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu157", + "name": "darcy", + "symbol": "D" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq92" + }, + { + "type": "unitsml", + "id": "q:hydrodynamic_permeability" + } + ], + "references": [] + }, + { + "id": "NISTq93", + "unitsml_id": "q:refractive_index", + "name": "refractive index", + "names": [ + { + "value": "refractive index", + "lang": "en" + } + ], + "short": "refractive_index", + "type": "derived", + "dimension": { + "id": "NISTd80", + "name": "ratio quantity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu61", + "name": "one", + "symbol": "1" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq93" + }, + { + "type": "unitsml", + "id": "q:refractive_index" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/RefractiveIndex" + } + ] + }, + { + "id": "NISTq94", + "unitsml_id": "q:relative_permeability", + "name": "relative permeability", + "names": [ + { + "value": "relative permeability", + "lang": "en" + } + ], + "short": "relative_permeability", + "type": "derived", + "dimension": { + "id": "NISTd80", + "name": "ratio quantity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu61", + "name": "one", + "symbol": "1" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq94" + }, + { + "type": "unitsml", + "id": "q:relative_permeability" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/PermeabilityRatio" + } + ] + }, + { + "id": "NISTq95", + "unitsml_id": "q:breadth", + "name": "breadth", + "names": [ + { + "value": "breadth", + "lang": "en" + } + ], + "short": "breadth", + "type": "derived", + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq95" + }, + { + "type": "unitsml", + "id": "q:breadth" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Breadth" + } + ] + }, + { + "id": "NISTq96", + "unitsml_id": "q:height", + "name": "height", + "names": [ + { + "value": "height", + "lang": "en" + } + ], + "short": "height", + "type": "derived", + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq96" + }, + { + "type": "unitsml", + "id": "q:height" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Height" + } + ] + }, + { + "id": "NISTq97", + "unitsml_id": "q:thickness", + "name": "thickness", + "names": [ + { + "value": "thickness", + "lang": "en" + } + ], + "short": "thickness", + "type": "derived", + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq97" + }, + { + "type": "unitsml", + "id": "q:thickness" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Thickness" + } + ] + }, + { + "id": "NISTq98", + "unitsml_id": "q:radius", + "name": "radius", + "names": [ + { + "value": "radius", + "lang": "en" + } + ], + "short": "radius", + "type": "derived", + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq98" + }, + { + "type": "unitsml", + "id": "q:radius" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Radius" + } + ] + }, + { + "id": "NISTq99", + "unitsml_id": "q:radial_distance", + "name": "radial distance", + "names": [ + { + "value": "radial distance", + "lang": "en" + } + ], + "short": "radial_distance", + "type": "derived", + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq99" + }, + { + "type": "unitsml", + "id": "q:radial_distance" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/RadialDistance" + } + ] + } + ], + "dimensions": [ + { + "id": "NISTd1", + "unitsml_id": "d:length", + "name": "length", + "names": [ + { + "value": "length", + "lang": "en" + } + ], + "expression": "L", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq1", + "name": "length" + }, + { + "id": "NISTq100", + "name": "diameter" + }, + { + "id": "NISTq101", + "name": "length of path" + }, + { + "id": "NISTq102", + "name": "cartesian coordinates" + }, + { + "id": "NISTq103", + "name": "position vector" + }, + { + "id": "NISTq104", + "name": "displacement" + }, + { + "id": "NISTq105", + "name": "radius of curvature" + }, + { + "id": "NISTq114", + "name": "wavelength" + }, + { + "id": "NISTq48", + "name": "distance" + }, + { + "id": "NISTq95", + "name": "breadth" + }, + { + "id": "NISTq96", + "name": "height" + }, + { + "id": "NISTq97", + "name": "thickness" + }, + { + "id": "NISTq98", + "name": "radius" + }, + { + "id": "NISTq99", + "name": "radial distance" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd1" + }, + { + "type": "unitsml", + "id": "d:length" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd10", + "unitsml_id": "d:volume", + "name": "volume", + "names": [ + { + "value": "volume", + "lang": "en" + } + ], + "expression": "L3", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "quantities": [ + { + "id": "NISTq10", + "name": "volume" + }, + { + "id": "NISTq146", + "name": "section modulus" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd10" + }, + { + "type": "unitsml", + "id": "d:volume" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd100", + "unitsml_id": "d:traffic_intensity", + "name": "traffic intensity", + "names": [ + { + "value": "traffic intensity", + "lang": "en" + } + ], + "expression": "1", + "dimensionless": true, + "components": [], + "quantities": [ + { + "id": "NISTq201", + "name": "traffic intensity" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd100" + }, + { + "type": "unitsml", + "id": "d:traffic_intensity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd101", + "unitsml_id": "d:symbol_rate", + "name": "symbol rate", + "names": [ + { + "value": "symbol rate", + "lang": "en" + } + ], + "expression": "T-1", + "dimensionless": false, + "components": [ + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq202", + "name": "symbol rate" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd101" + }, + { + "type": "unitsml", + "id": "d:symbol_rate" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L-0dot5I0M0dot5H0T-1D0" + } + ] + }, + { + "id": "NISTd102", + "unitsml_id": "d:information_content", + "name": "information content", + "names": [ + { + "value": "information content", + "lang": "en" + } + ], + "expression": "1", + "dimensionless": true, + "components": [], + "quantities": [ + { + "id": "NISTq203", + "name": "information content" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd102" + }, + { + "type": "unitsml", + "id": "d:information_content" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd11", + "unitsml_id": "d:velocity", + "name": "velocity", + "names": [ + { + "value": "velocity", + "lang": "en" + } + ], + "expression": "LΒ·T-1", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq107", + "name": "speed of propagation of waves" + }, + { + "id": "NISTq116", + "name": "phase velocity" + }, + { + "id": "NISTq117", + "name": "group velocity" + }, + { + "id": "NISTq12", + "name": "velocity" + }, + { + "id": "NISTq57", + "name": "angular velocity" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd11" + }, + { + "type": "unitsml", + "id": "d:velocity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0" + } + ] + }, + { + "id": "NISTd12", + "unitsml_id": "d:force", + "name": "force", + "names": [ + { + "value": "force", + "lang": "en" + } + ], + "expression": "LΒ·MΒ·T-2", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "quantities": [ + { + "id": "NISTq128", + "name": "weight" + }, + { + "id": "NISTq13", + "name": "force" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd12" + }, + { + "type": "unitsml", + "id": "d:force" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0" + } + ] + }, + { + "id": "NISTd13", + "unitsml_id": "d:magnetic_flux_density", + "name": "magnetic flux density", + "names": [ + { + "value": "magnetic flux density", + "lang": "en" + } + ], + "expression": "MΒ·T-2Β·I-1", + "dimensionless": false, + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq14", + "name": "magnetic flux density" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd13" + }, + { + "type": "unitsml", + "id": "d:magnetic_flux_density" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E-1L0I0M1H0T-2D0" + } + ] + }, + { + "id": "NISTd14", + "unitsml_id": "d:pressure", + "name": "pressure", + "names": [ + { + "value": "pressure", + "lang": "en" + } + ], + "expression": "L-1Β·MΒ·T-2", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "quantities": [ + { + "id": "NISTq134", + "name": "normal stress" + }, + { + "id": "NISTq135", + "name": "shear stress" + }, + { + "id": "NISTq141", + "name": "modulus of elasticity" + }, + { + "id": "NISTq142", + "name": "modulus of rigidity" + }, + { + "id": "NISTq143", + "name": "modulus of compression" + }, + { + "id": "NISTq15", + "name": "pressure" + }, + { + "id": "NISTq16", + "name": "stress" + }, + { + "id": "NISTq67", + "name": "energy density" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd14" + }, + { + "type": "unitsml", + "id": "d:pressure" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0" + } + ] + }, + { + "id": "NISTd15", + "unitsml_id": "d:energy", + "name": "energy", + "names": [ + { + "value": "energy", + "lang": "en" + } + ], + "expression": "L2Β·MΒ·T-2", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "quantities": [ + { + "id": "NISTq152", + "name": "Lagrange function" + }, + { + "id": "NISTq153", + "name": "Hamilton function" + }, + { + "id": "NISTq17", + "name": "energy" + }, + { + "id": "NISTq18", + "name": "work" + }, + { + "id": "NISTq182", + "name": "kinetic energy" + }, + { + "id": "NISTq183", + "name": "mechanical energy" + }, + { + "id": "NISTq184", + "name": "torque" + }, + { + "id": "NISTq185", + "name": "bending moment of force" + }, + { + "id": "NISTq19", + "name": "amount of heat" + }, + { + "id": "NISTq60", + "name": "moment of force" + }, + { + "id": "NISTq77", + "name": "potential energy" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd15" + }, + { + "type": "unitsml", + "id": "d:energy" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0" + } + ] + }, + { + "id": "NISTd16", + "unitsml_id": "d:power", + "name": "power", + "names": [ + { + "value": "power", + "lang": "en" + } + ], + "expression": "L2Β·MΒ·T-3", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "quantities": [ + { + "id": "NISTq187", + "name": "apparent power" + }, + { + "id": "NISTq20", + "name": "power" + }, + { + "id": "NISTq21", + "name": "radiant flux" + }, + { + "id": "NISTq88", + "name": "radiant intensity" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd16" + }, + { + "type": "unitsml", + "id": "d:power" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D-1" + } + ] + }, + { + "id": "NISTd17", + "unitsml_id": "d:electric_charge", + "name": "electric charge", + "names": [ + { + "value": "electric charge", + "lang": "en" + } + ], + "expression": "TΒ·I", + "dimensionless": false, + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq22", + "name": "electric charge" + }, + { + "id": "NISTq23", + "name": "amount of electricity" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd17" + }, + { + "type": "unitsml", + "id": "d:electric_charge" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T1D0" + } + ] + }, + { + "id": "NISTd18", + "unitsml_id": "d:electric_potential_difference", + "name": "electric potential difference", + "names": [ + { + "value": "electric potential difference", + "lang": "en" + } + ], + "expression": "L2Β·MΒ·T-3Β·I-1", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq166", + "name": "electric potential" + }, + { + "id": "NISTq24", + "name": "electric potential difference" + }, + { + "id": "NISTq25", + "name": "potential difference" + }, + { + "id": "NISTq26", + "name": "electromotive force" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd18" + }, + { + "type": "unitsml", + "id": "d:electric_potential_difference" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H0T-3D0" + } + ] + }, + { + "id": "NISTd19", + "unitsml_id": "d:capacitance", + "name": "capacitance", + "names": [ + { + "value": "capacitance", + "lang": "en" + } + ], + "expression": "L-2Β·M-1Β·T4Β·I2", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 4 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "quantities": [ + { + "id": "NISTq169", + "name": "electric capacitance" + }, + { + "id": "NISTq27", + "name": "capacitance" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd19" + }, + { + "type": "unitsml", + "id": "d:capacitance" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E2L-2I0M-1H0T4D0" + } + ] + }, + { + "id": "NISTd2", + "unitsml_id": "d:mass", + "name": "mass", + "names": [ + { + "value": "mass", + "lang": "en" + } + ], + "expression": "M", + "dimensionless": false, + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq2", + "name": "mass" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd2" + }, + { + "type": "unitsml", + "id": "d:mass" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0" + } + ] + }, + { + "id": "NISTd20", + "unitsml_id": "d:electric_resistance", + "name": "electric resistance", + "names": [ + { + "value": "electric resistance", + "lang": "en" + } + ], + "expression": "L2Β·MΒ·T-3Β·I-2", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -2 + } + ], + "quantities": [ + { + "id": "NISTq28", + "name": "electric resistance" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd20" + }, + { + "type": "unitsml", + "id": "d:electric_resistance" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H0T-3D0" + } + ] + }, + { + "id": "NISTd21", + "unitsml_id": "d:electric_conductance", + "name": "electric conductance", + "names": [ + { + "value": "electric conductance", + "lang": "en" + } + ], + "expression": "L-2Β·M-1Β·T3Β·I2", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "quantities": [ + { + "id": "NISTq29", + "name": "electric conductance" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd21" + }, + { + "type": "unitsml", + "id": "d:electric_conductance" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E2L-2I0M-1H0T3D0" + } + ] + }, + { + "id": "NISTd22", + "unitsml_id": "d:magnetic_flux", + "name": "magnetic flux", + "names": [ + { + "value": "magnetic flux", + "lang": "en" + } + ], + "expression": "L2Β·MΒ·T-2Β·I-1", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq30", + "name": "magnetic flux" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd22" + }, + { + "type": "unitsml", + "id": "d:magnetic_flux" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H0T-2D0" + } + ] + }, + { + "id": "NISTd23", + "unitsml_id": "d:inductance", + "name": "inductance", + "names": [ + { + "value": "inductance", + "lang": "en" + } + ], + "expression": "L2Β·MΒ·T-2Β·I-2", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -2 + } + ], + "quantities": [ + { + "id": "NISTq171", + "name": "electric inductance" + }, + { + "id": "NISTq32", + "name": "inductance" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd23" + }, + { + "type": "unitsml", + "id": "d:inductance" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H0T-2D0" + } + ] + }, + { + "id": "NISTd24", + "unitsml_id": "d:frequency", + "name": "frequency", + "names": [ + { + "value": "frequency", + "lang": "en" + } + ], + "expression": "T-1", + "dimensionless": false, + "components": [ + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq112", + "name": "rotational frequency" + }, + { + "id": "NISTq113", + "name": "angular frequency" + }, + { + "id": "NISTq120", + "name": "damping coefficient" + }, + { + "id": "NISTq189", + "name": "emission rate" + }, + { + "id": "NISTq35", + "name": "activity referred to a radionuclide" + }, + { + "id": "NISTq45", + "name": "frequency" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd24" + }, + { + "type": "unitsml", + "id": "d:frequency" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L-0dot5I0M0dot5H0T-1D0" + } + ] + }, + { + "id": "NISTd25", + "unitsml_id": "d:absorbed_dose", + "name": "absorbed dose", + "names": [ + { + "value": "absorbed dose", + "lang": "en" + } + ], + "expression": "L2Β·T-2", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "quantities": [ + { + "id": "NISTq36", + "name": "absorbed dose" + }, + { + "id": "NISTq37", + "name": "specific energy imparted" + }, + { + "id": "NISTq38", + "name": "kerma" + }, + { + "id": "NISTq39", + "name": "dose equivalent" + }, + { + "id": "NISTq40", + "name": "ambient dose equivalent" + }, + { + "id": "NISTq41", + "name": "directional dose equivalent" + }, + { + "id": "NISTq42", + "name": "personal dose equivalent" + }, + { + "id": "NISTq43", + "name": "organ dose equivalent" + }, + { + "id": "NISTq65", + "name": "specific energy" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd25" + }, + { + "type": "unitsml", + "id": "d:absorbed_dose" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-2D0" + } + ] + }, + { + "id": "NISTd26", + "unitsml_id": "d:catalytic_activity", + "name": "catalytic activity", + "names": [ + { + "value": "catalytic activity", + "lang": "en" + } + ], + "expression": "T-1Β·N", + "dimensionless": false, + "components": [ + { + "key": "time", + "symbol": "T", + "power": -1 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq44", + "name": "catalytic activity" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd26" + }, + { + "type": "unitsml", + "id": "d:catalytic_activity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T-1D0" + } + ] + }, + { + "id": "NISTd27", + "unitsml_id": "d:illuminance", + "name": "illuminance", + "names": [ + { + "value": "illuminance", + "lang": "en" + } + ], + "expression": "L-2Β·J", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "luminous_intensity", + "symbol": "J", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq47", + "name": "illuminance" + }, + { + "id": "NISTq56", + "name": "luminance" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd27" + }, + { + "type": "unitsml", + "id": "d:illuminance" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L-2I1M0H0T0D0" + } + ] + }, + { + "id": "NISTd28", + "unitsml_id": "d:acceleration", + "name": "acceleration", + "names": [ + { + "value": "acceleration", + "lang": "en" + } + ], + "expression": "LΒ·T-2", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "quantities": [ + { + "id": "NISTq108", + "name": "acceleration of free fall" + }, + { + "id": "NISTq49", + "name": "acceleration" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd28" + }, + { + "type": "unitsml", + "id": "d:acceleration" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-2D0" + } + ] + }, + { + "id": "NISTd29", + "unitsml_id": "d:wavenumber", + "name": "wavenumber", + "names": [ + { + "value": "wavenumber", + "lang": "en" + } + ], + "expression": "L-1", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq106", + "name": "curvature" + }, + { + "id": "NISTq115", + "name": "angular wavenumber" + }, + { + "id": "NISTq122", + "name": "attenuation coefficient" + }, + { + "id": "NISTq123", + "name": "phase coefficient" + }, + { + "id": "NISTq124", + "name": "propagation coefficient" + }, + { + "id": "NISTq50", + "name": "wavenumber" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd29" + }, + { + "type": "unitsml", + "id": "d:wavenumber" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd3", + "unitsml_id": "d:time", + "name": "time", + "names": [ + { + "value": "time", + "lang": "en" + } + ], + "expression": "T", + "dimensionless": false, + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq109", + "name": "period duration" + }, + { + "id": "NISTq110", + "name": "time constant" + }, + { + "id": "NISTq3", + "name": "time" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd3" + }, + { + "type": "unitsml", + "id": "d:time" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0" + } + ] + }, + { + "id": "NISTd30", + "unitsml_id": "d:mass_density", + "name": "mass density", + "names": [ + { + "value": "mass density", + "lang": "en" + } + ], + "expression": "L-3Β·M", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq33", + "name": "mass concentration" + }, + { + "id": "NISTq51", + "name": "density" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd30" + }, + { + "type": "unitsml", + "id": "d:mass_density" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H0T0D0" + } + ] + }, + { + "id": "NISTd31", + "unitsml_id": "d:specific_volume", + "name": "specific volume", + "names": [ + { + "value": "specific volume", + "lang": "en" + } + ], + "expression": "L3Β·M-1", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq52", + "name": "specific volume" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd31" + }, + { + "type": "unitsml", + "id": "d:specific_volume" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L3I0M-1H0T0D0" + } + ] + }, + { + "id": "NISTd32", + "unitsml_id": "d:current_density", + "name": "current density", + "names": [ + { + "value": "current density", + "lang": "en" + } + ], + "expression": "L-2Β·I", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq53", + "name": "current density" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd32" + }, + { + "type": "unitsml", + "id": "d:current_density" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E1L-2I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd33", + "unitsml_id": "d:magnetic_field_strength", + "name": "magnetic field strength", + "names": [ + { + "value": "magnetic field strength", + "lang": "en" + } + ], + "expression": "L-1Β·I", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq54", + "name": "magnetic field strength" + }, + { + "id": "NISTq87", + "name": "magnetic field" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd33" + }, + { + "type": "unitsml", + "id": "d:magnetic_field_strength" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E1L-1I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd34", + "unitsml_id": "d:concentration", + "name": "concentration", + "names": [ + { + "value": "concentration", + "lang": "en" + } + ], + "expression": "L-3Β·N", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq55", + "name": "amount of substance concentration" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd34" + }, + { + "type": "unitsml", + "id": "d:concentration" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd35", + "unitsml_id": "d:angular_acceleration", + "name": "angular acceleration", + "names": [ + { + "value": "angular acceleration", + "lang": "en" + } + ], + "expression": "T-2", + "dimensionless": false, + "components": [ + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "quantities": [ + { + "id": "NISTq58", + "name": "angular acceleration" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd35" + }, + { + "type": "unitsml", + "id": "d:angular_acceleration" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L-0dot5I0M0dot5H0T-2D0" + } + ] + }, + { + "id": "NISTd36", + "unitsml_id": "d:dynamic_viscosity", + "name": "dynamic viscosity", + "names": [ + { + "value": "dynamic viscosity", + "lang": "en" + } + ], + "expression": "L-1Β·MΒ·T-1", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq59", + "name": "dynamic viscosity" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd36" + }, + { + "type": "unitsml", + "id": "d:dynamic_viscosity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-1D0" + } + ] + }, + { + "id": "NISTd37", + "unitsml_id": "d:surface_tension", + "name": "surface tension", + "names": [ + { + "value": "surface tension", + "lang": "en" + } + ], + "expression": "MΒ·T-2", + "dimensionless": false, + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "quantities": [ + { + "id": "NISTq61", + "name": "surface tension" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd37" + }, + { + "type": "unitsml", + "id": "d:surface_tension" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L-0dot5I0M1H0T-2D0" + } + ] + }, + { + "id": "NISTd38", + "unitsml_id": "d:heat_flux_density", + "name": "heat flux density", + "names": [ + { + "value": "heat flux density", + "lang": "en" + } + ], + "expression": "MΒ·T-3", + "dimensionless": false, + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "quantities": [ + { + "id": "NISTq62", + "name": "heat flux density" + }, + { + "id": "NISTq78", + "name": "irradiance" + }, + { + "id": "NISTq89", + "name": "radiance" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd38" + }, + { + "type": "unitsml", + "id": "d:heat_flux_density" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-3D0" + } + ] + }, + { + "id": "NISTd39", + "unitsml_id": "d:heat_capacity", + "name": "heat capacity", + "names": [ + { + "value": "heat capacity", + "lang": "en" + } + ], + "expression": "L2Β·MΒ·T-2Β·Theta-1", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq63", + "name": "heat capacity" + }, + { + "id": "NISTq79", + "name": "entropy" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd39" + }, + { + "type": "unitsml", + "id": "d:heat_capacity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H-1T-2D0" + } + ] + }, + { + "id": "NISTd4", + "unitsml_id": "d:electric_current", + "name": "electric current", + "names": [ + { + "value": "electric current", + "lang": "en" + } + ], + "expression": "I", + "dimensionless": false, + "components": [ + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq161", + "name": "magnetomotive force (Cardelli) (-SP811)" + }, + { + "id": "NISTq170", + "name": "electric current intensity" + }, + { + "id": "NISTq4", + "name": "electric current" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd4" + }, + { + "type": "unitsml", + "id": "d:electric_current" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T0D-1" + } + ] + }, + { + "id": "NISTd40", + "unitsml_id": "d:specific_heat_capacity", + "name": "specific heat capacity", + "names": [ + { + "value": "specific heat capacity", + "lang": "en" + } + ], + "expression": "L2Β·T-2Β·Theta-1", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq64", + "name": "specific heat capacity" + }, + { + "id": "NISTq80", + "name": "specific entropy" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd40" + }, + { + "type": "unitsml", + "id": "d:specific_heat_capacity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H-1T-2D0" + } + ] + }, + { + "id": "NISTd41", + "unitsml_id": "d:thermal_conductivity", + "name": "thermal conductivity", + "names": [ + { + "value": "thermal conductivity", + "lang": "en" + } + ], + "expression": "LΒ·MΒ·T-3Β·Theta-1", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq66", + "name": "thermal conductivity" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd41" + }, + { + "type": "unitsml", + "id": "d:thermal_conductivity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H-1T-3D0" + } + ] + }, + { + "id": "NISTd42", + "unitsml_id": "d:electric_field_strength", + "name": "electric field strength", + "names": [ + { + "value": "electric field strength", + "lang": "en" + } + ], + "expression": "LΒ·MΒ·T-3Β·I-1", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq68", + "name": "electric field strength" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd42" + }, + { + "type": "unitsml", + "id": "d:electric_field_strength" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E-1L1I0M1H0T-3D0" + } + ] + }, + { + "id": "NISTd43", + "unitsml_id": "d:electric_charge_density", + "name": "electric charge density", + "names": [ + { + "value": "electric charge density", + "lang": "en" + } + ], + "expression": "L-3Β·TΒ·I", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq69", + "name": "electric charge density" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd43" + }, + { + "type": "unitsml", + "id": "d:electric_charge_density" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E1L-3I0M0H0T1D0" + } + ] + }, + { + "id": "NISTd44", + "unitsml_id": "d:electric_flux_density", + "name": "electric flux density", + "names": [ + { + "value": "electric flux density", + "lang": "en" + } + ], + "expression": "L-2Β·TΒ·I", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq70", + "name": "electric flux density" + }, + { + "id": "NISTq82", + "name": "electric displacement" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd44" + }, + { + "type": "unitsml", + "id": "d:electric_flux_density" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E1L-2I0M0H0T1D0" + } + ] + }, + { + "id": "NISTd45", + "unitsml_id": "d:permittivity", + "name": "permittivity", + "names": [ + { + "value": "permittivity", + "lang": "en" + } + ], + "expression": "L-3Β·M-1Β·T4Β·I2", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 4 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "quantities": [ + { + "id": "NISTq71", + "name": "permittivity" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd45" + }, + { + "type": "unitsml", + "id": "d:permittivity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E2L-3I0M-1H0T4D0" + } + ] + }, + { + "id": "NISTd46", + "unitsml_id": "d:permeability", + "name": "permeability", + "names": [ + { + "value": "permeability", + "lang": "en" + } + ], + "expression": "LΒ·MΒ·T-2Β·I-2", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -2 + } + ], + "quantities": [ + { + "id": "NISTq72", + "name": "permeability" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd46" + }, + { + "type": "unitsml", + "id": "d:permeability" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E-2L1I0M1H0T-2D0" + } + ] + }, + { + "id": "NISTd47", + "unitsml_id": "d:molar_energy", + "name": "molar energy", + "names": [ + { + "value": "molar energy", + "lang": "en" + } + ], + "expression": "L2Β·MΒ·T-2Β·N-1", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq73", + "name": "molar energy" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd47" + }, + { + "type": "unitsml", + "id": "d:molar_energy" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A-1E0L2I0M1H0T-2D0" + } + ] + }, + { + "id": "NISTd48", + "unitsml_id": "d:molar_entropy", + "name": "molar entropy", + "names": [ + { + "value": "molar entropy", + "lang": "en" + } + ], + "expression": "L2Β·MΒ·T-2Β·Theta-1Β·N-1", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq74", + "name": "molar entropy" + }, + { + "id": "NISTq83", + "name": "molar heat capacity" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd48" + }, + { + "type": "unitsml", + "id": "d:molar_entropy" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A-1E0L2I0M1H-1T-2D0" + } + ] + }, + { + "id": "NISTd49", + "unitsml_id": "d:exposure", + "name": "exposure", + "names": [ + { + "value": "exposure", + "lang": "en" + } + ], + "expression": "M-1Β·TΒ·I", + "dimensionless": false, + "components": [ + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq197", + "name": "exposure" + }, + { + "id": "NISTq75", + "name": "exposure (x and gamma rays)" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd49" + }, + { + "type": "unitsml", + "id": "d:exposure" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E1L0I0M-1H0T1D0" + } + ] + }, + { + "id": "NISTd5", + "unitsml_id": "d:temperature", + "name": "temperature", + "names": [ + { + "value": "temperature", + "lang": "en" + } + ], + "expression": "Theta", + "dimensionless": false, + "components": [ + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq175", + "name": "Fahrenheit temperature" + }, + { + "id": "NISTq192", + "name": "ITS-90 temperature (Β°C)" + }, + { + "id": "NISTq193", + "name": "ITS-90 temperature (K)" + }, + { + "id": "NISTq196", + "name": "PLTS-2000 temperature (K)" + }, + { + "id": "NISTq34", + "name": "Celsius temperature" + }, + { + "id": "NISTq5", + "name": "thermodynamic temperature" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd5" + }, + { + "type": "unitsml", + "id": "d:temperature" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T0D0" + } + ] + }, + { + "id": "NISTd50", + "unitsml_id": "d:absorbed_dose_rate", + "name": "absorbed dose rate", + "names": [ + { + "value": "absorbed dose rate", + "lang": "en" + } + ], + "expression": "L2Β·T-3", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "quantities": [ + { + "id": "NISTq194", + "name": "kerma rate" + }, + { + "id": "NISTq76", + "name": "absorbed dose rate" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd50" + }, + { + "type": "unitsml", + "id": "d:absorbed_dose_rate" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-3D0" + } + ] + }, + { + "id": "NISTd51", + "unitsml_id": "d:surface_density", + "name": "surface density", + "names": [ + { + "value": "surface density", + "lang": "en" + } + ], + "expression": "L-2Β·M", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq31", + "name": "surface density" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd51" + }, + { + "type": "unitsml", + "id": "d:surface_density" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T0D0" + } + ] + }, + { + "id": "NISTd52", + "unitsml_id": "d:fluidity", + "name": "fluidity", + "names": [ + { + "value": "fluidity", + "lang": "en" + } + ], + "expression": "LΒ·M-1Β·T", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq91", + "name": "fluidity" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd52" + }, + { + "type": "unitsml", + "id": "d:fluidity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H0T1D0" + } + ] + }, + { + "id": "NISTd53", + "unitsml_id": "d:surface_charge_density", + "name": "surface charge density", + "names": [ + { + "value": "surface charge density", + "lang": "en" + } + ], + "expression": "M-2Β·TΒ·I", + "dimensionless": false, + "components": [ + { + "key": "mass", + "symbol": "M", + "power": -2 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq81", + "name": "surface charge density" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd53" + }, + { + "type": "unitsml", + "id": "d:surface_charge_density" + } + ], + "references": [] + }, + { + "id": "NISTd54", + "unitsml_id": "d:magnetizability", + "name": "magnetizability", + "names": [ + { + "value": "magnetizability", + "lang": "en" + } + ], + "expression": "L2Β·MΒ·T2Β·I2", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": 2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "quantities": [ + { + "id": "NISTq163", + "name": "magnetizability" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd54" + }, + { + "type": "unitsml", + "id": "d:magnetizability" + } + ], + "references": [] + }, + { + "id": "NISTd55", + "unitsml_id": "d:catalytic_activity_concentration", + "name": "catalytic activity concentration", + "names": [ + { + "value": "catalytic activity concentration", + "lang": "en" + } + ], + "expression": "M-3Β·T-1Β·N", + "dimensionless": false, + "components": [ + { + "key": "mass", + "symbol": "M", + "power": -3 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq84", + "name": "catalytic activity concentration" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd55" + }, + { + "type": "unitsml", + "id": "d:catalytic_activity_concentration" + } + ], + "references": [] + }, + { + "id": "NISTd56", + "unitsml_id": "d:kinematic_viscosity", + "name": "kinematic viscosity", + "names": [ + { + "value": "kinematic viscosity", + "lang": "en" + } + ], + "expression": "L2Β·T-1", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq85", + "name": "kinematic viscosity" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd56" + }, + { + "type": "unitsml", + "id": "d:kinematic_viscosity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-1D0" + } + ] + }, + { + "id": "NISTd57", + "unitsml_id": "d:area_moment_of_inertia", + "name": "area moment of inertia", + "names": [ + { + "value": "area moment of inertia", + "lang": "en" + } + ], + "expression": "L4", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 4 + } + ], + "quantities": [ + { + "id": "NISTq144", + "name": "second axial moment of area" + }, + { + "id": "NISTq145", + "name": "second polar moment of area" + }, + { + "id": "NISTq155", + "name": "area moment of inertia" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd57" + }, + { + "type": "unitsml", + "id": "d:area_moment_of_inertia" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L4I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd58", + "unitsml_id": "d:linear_density", + "name": "linear density", + "names": [ + { + "value": "linear density", + "lang": "en" + } + ], + "expression": "L-1Β·M", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq126", + "name": "linear density" + }, + { + "id": "NISTq176", + "name": "mass divided by length" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd58" + }, + { + "type": "unitsml", + "id": "d:linear_density" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T0D0" + } + ] + }, + { + "id": "NISTd59", + "unitsml_id": "d:mass_moment_of_inertia", + "name": "mass moment of inertia", + "names": [ + { + "value": "mass moment of inertia", + "lang": "en" + } + ], + "expression": "L2Β·M", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq127", + "name": "mass moment of inertia" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd59" + }, + { + "type": "unitsml", + "id": "d:mass_moment_of_inertia" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T0D0" + } + ] + }, + { + "id": "NISTd6", + "unitsml_id": "d:substance_amount", + "name": "substance amount", + "names": [ + { + "value": "substance amount", + "lang": "en" + } + ], + "expression": "N", + "dimensionless": false, + "components": [ + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq6", + "name": "amount of substance" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd6" + }, + { + "type": "unitsml", + "id": "d:substance_amount" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd60", + "unitsml_id": "d:action", + "name": "action", + "names": [ + { + "value": "action", + "lang": "en" + } + ], + "expression": "L2Β·MΒ·T-1", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq132", + "name": "moment of momentum" + }, + { + "id": "NISTq133", + "name": "angular impulse" + }, + { + "id": "NISTq154", + "name": "action" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd60" + }, + { + "type": "unitsml", + "id": "d:action" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-1D0" + } + ] + }, + { + "id": "NISTd61", + "unitsml_id": "d:momentum", + "name": "momentum", + "names": [ + { + "value": "momentum", + "lang": "en" + } + ], + "expression": "LΒ·MΒ·T-1", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq129", + "name": "impulse" + }, + { + "id": "NISTq131", + "name": "momentum" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd61" + }, + { + "type": "unitsml", + "id": "d:momentum" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-1D0" + } + ] + }, + { + "id": "NISTd62", + "unitsml_id": "d:gravitational_constant", + "name": "gravitational constant", + "names": [ + { + "value": "gravitational constant", + "lang": "en" + } + ], + "expression": "L3Β·M-1Β·T-2", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "quantities": [ + { + "id": "NISTq130", + "name": "gravitational constant" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd62" + }, + { + "type": "unitsml", + "id": "d:gravitational_constant" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L3I0M-1H0T-2D0" + } + ] + }, + { + "id": "NISTd63", + "unitsml_id": "d:compressibility", + "name": "compressibility", + "names": [ + { + "value": "compressibility", + "lang": "en" + } + ], + "expression": "LΒ·M-1Β·T2", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 2 + } + ], + "quantities": [ + { + "id": "NISTq139", + "name": "compressibility" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd63" + }, + { + "type": "unitsml", + "id": "d:compressibility" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H0T2D0" + } + ] + }, + { + "id": "NISTd64", + "unitsml_id": "d:solid_angle", + "name": "solid angle", + "names": [ + { + "value": "solid angle", + "lang": "en" + } + ], + "expression": "1", + "dimensionless": true, + "components": [ + { + "key": "plane_angle", + "symbol": "phi", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq11", + "name": "solid angle" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd64" + }, + { + "type": "unitsml", + "id": "d:solid_angle" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd65", + "unitsml_id": "d:mass_flow_rate", + "name": "mass flow rate", + "names": [ + { + "value": "mass flow rate", + "lang": "en" + } + ], + "expression": "MΒ·T-1", + "dimensionless": false, + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq150", + "name": "mass flow rate" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd65" + }, + { + "type": "unitsml", + "id": "d:mass_flow_rate" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0" + } + ] + }, + { + "id": "NISTd66", + "unitsml_id": "d:volume_flow_rate", + "name": "volume flow rate", + "names": [ + { + "value": "volume flow rate", + "lang": "en" + } + ], + "expression": "L3Β·T-1", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq151", + "name": "volume flow rate" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd66" + }, + { + "type": "unitsml", + "id": "d:volume_flow_rate" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0" + } + ] + }, + { + "id": "NISTd67", + "unitsml_id": "d:logarithmic_ratio", + "name": "logarithmic ratio", + "names": [ + { + "value": "logarithmic ratio", + "lang": "en" + } + ], + "expression": "1", + "dimensionless": true, + "components": [], + "quantities": [ + { + "id": "NISTq121", + "name": "ratio logarithm (Np)" + }, + { + "id": "NISTq200", + "name": "logarithmic frequency range" + }, + { + "id": "NISTq90", + "name": "ratio logarithm (B)" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd67" + }, + { + "type": "unitsml", + "id": "d:logarithmic_ratio" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd68", + "unitsml_id": "d:linear_expansion_coefficient", + "name": "linear expansion coefficient", + "names": [ + { + "value": "linear expansion coefficient", + "lang": "en" + } + ], + "expression": "Theta-1", + "dimensionless": false, + "components": [ + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq156", + "name": "linear expansion coefficient" + }, + { + "id": "NISTq157", + "name": "cubic expansion coefficient" + }, + { + "id": "NISTq158", + "name": "relative pressure coefficient" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd68" + }, + { + "type": "unitsml", + "id": "d:linear_expansion_coefficient" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H-1T0D0" + } + ] + }, + { + "id": "NISTd69", + "unitsml_id": "d:pressure_coefficient", + "name": "pressure coefficient", + "names": [ + { + "value": "pressure coefficient", + "lang": "en" + } + ], + "expression": "L-1Β·MΒ·T-2Β·Theta-1", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq159", + "name": "pressure coefficient" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd69" + }, + { + "type": "unitsml", + "id": "d:pressure_coefficient" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H-1T-2D0" + } + ] + }, + { + "id": "NISTd7", + "unitsml_id": "d:luminous_intensity", + "name": "luminous intensity", + "names": [ + { + "value": "luminous intensity", + "lang": "en" + } + ], + "expression": "J", + "dimensionless": false, + "components": [ + { + "key": "luminous_intensity", + "symbol": "J", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq46", + "name": "luminous flux" + }, + { + "id": "NISTq7", + "name": "luminous intensity" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd7" + }, + { + "type": "unitsml", + "id": "d:luminous_intensity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I1M0H0T0D0" + } + ] + }, + { + "id": "NISTd70", + "unitsml_id": "d:isothermal_compressibility", + "name": "isothermal compressibility", + "names": [ + { + "value": "isothermal compressibility", + "lang": "en" + } + ], + "expression": "LΒ·M-1Β·T2", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 2 + } + ], + "quantities": [ + { + "id": "NISTq160", + "name": "isothermal compressibility" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd70" + }, + { + "type": "unitsml", + "id": "d:isothermal_compressibility" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H0T2D0" + } + ] + }, + { + "id": "NISTd71", + "unitsml_id": "d:heat_transfer_coefficient", + "name": "heat transfer coefficient", + "names": [ + { + "value": "heat transfer coefficient", + "lang": "en" + } + ], + "expression": "MΒ·T-3Β·Theta-1", + "dimensionless": false, + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq180", + "name": "coefficient of heat transfer" + }, + { + "id": "NISTq181", + "name": "surface coefficient of heat transfer" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd71" + }, + { + "type": "unitsml", + "id": "d:heat_transfer_coefficient" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-3D0" + } + ] + }, + { + "id": "NISTd72", + "unitsml_id": "d:electric_dipole_moment", + "name": "electric dipole moment", + "names": [ + { + "value": "electric dipole moment", + "lang": "en" + } + ], + "expression": "LΒ·TΒ·I", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq162", + "name": "electric dipole moment" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd72" + }, + { + "type": "unitsml", + "id": "d:electric_dipole_moment" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E1L1I0M0H0T1D0" + } + ] + }, + { + "id": "NISTd73", + "unitsml_id": "d:magnetic_dipole_moment", + "name": "magnetic dipole moment", + "names": [ + { + "value": "magnetic dipole moment", + "lang": "en" + } + ], + "expression": "L2Β·I", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq164", + "name": "magnetic dipole moment" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd73" + }, + { + "type": "unitsml", + "id": "d:magnetic_dipole_moment" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E1L2I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd74", + "unitsml_id": "d:electric_field_gradient", + "name": "electric field gradient", + "names": [ + { + "value": "electric field gradient", + "lang": "en" + } + ], + "expression": "MΒ·T-3Β·I-1", + "dimensionless": false, + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq165", + "name": "electric field gradient" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd74" + }, + { + "type": "unitsml", + "id": "d:electric_field_gradient" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E-1L0I0M1H0T-3D0" + } + ] + }, + { + "id": "NISTd75", + "unitsml_id": "d:electric_quadrupole_moment", + "name": "electric quadrupole moment", + "names": [ + { + "value": "electric quadrupole moment", + "lang": "en" + } + ], + "expression": "L2Β·TΒ·I", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq167", + "name": "electric quadrupole moment" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd75" + }, + { + "type": "unitsml", + "id": "d:electric_quadrupole_moment" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E1L2I0M0H0T1D0" + } + ] + }, + { + "id": "NISTd76", + "unitsml_id": "d:polarizability", + "name": "polarizability", + "names": [ + { + "value": "polarizability", + "lang": "en" + } + ], + "expression": "MΒ·T4Β·I2", + "dimensionless": false, + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": 4 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "quantities": [ + { + "id": "NISTq168", + "name": "polarizability" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd76" + }, + { + "type": "unitsml", + "id": "d:polarizability" + } + ], + "references": [] + }, + { + "id": "NISTd77", + "unitsml_id": "d:hyperpolarizability_1st", + "name": "hyperpolarizability 1st", + "names": [ + { + "value": "hyperpolarizability 1st", + "lang": "en" + } + ], + "expression": "L-1Β·M-2Β·T7Β·I3", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": -2 + }, + { + "key": "time", + "symbol": "T", + "power": 7 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 3 + } + ], + "quantities": [ + { + "id": "NISTq172", + "name": "1st hyperpolarizability" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd77" + }, + { + "type": "unitsml", + "id": "d:hyperpolarizability_1st" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E3L-1I0M-2H0T7D0" + } + ] + }, + { + "id": "NISTd78", + "unitsml_id": "d:hyperpolarizability_2nd", + "name": "hyperpolarizability 2nd", + "names": [ + { + "value": "hyperpolarizability 2nd", + "lang": "en" + } + ], + "expression": "L-2Β·M-3Β·T10Β·I4", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": -3 + }, + { + "key": "time", + "symbol": "T", + "power": 10 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 4 + } + ], + "quantities": [ + { + "id": "NISTq173", + "name": "2nd hyperpolarizability" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd78" + }, + { + "type": "unitsml", + "id": "d:hyperpolarizability_2nd" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E4L-2I0M-3H0T10D0" + } + ] + }, + { + "id": "NISTd79", + "unitsml_id": "d:molality", + "name": "molality", + "names": [ + { + "value": "molality", + "lang": "en" + } + ], + "expression": "MΒ·N", + "dimensionless": false, + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq179", + "name": "molality of solute B" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd79" + }, + { + "type": "unitsml", + "id": "d:molality" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A1E0L0I0M1H0T0D0" + } + ] + }, + { + "id": "NISTd8", + "unitsml_id": "d:area", + "name": "area", + "names": [ + { + "value": "area", + "lang": "en" + } + ], + "expression": "L2", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + } + ], + "quantities": [ + { + "id": "NISTq8", + "name": "area" + }, + { + "id": "NISTq92", + "name": "hydrodynamic permeability" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd8" + }, + { + "type": "unitsml", + "id": "d:area" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd80", + "unitsml_id": "d:ratio_quantity", + "name": "ratio quantity", + "names": [ + { + "value": "ratio quantity", + "lang": "en" + } + ], + "expression": "1", + "dimensionless": true, + "components": [], + "quantities": [ + { + "id": "NISTq111", + "name": "rotation" + }, + { + "id": "NISTq125", + "name": "relative mass density" + }, + { + "id": "NISTq136", + "name": "linear strain" + }, + { + "id": "NISTq137", + "name": "shear strain" + }, + { + "id": "NISTq138", + "name": "volume strain" + }, + { + "id": "NISTq140", + "name": "Poisson number" + }, + { + "id": "NISTq147", + "name": "dynamic friction factor" + }, + { + "id": "NISTq188", + "name": "nil" + }, + { + "id": "NISTq199", + "name": "relative humidity" + }, + { + "id": "NISTq93", + "name": "refractive index" + }, + { + "id": "NISTq94", + "name": "relative permeability" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd80" + }, + { + "type": "unitsml", + "id": "d:ratio_quantity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd83", + "unitsml_id": "d:level_of_field_quantity", + "name": "level of field quantity", + "names": [ + { + "value": "level of field quantity", + "lang": "en" + } + ], + "expression": "1", + "dimensionless": true, + "components": [], + "quantities": [ + { + "id": "NISTq118", + "name": "level of a field quantity" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd83" + }, + { + "type": "unitsml", + "id": "d:level_of_field_quantity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd84", + "unitsml_id": "d:field_power_level", + "name": "field power level", + "names": [ + { + "value": "field power level", + "lang": "en" + } + ], + "expression": "1", + "dimensionless": true, + "components": [], + "quantities": [ + { + "id": "NISTq119", + "name": "level of a power quantity" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd84" + }, + { + "type": "unitsml", + "id": "d:field_power_level" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd85", + "unitsml_id": "d:mass_mole_fraction", + "name": "mass mole fraction", + "names": [ + { + "value": "mass mole fraction", + "lang": "en" + } + ], + "expression": "1", + "dimensionless": true, + "components": [], + "quantities": [ + { + "id": "NISTq186", + "name": "mass fraction" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd85" + }, + { + "type": "unitsml", + "id": "d:mass_mole_fraction" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd9", + "unitsml_id": "d:plane_angle", + "name": "plane angle", + "names": [ + { + "value": "plane angle", + "lang": "en" + } + ], + "expression": "1", + "dimensionless": true, + "components": [ + { + "key": "plane_angle", + "symbol": "phi", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq9", + "name": "plane angle" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd9" + }, + { + "type": "unitsml", + "id": "d:plane_angle" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd94", + "unitsml_id": "d:acidity_index", + "name": "acidity index", + "names": [ + { + "value": "acidity index", + "lang": "en" + } + ], + "expression": "1", + "dimensionless": true, + "components": [], + "quantities": [ + { + "id": "NISTq174", + "name": "index of acidity" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd94" + }, + { + "type": "unitsml", + "id": "d:acidity_index" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd95", + "unitsml_id": "d:storage_capacity", + "name": "storage capacity", + "names": [ + { + "value": "storage capacity", + "lang": "en" + } + ], + "expression": "1", + "dimensionless": true, + "components": [], + "quantities": [ + { + "id": "NISTq177", + "name": "storage capacity" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd95" + }, + { + "type": "unitsml", + "id": "d:storage_capacity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd96", + "unitsml_id": "d:fluence", + "name": "fluence", + "names": [ + { + "value": "fluence", + "lang": "en" + } + ], + "expression": "L-2", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + } + ], + "quantities": [ + { + "id": "NISTq190", + "name": "fluence" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd96" + }, + { + "type": "unitsml", + "id": "d:fluence" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd97", + "unitsml_id": "d:fluence_rate", + "name": "fluence_rate", + "names": [ + { + "value": "fluence_rate", + "lang": "en" + } + ], + "expression": "L-2Β·T-1", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "quantities": [ + { + "id": "NISTq191", + "name": "fluence rate" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd97" + }, + { + "type": "unitsml", + "id": "d:fluence_rate" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T-1D0" + } + ] + }, + { + "id": "NISTd98", + "unitsml_id": "d:phase", + "name": "phase", + "names": [ + { + "value": "phase", + "lang": "en" + } + ], + "expression": "1", + "dimensionless": true, + "components": [ + { + "key": "plane_angle", + "symbol": "phi", + "power": 1 + } + ], + "quantities": [ + { + "id": "NISTq195", + "name": "phase" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd98" + }, + { + "type": "unitsml", + "id": "d:phase" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0" + } + ] + }, + { + "id": "NISTd99", + "unitsml_id": "d:fuel_efficiency", + "name": "fuel efficiency", + "names": [ + { + "value": "fuel efficiency", + "lang": "en" + } + ], + "expression": "L-2", + "dimensionless": false, + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + } + ], + "quantities": [ + { + "id": "NISTq198", + "name": "fuel efficiency" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTd99" + }, + { + "type": "unitsml", + "id": "d:fuel_efficiency" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T0D0" + } + ] + } + ], + "prefixes": [ + { + "id": "NISTp10_-1", + "unitsml_id": "p:deci", + "name": "deci", + "symbol": "d", + "symbols": { + "unicode": "d", + "ascii": "d", + "html": "d", + "latex": "d", + "id": "deci", + "mathml": "d" + }, + "factor": "10^-1", + "base": 10, + "power": -1, + "value": 0.1, + "units": [ + { + "id": "NISTu155", + "name": "decibel", + "symbol": "dB" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_-1" + }, + { + "type": "unitsml", + "id": "p:deci" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/deci" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:d" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Deci" + } + ] + }, + { + "id": "NISTp10_-12", + "unitsml_id": "p:pico", + "name": "pico", + "symbol": "p", + "symbols": { + "unicode": "p", + "ascii": "p", + "html": "p", + "latex": "p", + "id": "pico", + "mathml": "p" + }, + "factor": "10^-12", + "base": 10, + "power": -12, + "value": 1e-12, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_-12" + }, + { + "type": "unitsml", + "id": "p:pico" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/pico" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:p" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Pico" + } + ] + }, + { + "id": "NISTp10_-15", + "unitsml_id": "p:femto", + "name": "femto", + "symbol": "f", + "symbols": { + "unicode": "f", + "ascii": "f", + "html": "f", + "latex": "f", + "id": "femto", + "mathml": "f" + }, + "factor": "10^-15", + "base": 10, + "power": -15, + "value": 1e-15, + "units": [ + { + "id": "NISTu26", + "name": "fermi", + "symbol": "fermi" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_-15" + }, + { + "type": "unitsml", + "id": "p:femto" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/femto" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:f" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Femto" + } + ] + }, + { + "id": "NISTp10_-18", + "unitsml_id": "p:atto", + "name": "atto", + "symbol": "a", + "symbols": { + "unicode": "a", + "ascii": "a", + "html": "a", + "latex": "a", + "id": "atto", + "mathml": "a" + }, + "factor": "10^-18", + "base": 10, + "power": -18, + "value": 1e-18, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_-18" + }, + { + "type": "unitsml", + "id": "p:atto" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/atto" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:a" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Atto" + } + ] + }, + { + "id": "NISTp10_-2", + "unitsml_id": "p:centi", + "name": "centi", + "symbol": "c", + "symbols": { + "unicode": "c", + "ascii": "c", + "html": "c", + "latex": "c", + "id": "centi", + "mathml": "c" + }, + "factor": "10^-2", + "base": 10, + "power": -2, + "value": 0.01, + "units": [ + { + "id": "NISTu121", + "name": "centistokes", + "symbol": "cSt" + }, + { + "id": "NISTu92", + "name": "dyne per square centimeter", + "symbol": "dynΒ·cm⁻²" + }, + { + "id": "NISTu93", + "name": "gram-force per square centimeter", + "symbol": "gfΒ·cm⁻²" + }, + { + "id": "NISTu94", + "name": "kilogram-force per square centimeter", + "symbol": "kgfΒ·cm⁻²" + }, + { + "id": "NISTu97", + "name": "centipoise", + "symbol": "cP" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_-2" + }, + { + "type": "unitsml", + "id": "p:centi" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/centi" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:c" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Centi" + } + ] + }, + { + "id": "NISTp10_-21", + "unitsml_id": "p:zepto", + "name": "zepto", + "symbol": "z", + "symbols": { + "unicode": "z", + "ascii": "z", + "html": "z", + "latex": "z", + "id": "zepto", + "mathml": "z" + }, + "factor": "10^-21", + "base": 10, + "power": -21, + "value": 1e-21, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_-21" + }, + { + "type": "unitsml", + "id": "p:zepto" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/zepto" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:z" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Zepto" + } + ] + }, + { + "id": "NISTp10_-24", + "unitsml_id": "p:yocto", + "name": "yocto", + "symbol": "y", + "symbols": { + "unicode": "y", + "ascii": "y", + "html": "y", + "latex": "y", + "id": "yocto", + "mathml": "y" + }, + "factor": "10^-24", + "base": 10, + "power": -24, + "value": 1e-24, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_-24" + }, + { + "type": "unitsml", + "id": "p:yocto" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/yocto" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:y" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Yocto" + } + ] + }, + { + "id": "NISTp10_-27", + "unitsml_id": "p:ronto", + "name": "ronto", + "symbol": "r", + "symbols": { + "unicode": "r", + "ascii": "r", + "html": "r", + "latex": "r", + "id": "ronto", + "mathml": "r" + }, + "factor": "10^-27", + "base": 10, + "power": -27, + "value": 1e-27, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_-27" + }, + { + "type": "unitsml", + "id": "p:ronto" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/ronto" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Ronto" + } + ] + }, + { + "id": "NISTp10_-3", + "unitsml_id": "p:milli", + "name": "milli", + "symbol": "m", + "symbols": { + "unicode": "m", + "ascii": "m", + "html": "m", + "latex": "m", + "id": "milli", + "mathml": "m" + }, + "factor": "10^-3", + "base": 10, + "power": -3, + "value": 0.001, + "units": [ + { + "id": "NISTu123", + "name": "mil (length)", + "symbol": "thou" + }, + { + "id": "NISTu362", + "name": "millibar", + "symbol": "mbar" + }, + { + "id": "NISTu365", + "name": "milliliter", + "symbol": "ml" + }, + { + "id": "NISTu96", + "name": "kilogram-force per square millimeter", + "symbol": "kgfΒ·mm⁻²" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_-3" + }, + { + "type": "unitsml", + "id": "p:milli" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/milli" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:m" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Milli" + } + ] + }, + { + "id": "NISTp10_-30", + "unitsml_id": "p:quecto", + "name": "quecto", + "symbol": "q", + "symbols": { + "unicode": "q", + "ascii": "q", + "html": "q", + "latex": "q", + "id": "quecto", + "mathml": "q" + }, + "factor": "10^-30", + "base": 10, + "power": -30, + "value": 1e-30, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_-30" + }, + { + "type": "unitsml", + "id": "p:quecto" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/quecto" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Quecto" + } + ] + }, + { + "id": "NISTp10_-6", + "unitsml_id": "p:micro", + "name": "micro", + "symbol": "ΞΌ", + "symbols": { + "unicode": "ΞΌ", + "ascii": "u", + "html": "µ", + "latex": "$mu$", + "id": "micro", + "mathml": "µ" + }, + "factor": "10^-6", + "base": 10, + "power": -6, + "value": 0.000001, + "units": [ + { + "id": "NISTu122", + "name": "micron", + "symbol": "ΞΌ" + }, + { + "id": "NISTu361", + "name": "microinch", + "symbol": "ΞΌin" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_-6" + }, + { + "type": "unitsml", + "id": "p:micro" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/micro" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:u" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Micro" + } + ] + }, + { + "id": "NISTp10_-9", + "unitsml_id": "p:nano", + "name": "nano", + "symbol": "n", + "symbols": { + "unicode": "n", + "ascii": "n", + "html": "n", + "latex": "n", + "id": "nano", + "mathml": "n" + }, + "factor": "10^-9", + "base": 10, + "power": -9, + "value": 1e-9, + "units": [ + { + "id": "NISTu116", + "name": "gamma", + "symbol": "Ξ³" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_-9" + }, + { + "type": "unitsml", + "id": "p:nano" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/nano" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:n" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Nano" + } + ] + }, + { + "id": "NISTp10_0", + "unitsml_id": "p:none", + "name": "none", + "symbol": "1", + "symbols": { + "unicode": "1", + "ascii": "1", + "html": "1", + "latex": "1", + "id": "unity", + "mathml": "1" + }, + "factor": "10^0", + "base": 10, + "power": 0, + "value": 1, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_0" + }, + { + "type": "unitsml", + "id": "p:none" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/none" + } + ] + }, + { + "id": "NISTp10_1", + "unitsml_id": "p:deka", + "name": "deka", + "symbol": "da", + "symbols": { + "unicode": "da", + "ascii": "da", + "html": "da", + "latex": "da", + "id": "deka", + "mathml": "da" + }, + "factor": "10^1", + "base": 10, + "power": 1, + "value": 10, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_1" + }, + { + "type": "unitsml", + "id": "p:deka" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/deca" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:da" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Deca" + } + ] + }, + { + "id": "NISTp10_12", + "unitsml_id": "p:tera", + "name": "tera", + "symbol": "T", + "symbols": { + "unicode": "T", + "ascii": "T", + "html": "T", + "latex": "T", + "id": "tera", + "mathml": "T" + }, + "factor": "10^12", + "base": 10, + "power": 12, + "value": 1000000000000, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_12" + }, + { + "type": "unitsml", + "id": "p:tera" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/tera" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:T" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Tera" + } + ] + }, + { + "id": "NISTp10_15", + "unitsml_id": "p:peta", + "name": "peta", + "symbol": "P", + "symbols": { + "unicode": "P", + "ascii": "P", + "html": "P", + "latex": "P", + "id": "peta", + "mathml": "P" + }, + "factor": "10^15", + "base": 10, + "power": 15, + "value": 1000000000000000, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_15" + }, + { + "type": "unitsml", + "id": "p:peta" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/peta" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:P" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Peta" + } + ] + }, + { + "id": "NISTp10_18", + "unitsml_id": "p:exa", + "name": "exa", + "symbol": "E", + "symbols": { + "unicode": "E", + "ascii": "E", + "html": "E", + "latex": "E", + "id": "exa", + "mathml": "E" + }, + "factor": "10^18", + "base": 10, + "power": 18, + "value": 1000000000000000000, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_18" + }, + { + "type": "unitsml", + "id": "p:exa" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/exa" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:E" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Exa" + } + ] + }, + { + "id": "NISTp10_2", + "unitsml_id": "p:hecto", + "name": "hecto", + "symbol": "h", + "symbols": { + "unicode": "h", + "ascii": "h", + "html": "h", + "latex": "h", + "id": "hecto", + "mathml": "h" + }, + "factor": "10^2", + "base": 10, + "power": 2, + "value": 100, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_2" + }, + { + "type": "unitsml", + "id": "p:hecto" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/hecto" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:h" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Hecto" + } + ] + }, + { + "id": "NISTp10_21", + "unitsml_id": "p:zetta", + "name": "zetta", + "symbol": "Z", + "symbols": { + "unicode": "Z", + "ascii": "Z", + "html": "Z", + "latex": "Z", + "id": "zetta", + "mathml": "Z" + }, + "factor": "10^21", + "base": 10, + "power": 21, + "value": 1e+21, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_21" + }, + { + "type": "unitsml", + "id": "p:zetta" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/zetta" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:Z" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Zetta" + } + ] + }, + { + "id": "NISTp10_24", + "unitsml_id": "p:yotta", + "name": "yotta", + "symbol": "Y", + "symbols": { + "unicode": "Y", + "ascii": "Y", + "html": "Y", + "latex": "Y", + "id": "yotta", + "mathml": "Y" + }, + "factor": "10^24", + "base": 10, + "power": 24, + "value": 1e+24, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_24" + }, + { + "type": "unitsml", + "id": "p:yotta" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/yotta" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:Y" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Yotta" + } + ] + }, + { + "id": "NISTp10_27", + "unitsml_id": "p:ronna", + "name": "ronna", + "symbol": "R", + "symbols": { + "unicode": "R", + "ascii": "R", + "html": "R", + "latex": "R", + "id": "ronna", + "mathml": "R" + }, + "factor": "10^27", + "base": 10, + "power": 27, + "value": 1e+27, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_27" + }, + { + "type": "unitsml", + "id": "p:ronna" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/ronna" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Ronna" + } + ] + }, + { + "id": "NISTp10_3", + "unitsml_id": "p:kilo", + "name": "kilo", + "symbol": "k", + "symbols": { + "unicode": "k", + "ascii": "k", + "html": "k", + "latex": "k", + "id": "kilo", + "mathml": "k" + }, + "factor": "10^3", + "base": 10, + "power": 3, + "value": 1000, + "units": [ + { + "id": "NISTu11.u1e2/1.u27p10'3e-2/1", + "name": "newton meter squared per kilogram squared", + "symbol": "NΒ·mΒ²/kgΒ²" + }, + { + "id": "NISTu125", + "name": "kilogram-force second squared per meter", + "symbol": "kgfΒ·sΒ²m⁻¹" + }, + { + "id": "NISTu126", + "name": "kilogram-force meter", + "symbol": "kgfΒ·m" + }, + { + "id": "NISTu13.u27p10'3e-1/1", + "name": "joule per kilogram", + "symbol": "J/kg" + }, + { + "id": "NISTu13.u27p10'3e-1/1.u5e-1/1", + "name": "joule per kilogram kelvin", + "symbol": "J/(kgΒ·K)" + }, + { + "id": "NISTu15.u27p10'3e-1/1", + "name": "coulomb per kilogram", + "symbol": "C/kg" + }, + { + "id": "NISTu160", + "name": "kilometer per hour", + "symbol": "km/h" + }, + { + "id": "NISTu188", + "name": "kilogram per liter", + "symbol": "kg/l" + }, + { + "id": "NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + { + "id": "NISTu1e3/1.u27p10'3", + "name": "cubic meter per kilogram", + "symbol": "mΒ³Β·kg" + }, + { + "id": "NISTu2", + "name": "kilogram", + "symbol": "kg" + }, + { + "id": "NISTu217", + "name": "kilogram-force meter per second", + "symbol": "kgfΒ·m/s" + }, + { + "id": "NISTu27p10'3.u1.u3e-1/1", + "name": "kilogram meter per second", + "symbol": "NΒ·m/s" + }, + { + "id": "NISTu27p10'3.u1e-1/1", + "name": "kilogram per meter", + "symbol": "kg/m" + }, + { + "id": "NISTu27p10'3.u1e-2/1", + "name": "kilogram per square meter", + "symbol": "kg/mΒ²" + }, + { + "id": "NISTu27p10'3.u1e-3/1", + "name": "kilogram per cubic meter", + "symbol": "kgΒ·m⁻³" + }, + { + "id": "NISTu27p10'3.u1e2/1", + "name": "kilogram meter squared", + "symbol": "kgΒ·mΒ²" + }, + { + "id": "NISTu27p10'3.u1e2/1.u3e-1/1", + "name": "kilogram meter squared per second", + "symbol": "kgΒ·mΒ²/s" + }, + { + "id": "NISTu27p10'3.u3e-1/1", + "name": "kilogram per second", + "symbol": "kg/s" + }, + { + "id": "NISTu380", + "name": "kilometer per liter", + "symbol": "km/L" + }, + { + "id": "NISTu6.u27p10'3e-1/1", + "name": "mole per kilogram", + "symbol": "mol/kg" + }, + { + "id": "NISTu65", + "name": "kilowatt hour", + "symbol": "kWΒ·h" + }, + { + "id": "NISTu72", + "name": "kilogram-force", + "symbol": "kgf" + }, + { + "id": "NISTu75", + "name": "kilocalorie_th per second", + "symbol": "kcal_th/s" + }, + { + "id": "NISTu94", + "name": "kilogram-force per square centimeter", + "symbol": "kgfΒ·cm⁻²" + }, + { + "id": "NISTu95", + "name": "kilogram-force per square meter", + "symbol": "kgfΒ·m⁻²" + }, + { + "id": "NISTu96", + "name": "kilogram-force per square millimeter", + "symbol": "kgfΒ·mm⁻²" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_3" + }, + { + "type": "unitsml", + "id": "p:kilo" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/kilo" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:k" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Kilo" + } + ] + }, + { + "id": "NISTp10_30", + "unitsml_id": "p:quetta", + "name": "quetta", + "symbol": "Q", + "symbols": { + "unicode": "Q", + "ascii": "Q", + "html": "Q", + "latex": "Q", + "id": "quetta", + "mathml": "Q" + }, + "factor": "10^30", + "base": 10, + "power": 30, + "value": 1e+30, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_30" + }, + { + "type": "unitsml", + "id": "p:quetta" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/quetta" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Quetta" + } + ] + }, + { + "id": "NISTp10_6", + "unitsml_id": "p:mega", + "name": "mega", + "symbol": "M", + "symbols": { + "unicode": "M", + "ascii": "M", + "html": "M", + "latex": "M", + "id": "mega", + "mathml": "M" + }, + "factor": "10^6", + "base": 10, + "power": 6, + "value": 1000000, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_6" + }, + { + "type": "unitsml", + "id": "p:mega" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/mega" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:M" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Mega" + } + ] + }, + { + "id": "NISTp10_9", + "unitsml_id": "p:giga", + "name": "giga", + "symbol": "G", + "symbols": { + "unicode": "G", + "ascii": "G", + "html": "G", + "latex": "G", + "id": "giga", + "mathml": "G" + }, + "factor": "10^9", + "base": 10, + "power": 9, + "value": 1000000000, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_9" + }, + { + "type": "unitsml", + "id": "p:giga" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/giga" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:G" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Giga" + } + ] + }, + { + "id": "NISTp2_10", + "unitsml_id": "p:kibi", + "name": "kibi", + "symbol": "Ki", + "symbols": { + "unicode": "Ki", + "ascii": "Ki", + "html": "Ki", + "latex": "Ki", + "id": "kibi", + "mathml": "Ki" + }, + "factor": "2^10", + "base": 2, + "power": 10, + "value": 1024, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp2_10" + }, + { + "type": "unitsml", + "id": "p:kibi" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:Ki" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/prefix/Kibi" + } + ] + }, + { + "id": "NISTp2_20", + "unitsml_id": "p:mebi", + "name": "mebi", + "symbol": "Mi", + "symbols": { + "unicode": "Mi", + "ascii": "Mi", + "html": "Mi", + "latex": "Mi", + "id": "mebi", + "mathml": "Mi" + }, + "factor": "2^20", + "base": 2, + "power": 20, + "value": 1048576, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp2_20" + }, + { + "type": "unitsml", + "id": "p:mebi" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:Mi" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/prefix/Mebi" + } + ] + }, + { + "id": "NISTp2_30", + "unitsml_id": "p:gibi", + "name": "gibi", + "symbol": "Gi", + "symbols": { + "unicode": "Gi", + "ascii": "Gi", + "html": "Gi", + "latex": "Gi", + "id": "gibi", + "mathml": "Gi" + }, + "factor": "2^30", + "base": 2, + "power": 30, + "value": 1073741824, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp2_30" + }, + { + "type": "unitsml", + "id": "p:gibi" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:Gi" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/prefix/Gibi" + } + ] + }, + { + "id": "NISTp2_40", + "unitsml_id": "p:tebi", + "name": "tebi", + "symbol": "Ti", + "symbols": { + "unicode": "Ti", + "ascii": "Ti", + "html": "Ti", + "latex": "Ti", + "id": "tebi", + "mathml": "Ti" + }, + "factor": "2^40", + "base": 2, + "power": 40, + "value": 1099511627776, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp2_40" + }, + { + "type": "unitsml", + "id": "p:tebi" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:Ti" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/prefix/Tebi" + } + ] + }, + { + "id": "NISTp2_50", + "unitsml_id": "p:pebi", + "name": "pebi", + "symbol": "Pi", + "symbols": { + "unicode": "Pi", + "ascii": "Pi", + "html": "Pi", + "latex": "Pi", + "id": "pebi", + "mathml": "Pi" + }, + "factor": "2^50", + "base": 2, + "power": 50, + "value": 1125899906842624, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp2_50" + }, + { + "type": "unitsml", + "id": "p:pebi" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/prefix/Pebi" + } + ] + }, + { + "id": "NISTp2_60", + "unitsml_id": "p:exbi", + "name": "exbi", + "symbol": "Ei", + "symbols": { + "unicode": "Ei", + "ascii": "Ei", + "html": "Ei", + "latex": "Ei", + "id": "exbi", + "mathml": "Ei" + }, + "factor": "2^60", + "base": 2, + "power": 60, + "value": 1152921504606847000, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp2_60" + }, + { + "type": "unitsml", + "id": "p:exbi" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/prefix/Exbi" + } + ] + }, + { + "id": "NISTp2_70", + "unitsml_id": "p:zebi", + "name": "zebi", + "symbol": "Zi", + "symbols": { + "unicode": "Zi", + "ascii": "Zi", + "html": "Zi", + "latex": "Zi", + "id": "zebi", + "mathml": "Zi" + }, + "factor": "2^70", + "base": 2, + "power": 70, + "value": 1.1805916207174113e+21, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp2_70" + }, + { + "type": "unitsml", + "id": "p:zebi" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/prefix/Zebi" + } + ] + }, + { + "id": "NISTp2_80", + "unitsml_id": "p:yobi", + "name": "yobi", + "symbol": "Yi", + "symbols": { + "unicode": "Yi", + "ascii": "Yi", + "html": "Yi", + "latex": "Yi", + "id": "yobi", + "mathml": "Yi" + }, + "factor": "2^80", + "base": 2, + "power": 80, + "value": 1.2089258196146292e+24, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp2_80" + }, + { + "type": "unitsml", + "id": "p:yobi" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/prefix/Yobi" + } + ] + } + ], + "scales": [ + { + "id": "continuous_ratio", + "unitsml_id": "continuous_ratio", + "name": "continuous ratio scale", + "properties": { + "continuous": true, + "ordered": true, + "logarithmic": false, + "interval": true, + "ratio": true + }, + "description": [], + "unit_count": 367, + "identifiers": [ + { + "type": "unitsml", + "id": "continuous_ratio" + }, + { + "type": "unitsml", + "id": "s:continuous_ratio" + } + ] + }, + { + "id": "continuous_interval", + "unitsml_id": "continuous_interval", + "name": "continuous interval scale", + "properties": { + "continuous": true, + "ordered": true, + "logarithmic": false, + "interval": true, + "ratio": false + }, + "description": [], + "unit_count": 3, + "identifiers": [ + { + "type": "unitsml", + "id": "continuous_interval" + }, + { + "type": "unitsml", + "id": "s:continuous_interval" + } + ] + }, + { + "id": "logarithmic_ratio", + "unitsml_id": "logarithmic_ratio", + "name": "logarithmic ratio scale", + "properties": { + "continuous": true, + "ordered": true, + "logarithmic": true, + "interval": true, + "ratio": true + }, + "description": [], + "unit_count": 3, + "identifiers": [ + { + "type": "unitsml", + "id": "logarithmic_ratio" + }, + { + "type": "unitsml", + "id": "s:logarithmic_ratio" + } + ] + }, + { + "id": "logarithmic_field", + "unitsml_id": "logarithmic_field", + "name": "logarithmic field scale", + "properties": { + "continuous": true, + "ordered": true, + "logarithmic": true, + "interval": true, + "ratio": false + }, + "description": [], + "unit_count": 2, + "identifiers": [ + { + "type": "unitsml", + "id": "logarithmic_field" + }, + { + "type": "unitsml", + "id": "s:logarithmic_field" + } + ] + }, + { + "id": "discrete", + "unitsml_id": "discrete", + "name": "discrete scale", + "properties": { + "continuous": false, + "ordered": true, + "logarithmic": false, + "interval": true, + "ratio": true + }, + "description": [], + "unit_count": 5, + "identifiers": [ + { + "type": "unitsml", + "id": "discrete" + }, + { + "type": "unitsml", + "id": "s:discrete" + } + ] + } + ], + "unit_systems": [ + { + "id": "SI_base", + "unitsml_id": "us:si-base", + "name": "SI base units", + "short": "si-base", + "acceptable": true, + "unit_count": 8, + "identifiers": [ + { + "type": "nist", + "id": "SI_base" + }, + { + "type": "unitsml", + "id": "us:si-base" + } + ], + "base_units": [] + }, + { + "id": "SI_compatible", + "unitsml_id": "us:si-compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true, + "unit_count": 88, + "identifiers": [ + { + "type": "nist", + "id": "SI_compatible" + }, + { + "type": "unitsml", + "id": "us:si-compatible" + } + ], + "base_units": [] + }, + { + "id": "SI_derived_non-special", + "unitsml_id": "us:si-derived-nonspecial", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true, + "unit_count": 58, + "identifiers": [ + { + "type": "nist", + "id": "SI_derived_non-special" + }, + { + "type": "unitsml", + "id": "us:si-derived-nonspecial" + } + ], + "base_units": [] + }, + { + "id": "SI_derived_special", + "unitsml_id": "us:si-derived-special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true, + "unit_count": 22, + "identifiers": [ + { + "type": "nist", + "id": "SI_derived_special" + }, + { + "type": "unitsml", + "id": "us:si-derived-special" + } + ], + "base_units": [] + }, + { + "id": "non-SI_acceptable", + "unitsml_id": "us:nonsi-acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true, + "unit_count": 33, + "identifiers": [ + { + "type": "nist", + "id": "non-SI_acceptable" + }, + { + "type": "unitsml", + "id": "us:nonsi-acceptable" + } + ], + "base_units": [] + }, + { + "id": "non-SI_nist_acceptable", + "unitsml_id": "us:nonsi-nist-acceptable", + "name": "non-SI but acceptable by NIST SP 811", + "short": "nonsi-nist-acceptable", + "acceptable": true, + "unit_count": 5, + "identifiers": [ + { + "type": "nist", + "id": "non-SI_nist_acceptable" + }, + { + "type": "unitsml", + "id": "us:nonsi-nist-acceptable" + } + ], + "base_units": [] + }, + { + "id": "non-SI_not_acceptable", + "unitsml_id": "us:nonsi-unacceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false, + "unit_count": 259, + "identifiers": [ + { + "type": "nist", + "id": "non-SI_not_acceptable" + }, + { + "type": "unitsml", + "id": "us:nonsi-unacceptable" + } + ], + "base_units": [] + } + ] +} \ No newline at end of file diff --git a/public/unitsdb/prefix.jsonld b/public/unitsdb/prefix.jsonld new file mode 100644 index 0000000..b33faa3 --- /dev/null +++ b/public/unitsdb/prefix.jsonld @@ -0,0 +1,731 @@ +{ + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@graph": [ + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:deci", + "@type": "Prefix", + "name": "deci", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_-1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:deci" + } + ], + "symbol": "d", + "base": 10, + "power": -1, + "value": 0.1 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:pico", + "@type": "Prefix", + "name": "pico", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_-12" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:pico" + } + ], + "symbol": "p", + "base": 10, + "power": -12, + "value": 1e-12 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:femto", + "@type": "Prefix", + "name": "femto", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_-15" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:femto" + } + ], + "symbol": "f", + "base": 10, + "power": -15, + "value": 1e-15 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:atto", + "@type": "Prefix", + "name": "atto", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_-18" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:atto" + } + ], + "symbol": "a", + "base": 10, + "power": -18, + "value": 1e-18 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:centi", + "@type": "Prefix", + "name": "centi", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_-2" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:centi" + } + ], + "symbol": "c", + "base": 10, + "power": -2, + "value": 0.01 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:zepto", + "@type": "Prefix", + "name": "zepto", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_-21" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:zepto" + } + ], + "symbol": "z", + "base": 10, + "power": -21, + "value": 1e-21 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:yocto", + "@type": "Prefix", + "name": "yocto", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_-24" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:yocto" + } + ], + "symbol": "y", + "base": 10, + "power": -24, + "value": 1e-24 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:ronto", + "@type": "Prefix", + "name": "ronto", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_-27" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:ronto" + } + ], + "symbol": "r", + "base": 10, + "power": -27, + "value": 1e-27 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:milli", + "@type": "Prefix", + "name": "milli", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_-3" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:milli" + } + ], + "symbol": "m", + "base": 10, + "power": -3, + "value": 0.001 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:quecto", + "@type": "Prefix", + "name": "quecto", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_-30" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:quecto" + } + ], + "symbol": "q", + "base": 10, + "power": -30, + "value": 1e-30 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:micro", + "@type": "Prefix", + "name": "micro", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_-6" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:micro" + } + ], + "symbol": "ΞΌ", + "base": 10, + "power": -6, + "value": 0.000001 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:nano", + "@type": "Prefix", + "name": "nano", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_-9" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:nano" + } + ], + "symbol": "n", + "base": 10, + "power": -9, + "value": 1e-9 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:none", + "@type": "Prefix", + "name": "none", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_0" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:none" + } + ], + "symbol": "1", + "base": 10, + "power": 0, + "value": 1 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:deka", + "@type": "Prefix", + "name": "deka", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:deka" + } + ], + "symbol": "da", + "base": 10, + "power": 1, + "value": 10 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:tera", + "@type": "Prefix", + "name": "tera", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_12" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:tera" + } + ], + "symbol": "T", + "base": 10, + "power": 12, + "value": 1000000000000 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:peta", + "@type": "Prefix", + "name": "peta", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_15" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:peta" + } + ], + "symbol": "P", + "base": 10, + "power": 15, + "value": 1000000000000000 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:exa", + "@type": "Prefix", + "name": "exa", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_18" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:exa" + } + ], + "symbol": "E", + "base": 10, + "power": 18, + "value": 1000000000000000000 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:hecto", + "@type": "Prefix", + "name": "hecto", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_2" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:hecto" + } + ], + "symbol": "h", + "base": 10, + "power": 2, + "value": 100 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:zetta", + "@type": "Prefix", + "name": "zetta", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_21" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:zetta" + } + ], + "symbol": "Z", + "base": 10, + "power": 21, + "value": 1e+21 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:yotta", + "@type": "Prefix", + "name": "yotta", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_24" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:yotta" + } + ], + "symbol": "Y", + "base": 10, + "power": 24, + "value": 1e+24 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:ronna", + "@type": "Prefix", + "name": "ronna", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_27" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:ronna" + } + ], + "symbol": "R", + "base": 10, + "power": 27, + "value": 1e+27 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:kilo", + "@type": "Prefix", + "name": "kilo", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_3" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:kilo" + } + ], + "symbol": "k", + "base": 10, + "power": 3, + "value": 1000 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:quetta", + "@type": "Prefix", + "name": "quetta", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_30" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:quetta" + } + ], + "symbol": "Q", + "base": 10, + "power": 30, + "value": 1e+30 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:mega", + "@type": "Prefix", + "name": "mega", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_6" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:mega" + } + ], + "symbol": "M", + "base": 10, + "power": 6, + "value": 1000000 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:giga", + "@type": "Prefix", + "name": "giga", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_9" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:giga" + } + ], + "symbol": "G", + "base": 10, + "power": 9, + "value": 1000000000 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:kibi", + "@type": "Prefix", + "name": "kibi", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp2_10" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:kibi" + } + ], + "symbol": "Ki", + "base": 2, + "power": 10, + "value": 1024 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:mebi", + "@type": "Prefix", + "name": "mebi", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp2_20" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:mebi" + } + ], + "symbol": "Mi", + "base": 2, + "power": 20, + "value": 1048576 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:gibi", + "@type": "Prefix", + "name": "gibi", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp2_30" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:gibi" + } + ], + "symbol": "Gi", + "base": 2, + "power": 30, + "value": 1073741824 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:tebi", + "@type": "Prefix", + "name": "tebi", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp2_40" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:tebi" + } + ], + "symbol": "Ti", + "base": 2, + "power": 40, + "value": 1099511627776 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:pebi", + "@type": "Prefix", + "name": "pebi", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp2_50" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:pebi" + } + ], + "symbol": "Pi", + "base": 2, + "power": 50, + "value": 1125899906842624 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:exbi", + "@type": "Prefix", + "name": "exbi", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp2_60" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:exbi" + } + ], + "symbol": "Ei", + "base": 2, + "power": 60, + "value": 1152921504606847000 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:zebi", + "@type": "Prefix", + "name": "zebi", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp2_70" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:zebi" + } + ], + "symbol": "Zi", + "base": 2, + "power": 70, + "value": 1.1805916207174113e+21 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:yobi", + "@type": "Prefix", + "name": "yobi", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp2_80" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:yobi" + } + ], + "symbol": "Yi", + "base": 2, + "power": 80, + "value": 1.2089258196146292e+24 + } + ] +} \ No newline at end of file diff --git a/public/unitsdb/prefixes.json b/public/unitsdb/prefixes.json new file mode 100644 index 0000000..97120d8 --- /dev/null +++ b/public/unitsdb/prefixes.json @@ -0,0 +1,1642 @@ +[ + { + "id": "NISTp10_-1", + "unitsml_id": "p:deci", + "name": "deci", + "symbol": "d", + "symbols": { + "unicode": "d", + "ascii": "d", + "html": "d", + "latex": "d", + "id": "deci", + "mathml": "d" + }, + "factor": "10^-1", + "base": 10, + "power": -1, + "value": 0.1, + "units": [ + { + "id": "NISTu155", + "name": "decibel", + "symbol": "dB" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_-1" + }, + { + "type": "unitsml", + "id": "p:deci" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/deci" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:d" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Deci" + } + ] + }, + { + "id": "NISTp10_-12", + "unitsml_id": "p:pico", + "name": "pico", + "symbol": "p", + "symbols": { + "unicode": "p", + "ascii": "p", + "html": "p", + "latex": "p", + "id": "pico", + "mathml": "p" + }, + "factor": "10^-12", + "base": 10, + "power": -12, + "value": 1e-12, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_-12" + }, + { + "type": "unitsml", + "id": "p:pico" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/pico" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:p" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Pico" + } + ] + }, + { + "id": "NISTp10_-15", + "unitsml_id": "p:femto", + "name": "femto", + "symbol": "f", + "symbols": { + "unicode": "f", + "ascii": "f", + "html": "f", + "latex": "f", + "id": "femto", + "mathml": "f" + }, + "factor": "10^-15", + "base": 10, + "power": -15, + "value": 1e-15, + "units": [ + { + "id": "NISTu26", + "name": "fermi", + "symbol": "fermi" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_-15" + }, + { + "type": "unitsml", + "id": "p:femto" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/femto" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:f" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Femto" + } + ] + }, + { + "id": "NISTp10_-18", + "unitsml_id": "p:atto", + "name": "atto", + "symbol": "a", + "symbols": { + "unicode": "a", + "ascii": "a", + "html": "a", + "latex": "a", + "id": "atto", + "mathml": "a" + }, + "factor": "10^-18", + "base": 10, + "power": -18, + "value": 1e-18, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_-18" + }, + { + "type": "unitsml", + "id": "p:atto" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/atto" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:a" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Atto" + } + ] + }, + { + "id": "NISTp10_-2", + "unitsml_id": "p:centi", + "name": "centi", + "symbol": "c", + "symbols": { + "unicode": "c", + "ascii": "c", + "html": "c", + "latex": "c", + "id": "centi", + "mathml": "c" + }, + "factor": "10^-2", + "base": 10, + "power": -2, + "value": 0.01, + "units": [ + { + "id": "NISTu121", + "name": "centistokes", + "symbol": "cSt" + }, + { + "id": "NISTu92", + "name": "dyne per square centimeter", + "symbol": "dynΒ·cm⁻²" + }, + { + "id": "NISTu93", + "name": "gram-force per square centimeter", + "symbol": "gfΒ·cm⁻²" + }, + { + "id": "NISTu94", + "name": "kilogram-force per square centimeter", + "symbol": "kgfΒ·cm⁻²" + }, + { + "id": "NISTu97", + "name": "centipoise", + "symbol": "cP" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_-2" + }, + { + "type": "unitsml", + "id": "p:centi" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/centi" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:c" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Centi" + } + ] + }, + { + "id": "NISTp10_-21", + "unitsml_id": "p:zepto", + "name": "zepto", + "symbol": "z", + "symbols": { + "unicode": "z", + "ascii": "z", + "html": "z", + "latex": "z", + "id": "zepto", + "mathml": "z" + }, + "factor": "10^-21", + "base": 10, + "power": -21, + "value": 1e-21, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_-21" + }, + { + "type": "unitsml", + "id": "p:zepto" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/zepto" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:z" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Zepto" + } + ] + }, + { + "id": "NISTp10_-24", + "unitsml_id": "p:yocto", + "name": "yocto", + "symbol": "y", + "symbols": { + "unicode": "y", + "ascii": "y", + "html": "y", + "latex": "y", + "id": "yocto", + "mathml": "y" + }, + "factor": "10^-24", + "base": 10, + "power": -24, + "value": 1e-24, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_-24" + }, + { + "type": "unitsml", + "id": "p:yocto" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/yocto" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:y" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Yocto" + } + ] + }, + { + "id": "NISTp10_-27", + "unitsml_id": "p:ronto", + "name": "ronto", + "symbol": "r", + "symbols": { + "unicode": "r", + "ascii": "r", + "html": "r", + "latex": "r", + "id": "ronto", + "mathml": "r" + }, + "factor": "10^-27", + "base": 10, + "power": -27, + "value": 1e-27, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_-27" + }, + { + "type": "unitsml", + "id": "p:ronto" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/ronto" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Ronto" + } + ] + }, + { + "id": "NISTp10_-3", + "unitsml_id": "p:milli", + "name": "milli", + "symbol": "m", + "symbols": { + "unicode": "m", + "ascii": "m", + "html": "m", + "latex": "m", + "id": "milli", + "mathml": "m" + }, + "factor": "10^-3", + "base": 10, + "power": -3, + "value": 0.001, + "units": [ + { + "id": "NISTu123", + "name": "mil (length)", + "symbol": "thou" + }, + { + "id": "NISTu362", + "name": "millibar", + "symbol": "mbar" + }, + { + "id": "NISTu365", + "name": "milliliter", + "symbol": "ml" + }, + { + "id": "NISTu96", + "name": "kilogram-force per square millimeter", + "symbol": "kgfΒ·mm⁻²" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_-3" + }, + { + "type": "unitsml", + "id": "p:milli" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/milli" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:m" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Milli" + } + ] + }, + { + "id": "NISTp10_-30", + "unitsml_id": "p:quecto", + "name": "quecto", + "symbol": "q", + "symbols": { + "unicode": "q", + "ascii": "q", + "html": "q", + "latex": "q", + "id": "quecto", + "mathml": "q" + }, + "factor": "10^-30", + "base": 10, + "power": -30, + "value": 1e-30, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_-30" + }, + { + "type": "unitsml", + "id": "p:quecto" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/quecto" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Quecto" + } + ] + }, + { + "id": "NISTp10_-6", + "unitsml_id": "p:micro", + "name": "micro", + "symbol": "ΞΌ", + "symbols": { + "unicode": "ΞΌ", + "ascii": "u", + "html": "µ", + "latex": "$mu$", + "id": "micro", + "mathml": "µ" + }, + "factor": "10^-6", + "base": 10, + "power": -6, + "value": 0.000001, + "units": [ + { + "id": "NISTu122", + "name": "micron", + "symbol": "ΞΌ" + }, + { + "id": "NISTu361", + "name": "microinch", + "symbol": "ΞΌin" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_-6" + }, + { + "type": "unitsml", + "id": "p:micro" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/micro" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:u" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Micro" + } + ] + }, + { + "id": "NISTp10_-9", + "unitsml_id": "p:nano", + "name": "nano", + "symbol": "n", + "symbols": { + "unicode": "n", + "ascii": "n", + "html": "n", + "latex": "n", + "id": "nano", + "mathml": "n" + }, + "factor": "10^-9", + "base": 10, + "power": -9, + "value": 1e-9, + "units": [ + { + "id": "NISTu116", + "name": "gamma", + "symbol": "Ξ³" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_-9" + }, + { + "type": "unitsml", + "id": "p:nano" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/nano" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:n" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Nano" + } + ] + }, + { + "id": "NISTp10_0", + "unitsml_id": "p:none", + "name": "none", + "symbol": "1", + "symbols": { + "unicode": "1", + "ascii": "1", + "html": "1", + "latex": "1", + "id": "unity", + "mathml": "1" + }, + "factor": "10^0", + "base": 10, + "power": 0, + "value": 1, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_0" + }, + { + "type": "unitsml", + "id": "p:none" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/none" + } + ] + }, + { + "id": "NISTp10_1", + "unitsml_id": "p:deka", + "name": "deka", + "symbol": "da", + "symbols": { + "unicode": "da", + "ascii": "da", + "html": "da", + "latex": "da", + "id": "deka", + "mathml": "da" + }, + "factor": "10^1", + "base": 10, + "power": 1, + "value": 10, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_1" + }, + { + "type": "unitsml", + "id": "p:deka" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/deca" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:da" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Deca" + } + ] + }, + { + "id": "NISTp10_12", + "unitsml_id": "p:tera", + "name": "tera", + "symbol": "T", + "symbols": { + "unicode": "T", + "ascii": "T", + "html": "T", + "latex": "T", + "id": "tera", + "mathml": "T" + }, + "factor": "10^12", + "base": 10, + "power": 12, + "value": 1000000000000, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_12" + }, + { + "type": "unitsml", + "id": "p:tera" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/tera" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:T" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Tera" + } + ] + }, + { + "id": "NISTp10_15", + "unitsml_id": "p:peta", + "name": "peta", + "symbol": "P", + "symbols": { + "unicode": "P", + "ascii": "P", + "html": "P", + "latex": "P", + "id": "peta", + "mathml": "P" + }, + "factor": "10^15", + "base": 10, + "power": 15, + "value": 1000000000000000, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_15" + }, + { + "type": "unitsml", + "id": "p:peta" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/peta" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:P" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Peta" + } + ] + }, + { + "id": "NISTp10_18", + "unitsml_id": "p:exa", + "name": "exa", + "symbol": "E", + "symbols": { + "unicode": "E", + "ascii": "E", + "html": "E", + "latex": "E", + "id": "exa", + "mathml": "E" + }, + "factor": "10^18", + "base": 10, + "power": 18, + "value": 1000000000000000000, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_18" + }, + { + "type": "unitsml", + "id": "p:exa" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/exa" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:E" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Exa" + } + ] + }, + { + "id": "NISTp10_2", + "unitsml_id": "p:hecto", + "name": "hecto", + "symbol": "h", + "symbols": { + "unicode": "h", + "ascii": "h", + "html": "h", + "latex": "h", + "id": "hecto", + "mathml": "h" + }, + "factor": "10^2", + "base": 10, + "power": 2, + "value": 100, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_2" + }, + { + "type": "unitsml", + "id": "p:hecto" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/hecto" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:h" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Hecto" + } + ] + }, + { + "id": "NISTp10_21", + "unitsml_id": "p:zetta", + "name": "zetta", + "symbol": "Z", + "symbols": { + "unicode": "Z", + "ascii": "Z", + "html": "Z", + "latex": "Z", + "id": "zetta", + "mathml": "Z" + }, + "factor": "10^21", + "base": 10, + "power": 21, + "value": 1e+21, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_21" + }, + { + "type": "unitsml", + "id": "p:zetta" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/zetta" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:Z" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Zetta" + } + ] + }, + { + "id": "NISTp10_24", + "unitsml_id": "p:yotta", + "name": "yotta", + "symbol": "Y", + "symbols": { + "unicode": "Y", + "ascii": "Y", + "html": "Y", + "latex": "Y", + "id": "yotta", + "mathml": "Y" + }, + "factor": "10^24", + "base": 10, + "power": 24, + "value": 1e+24, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_24" + }, + { + "type": "unitsml", + "id": "p:yotta" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/yotta" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:Y" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Yotta" + } + ] + }, + { + "id": "NISTp10_27", + "unitsml_id": "p:ronna", + "name": "ronna", + "symbol": "R", + "symbols": { + "unicode": "R", + "ascii": "R", + "html": "R", + "latex": "R", + "id": "ronna", + "mathml": "R" + }, + "factor": "10^27", + "base": 10, + "power": 27, + "value": 1e+27, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_27" + }, + { + "type": "unitsml", + "id": "p:ronna" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/ronna" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Ronna" + } + ] + }, + { + "id": "NISTp10_3", + "unitsml_id": "p:kilo", + "name": "kilo", + "symbol": "k", + "symbols": { + "unicode": "k", + "ascii": "k", + "html": "k", + "latex": "k", + "id": "kilo", + "mathml": "k" + }, + "factor": "10^3", + "base": 10, + "power": 3, + "value": 1000, + "units": [ + { + "id": "NISTu11.u1e2/1.u27p10'3e-2/1", + "name": "newton meter squared per kilogram squared", + "symbol": "NΒ·mΒ²/kgΒ²" + }, + { + "id": "NISTu125", + "name": "kilogram-force second squared per meter", + "symbol": "kgfΒ·sΒ²m⁻¹" + }, + { + "id": "NISTu126", + "name": "kilogram-force meter", + "symbol": "kgfΒ·m" + }, + { + "id": "NISTu13.u27p10'3e-1/1", + "name": "joule per kilogram", + "symbol": "J/kg" + }, + { + "id": "NISTu13.u27p10'3e-1/1.u5e-1/1", + "name": "joule per kilogram kelvin", + "symbol": "J/(kgΒ·K)" + }, + { + "id": "NISTu15.u27p10'3e-1/1", + "name": "coulomb per kilogram", + "symbol": "C/kg" + }, + { + "id": "NISTu160", + "name": "kilometer per hour", + "symbol": "km/h" + }, + { + "id": "NISTu188", + "name": "kilogram per liter", + "symbol": "kg/l" + }, + { + "id": "NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + { + "id": "NISTu1e3/1.u27p10'3", + "name": "cubic meter per kilogram", + "symbol": "mΒ³Β·kg" + }, + { + "id": "NISTu2", + "name": "kilogram", + "symbol": "kg" + }, + { + "id": "NISTu217", + "name": "kilogram-force meter per second", + "symbol": "kgfΒ·m/s" + }, + { + "id": "NISTu27p10'3.u1.u3e-1/1", + "name": "kilogram meter per second", + "symbol": "NΒ·m/s" + }, + { + "id": "NISTu27p10'3.u1e-1/1", + "name": "kilogram per meter", + "symbol": "kg/m" + }, + { + "id": "NISTu27p10'3.u1e-2/1", + "name": "kilogram per square meter", + "symbol": "kg/mΒ²" + }, + { + "id": "NISTu27p10'3.u1e-3/1", + "name": "kilogram per cubic meter", + "symbol": "kgΒ·m⁻³" + }, + { + "id": "NISTu27p10'3.u1e2/1", + "name": "kilogram meter squared", + "symbol": "kgΒ·mΒ²" + }, + { + "id": "NISTu27p10'3.u1e2/1.u3e-1/1", + "name": "kilogram meter squared per second", + "symbol": "kgΒ·mΒ²/s" + }, + { + "id": "NISTu27p10'3.u3e-1/1", + "name": "kilogram per second", + "symbol": "kg/s" + }, + { + "id": "NISTu380", + "name": "kilometer per liter", + "symbol": "km/L" + }, + { + "id": "NISTu6.u27p10'3e-1/1", + "name": "mole per kilogram", + "symbol": "mol/kg" + }, + { + "id": "NISTu65", + "name": "kilowatt hour", + "symbol": "kWΒ·h" + }, + { + "id": "NISTu72", + "name": "kilogram-force", + "symbol": "kgf" + }, + { + "id": "NISTu75", + "name": "kilocalorie_th per second", + "symbol": "kcal_th/s" + }, + { + "id": "NISTu94", + "name": "kilogram-force per square centimeter", + "symbol": "kgfΒ·cm⁻²" + }, + { + "id": "NISTu95", + "name": "kilogram-force per square meter", + "symbol": "kgfΒ·m⁻²" + }, + { + "id": "NISTu96", + "name": "kilogram-force per square millimeter", + "symbol": "kgfΒ·mm⁻²" + } + ], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_3" + }, + { + "type": "unitsml", + "id": "p:kilo" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/kilo" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:k" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Kilo" + } + ] + }, + { + "id": "NISTp10_30", + "unitsml_id": "p:quetta", + "name": "quetta", + "symbol": "Q", + "symbols": { + "unicode": "Q", + "ascii": "Q", + "html": "Q", + "latex": "Q", + "id": "quetta", + "mathml": "Q" + }, + "factor": "10^30", + "base": 10, + "power": 30, + "value": 1e+30, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_30" + }, + { + "type": "unitsml", + "id": "p:quetta" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/quetta" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Quetta" + } + ] + }, + { + "id": "NISTp10_6", + "unitsml_id": "p:mega", + "name": "mega", + "symbol": "M", + "symbols": { + "unicode": "M", + "ascii": "M", + "html": "M", + "latex": "M", + "id": "mega", + "mathml": "M" + }, + "factor": "10^6", + "base": 10, + "power": 6, + "value": 1000000, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_6" + }, + { + "type": "unitsml", + "id": "p:mega" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/mega" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:M" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Mega" + } + ] + }, + { + "id": "NISTp10_9", + "unitsml_id": "p:giga", + "name": "giga", + "symbol": "G", + "symbols": { + "unicode": "G", + "ascii": "G", + "html": "G", + "latex": "G", + "id": "giga", + "mathml": "G" + }, + "factor": "10^9", + "base": 10, + "power": 9, + "value": 1000000000, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp10_9" + }, + { + "type": "unitsml", + "id": "p:giga" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/prefixes/giga" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:G" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/Giga" + } + ] + }, + { + "id": "NISTp2_10", + "unitsml_id": "p:kibi", + "name": "kibi", + "symbol": "Ki", + "symbols": { + "unicode": "Ki", + "ascii": "Ki", + "html": "Ki", + "latex": "Ki", + "id": "kibi", + "mathml": "Ki" + }, + "factor": "2^10", + "base": 2, + "power": 10, + "value": 1024, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp2_10" + }, + { + "type": "unitsml", + "id": "p:kibi" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:Ki" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/prefix/Kibi" + } + ] + }, + { + "id": "NISTp2_20", + "unitsml_id": "p:mebi", + "name": "mebi", + "symbol": "Mi", + "symbols": { + "unicode": "Mi", + "ascii": "Mi", + "html": "Mi", + "latex": "Mi", + "id": "mebi", + "mathml": "Mi" + }, + "factor": "2^20", + "base": 2, + "power": 20, + "value": 1048576, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp2_20" + }, + { + "type": "unitsml", + "id": "p:mebi" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:Mi" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/prefix/Mebi" + } + ] + }, + { + "id": "NISTp2_30", + "unitsml_id": "p:gibi", + "name": "gibi", + "symbol": "Gi", + "symbols": { + "unicode": "Gi", + "ascii": "Gi", + "html": "Gi", + "latex": "Gi", + "id": "gibi", + "mathml": "Gi" + }, + "factor": "2^30", + "base": 2, + "power": 30, + "value": 1073741824, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp2_30" + }, + { + "type": "unitsml", + "id": "p:gibi" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:Gi" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/prefix/Gibi" + } + ] + }, + { + "id": "NISTp2_40", + "unitsml_id": "p:tebi", + "name": "tebi", + "symbol": "Ti", + "symbols": { + "unicode": "Ti", + "ascii": "Ti", + "html": "Ti", + "latex": "Ti", + "id": "tebi", + "mathml": "Ti" + }, + "factor": "2^40", + "base": 2, + "power": 40, + "value": 1099511627776, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp2_40" + }, + { + "type": "unitsml", + "id": "p:tebi" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:prefix:code:Ti" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/prefix/Tebi" + } + ] + }, + { + "id": "NISTp2_50", + "unitsml_id": "p:pebi", + "name": "pebi", + "symbol": "Pi", + "symbols": { + "unicode": "Pi", + "ascii": "Pi", + "html": "Pi", + "latex": "Pi", + "id": "pebi", + "mathml": "Pi" + }, + "factor": "2^50", + "base": 2, + "power": 50, + "value": 1125899906842624, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp2_50" + }, + { + "type": "unitsml", + "id": "p:pebi" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/prefix/Pebi" + } + ] + }, + { + "id": "NISTp2_60", + "unitsml_id": "p:exbi", + "name": "exbi", + "symbol": "Ei", + "symbols": { + "unicode": "Ei", + "ascii": "Ei", + "html": "Ei", + "latex": "Ei", + "id": "exbi", + "mathml": "Ei" + }, + "factor": "2^60", + "base": 2, + "power": 60, + "value": 1152921504606847000, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp2_60" + }, + { + "type": "unitsml", + "id": "p:exbi" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/prefix/Exbi" + } + ] + }, + { + "id": "NISTp2_70", + "unitsml_id": "p:zebi", + "name": "zebi", + "symbol": "Zi", + "symbols": { + "unicode": "Zi", + "ascii": "Zi", + "html": "Zi", + "latex": "Zi", + "id": "zebi", + "mathml": "Zi" + }, + "factor": "2^70", + "base": 2, + "power": 70, + "value": 1.1805916207174113e+21, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp2_70" + }, + { + "type": "unitsml", + "id": "p:zebi" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/prefix/Zebi" + } + ] + }, + { + "id": "NISTp2_80", + "unitsml_id": "p:yobi", + "name": "yobi", + "symbol": "Yi", + "symbols": { + "unicode": "Yi", + "ascii": "Yi", + "html": "Yi", + "latex": "Yi", + "id": "yobi", + "mathml": "Yi" + }, + "factor": "2^80", + "base": 2, + "power": 80, + "value": 1.2089258196146292e+24, + "units": [], + "identifiers": [ + { + "type": "nist", + "id": "NISTp2_80" + }, + { + "type": "unitsml", + "id": "p:yobi" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/prefix/Yobi" + } + ] + } +] \ No newline at end of file diff --git a/public/unitsdb/prefixes.jsonld b/public/unitsdb/prefixes.jsonld new file mode 100644 index 0000000..d248857 --- /dev/null +++ b/public/unitsdb/prefixes.jsonld @@ -0,0 +1,680 @@ +{ + "@context": { + "@vocab": "https://unitsml.org/ontology/", + "schema": "http://schema.org/", + "name": "schema:name", + "identifier": "schema:identifier", + "description": "schema:description", + "symbol": "https://unitsml.org/ontology/symbol", + "rootUnit": "https://unitsml.org/ontology/rootUnit", + "quantityReference": "https://unitsml.org/ontology/quantityReference", + "dimensionReference": "https://unitsml.org/ontology/dimensionReference", + "scaleReference": "https://unitsml.org/ontology/scaleReference", + "unitSystemReference": "https://unitsml.org/ontology/unitSystemReference", + "prefixReference": "https://unitsml.org/ontology/prefixReference", + "power": "https://unitsml.org/ontology/power", + "base": "https://unitsml.org/ontology/base" + }, + "@graph": [ + { + "@id": "https://unitsml.org/prefix/p:deci", + "@type": "Prefix", + "name": "deci", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_-1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:deci" + } + ], + "symbol": "d", + "base": 10, + "power": -1 + }, + { + "@id": "https://unitsml.org/prefix/p:pico", + "@type": "Prefix", + "name": "pico", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_-12" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:pico" + } + ], + "symbol": "p", + "base": 10, + "power": -12 + }, + { + "@id": "https://unitsml.org/prefix/p:femto", + "@type": "Prefix", + "name": "femto", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_-15" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:femto" + } + ], + "symbol": "f", + "base": 10, + "power": -15 + }, + { + "@id": "https://unitsml.org/prefix/p:atto", + "@type": "Prefix", + "name": "atto", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_-18" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:atto" + } + ], + "symbol": "a", + "base": 10, + "power": -18 + }, + { + "@id": "https://unitsml.org/prefix/p:centi", + "@type": "Prefix", + "name": "centi", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_-2" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:centi" + } + ], + "symbol": "c", + "base": 10, + "power": -2 + }, + { + "@id": "https://unitsml.org/prefix/p:zepto", + "@type": "Prefix", + "name": "zepto", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_-21" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:zepto" + } + ], + "symbol": "z", + "base": 10, + "power": -21 + }, + { + "@id": "https://unitsml.org/prefix/p:yocto", + "@type": "Prefix", + "name": "yocto", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_-24" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:yocto" + } + ], + "symbol": "y", + "base": 10, + "power": -24 + }, + { + "@id": "https://unitsml.org/prefix/p:ronto", + "@type": "Prefix", + "name": "ronto", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_-27" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:ronto" + } + ], + "symbol": "r", + "base": 10, + "power": -27 + }, + { + "@id": "https://unitsml.org/prefix/p:milli", + "@type": "Prefix", + "name": "milli", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_-3" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:milli" + } + ], + "symbol": "m", + "base": 10, + "power": -3 + }, + { + "@id": "https://unitsml.org/prefix/p:quecto", + "@type": "Prefix", + "name": "quecto", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_-30" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:quecto" + } + ], + "symbol": "q", + "base": 10, + "power": -30 + }, + { + "@id": "https://unitsml.org/prefix/p:micro", + "@type": "Prefix", + "name": "micro", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_-6" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:micro" + } + ], + "symbol": "ΞΌ", + "base": 10, + "power": -6 + }, + { + "@id": "https://unitsml.org/prefix/p:nano", + "@type": "Prefix", + "name": "nano", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_-9" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:nano" + } + ], + "symbol": "n", + "base": 10, + "power": -9 + }, + { + "@id": "https://unitsml.org/prefix/p:none", + "@type": "Prefix", + "name": "none", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_0" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:none" + } + ], + "symbol": "1", + "base": 10, + "power": 0 + }, + { + "@id": "https://unitsml.org/prefix/p:deka", + "@type": "Prefix", + "name": "deka", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:deka" + } + ], + "symbol": "da", + "base": 10, + "power": 1 + }, + { + "@id": "https://unitsml.org/prefix/p:tera", + "@type": "Prefix", + "name": "tera", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_12" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:tera" + } + ], + "symbol": "T", + "base": 10, + "power": 12 + }, + { + "@id": "https://unitsml.org/prefix/p:peta", + "@type": "Prefix", + "name": "peta", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_15" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:peta" + } + ], + "symbol": "P", + "base": 10, + "power": 15 + }, + { + "@id": "https://unitsml.org/prefix/p:exa", + "@type": "Prefix", + "name": "exa", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_18" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:exa" + } + ], + "symbol": "E", + "base": 10, + "power": 18 + }, + { + "@id": "https://unitsml.org/prefix/p:hecto", + "@type": "Prefix", + "name": "hecto", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_2" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:hecto" + } + ], + "symbol": "h", + "base": 10, + "power": 2 + }, + { + "@id": "https://unitsml.org/prefix/p:zetta", + "@type": "Prefix", + "name": "zetta", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_21" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:zetta" + } + ], + "symbol": "Z", + "base": 10, + "power": 21 + }, + { + "@id": "https://unitsml.org/prefix/p:yotta", + "@type": "Prefix", + "name": "yotta", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_24" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:yotta" + } + ], + "symbol": "Y", + "base": 10, + "power": 24 + }, + { + "@id": "https://unitsml.org/prefix/p:ronna", + "@type": "Prefix", + "name": "ronna", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_27" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:ronna" + } + ], + "symbol": "R", + "base": 10, + "power": 27 + }, + { + "@id": "https://unitsml.org/prefix/p:kilo", + "@type": "Prefix", + "name": "kilo", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_3" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:kilo" + } + ], + "symbol": "k", + "base": 10, + "power": 3 + }, + { + "@id": "https://unitsml.org/prefix/p:quetta", + "@type": "Prefix", + "name": "quetta", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_30" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:quetta" + } + ], + "symbol": "Q", + "base": 10, + "power": 30 + }, + { + "@id": "https://unitsml.org/prefix/p:mega", + "@type": "Prefix", + "name": "mega", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_6" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:mega" + } + ], + "symbol": "M", + "base": 10, + "power": 6 + }, + { + "@id": "https://unitsml.org/prefix/p:giga", + "@type": "Prefix", + "name": "giga", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_9" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:giga" + } + ], + "symbol": "G", + "base": 10, + "power": 9 + }, + { + "@id": "https://unitsml.org/prefix/p:kibi", + "@type": "Prefix", + "name": "kibi", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp2_10" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:kibi" + } + ], + "symbol": "Ki", + "base": 2, + "power": 10 + }, + { + "@id": "https://unitsml.org/prefix/p:mebi", + "@type": "Prefix", + "name": "mebi", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp2_20" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:mebi" + } + ], + "symbol": "Mi", + "base": 2, + "power": 20 + }, + { + "@id": "https://unitsml.org/prefix/p:gibi", + "@type": "Prefix", + "name": "gibi", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp2_30" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:gibi" + } + ], + "symbol": "Gi", + "base": 2, + "power": 30 + }, + { + "@id": "https://unitsml.org/prefix/p:tebi", + "@type": "Prefix", + "name": "tebi", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp2_40" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:tebi" + } + ], + "symbol": "Ti", + "base": 2, + "power": 40 + }, + { + "@id": "https://unitsml.org/prefix/p:pebi", + "@type": "Prefix", + "name": "pebi", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp2_50" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:pebi" + } + ], + "symbol": "Pi", + "base": 2, + "power": 50 + }, + { + "@id": "https://unitsml.org/prefix/p:exbi", + "@type": "Prefix", + "name": "exbi", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp2_60" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:exbi" + } + ], + "symbol": "Ei", + "base": 2, + "power": 60 + }, + { + "@id": "https://unitsml.org/prefix/p:zebi", + "@type": "Prefix", + "name": "zebi", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp2_70" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:zebi" + } + ], + "symbol": "Zi", + "base": 2, + "power": 70 + }, + { + "@id": "https://unitsml.org/prefix/p:yobi", + "@type": "Prefix", + "name": "yobi", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp2_80" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:yobi" + } + ], + "symbol": "Yi", + "base": 2, + "power": 80 + } + ] +} \ No newline at end of file diff --git a/public/unitsdb/quantities.json b/public/unitsdb/quantities.json new file mode 100644 index 0000000..bc7a469 --- /dev/null +++ b/public/unitsdb/quantities.json @@ -0,0 +1,13637 @@ +[ + { + "id": "NISTq1", + "unitsml_id": "q:length", + "name": "length", + "names": [ + { + "value": "length", + "lang": "en" + }, + { + "value": "longueur", + "lang": "fr" + } + ], + "short": "length", + "type": "base", + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + { + "id": "NISTu122", + "name": "micron", + "symbol": "ΞΌ" + }, + { + "id": "NISTu123", + "name": "mil (length)", + "symbol": "thou" + }, + { + "id": "NISTu131", + "name": "nautical mile", + "symbol": "M" + }, + { + "id": "NISTu182", + "name": "light year", + "symbol": "l.y." + }, + { + "id": "NISTu183", + "name": "astronomical unit", + "symbol": "ua" + }, + { + "id": "NISTu184", + "name": "parsec", + "symbol": "pc" + }, + { + "id": "NISTu249", + "name": "atomic unit of length", + "symbol": "π‘Žβ‚€" + }, + { + "id": "NISTu26", + "name": "fermi", + "symbol": "fermi" + }, + { + "id": "NISTu278", + "name": "pica (computer)", + "symbol": "pc" + }, + { + "id": "NISTu279", + "name": "pica (printer's)", + "symbol": "pc" + }, + { + "id": "NISTu280", + "name": "point (computer)", + "symbol": "pt" + }, + { + "id": "NISTu281", + "name": "rod (based on US survey foot)", + "symbol": "rd" + }, + { + "id": "NISTu282", + "name": "fathom (based on US survey foot)", + "symbol": "fath" + }, + { + "id": "NISTu290", + "name": "natural unit of length", + "symbol": "Ζ›_C" + }, + { + "id": "NISTu310", + "name": "chain (based on US survey foot)", + "symbol": "ch" + }, + { + "id": "NISTu311", + "name": "link (based on US survey foot)", + "symbol": "lnk" + }, + { + "id": "NISTu312", + "name": "furlong (based on US survey foot)", + "symbol": "fur" + }, + { + "id": "NISTu313", + "name": "mile (based on US survey foot)", + "symbol": "mi" + }, + { + "id": "NISTu314", + "name": "yard (based on US survey foot)", + "symbol": "yd" + }, + { + "id": "NISTu315", + "name": "foot (based on US survey foot)", + "symbol": "ft" + }, + { + "id": "NISTu316", + "name": "inch (based on US survey foot)", + "symbol": "in" + }, + { + "id": "NISTu344", + "name": "point (printer's)", + "symbol": "pt" + }, + { + "id": "NISTu361", + "name": "microinch", + "symbol": "ΞΌin" + }, + { + "id": "NISTu376", + "name": "light week", + "symbol": "l.w." + }, + { + "id": "NISTu377", + "name": "light hour", + "symbol": "l.h." + }, + { + "id": "NISTu378", + "name": "light minute", + "symbol": "l.m." + }, + { + "id": "NISTu379", + "name": "light second", + "symbol": "l.s." + }, + { + "id": "NISTu39", + "name": "Γ₯ngstrΓΆm", + "symbol": "β„«" + }, + { + "id": "NISTu78", + "name": "foot", + "symbol": "β€²" + }, + { + "id": "NISTu8", + "name": "inch", + "symbol": "β€³" + }, + { + "id": "NISTu83", + "name": "mile", + "symbol": "mi" + }, + { + "id": "NISTu84", + "name": "yard", + "symbol": "yd" + } + ], + "unit_count": 33, + "identifiers": [ + { + "type": "nist", + "id": "NISTq1" + }, + { + "type": "unitsml", + "id": "q:length" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/LENG" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Length" + } + ] + }, + { + "id": "NISTq10", + "unitsml_id": "q:volume", + "name": "volume", + "names": [ + { + "value": "volume", + "lang": "en" + }, + { + "value": "volume", + "lang": "fr" + } + ], + "short": "volume", + "type": "derived", + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu115", + "name": "stere", + "symbol": "st" + }, + { + "id": "NISTu130", + "name": "litre", + "symbol": "L" + }, + { + "id": "NISTu168", + "name": "cubic inch", + "symbol": "inΒ³" + }, + { + "id": "NISTu169", + "name": "cubic foot", + "symbol": "ftΒ³" + }, + { + "id": "NISTu170", + "name": "cubic yard", + "symbol": "ydΒ³" + }, + { + "id": "NISTu171", + "name": "gallon (UK)", + "symbol": "gal (UK)" + }, + { + "id": "NISTu172", + "name": "pint (UK)", + "symbol": "pt (UK)" + }, + { + "id": "NISTu173", + "name": "fluid ounce (UK)", + "symbol": "fl oz (UK)" + }, + { + "id": "NISTu175", + "name": "gallon (US)", + "symbol": "gal (US)" + }, + { + "id": "NISTu176", + "name": "liquid pint (US)", + "symbol": "liq pint (US)" + }, + { + "id": "NISTu177", + "name": "fluid ounce (US)", + "symbol": "fl oz (US)" + }, + { + "id": "NISTu178", + "name": "barrel (US) for petroleum", + "symbol": "bbl (US)" + }, + { + "id": "NISTu179", + "name": "bushel (US)", + "symbol": "bu (US)" + }, + { + "id": "NISTu180", + "name": "dry pint (US)", + "symbol": "dry pt (US)" + }, + { + "id": "NISTu1e3/1", + "name": "cubic meter", + "symbol": "mΒ³" + }, + { + "id": "NISTu300", + "name": "quart (UK)", + "symbol": "qt (UK)" + }, + { + "id": "NISTu301", + "name": "dry quart (US)", + "symbol": "dry qt (US)" + }, + { + "id": "NISTu302", + "name": "liquid quart (US)", + "symbol": "liq qt (US)" + }, + { + "id": "NISTu303", + "name": "teaspoon", + "symbol": "tsp" + }, + { + "id": "NISTu304", + "name": "tablespoon", + "symbol": "tbsp" + }, + { + "id": "NISTu305", + "name": "tablespoon (FDA)", + "symbol": "tbsp" + }, + { + "id": "NISTu306", + "name": "teaspoon (FDA)", + "symbol": "tsp" + }, + { + "id": "NISTu307", + "name": "cup (FDA)", + "symbol": "cup" + }, + { + "id": "NISTu308", + "name": "fluid ounce (FDA)", + "symbol": "fl oz (US label)" + }, + { + "id": "NISTu352", + "name": "peck", + "symbol": "pk" + }, + { + "id": "NISTu353", + "name": "minim", + "symbol": "min" + }, + { + "id": "NISTu354", + "name": "cup (US)", + "symbol": "cup" + }, + { + "id": "NISTu355", + "name": "fluid dram", + "symbol": "fl dr" + }, + { + "id": "NISTu356", + "name": "gill (US)", + "symbol": "gi" + }, + { + "id": "NISTu357", + "name": "gill [Canadian and UK (Imperial)]", + "symbol": "gi" + }, + { + "id": "NISTu365", + "name": "milliliter", + "symbol": "ml" + }, + { + "id": "NISTu57", + "name": "acre-foot (based on US survey foot)", + "symbol": "acΒ·ft" + } + ], + "unit_count": 32, + "identifiers": [ + { + "type": "nist", + "id": "NISTq10" + }, + { + "type": "unitsml", + "id": "q:volume" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/VOLU" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Volume" + } + ] + }, + { + "id": "NISTq100", + "unitsml_id": "q:diameter", + "name": "diameter", + "names": [ + { + "value": "diameter", + "lang": "en" + } + ], + "short": "diameter", + "type": "derived", + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq100" + }, + { + "type": "unitsml", + "id": "q:diameter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Diameter" + } + ] + }, + { + "id": "NISTq101", + "unitsml_id": "q:length_of_path", + "name": "length of path", + "names": [ + { + "value": "length of path", + "lang": "en" + } + ], + "short": "length_of_path", + "type": "derived", + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq101" + }, + { + "type": "unitsml", + "id": "q:length_of_path" + } + ], + "references": [] + }, + { + "id": "NISTq102", + "unitsml_id": "q:cartesian_coordinates", + "name": "cartesian coordinates", + "names": [ + { + "value": "cartesian coordinates", + "lang": "en" + } + ], + "short": "cartesian_coordinates", + "type": "derived", + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq102" + }, + { + "type": "unitsml", + "id": "q:cartesian_coordinates" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/CartesianCoordinates" + } + ] + }, + { + "id": "NISTq103", + "unitsml_id": "q:position_vector", + "name": "position vector", + "names": [ + { + "value": "position vector", + "lang": "en" + } + ], + "short": "position_vector", + "type": "derived", + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq103" + }, + { + "type": "unitsml", + "id": "q:position_vector" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/PositionVector" + } + ] + }, + { + "id": "NISTq104", + "unitsml_id": "q:displacement", + "name": "displacement", + "names": [ + { + "value": "displacement", + "lang": "en" + } + ], + "short": "displacement", + "type": "derived", + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq104" + }, + { + "type": "unitsml", + "id": "q:displacement" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Displacement" + } + ] + }, + { + "id": "NISTq105", + "unitsml_id": "q:radius_of_curvature", + "name": "radius of curvature", + "names": [ + { + "value": "radius of curvature", + "lang": "en" + } + ], + "short": "radius_of_curvature", + "type": "derived", + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq105" + }, + { + "type": "unitsml", + "id": "q:radius_of_curvature" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/RadiusOfCurvature" + } + ] + }, + { + "id": "NISTq106", + "unitsml_id": "q:curvature", + "name": "curvature", + "names": [ + { + "value": "curvature", + "lang": "en" + } + ], + "short": "curvature", + "type": "derived", + "dimension": { + "id": "NISTd29", + "name": "wavenumber", + "expression": "L-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1e-1/1", + "name": "meter to the power minus one", + "symbol": "m⁻¹" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq106" + }, + { + "type": "unitsml", + "id": "q:curvature" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Curvature" + } + ] + }, + { + "id": "NISTq107", + "unitsml_id": "q:speed_of_propagation_of_waves", + "name": "speed of propagation of waves", + "names": [ + { + "value": "speed of propagation of waves", + "lang": "en" + } + ], + "short": "speed_of_propagation_of_waves", + "type": "derived", + "dimension": { + "id": "NISTd11", + "name": "velocity", + "expression": "LΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1.u3e-1/1", + "name": "meter per second", + "symbol": "mΒ·s⁻¹" + }, + { + "id": "NISTu160", + "name": "kilometer per hour", + "symbol": "km/h" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq107" + }, + { + "type": "unitsml", + "id": "q:speed_of_propagation_of_waves" + } + ], + "references": [] + }, + { + "id": "NISTq108", + "unitsml_id": "q:acceleration_of_free_fall", + "name": "acceleration of free fall", + "names": [ + { + "value": "acceleration of free fall", + "lang": "en" + } + ], + "short": "acceleration_of_free_fall", + "type": "derived", + "dimension": { + "id": "NISTd28", + "name": "acceleration", + "expression": "LΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1.u3e-2/1", + "name": "meter per second squared", + "symbol": "mΒ·s⁻²" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq108" + }, + { + "type": "unitsml", + "id": "q:acceleration_of_free_fall" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/AccelerationOfGravity" + } + ] + }, + { + "id": "NISTq109", + "unitsml_id": "q:period_duration", + "name": "period duration", + "names": [ + { + "value": "period duration", + "lang": "en" + }, + { + "value": "period", + "lang": "en" + } + ], + "short": "period_duration", + "type": "derived", + "dimension": { + "id": "NISTd3", + "name": "time", + "expression": "T", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq109" + }, + { + "type": "unitsml", + "id": "q:period_duration" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Period" + } + ] + }, + { + "id": "NISTq11", + "unitsml_id": "q:solid_angle", + "name": "solid angle", + "names": [ + { + "value": "solid angle", + "lang": "en" + }, + { + "value": "angle solide", + "lang": "fr" + } + ], + "short": "solid_angle", + "type": "derived", + "dimension": { + "id": "NISTd64", + "name": "solid angle", + "expression": "1", + "components": [ + { + "key": "plane_angle", + "symbol": "phi", + "power": 1 + } + ], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu10", + "name": "steradian", + "symbol": "sr" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq11" + }, + { + "type": "unitsml", + "id": "q:solid_angle" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ANGS" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/SolidAngle" + } + ] + }, + { + "id": "NISTq110", + "unitsml_id": "q:time_constant", + "name": "time constant", + "names": [ + { + "value": "time constant", + "lang": "en" + } + ], + "short": "time_constant", + "type": "derived", + "dimension": { + "id": "NISTd3", + "name": "time", + "expression": "T", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq110" + }, + { + "type": "unitsml", + "id": "q:time_constant" + } + ], + "references": [] + }, + { + "id": "NISTq111", + "unitsml_id": "q:rotation", + "name": "rotation", + "names": [ + { + "value": "rotation", + "lang": "en" + } + ], + "short": "rotation", + "type": "derived", + "dimension": { + "id": "NISTd80", + "name": "ratio quantity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu61", + "name": "one", + "symbol": "1" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq111" + }, + { + "type": "unitsml", + "id": "q:rotation" + } + ], + "references": [] + }, + { + "id": "NISTq112", + "unitsml_id": "q:rotational_frequency", + "name": "rotational frequency", + "names": [ + { + "value": "rotational frequency", + "lang": "en" + } + ], + "short": "rotational_frequency", + "type": "derived", + "dimension": { + "id": "NISTd24", + "name": "frequency", + "expression": "T-1", + "components": [ + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu3e-1/1", + "name": "second to the power minus one", + "symbol": "s⁻¹" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq112" + }, + { + "type": "unitsml", + "id": "q:rotational_frequency" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/RotationalFrequency" + } + ] + }, + { + "id": "NISTq113", + "unitsml_id": "q:angular_frequency", + "name": "angular frequency", + "names": [ + { + "value": "angular frequency", + "lang": "en" + } + ], + "short": "angular_frequency", + "type": "derived", + "dimension": { + "id": "NISTd24", + "name": "frequency", + "expression": "T-1", + "components": [ + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu3e-1/1", + "name": "second to the power minus one", + "symbol": "s⁻¹" + }, + { + "id": "NISTu9.u3e-1/1", + "name": "radian per second", + "symbol": "rad/s" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq113" + }, + { + "type": "unitsml", + "id": "q:angular_frequency" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/AngularFrequency" + } + ] + }, + { + "id": "NISTq114", + "unitsml_id": "q:wavelength", + "name": "wavelength", + "names": [ + { + "value": "wavelength", + "lang": "en" + } + ], + "short": "wavelength", + "type": "derived", + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq114" + }, + { + "type": "unitsml", + "id": "q:wavelength" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Wavelength" + } + ] + }, + { + "id": "NISTq115", + "unitsml_id": "q:angular_wavenumber", + "name": "angular wavenumber", + "names": [ + { + "value": "angular wavenumber", + "lang": "en" + }, + { + "value": "angular repetency", + "lang": "en" + } + ], + "short": "angular_wavenumber", + "type": "derived", + "dimension": { + "id": "NISTd29", + "name": "wavenumber", + "expression": "L-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1e-1/1", + "name": "meter to the power minus one", + "symbol": "m⁻¹" + }, + { + "id": "NISTu9.u1e-1/1", + "name": "radian per meter", + "symbol": "rad/m" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq115" + }, + { + "type": "unitsml", + "id": "q:angular_wavenumber" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/AngularWavenumber" + } + ] + }, + { + "id": "NISTq116", + "unitsml_id": "q:phase_velocity", + "name": "phase velocity", + "names": [ + { + "value": "phase velocity", + "lang": "en" + }, + { + "value": "phase speed", + "lang": "en" + } + ], + "short": "phase_velocity", + "type": "derived", + "dimension": { + "id": "NISTd11", + "name": "velocity", + "expression": "LΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1.u3e-1/1", + "name": "meter per second", + "symbol": "mΒ·s⁻¹" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq116" + }, + { + "type": "unitsml", + "id": "q:phase_velocity" + } + ], + "references": [] + }, + { + "id": "NISTq117", + "unitsml_id": "q:group_velocity", + "name": "group velocity", + "names": [ + { + "value": "group velocity", + "lang": "en" + }, + { + "value": "group speed", + "lang": "en" + } + ], + "short": "group_velocity", + "type": "derived", + "dimension": { + "id": "NISTd11", + "name": "velocity", + "expression": "LΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1.u3e-1/1", + "name": "meter per second", + "symbol": "mΒ·s⁻¹" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq117" + }, + { + "type": "unitsml", + "id": "q:group_velocity" + } + ], + "references": [] + }, + { + "id": "NISTq118", + "unitsml_id": "q:level_of_a_field_quantity", + "name": "level of a field quantity", + "names": [ + { + "value": "level of a field quantity", + "lang": "en" + } + ], + "short": "level_of_a_field_quantity", + "type": "derived", + "dimension": { + "id": "NISTd83", + "name": "level of field quantity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu153", + "name": "neper", + "symbol": "Np" + }, + { + "id": "NISTu154", + "name": "bel", + "symbol": "B" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq118" + }, + { + "type": "unitsml", + "id": "q:level_of_a_field_quantity" + } + ], + "references": [] + }, + { + "id": "NISTq119", + "unitsml_id": "q:level_of_a_power_quantity", + "name": "level of a power quantity", + "names": [ + { + "value": "level of a power quantity", + "lang": "en" + } + ], + "short": "level_of_a_power_quantity", + "type": "derived", + "dimension": { + "id": "NISTd84", + "name": "field power level", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu153", + "name": "neper", + "symbol": "Np" + }, + { + "id": "NISTu154", + "name": "bel", + "symbol": "B" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq119" + }, + { + "type": "unitsml", + "id": "q:level_of_a_power_quantity" + } + ], + "references": [] + }, + { + "id": "NISTq12", + "unitsml_id": "q:velocity", + "name": "velocity", + "names": [ + { + "value": "velocity", + "lang": "en" + }, + { + "value": "speed", + "lang": "en" + }, + { + "value": "vitesse", + "lang": "fr" + } + ], + "short": "velocity", + "type": "derived", + "dimension": { + "id": "NISTd11", + "name": "velocity", + "expression": "LΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1.u3e-1/1", + "name": "meter per second", + "symbol": "mΒ·s⁻¹" + }, + { + "id": "NISTu107", + "name": "foot per minute", + "symbol": "ftΒ·min⁻¹" + }, + { + "id": "NISTu108", + "name": "foot per second", + "symbol": "ftΒ·s⁻¹" + }, + { + "id": "NISTu109", + "name": "inch per second", + "symbol": "inΒ·s⁻¹" + }, + { + "id": "NISTu110", + "name": "mile per hour", + "symbol": "miΒ·h⁻¹" + }, + { + "id": "NISTu111", + "name": "mile per minute", + "symbol": "miΒ·min⁻¹" + }, + { + "id": "NISTu112", + "name": "mile per second", + "symbol": "miΒ·s⁻¹" + }, + { + "id": "NISTu152", + "name": "nautical mile per hour", + "symbol": "kn" + }, + { + "id": "NISTu160", + "name": "kilometer per hour", + "symbol": "km/h" + }, + { + "id": "NISTu242", + "name": "natural unit of velocity", + "symbol": "𝑐" + }, + { + "id": "NISTu294", + "name": "atomic unit of velocity", + "symbol": "π‘Žβ‚€πΈβ‚•/ℏ" + } + ], + "unit_count": 11, + "identifiers": [ + { + "type": "nist", + "id": "NISTq12" + }, + { + "type": "unitsml", + "id": "q:velocity" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/VELO" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Speed" + } + ] + }, + { + "id": "NISTq120", + "unitsml_id": "q:damping_coefficient", + "name": "damping coefficient", + "names": [ + { + "value": "damping coefficient", + "lang": "en" + } + ], + "short": "damping_coefficient", + "type": "derived", + "dimension": { + "id": "NISTd24", + "name": "frequency", + "expression": "T-1", + "components": [ + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu163", + "name": "neper per second", + "symbol": "Np/s" + }, + { + "id": "NISTu3e-1/1", + "name": "second to the power minus one", + "symbol": "s⁻¹" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq120" + }, + { + "type": "unitsml", + "id": "q:damping_coefficient" + } + ], + "references": [] + }, + { + "id": "NISTq121", + "unitsml_id": "q:logarithmic_decrement", + "name": "ratio logarithm (Np)", + "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", + "type": "derived", + "dimension": { + "id": "NISTd67", + "name": "logarithmic ratio", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu153", + "name": "neper", + "symbol": "Np" + }, + { + "id": "NISTu61", + "name": "one", + "symbol": "1" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq121" + }, + { + "type": "unitsml", + "id": "q:logarithmic_decrement" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/RLGN" + } + ] + }, + { + "id": "NISTq122", + "unitsml_id": "q:attenuation_coefficient", + "name": "attenuation coefficient", + "names": [ + { + "value": "attenuation coefficient", + "lang": "en" + } + ], + "short": "attenuation_coefficient", + "type": "derived", + "dimension": { + "id": "NISTd29", + "name": "wavenumber", + "expression": "L-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1e-1/1", + "name": "meter to the power minus one", + "symbol": "m⁻¹" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq122" + }, + { + "type": "unitsml", + "id": "q:attenuation_coefficient" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/AttenuationCoefficient" + } + ] + }, + { + "id": "NISTq123", + "unitsml_id": "q:phase_coefficient", + "name": "phase coefficient", + "names": [ + { + "value": "phase coefficient", + "lang": "en" + } + ], + "short": "phase_coefficient", + "type": "derived", + "dimension": { + "id": "NISTd29", + "name": "wavenumber", + "expression": "L-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1e-1/1", + "name": "meter to the power minus one", + "symbol": "m⁻¹" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq123" + }, + { + "type": "unitsml", + "id": "q:phase_coefficient" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/PhaseCoefficient" + } + ] + }, + { + "id": "NISTq124", + "unitsml_id": "q:propagation_coefficient", + "name": "propagation coefficient", + "names": [ + { + "value": "propagation coefficient", + "lang": "en" + } + ], + "short": "propagation_coefficient", + "type": "derived", + "dimension": { + "id": "NISTd29", + "name": "wavenumber", + "expression": "L-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1e-1/1", + "name": "meter to the power minus one", + "symbol": "m⁻¹" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq124" + }, + { + "type": "unitsml", + "id": "q:propagation_coefficient" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/PropagationCoefficient" + } + ] + }, + { + "id": "NISTq125", + "unitsml_id": "q:relative_mass_density", + "name": "relative mass density", + "names": [ + { + "value": "relative mass density", + "lang": "en" + }, + { + "value": "relative density", + "lang": "en" + } + ], + "short": "relative_mass_density", + "type": "derived", + "dimension": { + "id": "NISTd80", + "name": "ratio quantity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu61", + "name": "one", + "symbol": "1" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq125" + }, + { + "type": "unitsml", + "id": "q:relative_mass_density" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/RelativeMassDensity" + } + ] + }, + { + "id": "NISTq126", + "unitsml_id": "q:linear_density", + "name": "linear density", + "names": [ + { + "value": "linear density", + "lang": "en" + }, + { + "value": "lineic mass", + "lang": "en" + } + ], + "short": "linear_density", + "type": "derived", + "dimension": { + "id": "NISTd58", + "name": "linear density", + "expression": "L-1Β·M", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu213", + "name": "tex", + "symbol": "tex" + }, + { + "id": "NISTu27p10'3.u1e-1/1", + "name": "kilogram per meter", + "symbol": "kg/m" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq126" + }, + { + "type": "unitsml", + "id": "q:linear_density" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/LinearDensity" + } + ] + }, + { + "id": "NISTq127", + "unitsml_id": "q:mass_moment_of_inertia", + "name": "mass moment of inertia", + "names": [ + { + "value": "mass moment of inertia", + "lang": "en" + }, + { + "value": "moment of inertia", + "lang": "en" + } + ], + "short": "mass_moment_of_inertia", + "type": "derived", + "dimension": { + "id": "NISTd59", + "name": "mass moment of inertia", + "expression": "L2Β·M", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu27p10'3.u1e2/1", + "name": "kilogram meter squared", + "symbol": "kgΒ·mΒ²" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq127" + }, + { + "type": "unitsml", + "id": "q:mass_moment_of_inertia" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/SecondAxialMomentOfArea" + } + ] + }, + { + "id": "NISTq128", + "unitsml_id": "q:weight", + "name": "weight", + "names": [ + { + "value": "weight", + "lang": "en" + } + ], + "short": "weight", + "type": "derived", + "dimension": { + "id": "NISTd12", + "name": "force", + "expression": "LΒ·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu205", + "name": "pound-force", + "symbol": "lbf" + }, + { + "id": "NISTu236", + "name": "poundal", + "symbol": "pdl" + }, + { + "id": "NISTu238", + "name": "ton-force (2000 lb)", + "symbol": "ton-force (2000 lb)" + }, + { + "id": "NISTu262", + "name": "atomic unit of force", + "symbol": "𝐸ₕ/π‘Žβ‚€" + } + ], + "unit_count": 4, + "identifiers": [ + { + "type": "nist", + "id": "NISTq128" + }, + { + "type": "unitsml", + "id": "q:weight" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Weight" + } + ] + }, + { + "id": "NISTq129", + "unitsml_id": "q:impulse", + "name": "impulse", + "names": [ + { + "value": "impulse", + "lang": "en" + } + ], + "short": "impulse", + "type": "derived", + "dimension": { + "id": "NISTd61", + "name": "momentum", + "expression": "LΒ·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu11.u3", + "name": "newton second", + "symbol": "NΒ·s" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq129" + }, + { + "type": "unitsml", + "id": "q:impulse" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Impulse" + } + ] + }, + { + "id": "NISTq13", + "unitsml_id": "q:force", + "name": "force", + "names": [ + { + "value": "force", + "lang": "en" + }, + { + "value": "force", + "lang": "fr" + } + ], + "short": "force", + "type": "derived", + "dimension": { + "id": "NISTd12", + "name": "force", + "expression": "LΒ·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu11", + "name": "newton", + "symbol": "N" + }, + { + "id": "NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + { + "id": "NISTu205", + "name": "pound-force", + "symbol": "lbf" + }, + { + "id": "NISTu236", + "name": "poundal", + "symbol": "pdl" + }, + { + "id": "NISTu238", + "name": "ton-force (2000 lb)", + "symbol": "ton-force (2000 lb)" + }, + { + "id": "NISTu262", + "name": "atomic unit of force", + "symbol": "𝐸ₕ/π‘Žβ‚€" + }, + { + "id": "NISTu71", + "name": "dyne", + "symbol": "dyn" + }, + { + "id": "NISTu72", + "name": "kilogram-force", + "symbol": "kgf" + }, + { + "id": "NISTu73", + "name": "kilopond", + "symbol": "kp" + } + ], + "unit_count": 9, + "identifiers": [ + { + "type": "nist", + "id": "NISTq13" + }, + { + "type": "unitsml", + "id": "q:force" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/FORC" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Force" + } + ] + }, + { + "id": "NISTq130", + "unitsml_id": "q:gravitational_constant", + "name": "gravitational constant", + "names": [ + { + "value": "gravitational constant", + "lang": "en" + } + ], + "short": "gravitational_constant", + "type": "derived", + "dimension": { + "id": "NISTd62", + "name": "gravitational constant", + "expression": "L3Β·M-1Β·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu11.u1e2/1.u27p10'3e-2/1", + "name": "newton meter squared per kilogram squared", + "symbol": "NΒ·mΒ²/kgΒ²" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq130" + }, + { + "type": "unitsml", + "id": "q:gravitational_constant" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/GravitationalAttraction" + } + ] + }, + { + "id": "NISTq131", + "unitsml_id": "q:momentum", + "name": "momentum", + "names": [ + { + "value": "momentum", + "lang": "en" + } + ], + "short": "momentum", + "type": "derived", + "dimension": { + "id": "NISTd61", + "name": "momentum", + "expression": "LΒ·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu255", + "name": "atomic unit of momentum", + "symbol": "ℏ/π‘Žβ‚€" + }, + { + "id": "NISTu27p10'3.u1.u3e-1/1", + "name": "kilogram meter per second", + "symbol": "NΒ·m/s" + }, + { + "id": "NISTu296", + "name": "natural unit of momentum", + "symbol": "π‘šβ‚‘π‘" + }, + { + "id": "NISTu299", + "name": "natural unit of momentum in MeV/c", + "symbol": "π‘šβ‚‘π‘" + } + ], + "unit_count": 4, + "identifiers": [ + { + "type": "nist", + "id": "NISTq131" + }, + { + "type": "unitsml", + "id": "q:momentum" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Momentum" + } + ] + }, + { + "id": "NISTq132", + "unitsml_id": "q:moment_of_momentum", + "name": "moment of momentum", + "names": [ + { + "value": "moment of momentum", + "lang": "en" + }, + { + "value": "angular momentum", + "lang": "en" + } + ], + "short": "moment_of_momentum", + "type": "derived", + "dimension": { + "id": "NISTd60", + "name": "action", + "expression": "L2Β·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu27p10'3.u1e2/1.u3e-1/1", + "name": "kilogram meter squared per second", + "symbol": "kgΒ·mΒ²/s" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq132" + }, + { + "type": "unitsml", + "id": "q:moment_of_momentum" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/AngularMomentum" + } + ] + }, + { + "id": "NISTq133", + "unitsml_id": "q:angular_impulse", + "name": "angular impulse", + "names": [ + { + "value": "angular impulse", + "lang": "en" + } + ], + "short": "angular_impulse", + "type": "derived", + "dimension": { + "id": "NISTd60", + "name": "action", + "expression": "L2Β·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu11.u1.u3", + "name": "newton meter second", + "symbol": "NΒ·mΒ·s" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq133" + }, + { + "type": "unitsml", + "id": "q:angular_impulse" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/AngularImpulse" + } + ] + }, + { + "id": "NISTq134", + "unitsml_id": "q:normal_stress", + "name": "normal stress", + "names": [ + { + "value": "normal stress", + "lang": "en" + } + ], + "short": "normal_stress", + "type": "derived", + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu12", + "name": "pascal", + "symbol": "Pa" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq134" + }, + { + "type": "unitsml", + "id": "q:normal_stress" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/NormalStress" + } + ] + }, + { + "id": "NISTq135", + "unitsml_id": "q:shear_stress", + "name": "shear stress", + "names": [ + { + "value": "shear stress", + "lang": "en" + } + ], + "short": "shear_stress", + "type": "derived", + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu12", + "name": "pascal", + "symbol": "Pa" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq135" + }, + { + "type": "unitsml", + "id": "q:shear_stress" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ShearStress" + } + ] + }, + { + "id": "NISTq136", + "unitsml_id": "q:linear_strain", + "name": "linear strain", + "names": [ + { + "value": "linear strain", + "lang": "en" + } + ], + "short": "linear_strain", + "type": "derived", + "dimension": { + "id": "NISTd80", + "name": "ratio quantity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu61", + "name": "one", + "symbol": "1" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq136" + }, + { + "type": "unitsml", + "id": "q:linear_strain" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/LinearStrain" + } + ] + }, + { + "id": "NISTq137", + "unitsml_id": "q:shear_strain", + "name": "shear strain", + "names": [ + { + "value": "shear strain", + "lang": "en" + } + ], + "short": "shear_strain", + "type": "derived", + "dimension": { + "id": "NISTd80", + "name": "ratio quantity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu61", + "name": "one", + "symbol": "1" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq137" + }, + { + "type": "unitsml", + "id": "q:shear_strain" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ShearStrain" + } + ] + }, + { + "id": "NISTq138", + "unitsml_id": "q:volume_strain", + "name": "volume strain", + "names": [ + { + "value": "volume strain", + "lang": "en" + } + ], + "short": "volume_strain", + "type": "derived", + "dimension": { + "id": "NISTd80", + "name": "ratio quantity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu61", + "name": "one", + "symbol": "1" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq138" + }, + { + "type": "unitsml", + "id": "q:volume_strain" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/VolumeStrain" + } + ] + }, + { + "id": "NISTq139", + "unitsml_id": "q:compressibility", + "name": "compressibility", + "names": [ + { + "value": "compressibility", + "lang": "en" + } + ], + "short": "compressibility", + "type": "derived", + "dimension": { + "id": "NISTd63", + "name": "compressibility", + "expression": "LΒ·M-1Β·T2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu12e-1/1", + "name": "pascal to the power minus one", + "symbol": "Pa⁻¹" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq139" + }, + { + "type": "unitsml", + "id": "q:compressibility" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Compressibility" + } + ] + }, + { + "id": "NISTq14", + "unitsml_id": "q:magnetic_flux_density", + "name": "magnetic flux density", + "names": [ + { + "value": "magnetic flux density", + "lang": "en" + }, + { + "value": "induction magnΓ©tique", + "lang": "fr" + } + ], + "short": "magnetic_flux_density", + "type": "derived", + "dimension": { + "id": "NISTd13", + "name": "magnetic flux density", + "expression": "MΒ·T-2Β·I-1", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu116", + "name": "gamma", + "symbol": "Ξ³" + }, + { + "id": "NISTu119", + "name": "gauss", + "symbol": "G" + }, + { + "id": "NISTu21", + "name": "tesla", + "symbol": "T" + }, + { + "id": "NISTu253", + "name": "atomic unit of magnetic flux density", + "symbol": "ℏ/π‘’π‘Žβ‚€Β²" + }, + { + "id": "NISTu273", + "name": "stattesla", + "symbol": "statT" + } + ], + "unit_count": 5, + "identifiers": [ + { + "type": "nist", + "id": "NISTq14" + }, + { + "type": "unitsml", + "id": "q:magnetic_flux_density" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/MGFD" + } + ] + }, + { + "id": "NISTq140", + "unitsml_id": "q:poisson_number", + "name": "Poisson number", + "names": [ + { + "value": "Poisson number", + "lang": "en" + } + ], + "short": "poisson_number", + "type": "derived", + "dimension": { + "id": "NISTd80", + "name": "ratio quantity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu61", + "name": "one", + "symbol": "1" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq140" + }, + { + "type": "unitsml", + "id": "q:poisson_number" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/PoissonRatio" + } + ] + }, + { + "id": "NISTq141", + "unitsml_id": "q:modulus_of_elasticity", + "name": "modulus of elasticity", + "names": [ + { + "value": "modulus of elasticity", + "lang": "en" + } + ], + "short": "modulus_of_elasticity", + "type": "derived", + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu12", + "name": "pascal", + "symbol": "Pa" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq141" + }, + { + "type": "unitsml", + "id": "q:modulus_of_elasticity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ModulusOfElasticity" + } + ] + }, + { + "id": "NISTq142", + "unitsml_id": "q:modulus_of_rigidity", + "name": "modulus of rigidity", + "names": [ + { + "value": "modulus of rigidity", + "lang": "en" + }, + { + "value": "shear modulus", + "lang": "en" + } + ], + "short": "modulus_of_rigidity", + "type": "derived", + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu12", + "name": "pascal", + "symbol": "Pa" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq142" + }, + { + "type": "unitsml", + "id": "q:modulus_of_rigidity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ShearModulus" + } + ] + }, + { + "id": "NISTq143", + "unitsml_id": "q:modulus_of_compression", + "name": "modulus of compression", + "names": [ + { + "value": "modulus of compression", + "lang": "en" + }, + { + "value": "bulk modulus", + "lang": "en" + } + ], + "short": "modulus_of_compression", + "type": "derived", + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu12", + "name": "pascal", + "symbol": "Pa" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq143" + }, + { + "type": "unitsml", + "id": "q:modulus_of_compression" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/BulkModulus" + } + ] + }, + { + "id": "NISTq144", + "unitsml_id": "q:second_axial_moment_of_area", + "name": "second axial moment of area", + "names": [ + { + "value": "second axial moment of area", + "lang": "en" + } + ], + "short": "second_axial_moment_of_area", + "type": "derived", + "dimension": { + "id": "NISTd57", + "name": "area moment of inertia", + "expression": "L4", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 4 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu185", + "name": "meter to the power four", + "symbol": "m⁴" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq144" + }, + { + "type": "unitsml", + "id": "q:second_axial_moment_of_area" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/SecondAxialMomentOfArea" + } + ] + }, + { + "id": "NISTq145", + "unitsml_id": "q:second_polar_moment_of_area", + "name": "second polar moment of area", + "names": [ + { + "value": "second polar moment of area", + "lang": "en" + } + ], + "short": "second_polar_moment_of_area", + "type": "derived", + "dimension": { + "id": "NISTd57", + "name": "area moment of inertia", + "expression": "L4", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 4 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu185", + "name": "meter to the power four", + "symbol": "m⁴" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq145" + }, + { + "type": "unitsml", + "id": "q:second_polar_moment_of_area" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/SecondPolarMomentOfArea" + } + ] + }, + { + "id": "NISTq146", + "unitsml_id": "q:section_modulus", + "name": "section modulus", + "names": [ + { + "value": "section modulus", + "lang": "en" + } + ], + "short": "section_modulus", + "type": "derived", + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1e3/1", + "name": "cubic meter", + "symbol": "mΒ³" + }, + { + "id": "NISTu209", + "name": "inch cubed", + "symbol": "inΒ³" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq146" + }, + { + "type": "unitsml", + "id": "q:section_modulus" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/SectionModulus" + } + ] + }, + { + "id": "NISTq147", + "unitsml_id": "q:dynamic_friction_factor", + "name": "dynamic friction factor", + "names": [ + { + "value": "dynamic friction factor", + "lang": "en" + } + ], + "short": "dynamic_friction_factor", + "type": "derived", + "dimension": { + "id": "NISTd80", + "name": "ratio quantity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu61", + "name": "one", + "symbol": "1" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq147" + }, + { + "type": "unitsml", + "id": "q:dynamic_friction_factor" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/DynamicFriction" + } + ] + }, + { + "id": "NISTq15", + "unitsml_id": "q:pressure", + "name": "pressure", + "names": [ + { + "value": "pressure", + "lang": "en" + }, + { + "value": "pression, contrainte", + "lang": "fr" + } + ], + "short": "pressure", + "type": "derived", + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu12", + "name": "pascal", + "symbol": "Pa" + }, + { + "id": "NISTu134", + "name": "standard atmosphere", + "symbol": "atm" + }, + { + "id": "NISTu135", + "name": "technical atmosphere", + "symbol": "at" + }, + { + "id": "NISTu156", + "name": "conventional millimeter of mercury", + "symbol": "mmHg" + }, + { + "id": "NISTu207", + "name": "pound-force per square inch", + "symbol": "lbf/inΒ²" + }, + { + "id": "NISTu214", + "name": "torr", + "symbol": "torr" + }, + { + "id": "NISTu215", + "name": "conventional millimeter of water", + "symbol": "mmHβ‚‚O" + }, + { + "id": "NISTu239", + "name": "barye", + "symbol": "barye" + }, + { + "id": "NISTu318", + "name": "conventional centimeter of mercury", + "symbol": "cmHg" + }, + { + "id": "NISTu319", + "name": "centimeter of mercury (0 degC)", + "symbol": "cmHg" + }, + { + "id": "NISTu320", + "name": "centimeter of water (4 degC)", + "symbol": "cmHβ‚‚O" + }, + { + "id": "NISTu321", + "name": "conventional centimeter of water", + "symbol": "cmHβ‚‚O" + }, + { + "id": "NISTu322", + "name": "conventional inch of water", + "symbol": "inHβ‚‚O" + }, + { + "id": "NISTu323", + "name": "inch of water (39.2 degF)", + "symbol": "inHβ‚‚O" + }, + { + "id": "NISTu324", + "name": "inch of water (60 degF)", + "symbol": "inHβ‚‚O" + }, + { + "id": "NISTu325", + "name": "conventional foot of water", + "symbol": "ftHβ‚‚O" + }, + { + "id": "NISTu326", + "name": "foot of water (39.2 degF)", + "symbol": "ftHβ‚‚O" + }, + { + "id": "NISTu327", + "name": "inch of mercury (32 degF)", + "symbol": "β€³Hg" + }, + { + "id": "NISTu328", + "name": "inch of mercury (60 degF)", + "symbol": "β€³Hg" + }, + { + "id": "NISTu329", + "name": "conventional inch of mercury", + "symbol": "β€³Hg" + }, + { + "id": "NISTu330", + "name": "conventional foot of mercury", + "symbol": "β€²Hg" + }, + { + "id": "NISTu362", + "name": "millibar", + "symbol": "mbar" + }, + { + "id": "NISTu91", + "name": "bar", + "symbol": "bar" + }, + { + "id": "NISTu92", + "name": "dyne per square centimeter", + "symbol": "dynΒ·cm⁻²" + }, + { + "id": "NISTu93", + "name": "gram-force per square centimeter", + "symbol": "gfΒ·cm⁻²" + }, + { + "id": "NISTu94", + "name": "kilogram-force per square centimeter", + "symbol": "kgfΒ·cm⁻²" + }, + { + "id": "NISTu95", + "name": "kilogram-force per square meter", + "symbol": "kgfΒ·m⁻²" + }, + { + "id": "NISTu96", + "name": "kilogram-force per square millimeter", + "symbol": "kgfΒ·mm⁻²" + } + ], + "unit_count": 28, + "identifiers": [ + { + "type": "nist", + "id": "NISTq15" + }, + { + "type": "unitsml", + "id": "q:pressure" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/PRES" + } + ] + }, + { + "id": "NISTq150", + "unitsml_id": "q:mass_flow_rate", + "name": "mass flow rate", + "names": [ + { + "value": "mass flow rate", + "lang": "en" + } + ], + "short": "mass_flow_rate", + "type": "derived", + "dimension": { + "id": "NISTd65", + "name": "mass flow rate", + "expression": "MΒ·T-1", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu27p10'3.u3e-1/1", + "name": "kilogram per second", + "symbol": "kg/s" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq150" + }, + { + "type": "unitsml", + "id": "q:mass_flow_rate" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/MassFlowRate" + } + ] + }, + { + "id": "NISTq151", + "unitsml_id": "q:volume_flow_rate", + "name": "volume flow rate", + "names": [ + { + "value": "volume flow rate", + "lang": "en" + } + ], + "short": "volume_flow_rate", + "type": "derived", + "dimension": { + "id": "NISTd66", + "name": "volume flow rate", + "expression": "L3Β·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1e3/1.u3e-1/1", + "name": "cubic meter per second", + "symbol": "mΒ³/s" + }, + { + "id": "NISTu358", + "name": "cubic foot per minute", + "symbol": "ftΒ³min" + }, + { + "id": "NISTu359", + "name": "cubic foot per second", + "symbol": "ftΒ³sec" + }, + { + "id": "NISTu360", + "name": "cubic inch per minute", + "symbol": "inΒ³min" + }, + { + "id": "NISTu364", + "name": "gallon (US) per minute", + "symbol": "gpm" + } + ], + "unit_count": 5, + "identifiers": [ + { + "type": "nist", + "id": "NISTq151" + }, + { + "type": "unitsml", + "id": "q:volume_flow_rate" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/VolumeFlowRate" + } + ] + }, + { + "id": "NISTq152", + "unitsml_id": "q:lagrange_function", + "name": "Lagrange function", + "names": [ + { + "value": "Lagrange function", + "lang": "en" + } + ], + "short": "lagrange_function", + "type": "derived", + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu13", + "name": "joule", + "symbol": "J" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq152" + }, + { + "type": "unitsml", + "id": "q:lagrange_function" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/LagrangeFunction" + } + ] + }, + { + "id": "NISTq153", + "unitsml_id": "q:hamilton_function", + "name": "Hamilton function", + "names": [ + { + "value": "Hamilton function", + "lang": "en" + } + ], + "short": "hamilton_function", + "type": "derived", + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu13", + "name": "joule", + "symbol": "J" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq153" + }, + { + "type": "unitsml", + "id": "q:hamilton_function" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/HamiltonFunction" + } + ] + }, + { + "id": "NISTq154", + "unitsml_id": "q:action", + "name": "action", + "names": [ + { + "value": "action", + "lang": "en" + } + ], + "short": "action", + "type": "derived", + "dimension": { + "id": "NISTd60", + "name": "action", + "expression": "L2Β·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu13.u3", + "name": "joule second", + "symbol": "JΒ·s" + }, + { + "id": "NISTu243", + "name": "natural unit of action", + "symbol": "ℏ" + }, + { + "id": "NISTu248", + "name": "atomic unit of action", + "symbol": "ℏ" + }, + { + "id": "NISTu297", + "name": "natural unit of action in eV s", + "symbol": "ℏ" + } + ], + "unit_count": 4, + "identifiers": [ + { + "type": "nist", + "id": "NISTq154" + }, + { + "type": "unitsml", + "id": "q:action" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Action" + } + ] + }, + { + "id": "NISTq155", + "unitsml_id": "q:area_moment_of_inertia", + "name": "area moment of inertia", + "names": [ + { + "value": "area moment of inertia", + "lang": "en" + }, + { + "value": "second moment of area", + "lang": "en" + } + ], + "short": "area_moment_of_inertia", + "type": "derived", + "dimension": { + "id": "NISTd57", + "name": "area moment of inertia", + "expression": "L4", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 4 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu208", + "name": "inch to the fourth power", + "symbol": "in⁴" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq155" + }, + { + "type": "unitsml", + "id": "q:area_moment_of_inertia" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/PolarMomentOfInertia" + } + ] + }, + { + "id": "NISTq156", + "unitsml_id": "q:linear_expansion_coefficient", + "name": "linear expansion coefficient", + "names": [ + { + "value": "linear expansion coefficient", + "lang": "en" + } + ], + "short": "linear_expansion_coefficient", + "type": "derived", + "dimension": { + "id": "NISTd68", + "name": "linear expansion coefficient", + "expression": "Theta-1", + "components": [ + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu5e-1/1", + "name": "kelvin to the power minus one", + "symbol": "K⁻¹" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq156" + }, + { + "type": "unitsml", + "id": "q:linear_expansion_coefficient" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/LinearExpansionCoefficient" + } + ] + }, + { + "id": "NISTq157", + "unitsml_id": "q:cubic_expansion_coefficient", + "name": "cubic expansion coefficient", + "names": [ + { + "value": "cubic expansion coefficient", + "lang": "en" + } + ], + "short": "cubic_expansion_coefficient", + "type": "derived", + "dimension": { + "id": "NISTd68", + "name": "linear expansion coefficient", + "expression": "Theta-1", + "components": [ + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu5e-1/1", + "name": "kelvin to the power minus one", + "symbol": "K⁻¹" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq157" + }, + { + "type": "unitsml", + "id": "q:cubic_expansion_coefficient" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/CubicExpansionCoefficient" + } + ] + }, + { + "id": "NISTq158", + "unitsml_id": "q:relative_pressure_coefficient", + "name": "relative pressure coefficient", + "names": [ + { + "value": "relative pressure coefficient", + "lang": "en" + } + ], + "short": "relative_pressure_coefficient", + "type": "derived", + "dimension": { + "id": "NISTd68", + "name": "linear expansion coefficient", + "expression": "Theta-1", + "components": [ + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu5e-1/1", + "name": "kelvin to the power minus one", + "symbol": "K⁻¹" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq158" + }, + { + "type": "unitsml", + "id": "q:relative_pressure_coefficient" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/RelativePressureCoefficient" + } + ] + }, + { + "id": "NISTq159", + "unitsml_id": "q:pressure_coefficient", + "name": "pressure coefficient", + "names": [ + { + "value": "pressure coefficient", + "lang": "en" + } + ], + "short": "pressure_coefficient", + "type": "derived", + "dimension": { + "id": "NISTd69", + "name": "pressure coefficient", + "expression": "L-1Β·MΒ·T-2Β·Theta-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu12.u5e-1/1", + "name": "pascal per kelvin", + "symbol": "Pa/K" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq159" + }, + { + "type": "unitsml", + "id": "q:pressure_coefficient" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/PressureCoefficient" + } + ] + }, + { + "id": "NISTq16", + "unitsml_id": "q:stress", + "name": "stress", + "names": [ + { + "value": "stress", + "lang": "en" + } + ], + "short": "stress", + "type": "derived", + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu12", + "name": "pascal", + "symbol": "Pa" + }, + { + "id": "NISTu134", + "name": "standard atmosphere", + "symbol": "atm" + }, + { + "id": "NISTu135", + "name": "technical atmosphere", + "symbol": "at" + }, + { + "id": "NISTu156", + "name": "conventional millimeter of mercury", + "symbol": "mmHg" + }, + { + "id": "NISTu318", + "name": "conventional centimeter of mercury", + "symbol": "cmHg" + }, + { + "id": "NISTu319", + "name": "centimeter of mercury (0 degC)", + "symbol": "cmHg" + }, + { + "id": "NISTu320", + "name": "centimeter of water (4 degC)", + "symbol": "cmHβ‚‚O" + }, + { + "id": "NISTu321", + "name": "conventional centimeter of water", + "symbol": "cmHβ‚‚O" + }, + { + "id": "NISTu322", + "name": "conventional inch of water", + "symbol": "inHβ‚‚O" + }, + { + "id": "NISTu323", + "name": "inch of water (39.2 degF)", + "symbol": "inHβ‚‚O" + }, + { + "id": "NISTu324", + "name": "inch of water (60 degF)", + "symbol": "inHβ‚‚O" + }, + { + "id": "NISTu325", + "name": "conventional foot of water", + "symbol": "ftHβ‚‚O" + }, + { + "id": "NISTu326", + "name": "foot of water (39.2 degF)", + "symbol": "ftHβ‚‚O" + }, + { + "id": "NISTu327", + "name": "inch of mercury (32 degF)", + "symbol": "β€³Hg" + }, + { + "id": "NISTu328", + "name": "inch of mercury (60 degF)", + "symbol": "β€³Hg" + }, + { + "id": "NISTu329", + "name": "conventional inch of mercury", + "symbol": "β€³Hg" + }, + { + "id": "NISTu330", + "name": "conventional foot of mercury", + "symbol": "β€²Hg" + }, + { + "id": "NISTu362", + "name": "millibar", + "symbol": "mbar" + }, + { + "id": "NISTu91", + "name": "bar", + "symbol": "bar" + }, + { + "id": "NISTu92", + "name": "dyne per square centimeter", + "symbol": "dynΒ·cm⁻²" + }, + { + "id": "NISTu93", + "name": "gram-force per square centimeter", + "symbol": "gfΒ·cm⁻²" + }, + { + "id": "NISTu94", + "name": "kilogram-force per square centimeter", + "symbol": "kgfΒ·cm⁻²" + }, + { + "id": "NISTu95", + "name": "kilogram-force per square meter", + "symbol": "kgfΒ·m⁻²" + }, + { + "id": "NISTu96", + "name": "kilogram-force per square millimeter", + "symbol": "kgfΒ·mm⁻²" + } + ], + "unit_count": 24, + "identifiers": [ + { + "type": "nist", + "id": "NISTq16" + }, + { + "type": "unitsml", + "id": "q:stress" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Stress" + } + ] + }, + { + "id": "NISTq160", + "unitsml_id": "q:isothermal_compressibility", + "name": "isothermal compressibility", + "names": [ + { + "value": "isothermal compressibility", + "lang": "en" + } + ], + "short": "isothermal_compressibility", + "type": "derived", + "dimension": { + "id": "NISTd70", + "name": "isothermal compressibility", + "expression": "LΒ·M-1Β·T2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu12e-1/1", + "name": "pascal to the power minus one", + "symbol": "Pa⁻¹" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq160" + }, + { + "type": "unitsml", + "id": "q:isothermal_compressibility" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/IsothermalCompressibility" + } + ] + }, + { + "id": "NISTq161", + "unitsml_id": "q:magnetomotive_force", + "name": "magnetomotive force (Cardelli) (-SP811)", + "names": [ + { + "value": "magnetomotive force (Cardelli) (-SP811)", + "lang": "en" + } + ], + "short": "magnetomotive_force", + "type": "derived", + "dimension": { + "id": "NISTd4", + "name": "electric current", + "expression": "I", + "components": [ + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu223", + "name": "gilbert", + "symbol": "Gi" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq161" + }, + { + "type": "unitsml", + "id": "q:magnetomotive_force" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/MagnetomotiveForce" + } + ] + }, + { + "id": "NISTq162", + "unitsml_id": "q:electric_dipole_moment", + "name": "electric dipole moment", + "names": [ + { + "value": "electric dipole moment", + "lang": "en" + } + ], + "short": "electric_dipole_moment", + "type": "derived", + "dimension": { + "id": "NISTd72", + "name": "electric dipole moment", + "expression": "LΒ·TΒ·I", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu224", + "name": "debye", + "symbol": "D" + }, + { + "id": "NISTu258", + "name": "atomic unit of electric dipole moment", + "symbol": "π‘’π‘Žβ‚€" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq162" + }, + { + "type": "unitsml", + "id": "q:electric_dipole_moment" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ElectricDipoleMoment" + } + ] + }, + { + "id": "NISTq163", + "unitsml_id": "q:magnetizability", + "name": "magnetizability", + "names": [ + { + "value": "magnetizability", + "lang": "en" + } + ], + "short": "magnetizability", + "type": "derived", + "dimension": { + "id": "NISTd54", + "name": "magnetizability", + "expression": "L2Β·MΒ·T2Β·I2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": 2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu252", + "name": "atomic unit of magnetizability", + "symbol": "π‘’Β²π‘Žβ‚€Β²/π‘šβ‚‘" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq163" + }, + { + "type": "unitsml", + "id": "q:magnetizability" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Magnetization" + } + ] + }, + { + "id": "NISTq164", + "unitsml_id": "q:magnetic_dipole_moment", + "name": "magnetic dipole moment", + "names": [ + { + "value": "magnetic dipole moment", + "lang": "en" + } + ], + "short": "magnetic_dipole_moment", + "type": "derived", + "dimension": { + "id": "NISTd73", + "name": "magnetic dipole moment", + "expression": "L2Β·I", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu254", + "name": "atomic unit of magnetic dipole moment", + "symbol": "ℏ𝑒/π‘šβ‚‘" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq164" + }, + { + "type": "unitsml", + "id": "q:magnetic_dipole_moment" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/MagneticDipoleMoment" + } + ] + }, + { + "id": "NISTq165", + "unitsml_id": "q:electric_field_gradient", + "name": "electric field gradient", + "names": [ + { + "value": "electric field gradient", + "lang": "en" + } + ], + "short": "electric_field_gradient", + "type": "derived", + "dimension": { + "id": "NISTd74", + "name": "electric field gradient", + "expression": "MΒ·T-3Β·I-1", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu260", + "name": "atomic unit of electric field gradient", + "symbol": "𝐸ₕ/π‘’π‘Žβ‚€Β²" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq165" + }, + { + "type": "unitsml", + "id": "q:electric_field_gradient" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ElectricField" + } + ] + }, + { + "id": "NISTq166", + "unitsml_id": "q:electric_potential", + "name": "electric potential", + "names": [ + { + "value": "electric potential", + "lang": "en" + } + ], + "short": "electric_potential", + "type": "derived", + "dimension": { + "id": "NISTd18", + "name": "electric potential difference", + "expression": "L2Β·MΒ·T-3Β·I-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu261", + "name": "atomic unit of electric potential", + "symbol": "𝐸ₕ/𝑒" + }, + { + "id": "NISTu268", + "name": "statvolt", + "symbol": "statV" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq166" + }, + { + "type": "unitsml", + "id": "q:electric_potential" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ElectricPotential" + } + ] + }, + { + "id": "NISTq167", + "unitsml_id": "q:electric_quadrupole_moment", + "name": "electric quadrupole moment", + "names": [ + { + "value": "electric quadrupole moment", + "lang": "en" + } + ], + "short": "electric_quadrupole_moment", + "type": "derived", + "dimension": { + "id": "NISTd75", + "name": "electric quadrupole moment", + "expression": "L2Β·TΒ·I", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu263", + "name": "atomic unit of electric quadrupole moment", + "symbol": "π‘’π‘Žβ‚€Β²" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq167" + }, + { + "type": "unitsml", + "id": "q:electric_quadrupole_moment" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ElectricQuadrupoleMoment" + } + ] + }, + { + "id": "NISTq168", + "unitsml_id": "q:polarizability", + "name": "polarizability", + "names": [ + { + "value": "polarizability", + "lang": "en" + } + ], + "short": "polarizability", + "type": "derived", + "dimension": { + "id": "NISTd76", + "name": "polarizability", + "expression": "MΒ·T4Β·I2", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": 4 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu264", + "name": "atomic unit of electric polarizability", + "symbol": "π‘’Β²π‘Žβ‚€Β²/𝐸ₕ" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq168" + }, + { + "type": "unitsml", + "id": "q:polarizability" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Polarizability" + } + ] + }, + { + "id": "NISTq169", + "unitsml_id": "q:electric_capacitance", + "name": "electric capacitance", + "names": [ + { + "value": "electric capacitance", + "lang": "en" + } + ], + "short": "electric_capacitance", + "type": "derived", + "dimension": { + "id": "NISTd19", + "name": "capacitance", + "expression": "L-2Β·M-1Β·T4Β·I2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 4 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu266", + "name": "statfarad", + "symbol": "statF" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq169" + }, + { + "type": "unitsml", + "id": "q:electric_capacitance" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Capacitance" + } + ] + }, + { + "id": "NISTq17", + "unitsml_id": "q:energy", + "name": "energy", + "names": [ + { + "value": "energy", + "lang": "en" + }, + { + "value": "Γ©nergie", + "lang": "fr" + } + ], + "short": "energy", + "type": "derived", + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu117", + "name": "therm (EC)", + "symbol": "thm (EC)" + }, + { + "id": "NISTu126", + "name": "kilogram-force meter", + "symbol": "kgfΒ·m" + }, + { + "id": "NISTu13", + "name": "joule", + "symbol": "J" + }, + { + "id": "NISTu14.u3", + "name": "watt second", + "symbol": "WΒ·s" + }, + { + "id": "NISTu166", + "name": "ton of TNT (energy equivalent)", + "symbol": "ton" + }, + { + "id": "NISTu206", + "name": "foot pound-force", + "symbol": "ftΒ·lbf" + }, + { + "id": "NISTu227", + "name": "thermochemical calorie", + "symbol": "cal" + }, + { + "id": "NISTu240", + "name": "electronvolt", + "symbol": "eV" + }, + { + "id": "NISTu250", + "name": "atomic unit of energy", + "symbol": "𝐸ₕ" + }, + { + "id": "NISTu295", + "name": "natural unit of energy", + "symbol": "π‘šβ‚‘π‘Β²" + }, + { + "id": "NISTu298", + "name": "natural unit of energy in MeV", + "symbol": "π‘šβ‚‘π‘Β²" + }, + { + "id": "NISTu331", + "name": "therm (US)", + "symbol": "thm (US)" + }, + { + "id": "NISTu60", + "name": "I.T. calorie", + "symbol": "cal_IT" + }, + { + "id": "NISTu62", + "name": "erg", + "symbol": "erg" + }, + { + "id": "NISTu63", + "name": "kilocalorie_IT", + "symbol": "kcal_IT" + }, + { + "id": "NISTu64", + "name": "kilocalorie_th", + "symbol": "kcal_th" + }, + { + "id": "NISTu65", + "name": "kilowatt hour", + "symbol": "kWΒ·h" + }, + { + "id": "NISTu69", + "name": "watt hour", + "symbol": "WΒ·h" + } + ], + "unit_count": 18, + "identifiers": [ + { + "type": "nist", + "id": "NISTq17" + }, + { + "type": "unitsml", + "id": "q:energy" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ENGY" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Energy" + } + ] + }, + { + "id": "NISTq170", + "unitsml_id": "q:electric_current_intensity", + "name": "electric current intensity", + "names": [ + { + "value": "electric current intensity", + "lang": "en" + } + ], + "short": "electric_current_intensity", + "type": "derived", + "dimension": { + "id": "NISTd4", + "name": "electric current", + "expression": "I", + "components": [ + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu267", + "name": "statampere", + "symbol": "statA" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq170" + }, + { + "type": "unitsml", + "id": "q:electric_current_intensity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ElectricCurrentIntensity" + } + ] + }, + { + "id": "NISTq171", + "unitsml_id": "q:electric_inductance", + "name": "electric inductance", + "names": [ + { + "value": "electric inductance", + "lang": "en" + } + ], + "short": "electric_inductance", + "type": "derived", + "dimension": { + "id": "NISTd23", + "name": "inductance", + "expression": "L2Β·MΒ·T-2Β·I-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu269", + "name": "stathenry", + "symbol": "statH" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq171" + }, + { + "type": "unitsml", + "id": "q:electric_inductance" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Inductance" + } + ] + }, + { + "id": "NISTq172", + "unitsml_id": "q:first_hyperpolarizability", + "name": "1st hyperpolarizability", + "names": [ + { + "value": "1st hyperpolarizability", + "lang": "en" + } + ], + "short": "first_hyperpolarizability", + "type": "derived", + "dimension": { + "id": "NISTd77", + "name": "hyperpolarizability 1st", + "expression": "L-1Β·M-2Β·T7Β·I3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": -2 + }, + { + "key": "time", + "symbol": "T", + "power": 7 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 3 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu291", + "name": "atomic unit of 1st hyperpolarizability", + "symbol": "π‘’Β³π‘Žβ‚€Β³πΈβ‚•Β³" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq172" + }, + { + "type": "unitsml", + "id": "q:first_hyperpolarizability" + } + ], + "references": [] + }, + { + "id": "NISTq173", + "unitsml_id": "q:second_hyperpolarizability", + "name": "2nd hyperpolarizability", + "names": [ + { + "value": "2nd hyperpolarizability", + "lang": "en" + } + ], + "short": "second_hyperpolarizability", + "type": "derived", + "dimension": { + "id": "NISTd78", + "name": "hyperpolarizability 2nd", + "expression": "L-2Β·M-3Β·T10Β·I4", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": -3 + }, + { + "key": "time", + "symbol": "T", + "power": 10 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 4 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu292", + "name": "atomic unit of 2nd hyperpolarizability", + "symbol": "π‘’β΄π‘Žβ‚€β΄πΈβ‚•β΄" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq173" + }, + { + "type": "unitsml", + "id": "q:second_hyperpolarizability" + } + ], + "references": [] + }, + { + "id": "NISTq174", + "unitsml_id": "q:index_of_acidity", + "name": "index of acidity", + "names": [ + { + "value": "index of acidity", + "lang": "en" + } + ], + "short": "index_of_acidity", + "type": "derived", + "dimension": { + "id": "NISTd94", + "name": "acidity index", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu332", + "name": "pH", + "symbol": "pH" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq174" + }, + { + "type": "unitsml", + "id": "q:index_of_acidity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Acidity" + } + ] + }, + { + "id": "NISTq175", + "unitsml_id": "q:fahrenheit_temperature", + "name": "Fahrenheit temperature", + "names": [ + { + "value": "Fahrenheit temperature", + "lang": "en" + } + ], + "short": "fahrenheit_temperature", + "type": "derived", + "dimension": { + "id": "NISTd5", + "name": "temperature", + "expression": "Theta", + "components": [ + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu133", + "name": "degree Fahrenheit", + "symbol": "Β°F" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq175" + }, + { + "type": "unitsml", + "id": "q:fahrenheit_temperature" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/FahrenheitTemperature" + } + ] + }, + { + "id": "NISTq176", + "unitsml_id": "q:mass_divided_by_length", + "name": "mass divided by length", + "names": [ + { + "value": "mass divided by length", + "lang": "en" + } + ], + "short": "mass_divided_by_length", + "type": "derived", + "dimension": { + "id": "NISTd58", + "name": "linear density", + "expression": "L-1Β·M", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu346", + "name": "denier", + "symbol": "den" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq176" + }, + { + "type": "unitsml", + "id": "q:mass_divided_by_length" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/LineicMass" + } + ] + }, + { + "id": "NISTq177", + "unitsml_id": "q:storage_capacity", + "name": "storage capacity", + "names": [ + { + "value": "storage capacity", + "lang": "en" + }, + { + "value": "storage size", + "lang": "en" + } + ], + "short": "storage_capacity", + "type": "derived", + "dimension": { + "id": "NISTd95", + "name": "storage capacity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu350", + "name": "bit", + "symbol": "bit" + }, + { + "id": "NISTu351", + "name": "byte", + "symbol": "B" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq177" + }, + { + "type": "unitsml", + "id": "q:storage_capacity" + } + ], + "references": [] + }, + { + "id": "NISTq179", + "unitsml_id": "q:molality_of_solute_B", + "name": "molality of solute B", + "names": [ + { + "value": "molality of solute B", + "lang": "en" + } + ], + "short": "molality_of_solute_B", + "type": "derived", + "dimension": { + "id": "NISTd79", + "name": "molality", + "expression": "MΒ·N", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu6.u27p10'3e-1/1", + "name": "mole per kilogram", + "symbol": "mol/kg" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq179" + }, + { + "type": "unitsml", + "id": "q:molality_of_solute_B" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/MolalityOfSolute" + } + ] + }, + { + "id": "NISTq18", + "unitsml_id": "q:work", + "name": "work", + "names": [ + { + "value": "work", + "lang": "en" + } + ], + "short": "work", + "type": "derived", + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu117", + "name": "therm (EC)", + "symbol": "thm (EC)" + }, + { + "id": "NISTu126", + "name": "kilogram-force meter", + "symbol": "kgfΒ·m" + }, + { + "id": "NISTu13", + "name": "joule", + "symbol": "J" + }, + { + "id": "NISTu14.u3", + "name": "watt second", + "symbol": "WΒ·s" + }, + { + "id": "NISTu206", + "name": "foot pound-force", + "symbol": "ftΒ·lbf" + }, + { + "id": "NISTu227", + "name": "thermochemical calorie", + "symbol": "cal" + }, + { + "id": "NISTu331", + "name": "therm (US)", + "symbol": "thm (US)" + }, + { + "id": "NISTu60", + "name": "I.T. calorie", + "symbol": "cal_IT" + }, + { + "id": "NISTu62", + "name": "erg", + "symbol": "erg" + }, + { + "id": "NISTu63", + "name": "kilocalorie_IT", + "symbol": "kcal_IT" + }, + { + "id": "NISTu64", + "name": "kilocalorie_th", + "symbol": "kcal_th" + }, + { + "id": "NISTu65", + "name": "kilowatt hour", + "symbol": "kWΒ·h" + }, + { + "id": "NISTu69", + "name": "watt hour", + "symbol": "WΒ·h" + } + ], + "unit_count": 13, + "identifiers": [ + { + "type": "nist", + "id": "NISTq18" + }, + { + "type": "unitsml", + "id": "q:work" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Work" + } + ] + }, + { + "id": "NISTq180", + "unitsml_id": "q:coefficient_of_heat_transfer", + "name": "coefficient of heat transfer", + "names": [ + { + "value": "coefficient of heat transfer", + "lang": "en" + } + ], + "short": "coefficient_of_heat_transfer", + "type": "derived", + "dimension": { + "id": "NISTd71", + "name": "heat transfer coefficient", + "expression": "MΒ·T-3Β·Theta-1", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu221", + "name": "watt per square meter kelvin", + "symbol": "W/(mΒ²Β·K)" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq180" + }, + { + "type": "unitsml", + "id": "q:coefficient_of_heat_transfer" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/CoefficientOfHeatTransfer" + } + ] + }, + { + "id": "NISTq181", + "unitsml_id": "q:surface_coefficient_of_heat_transfer", + "name": "surface coefficient of heat transfer", + "names": [ + { + "value": "surface coefficient of heat transfer", + "lang": "en" + } + ], + "short": "surface_coefficient_of_heat_transfer", + "type": "derived", + "dimension": { + "id": "NISTd71", + "name": "heat transfer coefficient", + "expression": "MΒ·T-3Β·Theta-1", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu221", + "name": "watt per square meter kelvin", + "symbol": "W/(mΒ²Β·K)" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq181" + }, + { + "type": "unitsml", + "id": "q:surface_coefficient_of_heat_transfer" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/SurfaceCoefficientOfHeatTransfer" + } + ] + }, + { + "id": "NISTq182", + "unitsml_id": "q:kinetic_energy", + "name": "kinetic energy", + "names": [ + { + "value": "kinetic energy", + "lang": "en" + } + ], + "short": "kinetic_energy", + "type": "derived", + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu117", + "name": "therm (EC)", + "symbol": "thm (EC)" + }, + { + "id": "NISTu13", + "name": "joule", + "symbol": "J" + }, + { + "id": "NISTu14.u3", + "name": "watt second", + "symbol": "WΒ·s" + }, + { + "id": "NISTu206", + "name": "foot pound-force", + "symbol": "ftΒ·lbf" + }, + { + "id": "NISTu227", + "name": "thermochemical calorie", + "symbol": "cal" + }, + { + "id": "NISTu331", + "name": "therm (US)", + "symbol": "thm (US)" + }, + { + "id": "NISTu60", + "name": "I.T. calorie", + "symbol": "cal_IT" + }, + { + "id": "NISTu62", + "name": "erg", + "symbol": "erg" + }, + { + "id": "NISTu63", + "name": "kilocalorie_IT", + "symbol": "kcal_IT" + }, + { + "id": "NISTu64", + "name": "kilocalorie_th", + "symbol": "kcal_th" + }, + { + "id": "NISTu65", + "name": "kilowatt hour", + "symbol": "kWΒ·h" + }, + { + "id": "NISTu69", + "name": "watt hour", + "symbol": "WΒ·h" + } + ], + "unit_count": 12, + "identifiers": [ + { + "type": "nist", + "id": "NISTq182" + }, + { + "type": "unitsml", + "id": "q:kinetic_energy" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/KineticEnergy" + } + ] + }, + { + "id": "NISTq183", + "unitsml_id": "q:mechanical_energy", + "name": "mechanical energy", + "names": [ + { + "value": "mechanical energy", + "lang": "en" + } + ], + "short": "mechanical_energy", + "type": "derived", + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu117", + "name": "therm (EC)", + "symbol": "thm (EC)" + }, + { + "id": "NISTu13", + "name": "joule", + "symbol": "J" + }, + { + "id": "NISTu14.u3", + "name": "watt second", + "symbol": "WΒ·s" + }, + { + "id": "NISTu206", + "name": "foot pound-force", + "symbol": "ftΒ·lbf" + }, + { + "id": "NISTu227", + "name": "thermochemical calorie", + "symbol": "cal" + }, + { + "id": "NISTu331", + "name": "therm (US)", + "symbol": "thm (US)" + }, + { + "id": "NISTu60", + "name": "I.T. calorie", + "symbol": "cal_IT" + }, + { + "id": "NISTu62", + "name": "erg", + "symbol": "erg" + }, + { + "id": "NISTu63", + "name": "kilocalorie_IT", + "symbol": "kcal_IT" + }, + { + "id": "NISTu64", + "name": "kilocalorie_th", + "symbol": "kcal_th" + }, + { + "id": "NISTu65", + "name": "kilowatt hour", + "symbol": "kWΒ·h" + }, + { + "id": "NISTu69", + "name": "watt hour", + "symbol": "WΒ·h" + } + ], + "unit_count": 12, + "identifiers": [ + { + "type": "nist", + "id": "NISTq183" + }, + { + "type": "unitsml", + "id": "q:mechanical_energy" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/MechanicalEnergy" + } + ] + }, + { + "id": "NISTq184", + "unitsml_id": "q:torque", + "name": "torque", + "names": [ + { + "value": "torque", + "lang": "en" + } + ], + "short": "torque", + "type": "derived", + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu11.u1", + "name": "newton meter", + "symbol": "NΒ·m" + }, + { + "id": "NISTu126", + "name": "kilogram-force meter", + "symbol": "kgfΒ·m" + }, + { + "id": "NISTu206", + "name": "foot pound-force", + "symbol": "ftΒ·lbf" + } + ], + "unit_count": 3, + "identifiers": [ + { + "type": "nist", + "id": "NISTq184" + }, + { + "type": "unitsml", + "id": "q:torque" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Torque" + } + ] + }, + { + "id": "NISTq185", + "unitsml_id": "q:bending_moment_of_force", + "name": "bending moment of force", + "names": [ + { + "value": "bending moment of force", + "lang": "en" + } + ], + "short": "bending_moment_of_force", + "type": "derived", + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu11.u1", + "name": "newton meter", + "symbol": "NΒ·m" + }, + { + "id": "NISTu126", + "name": "kilogram-force meter", + "symbol": "kgfΒ·m" + }, + { + "id": "NISTu206", + "name": "foot pound-force", + "symbol": "ftΒ·lbf" + } + ], + "unit_count": 3, + "identifiers": [ + { + "type": "nist", + "id": "NISTq185" + }, + { + "type": "unitsml", + "id": "q:bending_moment_of_force" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/BendingMomentOfForce" + } + ] + }, + { + "id": "NISTq186", + "unitsml_id": "q:mass_fraction", + "name": "mass fraction", + "names": [ + { + "value": "mass fraction", + "lang": "en" + }, + { + "value": "mole fraction", + "lang": "en" + } + ], + "short": "mass_fraction", + "type": "derived", + "dimension": { + "id": "NISTd85", + "name": "mass mole fraction", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu400", + "name": "parts per million", + "symbol": "ppm" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq186" + }, + { + "type": "unitsml", + "id": "q:mass_fraction" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/MassFraction" + } + ] + }, + { + "id": "NISTq187", + "unitsml_id": "q:apparent_power", + "name": "apparent power", + "names": [ + { + "value": "apparent power", + "lang": "en" + } + ], + "short": "apparent_power", + "type": "derived", + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu401", + "name": "var", + "symbol": "var" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq187" + }, + { + "type": "unitsml", + "id": "q:apparent_power" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ApparentPower" + } + ] + }, + { + "id": "NISTq188", + "unitsml_id": "q:nil", + "name": "nil", + "names": [ + { + "value": "nil", + "lang": "en" + } + ], + "short": "nil", + "type": "derived", + "dimension": { + "id": "NISTd80", + "name": "ratio quantity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu61", + "name": "one", + "symbol": "1" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq188" + }, + { + "type": "unitsml", + "id": "q:nil" + } + ], + "references": [] + }, + { + "id": "NISTq189", + "unitsml_id": "q:emission_rate", + "name": "emission rate", + "names": [ + { + "value": "emission rate", + "lang": "en" + }, + { + "value": "taux d'Γ©mission", + "lang": "fr" + } + ], + "short": "emission_rate", + "type": "derived", + "dimension": { + "id": "NISTd24", + "name": "frequency", + "expression": "T-1", + "components": [ + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu3e-1/1", + "name": "second to the power minus one", + "symbol": "s⁻¹" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq189" + }, + { + "type": "unitsml", + "id": "q:emission_rate" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/EMIR" + } + ] + }, + { + "id": "NISTq19", + "unitsml_id": "q:amount_of_heat", + "name": "amount of heat", + "names": [ + { + "value": "amount of heat", + "lang": "en" + }, + { + "value": "heat", + "lang": "en" + } + ], + "short": "amount_of_heat", + "type": "derived", + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu117", + "name": "therm (EC)", + "symbol": "thm (EC)" + }, + { + "id": "NISTu13", + "name": "joule", + "symbol": "J" + }, + { + "id": "NISTu14.u3", + "name": "watt second", + "symbol": "WΒ·s" + }, + { + "id": "NISTu216", + "name": "British thermal unit_th", + "symbol": "Btu_th" + }, + { + "id": "NISTu227", + "name": "thermochemical calorie", + "symbol": "cal" + }, + { + "id": "NISTu331", + "name": "therm (US)", + "symbol": "thm (US)" + }, + { + "id": "NISTu333", + "name": "British thermal unit_IT", + "symbol": "Btu" + }, + { + "id": "NISTu334", + "name": "British thermal unit (mean)", + "symbol": "Btu" + }, + { + "id": "NISTu335", + "name": "British thermal unit (39 degF)", + "symbol": "Btu" + }, + { + "id": "NISTu336", + "name": "British thermal unit (59 degF)", + "symbol": "Btu" + }, + { + "id": "NISTu337", + "name": "British thermal unit (60 degF)", + "symbol": "Btu" + }, + { + "id": "NISTu60", + "name": "I.T. calorie", + "symbol": "cal_IT" + }, + { + "id": "NISTu62", + "name": "erg", + "symbol": "erg" + }, + { + "id": "NISTu63", + "name": "kilocalorie_IT", + "symbol": "kcal_IT" + }, + { + "id": "NISTu64", + "name": "kilocalorie_th", + "symbol": "kcal_th" + }, + { + "id": "NISTu65", + "name": "kilowatt hour", + "symbol": "kWΒ·h" + }, + { + "id": "NISTu69", + "name": "watt hour", + "symbol": "WΒ·h" + } + ], + "unit_count": 17, + "identifiers": [ + { + "type": "nist", + "id": "NISTq19" + }, + { + "type": "unitsml", + "id": "q:amount_of_heat" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Heat" + } + ] + }, + { + "id": "NISTq190", + "unitsml_id": "q:fluence", + "name": "fluence", + "names": [ + { + "value": "fluence", + "lang": "en" + }, + { + "value": "fluence", + "lang": "fr" + } + ], + "short": "fluence", + "type": "derived", + "dimension": { + "id": "NISTd96", + "name": "fluence", + "expression": "L-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1e-2/1", + "name": "meter to the power minus two", + "symbol": "m⁻²" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq190" + }, + { + "type": "unitsml", + "id": "q:fluence" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/FLUE" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/EnergyFluence" + } + ] + }, + { + "id": "NISTq191", + "unitsml_id": "q:fluence_rate", + "name": "fluence rate", + "names": [ + { + "value": "fluence rate", + "lang": "en" + }, + { + "value": "dΓ©bit de fluence", + "lang": "fr" + } + ], + "short": "fluence_rate", + "type": "derived", + "dimension": { + "id": "NISTd97", + "name": "fluence_rate", + "expression": "L-2Β·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1e-2/1.u3e-1/1", + "name": "meter to the power minus two per second", + "symbol": "m⁻²·s⁻¹" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq191" + }, + { + "type": "unitsml", + "id": "q:fluence_rate" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/FLUR" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/EnergyFluenceRate" + } + ] + }, + { + "id": "NISTq192", + "unitsml_id": "q:ITS-90_temperature_celsius", + "name": "ITS-90 temperature (Β°C)", + "names": [ + { + "value": "ITS-90 temperature (Β°C)", + "lang": "en" + }, + { + "value": "tempΓ©rature ITS-90 (℃)", + "lang": "fr" + } + ], + "short": "ITS-90_temperature_celsius", + "type": "derived", + "dimension": { + "id": "NISTd5", + "name": "temperature", + "expression": "Theta", + "components": [ + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu23", + "name": "degree Celsius", + "symbol": "Β°C" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq192" + }, + { + "type": "unitsml", + "id": "q:ITS-90_temperature_celsius" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ITSC" + } + ] + }, + { + "id": "NISTq193", + "unitsml_id": "q:ITS-90_temperature_kelvin", + "name": "ITS-90 temperature (K)", + "names": [ + { + "value": "ITS-90 temperature (K)", + "lang": "en" + }, + { + "value": "tempΓ©rature ITS-90 (K)", + "lang": "fr" + } + ], + "short": "ITS-90_temperature_kelvin", + "type": "derived", + "dimension": { + "id": "NISTd5", + "name": "temperature", + "expression": "Theta", + "components": [ + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu5", + "name": "kelvin", + "symbol": "Β°K" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq193" + }, + { + "type": "unitsml", + "id": "q:ITS-90_temperature_kelvin" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ITSK" + } + ] + }, + { + "id": "NISTq194", + "unitsml_id": "q:kerma_rate", + "name": "kerma rate", + "names": [ + { + "value": "kerma rate", + "lang": "en" + }, + { + "value": "kerma rate", + "lang": "fr" + } + ], + "short": "kerma_rate", + "type": "derived", + "dimension": { + "id": "NISTd50", + "name": "absorbed dose rate", + "expression": "L2Β·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu28.u3e-1/1", + "name": "gray per second", + "symbol": "Gy/s" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq194" + }, + { + "type": "unitsml", + "id": "q:kerma_rate" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/KRMR" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/KermaRate" + } + ] + }, + { + "id": "NISTq195", + "unitsml_id": "q:phase", + "name": "phase", + "names": [ + { + "value": "phase", + "lang": "en" + }, + { + "value": "phase", + "lang": "fr" + } + ], + "short": "phase", + "type": "derived", + "dimension": { + "id": "NISTd98", + "name": "phase", + "expression": "1", + "components": [ + { + "key": "plane_angle", + "symbol": "phi", + "power": 1 + } + ], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu9", + "name": "radian", + "symbol": "rad" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq195" + }, + { + "type": "unitsml", + "id": "q:phase" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/PHAS" + } + ] + }, + { + "id": "NISTq196", + "unitsml_id": "q:PLTS-2000_temperature", + "name": "PLTS-2000 temperature (K)", + "names": [ + { + "value": "PLTS-2000 temperature (K)", + "lang": "en" + }, + { + "value": "tempΓ©rature PLTS-2000 (K)", + "lang": "fr" + } + ], + "short": "PLTS-2000_temperature", + "type": "derived", + "dimension": { + "id": "NISTd5", + "name": "temperature", + "expression": "Theta", + "components": [ + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu5", + "name": "kelvin", + "symbol": "Β°K" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq196" + }, + { + "type": "unitsml", + "id": "q:PLTS-2000_temperature" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/PLTS" + } + ] + }, + { + "id": "NISTq197", + "unitsml_id": "q:exposure", + "name": "exposure", + "names": [ + { + "value": "exposure", + "lang": "en" + }, + { + "value": "exposition (rayons x et Ξ³)", + "lang": "fr" + } + ], + "short": "exposure", + "type": "derived", + "dimension": { + "id": "NISTd49", + "name": "exposure", + "expression": "M-1Β·TΒ·I", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu15.u27p10'3e-1/1", + "name": "coulomb per kilogram", + "symbol": "C/kg" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq197" + }, + { + "type": "unitsml", + "id": "q:exposure" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/XPOS" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Exposure" + } + ] + }, + { + "id": "NISTq198", + "unitsml_id": "q:fuel_efficiency", + "name": "fuel efficiency", + "names": [ + { + "value": "fuel efficiency", + "lang": "en" + }, + { + "value": "fuel economy", + "lang": "en" + } + ], + "short": "fuel_efficiency", + "type": "derived", + "dimension": { + "id": "NISTd99", + "name": "fuel efficiency", + "expression": "L-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu363", + "name": "mile per gallon (US)", + "symbol": "mi/gal" + }, + { + "id": "NISTu380", + "name": "kilometer per liter", + "symbol": "km/L" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq198" + }, + { + "type": "unitsml", + "id": "q:fuel_efficiency" + } + ], + "references": [] + }, + { + "id": "NISTq199", + "unitsml_id": "q:relative_humidity", + "name": "relative humidity", + "names": [ + { + "value": "relative humidity", + "lang": "en" + } + ], + "short": "relative_humidity", + "type": "derived", + "dimension": { + "id": "NISTd80", + "name": "ratio quantity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu382", + "name": "relative humidity", + "symbol": "%rh" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq199" + }, + { + "type": "unitsml", + "id": "q:relative_humidity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/RelativeHumidity" + } + ] + }, + { + "id": "NISTq2", + "unitsml_id": "q:mass", + "name": "mass", + "names": [ + { + "value": "mass", + "lang": "en" + }, + { + "value": "masse", + "lang": "fr" + } + ], + "short": "mass", + "type": "base", + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu125", + "name": "kilogram-force second squared per meter", + "symbol": "kgfΒ·sΒ²m⁻¹" + }, + { + "id": "NISTu2", + "name": "kilogram", + "symbol": "kg" + }, + { + "id": "NISTu201", + "name": "pound (avoirdupois)", + "symbol": "lb" + }, + { + "id": "NISTu202", + "name": "ounce (avoirdupois)", + "symbol": "oz" + }, + { + "id": "NISTu203", + "name": "hundredweight (long, 112 lb)", + "symbol": "cwt (UK)" + }, + { + "id": "NISTu212", + "name": "carat", + "symbol": "ct" + }, + { + "id": "NISTu226", + "name": "slug", + "symbol": "slug" + }, + { + "id": "NISTu228", + "name": "short ton", + "symbol": "t" + }, + { + "id": "NISTu229", + "name": "long ton", + "symbol": "t" + }, + { + "id": "NISTu230", + "name": "hundredweight (short, 100 lb)", + "symbol": "cwt (US)" + }, + { + "id": "NISTu231", + "name": "ounce (troy or apothecary)", + "symbol": "oz" + }, + { + "id": "NISTu232", + "name": "pound (troy or apothecary)", + "symbol": "lb" + }, + { + "id": "NISTu233", + "name": "pennyweight", + "symbol": "dwt (troy)" + }, + { + "id": "NISTu234", + "name": "dram (apothecary)", + "symbol": "dr" + }, + { + "id": "NISTu235", + "name": "scruple", + "symbol": "scr (ap.)" + }, + { + "id": "NISTu237", + "name": "kip", + "symbol": "kip" + }, + { + "id": "NISTu241", + "name": "unified atomic mass unit", + "symbol": "u" + }, + { + "id": "NISTu244", + "name": "natural unit of mass", + "symbol": "π‘šβ‚‘" + }, + { + "id": "NISTu247", + "name": "atomic unit of mass", + "symbol": "π‘šβ‚‘" + }, + { + "id": "NISTu27", + "name": "gram", + "symbol": "g" + }, + { + "id": "NISTu275", + "name": "dram (avoirdupois)", + "symbol": "dr (avdp)" + }, + { + "id": "NISTu289", + "name": "dalton", + "symbol": "Da" + }, + { + "id": "NISTu309", + "name": "ounce (FDA)", + "symbol": "oz (US label)" + }, + { + "id": "NISTu86", + "name": "grain (troy or apothecary)", + "symbol": "gr" + }, + { + "id": "NISTu88", + "name": "tonne", + "symbol": "t" + } + ], + "unit_count": 25, + "identifiers": [ + { + "type": "nist", + "id": "NISTq2" + }, + { + "type": "unitsml", + "id": "q:mass" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/MASS" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Mass" + } + ] + }, + { + "id": "NISTq20", + "unitsml_id": "q:power", + "name": "power", + "names": [ + { + "value": "power", + "lang": "en" + }, + { + "value": "puissance, flux Γ©nergΓ©tique", + "lang": "fr" + } + ], + "short": "power", + "type": "derived", + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu127", + "name": "horsepower, electric", + "symbol": "hp" + }, + { + "id": "NISTu14", + "name": "watt", + "symbol": "W" + }, + { + "id": "NISTu211", + "name": "foot pound-force per second", + "symbol": "ftΒ·lbf/2" + }, + { + "id": "NISTu217", + "name": "kilogram-force meter per second", + "symbol": "kgfΒ·m/s" + }, + { + "id": "NISTu218", + "name": "horsepower, metric", + "symbol": "hp" + }, + { + "id": "NISTu225", + "name": "abwatt", + "symbol": "aW" + }, + { + "id": "NISTu274", + "name": "statwatt", + "symbol": "statwatt" + }, + { + "id": "NISTu284", + "name": "horsepower", + "symbol": "hp" + }, + { + "id": "NISTu285", + "name": "horsepower, boiler", + "symbol": "hp" + }, + { + "id": "NISTu286", + "name": "horsepower, water", + "symbol": "hp" + }, + { + "id": "NISTu287", + "name": "horsepower (UK)", + "symbol": "hp" + }, + { + "id": "NISTu349", + "name": "ton of refrigeration (12 000 Btu_IT/h)", + "symbol": "ton" + }, + { + "id": "NISTu74", + "name": "calorie_th per second", + "symbol": "cal_th/s" + }, + { + "id": "NISTu75", + "name": "kilocalorie_th per second", + "symbol": "kcal_th/s" + }, + { + "id": "NISTu89", + "name": "erg per second", + "symbol": "ergΒ·s⁻¹" + } + ], + "unit_count": 15, + "identifiers": [ + { + "type": "nist", + "id": "NISTq20" + }, + { + "type": "unitsml", + "id": "q:power" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/POWR" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Power" + } + ] + }, + { + "id": "NISTq200", + "unitsml_id": "q:logarithmic_frequency_range", + "name": "logarithmic frequency range", + "names": [ + { + "value": "logarithmic frequency range", + "lang": "en" + } + ], + "short": "logarithmic_frequency_range", + "type": "derived", + "dimension": { + "id": "NISTd67", + "name": "logarithmic ratio", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu383", + "name": "octave", + "symbol": "oct" + }, + { + "id": "NISTu384", + "name": "decade", + "symbol": "dec" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq200" + }, + { + "type": "unitsml", + "id": "q:logarithmic_frequency_range" + } + ], + "references": [] + }, + { + "id": "NISTq201", + "unitsml_id": "q:traffic_intensity", + "name": "traffic intensity", + "names": [ + { + "value": "traffic intensity", + "lang": "en" + } + ], + "short": "traffic_intensity", + "type": "derived", + "dimension": { + "id": "NISTd100", + "name": "traffic intensity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu385", + "name": "erlang", + "symbol": "E" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq201" + }, + { + "type": "unitsml", + "id": "q:traffic_intensity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/TrafficIntensity" + } + ] + }, + { + "id": "NISTq202", + "unitsml_id": "q:symbol_rate", + "name": "symbol rate", + "names": [ + { + "value": "symbol rate", + "lang": "en" + } + ], + "short": "symbol_rate", + "type": "derived", + "dimension": { + "id": "NISTd101", + "name": "symbol rate", + "expression": "T-1", + "components": [ + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu386", + "name": "baud", + "symbol": "Bd" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq202" + }, + { + "type": "unitsml", + "id": "q:symbol_rate" + } + ], + "references": [] + }, + { + "id": "NISTq203", + "unitsml_id": "q:information_content", + "name": "information content", + "names": [ + { + "value": "information content", + "lang": "en" + }, + { + "value": "information entropy", + "lang": "en" + } + ], + "short": "information_content", + "type": "derived", + "dimension": { + "id": "NISTd102", + "name": "information content", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu387", + "name": "shannon", + "symbol": "Sh" + }, + { + "id": "NISTu388", + "name": "hartley", + "symbol": "Hart" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq203" + }, + { + "type": "unitsml", + "id": "q:information_content" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/InformationContent" + } + ] + }, + { + "id": "NISTq21", + "unitsml_id": "q:radiant_flux", + "name": "radiant flux", + "names": [ + { + "value": "radiant flux", + "lang": "en" + } + ], + "short": "radiant_flux", + "type": "derived", + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu127", + "name": "horsepower, electric", + "symbol": "hp" + }, + { + "id": "NISTu14", + "name": "watt", + "symbol": "W" + }, + { + "id": "NISTu74", + "name": "calorie_th per second", + "symbol": "cal_th/s" + }, + { + "id": "NISTu75", + "name": "kilocalorie_th per second", + "symbol": "kcal_th/s" + }, + { + "id": "NISTu89", + "name": "erg per second", + "symbol": "ergΒ·s⁻¹" + } + ], + "unit_count": 5, + "identifiers": [ + { + "type": "nist", + "id": "NISTq21" + }, + { + "type": "unitsml", + "id": "q:radiant_flux" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/RadiantFlux" + } + ] + }, + { + "id": "NISTq22", + "unitsml_id": "q:electric_charge", + "name": "electric charge", + "names": [ + { + "value": "electric charge", + "lang": "en" + }, + { + "value": "charge Γ©lectrique", + "lang": "fr" + } + ], + "short": "electric_charge", + "type": "derived", + "dimension": { + "id": "NISTd17", + "name": "electric charge", + "expression": "TΒ·I", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu15", + "name": "coulomb", + "symbol": "C" + }, + { + "id": "NISTu246", + "name": "atomic unit of charge", + "symbol": "𝑒" + }, + { + "id": "NISTu271", + "name": "statcoulomb", + "symbol": "statcoulomb" + }, + { + "id": "NISTu48", + "name": "abcoulomb", + "symbol": "abC" + }, + { + "id": "NISTu54", + "name": "ampere hour", + "symbol": "AΒ·h" + } + ], + "unit_count": 5, + "identifiers": [ + { + "type": "nist", + "id": "NISTq22" + }, + { + "type": "unitsml", + "id": "q:electric_charge" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ELCH" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ElectricCharge" + } + ] + }, + { + "id": "NISTq23", + "unitsml_id": "q:amount_of_electricity", + "name": "amount of electricity", + "names": [ + { + "value": "amount of electricity", + "lang": "en" + } + ], + "short": "amount_of_electricity", + "type": "derived", + "dimension": { + "id": "NISTd17", + "name": "electric charge", + "expression": "TΒ·I", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu15", + "name": "coulomb", + "symbol": "C" + }, + { + "id": "NISTu271", + "name": "statcoulomb", + "symbol": "statcoulomb" + }, + { + "id": "NISTu48", + "name": "abcoulomb", + "symbol": "abC" + }, + { + "id": "NISTu54", + "name": "ampere hour", + "symbol": "AΒ·h" + } + ], + "unit_count": 4, + "identifiers": [ + { + "type": "nist", + "id": "NISTq23" + }, + { + "type": "unitsml", + "id": "q:amount_of_electricity" + } + ], + "references": [] + }, + { + "id": "NISTq24", + "unitsml_id": "q:electric_potential_difference", + "name": "electric potential difference", + "names": [ + { + "value": "electric potential difference", + "lang": "en" + }, + { + "value": "diffΓ©rence de potentiel Γ©lectrique", + "lang": "fr" + } + ], + "short": "electric_potential_difference", + "type": "derived", + "dimension": { + "id": "NISTd18", + "name": "electric potential difference", + "expression": "L2Β·MΒ·T-3Β·I-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu16", + "name": "volt", + "symbol": "V" + }, + { + "id": "NISTu261", + "name": "atomic unit of electric potential", + "symbol": "𝐸ₕ/𝑒" + }, + { + "id": "NISTu268", + "name": "statvolt", + "symbol": "statV" + }, + { + "id": "NISTu53", + "name": "abvolt", + "symbol": "abV" + } + ], + "unit_count": 4, + "identifiers": [ + { + "type": "nist", + "id": "NISTq24" + }, + { + "type": "unitsml", + "id": "q:electric_potential_difference" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ELPD" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ElectricPotentialDifference" + } + ] + }, + { + "id": "NISTq25", + "unitsml_id": "q:potential_difference", + "name": "potential difference", + "names": [ + { + "value": "potential difference", + "lang": "en" + } + ], + "short": "potential_difference", + "type": "derived", + "dimension": { + "id": "NISTd18", + "name": "electric potential difference", + "expression": "L2Β·MΒ·T-3Β·I-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu16", + "name": "volt", + "symbol": "V" + }, + { + "id": "NISTu53", + "name": "abvolt", + "symbol": "abV" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq25" + }, + { + "type": "unitsml", + "id": "q:potential_difference" + } + ], + "references": [] + }, + { + "id": "NISTq26", + "unitsml_id": "q:electromotive_force", + "name": "electromotive force", + "names": [ + { + "value": "electromotive force", + "lang": "en" + } + ], + "short": "electromotive_force", + "type": "derived", + "dimension": { + "id": "NISTd18", + "name": "electric potential difference", + "expression": "L2Β·MΒ·T-3Β·I-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu16", + "name": "volt", + "symbol": "V" + }, + { + "id": "NISTu261", + "name": "atomic unit of electric potential", + "symbol": "𝐸ₕ/𝑒" + }, + { + "id": "NISTu268", + "name": "statvolt", + "symbol": "statV" + }, + { + "id": "NISTu53", + "name": "abvolt", + "symbol": "abV" + } + ], + "unit_count": 4, + "identifiers": [ + { + "type": "nist", + "id": "NISTq26" + }, + { + "type": "unitsml", + "id": "q:electromotive_force" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ElectromotiveForce" + } + ] + }, + { + "id": "NISTq27", + "unitsml_id": "q:capacitance", + "name": "capacitance", + "names": [ + { + "value": "capacitance", + "lang": "en" + }, + { + "value": "capacitΓ© Γ©lectrique", + "lang": "fr" + } + ], + "short": "capacitance", + "type": "derived", + "dimension": { + "id": "NISTd19", + "name": "capacitance", + "expression": "L-2Β·M-1Β·T4Β·I2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 4 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu17", + "name": "farad", + "symbol": "F" + }, + { + "id": "NISTu49", + "name": "abfarad", + "symbol": "abF" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq27" + }, + { + "type": "unitsml", + "id": "q:capacitance" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ELCA" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Capacitance" + } + ] + }, + { + "id": "NISTq28", + "unitsml_id": "q:electric_resistance", + "name": "electric resistance", + "names": [ + { + "value": "electric resistance", + "lang": "en" + }, + { + "value": "rΓ©sistance Γ©lectrique", + "lang": "fr" + } + ], + "short": "electric_resistance", + "type": "derived", + "dimension": { + "id": "NISTd20", + "name": "electric resistance", + "expression": "L2Β·MΒ·T-3Β·I-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu18", + "name": "ohm", + "symbol": "Ω" + }, + { + "id": "NISTu265", + "name": "statohm", + "symbol": "statohm" + }, + { + "id": "NISTu52", + "name": "abohm", + "symbol": "abΞ©" + } + ], + "unit_count": 3, + "identifiers": [ + { + "type": "nist", + "id": "NISTq28" + }, + { + "type": "unitsml", + "id": "q:electric_resistance" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ELRE" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Resistance" + } + ] + }, + { + "id": "NISTq29", + "unitsml_id": "q:electric_conductance", + "name": "electric conductance", + "names": [ + { + "value": "electric conductance", + "lang": "en" + }, + { + "value": "conductance Γ©lectrique", + "lang": "fr" + } + ], + "short": "electric_conductance", + "type": "derived", + "dimension": { + "id": "NISTd21", + "name": "electric conductance", + "expression": "L-2Β·M-1Β·T3Β·I2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu19", + "name": "siemens", + "symbol": "S" + }, + { + "id": "NISTu270", + "name": "statmho", + "symbol": "statmho" + }, + { + "id": "NISTu51", + "name": "abmho", + "symbol": "(abΞ©)⁻¹" + } + ], + "unit_count": 3, + "identifiers": [ + { + "type": "nist", + "id": "NISTq29" + }, + { + "type": "unitsml", + "id": "q:electric_conductance" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ELCO" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Conductance" + } + ] + }, + { + "id": "NISTq3", + "unitsml_id": "q:time", + "name": "time", + "names": [ + { + "value": "time", + "lang": "en" + }, + { + "value": "duration", + "lang": "en" + }, + { + "value": "temps", + "lang": "fr" + } + ], + "short": "time", + "type": "base", + "dimension": { + "id": "NISTd3", + "name": "time", + "expression": "T", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu106", + "name": "year (365 days)", + "symbol": "a" + }, + { + "id": "NISTu245", + "name": "natural unit of time", + "symbol": "ℏ/π‘šβ‚‘π‘Β²" + }, + { + "id": "NISTu251", + "name": "atomic unit of time", + "symbol": "ℏ/𝐸ₕ" + }, + { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + { + "id": "NISTu338", + "name": "year, tropical", + "symbol": "a" + }, + { + "id": "NISTu339", + "name": "year, sidereal", + "symbol": "a" + }, + { + "id": "NISTu340", + "name": "day, sidereal", + "symbol": "d" + }, + { + "id": "NISTu341", + "name": "hour, sidereal", + "symbol": "h" + }, + { + "id": "NISTu342", + "name": "minute, sidereal", + "symbol": "min" + }, + { + "id": "NISTu343", + "name": "second, sidereal", + "symbol": "s" + }, + { + "id": "NISTu345", + "name": "shake", + "symbol": "shake" + }, + { + "id": "NISTu36", + "name": "minute", + "symbol": "β€²" + }, + { + "id": "NISTu37", + "name": "hour", + "symbol": "h" + }, + { + "id": "NISTu38", + "name": "day", + "symbol": "d" + } + ], + "unit_count": 14, + "identifiers": [ + { + "type": "nist", + "id": "NISTq3" + }, + { + "type": "unitsml", + "id": "q:time" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/TIME" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Time" + } + ] + }, + { + "id": "NISTq30", + "unitsml_id": "q:magnetic_flux", + "name": "magnetic flux", + "names": [ + { + "value": "magnetic flux", + "lang": "en" + }, + { + "value": "flux d'induction magnΓ©tique", + "lang": "fr" + } + ], + "short": "magnetic_flux", + "type": "derived", + "dimension": { + "id": "NISTd22", + "name": "magnetic flux", + "expression": "L2Β·MΒ·T-2Β·I-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu20", + "name": "weber", + "symbol": "Wb" + }, + { + "id": "NISTu272", + "name": "statweber", + "symbol": "statWb" + }, + { + "id": "NISTu58", + "name": "maxwell", + "symbol": "Mx" + } + ], + "unit_count": 3, + "identifiers": [ + { + "type": "nist", + "id": "NISTq30" + }, + { + "type": "unitsml", + "id": "q:magnetic_flux" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/MGFL" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/MagneticFlux" + } + ] + }, + { + "id": "NISTq31", + "unitsml_id": "q:surface_density", + "name": "surface density", + "names": [ + { + "value": "surface density", + "lang": "en" + }, + { + "value": "areic mass", + "lang": "en" + }, + { + "value": "masse surfacique", + "lang": "fr" + } + ], + "short": "surface_density", + "type": "derived", + "dimension": { + "id": "NISTd51", + "name": "surface density", + "expression": "L-2Β·M", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu27p10'3.u1e-2/1", + "name": "kilogram per square meter", + "symbol": "kg/mΒ²" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq31" + }, + { + "type": "unitsml", + "id": "q:surface_density" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/SUDE" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/AreaMass" + } + ] + }, + { + "id": "NISTq32", + "unitsml_id": "q:inductance", + "name": "inductance", + "names": [ + { + "value": "inductance", + "lang": "en" + }, + { + "value": "inductance", + "lang": "fr" + } + ], + "short": "inductance", + "type": "derived", + "dimension": { + "id": "NISTd23", + "name": "inductance", + "expression": "L2Β·MΒ·T-2Β·I-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu22", + "name": "henry", + "symbol": "H" + }, + { + "id": "NISTu50", + "name": "abhenry", + "symbol": "abH" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq32" + }, + { + "type": "unitsml", + "id": "q:inductance" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ELIN" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Inductance" + } + ] + }, + { + "id": "NISTq33", + "unitsml_id": "q:mass_concentration", + "name": "mass concentration", + "names": [ + { + "value": "mass concentration", + "lang": "en" + }, + { + "value": "concentration massique", + "lang": "fr" + } + ], + "short": "mass_concentration", + "type": "derived", + "dimension": { + "id": "NISTd30", + "name": "mass density", + "expression": "L-3Β·M", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu27p10'3.u1e-3/1", + "name": "kilogram per cubic meter", + "symbol": "kgΒ·m⁻³" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq33" + }, + { + "type": "unitsml", + "id": "q:mass_concentration" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/MACO" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/MassConcentration" + } + ] + }, + { + "id": "NISTq34", + "unitsml_id": "q:celsius_temperature", + "name": "Celsius temperature", + "names": [ + { + "value": "Celsius temperature", + "lang": "en" + }, + { + "value": "tempΓ©rature Celsius", + "lang": "fr" + } + ], + "short": "celsius_temperature", + "type": "derived", + "dimension": { + "id": "NISTd5", + "name": "temperature", + "expression": "Theta", + "components": [ + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu23", + "name": "degree Celsius", + "symbol": "Β°C" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq34" + }, + { + "type": "unitsml", + "id": "q:celsius_temperature" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/TEMC" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/CelsiusTemperature" + } + ] + }, + { + "id": "NISTq35", + "unitsml_id": "q:activity_referred_to_a_radionuclide", + "name": "activity referred to a radionuclide", + "names": [ + { + "value": "activity referred to a radionuclide", + "lang": "en" + }, + { + "value": "activitΓ© d'un radionuclΓ©ide", + "lang": "fr" + } + ], + "short": "activity_referred_to_a_radionuclide", + "type": "derived", + "dimension": { + "id": "NISTd24", + "name": "frequency", + "expression": "T-1", + "components": [ + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu25", + "name": "becquerel", + "symbol": "Bq" + }, + { + "id": "NISTu98", + "name": "curie", + "symbol": "Ci" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq35" + }, + { + "type": "unitsml", + "id": "q:activity_referred_to_a_radionuclide" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ARRN" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Activity" + } + ] + }, + { + "id": "NISTq36", + "unitsml_id": "q:absorbed_dose", + "name": "absorbed dose", + "names": [ + { + "value": "absorbed dose", + "lang": "en" + }, + { + "value": "dose absorbΓ©e", + "lang": "fr" + } + ], + "short": "absorbed_dose", + "type": "derived", + "dimension": { + "id": "NISTd25", + "name": "absorbed dose", + "expression": "L2Β·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu28", + "name": "gray", + "symbol": "Gy" + }, + { + "id": "NISTu99", + "name": "rad (absorbed dose)", + "symbol": "rad" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq36" + }, + { + "type": "unitsml", + "id": "q:absorbed_dose" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ABDO" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/AbsorbedDose" + } + ] + }, + { + "id": "NISTq37", + "unitsml_id": "q:specific_energy_imparted", + "name": "specific energy imparted", + "names": [ + { + "value": "specific energy imparted", + "lang": "en" + } + ], + "short": "specific_energy_imparted", + "type": "derived", + "dimension": { + "id": "NISTd25", + "name": "absorbed dose", + "expression": "L2Β·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu28", + "name": "gray", + "symbol": "Gy" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq37" + }, + { + "type": "unitsml", + "id": "q:specific_energy_imparted" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/SpecificEnergyImparted" + } + ] + }, + { + "id": "NISTq38", + "unitsml_id": "q:kerma", + "name": "kerma", + "names": [ + { + "value": "kerma", + "lang": "en" + }, + { + "value": "kerma", + "lang": "fr" + } + ], + "short": "kerma", + "type": "derived", + "dimension": { + "id": "NISTd25", + "name": "absorbed dose", + "expression": "L2Β·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu28", + "name": "gray", + "symbol": "Gy" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq38" + }, + { + "type": "unitsml", + "id": "q:kerma" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/KRMA" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Kerma" + } + ] + }, + { + "id": "NISTq39", + "unitsml_id": "q:dose_equivalent", + "name": "dose equivalent", + "names": [ + { + "value": "dose equivalent", + "lang": "en" + }, + { + "value": "Γ©quivalent de dose", + "lang": "fr" + } + ], + "short": "dose_equivalent", + "type": "derived", + "dimension": { + "id": "NISTd25", + "name": "absorbed dose", + "expression": "L2Β·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu100", + "name": "rem", + "symbol": "rem" + }, + { + "id": "NISTu29", + "name": "sievert", + "symbol": "Sv" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq39" + }, + { + "type": "unitsml", + "id": "q:dose_equivalent" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/DOEQ" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/DoseEquivalent" + } + ] + }, + { + "id": "NISTq4", + "unitsml_id": "q:electric_current", + "name": "electric current", + "names": [ + { + "value": "electric current", + "lang": "en" + }, + { + "value": "courant Γ©lectrique", + "lang": "fr" + } + ], + "short": "electric_current", + "type": "base", + "dimension": { + "id": "NISTd4", + "name": "electric current", + "expression": "I", + "components": [ + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu257", + "name": "atomic unit of current", + "symbol": "𝑒𝐸ₕ/ℏ" + }, + { + "id": "NISTu4", + "name": "ampere", + "symbol": "A" + }, + { + "id": "NISTu47", + "name": "abampere", + "symbol": "abA" + }, + { + "id": "NISTu55", + "name": "biot", + "symbol": "Bi" + } + ], + "unit_count": 4, + "identifiers": [ + { + "type": "nist", + "id": "NISTq4" + }, + { + "type": "unitsml", + "id": "q:electric_current" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ELCU" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ElectricCurrent" + } + ] + }, + { + "id": "NISTq40", + "unitsml_id": "q:ambient_dose_equivalent", + "name": "ambient dose equivalent", + "names": [ + { + "value": "ambient dose equivalent", + "lang": "en" + } + ], + "short": "ambient_dose_equivalent", + "type": "derived", + "dimension": { + "id": "NISTd25", + "name": "absorbed dose", + "expression": "L2Β·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [], + "unit_count": 0, + "identifiers": [ + { + "type": "nist", + "id": "NISTq40" + }, + { + "type": "unitsml", + "id": "q:ambient_dose_equivalent" + } + ], + "references": [] + }, + { + "id": "NISTq41", + "unitsml_id": "q:directional_dose_equivalent", + "name": "directional dose equivalent", + "names": [ + { + "value": "directional dose equivalent", + "lang": "en" + } + ], + "short": "directional_dose_equivalent", + "type": "derived", + "dimension": { + "id": "NISTd25", + "name": "absorbed dose", + "expression": "L2Β·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [], + "unit_count": 0, + "identifiers": [ + { + "type": "nist", + "id": "NISTq41" + }, + { + "type": "unitsml", + "id": "q:directional_dose_equivalent" + } + ], + "references": [] + }, + { + "id": "NISTq42", + "unitsml_id": "q:personal_dose_equivalent", + "name": "personal dose equivalent", + "names": [ + { + "value": "personal dose equivalent", + "lang": "en" + } + ], + "short": "personal_dose_equivalent", + "type": "derived", + "dimension": { + "id": "NISTd25", + "name": "absorbed dose", + "expression": "L2Β·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [], + "unit_count": 0, + "identifiers": [ + { + "type": "nist", + "id": "NISTq42" + }, + { + "type": "unitsml", + "id": "q:personal_dose_equivalent" + } + ], + "references": [] + }, + { + "id": "NISTq43", + "unitsml_id": "q:organ_dose_equivalent", + "name": "organ dose equivalent", + "names": [ + { + "value": "organ dose equivalent", + "lang": "en" + } + ], + "short": "organ_dose_equivalent", + "type": "derived", + "dimension": { + "id": "NISTd25", + "name": "absorbed dose", + "expression": "L2Β·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [], + "unit_count": 0, + "identifiers": [ + { + "type": "nist", + "id": "NISTq43" + }, + { + "type": "unitsml", + "id": "q:organ_dose_equivalent" + } + ], + "references": [] + }, + { + "id": "NISTq44", + "unitsml_id": "q:catalytic_activity", + "name": "catalytic activity", + "names": [ + { + "value": "catalytic activity", + "lang": "en" + }, + { + "value": "activitΓ© catalytique", + "lang": "fr" + } + ], + "short": "catalytic_activity", + "type": "derived", + "dimension": { + "id": "NISTd26", + "name": "catalytic activity", + "expression": "T-1Β·N", + "components": [ + { + "key": "time", + "symbol": "T", + "power": -1 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu30", + "name": "katal", + "symbol": "kat" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq44" + }, + { + "type": "unitsml", + "id": "q:catalytic_activity" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/CATA" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/CatalyticActivity" + } + ] + }, + { + "id": "NISTq45", + "unitsml_id": "q:frequency", + "name": "frequency", + "names": [ + { + "value": "frequency", + "lang": "en" + }, + { + "value": "frΓ©quence", + "lang": "fr" + } + ], + "short": "frequency", + "type": "derived", + "dimension": { + "id": "NISTd24", + "name": "frequency", + "expression": "T-1", + "components": [ + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu31", + "name": "hertz", + "symbol": "Hz" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq45" + }, + { + "type": "unitsml", + "id": "q:frequency" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/FREQ" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Frequency" + } + ] + }, + { + "id": "NISTq46", + "unitsml_id": "q:luminous_flux", + "name": "luminous flux", + "names": [ + { + "value": "luminous flux", + "lang": "en" + }, + { + "value": "flux lumineux", + "lang": "fr" + } + ], + "short": "luminous_flux", + "type": "derived", + "dimension": { + "id": "NISTd7", + "name": "luminous intensity", + "expression": "J", + "components": [ + { + "key": "luminous_intensity", + "symbol": "J", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu32", + "name": "lumen", + "symbol": "lm" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq46" + }, + { + "type": "unitsml", + "id": "q:luminous_flux" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/LUFL" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/LuminousFlux" + } + ] + }, + { + "id": "NISTq47", + "unitsml_id": "q:illuminance", + "name": "illuminance", + "names": [ + { + "value": "illuminance", + "lang": "en" + }, + { + "value": "Γ©clairement lumineux", + "lang": "fr" + } + ], + "short": "illuminance", + "type": "derived", + "dimension": { + "id": "NISTd27", + "name": "illuminance", + "expression": "L-2Β·J", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "luminous_intensity", + "symbol": "J", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu276", + "name": "footcandle", + "symbol": "ft.c" + }, + { + "id": "NISTu33", + "name": "lux", + "symbol": "lx" + }, + { + "id": "NISTu85", + "name": "phot", + "symbol": "ph" + } + ], + "unit_count": 3, + "identifiers": [ + { + "type": "nist", + "id": "NISTq47" + }, + { + "type": "unitsml", + "id": "q:illuminance" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ILLU" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Illuminance" + } + ] + }, + { + "id": "NISTq48", + "unitsml_id": "q:distance", + "name": "distance", + "names": [ + { + "value": "distance", + "lang": "en" + } + ], + "short": "distance", + "type": "base", + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + { + "id": "NISTu122", + "name": "micron", + "symbol": "ΞΌ" + }, + { + "id": "NISTu123", + "name": "mil (length)", + "symbol": "thou" + }, + { + "id": "NISTu131", + "name": "nautical mile", + "symbol": "M" + }, + { + "id": "NISTu26", + "name": "fermi", + "symbol": "fermi" + }, + { + "id": "NISTu278", + "name": "pica (computer)", + "symbol": "pc" + }, + { + "id": "NISTu280", + "name": "point (computer)", + "symbol": "pt" + }, + { + "id": "NISTu39", + "name": "Γ₯ngstrΓΆm", + "symbol": "β„«" + }, + { + "id": "NISTu78", + "name": "foot", + "symbol": "β€²" + }, + { + "id": "NISTu8", + "name": "inch", + "symbol": "β€³" + }, + { + "id": "NISTu83", + "name": "mile", + "symbol": "mi" + }, + { + "id": "NISTu84", + "name": "yard", + "symbol": "yd" + } + ], + "unit_count": 12, + "identifiers": [ + { + "type": "nist", + "id": "NISTq48" + }, + { + "type": "unitsml", + "id": "q:distance" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Distance" + } + ] + }, + { + "id": "NISTq49", + "unitsml_id": "q:acceleration", + "name": "acceleration", + "names": [ + { + "value": "acceleration", + "lang": "en" + }, + { + "value": "accΓ©lΓ©ration", + "lang": "fr" + } + ], + "short": "acceleration", + "type": "derived", + "dimension": { + "id": "NISTd28", + "name": "acceleration", + "expression": "LΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1.u3e-2/1", + "name": "meter per second squared", + "symbol": "mΒ·s⁻²" + }, + { + "id": "NISTu143", + "name": "gal", + "symbol": "Gal" + }, + { + "id": "NISTu167", + "name": "foot per second squared", + "symbol": "ft/sΒ²" + } + ], + "unit_count": 3, + "identifiers": [ + { + "type": "nist", + "id": "NISTq49" + }, + { + "type": "unitsml", + "id": "q:acceleration" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ACCE" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Acceleration" + } + ] + }, + { + "id": "NISTq5", + "unitsml_id": "q:temperature", + "name": "thermodynamic temperature", + "names": [ + { + "value": "thermodynamic temperature", + "lang": "en" + }, + { + "value": "tempΓ©rature thermodynamique", + "lang": "fr" + } + ], + "short": "temperature", + "type": "base", + "dimension": { + "id": "NISTd5", + "name": "temperature", + "expression": "Theta", + "components": [ + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu288", + "name": "degree Rankine", + "symbol": "Β°R" + }, + { + "id": "NISTu5", + "name": "kelvin", + "symbol": "Β°K" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq5" + }, + { + "type": "unitsml", + "id": "q:temperature" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/TEMT" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ThermodynamicTemperature" + } + ] + }, + { + "id": "NISTq50", + "unitsml_id": "q:wavenumber", + "name": "wavenumber", + "names": [ + { + "value": "wavenumber", + "lang": "en" + }, + { + "value": "repetency", + "lang": "en" + }, + { + "value": "nombre d'ondes", + "lang": "fr" + } + ], + "short": "wavenumber", + "type": "derived", + "dimension": { + "id": "NISTd29", + "name": "wavenumber", + "expression": "L-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu120", + "name": "kayser", + "symbol": "K" + }, + { + "id": "NISTu1e-1/1", + "name": "meter to the power minus one", + "symbol": "m⁻¹" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq50" + }, + { + "type": "unitsml", + "id": "q:wavenumber" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/WANU" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Repetency" + } + ] + }, + { + "id": "NISTq51", + "unitsml_id": "q:density", + "name": "density", + "names": [ + { + "value": "density", + "lang": "en" + }, + { + "value": "mass density", + "lang": "en" + }, + { + "value": "masse volumique", + "lang": "fr" + } + ], + "short": "density", + "type": "derived", + "dimension": { + "id": "NISTd30", + "name": "mass density", + "expression": "L-3Β·M", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu188", + "name": "kilogram per liter", + "symbol": "kg/l" + }, + { + "id": "NISTu189", + "name": "metric ton per cubic meter", + "symbol": "t/mΒ³" + }, + { + "id": "NISTu204", + "name": "pound per cubic foot", + "symbol": "lb/ftΒ³" + }, + { + "id": "NISTu27p10'3.u1e-3/1", + "name": "kilogram per cubic meter", + "symbol": "kgΒ·m⁻³" + } + ], + "unit_count": 4, + "identifiers": [ + { + "type": "nist", + "id": "NISTq51" + }, + { + "type": "unitsml", + "id": "q:density" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/DENS" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Density" + } + ] + }, + { + "id": "NISTq52", + "unitsml_id": "q:specific_volume", + "name": "specific volume", + "names": [ + { + "value": "specific volume", + "lang": "en" + }, + { + "value": "massic volume", + "lang": "en" + }, + { + "value": "volume massique", + "lang": "fr" + } + ], + "short": "specific_volume", + "type": "derived", + "dimension": { + "id": "NISTd31", + "name": "specific volume", + "expression": "L3Β·M-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1e3/1.u27p10'3", + "name": "cubic meter per kilogram", + "symbol": "mΒ³Β·kg" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq52" + }, + { + "type": "unitsml", + "id": "q:specific_volume" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/SPVO" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/SpecificVolume" + } + ] + }, + { + "id": "NISTq53", + "unitsml_id": "q:current_density", + "name": "current density", + "names": [ + { + "value": "current density", + "lang": "en" + }, + { + "value": "densitΓ© de courant", + "lang": "fr" + } + ], + "short": "current_density", + "type": "derived", + "dimension": { + "id": "NISTd32", + "name": "current density", + "expression": "L-2Β·I", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu4.u1e-2/1", + "name": "ampere per square meter", + "symbol": "AΒ·m⁻²" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq53" + }, + { + "type": "unitsml", + "id": "q:current_density" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/CUDE" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Conductivity" + } + ] + }, + { + "id": "NISTq54", + "unitsml_id": "q:magnetic_field_strength", + "name": "magnetic field strength", + "names": [ + { + "value": "magnetic field strength", + "lang": "en" + }, + { + "value": "champ magnΓ©tique", + "lang": "fr" + } + ], + "short": "magnetic_field_strength", + "type": "derived", + "dimension": { + "id": "NISTd33", + "name": "magnetic field strength", + "expression": "L-1Β·I", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu4.u1e-1/1", + "name": "ampere per meter", + "symbol": "AΒ·m⁻¹" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq54" + }, + { + "type": "unitsml", + "id": "q:magnetic_field_strength" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/MAFD" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/MagneticFieldStrength_H" + } + ] + }, + { + "id": "NISTq55", + "unitsml_id": "q:amount_concentration", + "name": "amount of substance concentration", + "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", + "type": "derived", + "dimension": { + "id": "NISTd34", + "name": "concentration", + "expression": "L-3Β·N", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu366", + "name": "mole per liter", + "symbol": "mol/L" + }, + { + "id": "NISTu6.u1e-3/1", + "name": "mole per cubic meter", + "symbol": "molΒ·m⁻³" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq55" + }, + { + "type": "unitsml", + "id": "q:amount_concentration" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/AMSC" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/MolecularConcentration" + } + ] + }, + { + "id": "NISTq56", + "unitsml_id": "q:luminance", + "name": "luminance", + "names": [ + { + "value": "luminance", + "lang": "en" + }, + { + "value": "luminance lumineuse", + "lang": "fr" + } + ], + "short": "luminance", + "type": "derived", + "dimension": { + "id": "NISTd27", + "name": "illuminance", + "expression": "L-2Β·J", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "luminous_intensity", + "symbol": "J", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu124", + "name": "stilb", + "symbol": "sb" + }, + { + "id": "NISTu222", + "name": "lambert", + "symbol": "L" + }, + { + "id": "NISTu277", + "name": "footlambert", + "symbol": "ft.L" + }, + { + "id": "NISTu7.u1e-2/1", + "name": "candela per square meter", + "symbol": "cdΒ·m⁻²" + } + ], + "unit_count": 4, + "identifiers": [ + { + "type": "nist", + "id": "NISTq56" + }, + { + "type": "unitsml", + "id": "q:luminance" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/LUMA" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Luminance" + } + ] + }, + { + "id": "NISTq57", + "unitsml_id": "q:angular_velocity", + "name": "angular velocity", + "names": [ + { + "value": "angular velocity", + "lang": "en" + }, + { + "value": "vitesse angulaire", + "lang": "fr" + } + ], + "short": "angular_velocity", + "type": "derived", + "dimension": { + "id": "NISTd11", + "name": "velocity", + "expression": "LΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu9.u3e-1/1", + "name": "radian per second", + "symbol": "rad/s" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq57" + }, + { + "type": "unitsml", + "id": "q:angular_velocity" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/VELA" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/AngularVelocity" + } + ] + }, + { + "id": "NISTq58", + "unitsml_id": "q:angular_acceleration", + "name": "angular acceleration", + "names": [ + { + "value": "angular acceleration", + "lang": "en" + }, + { + "value": "accelΓ©ration angulaire", + "lang": "fr" + } + ], + "short": "angular_acceleration", + "type": "derived", + "dimension": { + "id": "NISTd35", + "name": "angular acceleration", + "expression": "T-2", + "components": [ + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu9.u3e-2/1", + "name": "radian per second squared", + "symbol": "rad/sΒ²" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq58" + }, + { + "type": "unitsml", + "id": "q:angular_acceleration" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ACCA" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/AngularAcceleration" + } + ] + }, + { + "id": "NISTq59", + "unitsml_id": "q:dynamic_viscosity", + "name": "dynamic viscosity", + "names": [ + { + "value": "dynamic viscosity", + "lang": "en" + }, + { + "value": "viscositΓ© dynamique", + "lang": "fr" + } + ], + "short": "dynamic_viscosity", + "type": "derived", + "dimension": { + "id": "NISTd36", + "name": "dynamic viscosity", + "expression": "L-1Β·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu12.u3", + "name": "pascal second", + "symbol": "PaΒ·s" + }, + { + "id": "NISTu128", + "name": "poise", + "symbol": "P" + }, + { + "id": "NISTu97", + "name": "centipoise", + "symbol": "cP" + } + ], + "unit_count": 3, + "identifiers": [ + { + "type": "nist", + "id": "NISTq59" + }, + { + "type": "unitsml", + "id": "q:dynamic_viscosity" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/DYVI" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/DynamicViscosity" + } + ] + }, + { + "id": "NISTq6", + "unitsml_id": "q:substance_amount", + "name": "amount of substance", + "names": [ + { + "value": "amount of substance", + "lang": "en" + }, + { + "value": "quantitΓ© de matiΓ¨re", + "lang": "fr" + } + ], + "short": "substance_amount", + "type": "base", + "dimension": { + "id": "NISTd6", + "name": "substance amount", + "expression": "N", + "components": [ + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu348", + "name": "pound-mole", + "symbol": "lbmol" + }, + { + "id": "NISTu6", + "name": "mole", + "symbol": "mol" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq6" + }, + { + "type": "unitsml", + "id": "q:substance_amount" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/AMSU" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/AmountOfSubstance" + } + ] + }, + { + "id": "NISTq60", + "unitsml_id": "q:moment_of_force", + "name": "moment of force", + "names": [ + { + "value": "moment of force", + "lang": "en" + }, + { + "value": "moment d’une force", + "lang": "fr" + } + ], + "short": "moment_of_force", + "type": "derived", + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu11.u1", + "name": "newton meter", + "symbol": "NΒ·m" + }, + { + "id": "NISTu126", + "name": "kilogram-force meter", + "symbol": "kgfΒ·m" + }, + { + "id": "NISTu206", + "name": "foot pound-force", + "symbol": "ftΒ·lbf" + } + ], + "unit_count": 3, + "identifiers": [ + { + "type": "nist", + "id": "NISTq60" + }, + { + "type": "unitsml", + "id": "q:moment_of_force" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/TORQ" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/MomentOfForce" + } + ] + }, + { + "id": "NISTq61", + "unitsml_id": "q:surface_tension", + "name": "surface tension", + "names": [ + { + "value": "surface tension", + "lang": "en" + }, + { + "value": "tension superficielle", + "lang": "fr" + } + ], + "short": "surface_tension", + "type": "derived", + "dimension": { + "id": "NISTd37", + "name": "surface tension", + "expression": "MΒ·T-2", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu11.u1e-1/1", + "name": "newton per meter", + "symbol": "N/m" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq61" + }, + { + "type": "unitsml", + "id": "q:surface_tension" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/SUTE" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/SurfaceTension" + } + ] + }, + { + "id": "NISTq62", + "unitsml_id": "q:heat_flux_density", + "name": "heat flux density", + "names": [ + { + "value": "heat flux density", + "lang": "en" + }, + { + "value": "flux thermique surfacique", + "lang": "fr" + } + ], + "short": "heat_flux_density", + "type": "derived", + "dimension": { + "id": "NISTd38", + "name": "heat flux density", + "expression": "MΒ·T-3", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu14.u1e-2/1", + "name": "watt per square meter", + "symbol": "W/mΒ²" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq62" + }, + { + "type": "unitsml", + "id": "q:heat_flux_density" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/HEFD" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/HeatFluxDensity" + } + ] + }, + { + "id": "NISTq63", + "unitsml_id": "q:heat_capacity", + "name": "heat capacity", + "names": [ + { + "value": "heat capacity", + "lang": "en" + }, + { + "value": "capacitΓ© thermique", + "lang": "fr" + } + ], + "short": "heat_capacity", + "type": "derived", + "dimension": { + "id": "NISTd39", + "name": "heat capacity", + "expression": "L2Β·MΒ·T-2Β·Theta-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu13.u5e-1/1", + "name": "joule per kelvin", + "symbol": "J/K" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq63" + }, + { + "type": "unitsml", + "id": "q:heat_capacity" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/HECA" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/HeatCapacity" + } + ] + }, + { + "id": "NISTq64", + "unitsml_id": "q:specific_heat_capacity", + "name": "specific heat capacity", + "names": [ + { + "value": "specific heat capacity", + "lang": "en" + }, + { + "value": "capacitΓ© thermique massique", + "lang": "fr" + } + ], + "short": "specific_heat_capacity", + "type": "derived", + "dimension": { + "id": "NISTd40", + "name": "specific heat capacity", + "expression": "L2Β·T-2Β·Theta-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu13.u27p10'3e-1/1.u5e-1/1", + "name": "joule per kilogram kelvin", + "symbol": "J/(kgΒ·K)" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq64" + }, + { + "type": "unitsml", + "id": "q:specific_heat_capacity" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/SHEC" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/SpecificHeatCapacity" + } + ] + }, + { + "id": "NISTq65", + "unitsml_id": "q:specific_energy", + "name": "specific energy", + "names": [ + { + "value": "specific energy", + "lang": "en" + }, + { + "value": "Γ©nergie massique", + "lang": "fr" + } + ], + "short": "specific_energy", + "type": "derived", + "dimension": { + "id": "NISTd25", + "name": "absorbed dose", + "expression": "L2Β·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu13.u27p10'3e-1/1", + "name": "joule per kilogram", + "symbol": "J/kg" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq65" + }, + { + "type": "unitsml", + "id": "q:specific_energy" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/SENG" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/SpecificEnergy" + } + ] + }, + { + "id": "NISTq66", + "unitsml_id": "q:thermal_conductivity", + "name": "thermal conductivity", + "names": [ + { + "value": "thermal conductivity", + "lang": "en" + }, + { + "value": "conductivitΓ© thermique", + "lang": "fr" + } + ], + "short": "thermal_conductivity", + "type": "derived", + "dimension": { + "id": "NISTd41", + "name": "thermal conductivity", + "expression": "LΒ·MΒ·T-3Β·Theta-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu14.u1e-1/1.u5e-1/1", + "name": "watt per meter kelvin", + "symbol": "W/(mΒ·K)" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq66" + }, + { + "type": "unitsml", + "id": "q:thermal_conductivity" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/TCON" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ThermalConductivity" + } + ] + }, + { + "id": "NISTq67", + "unitsml_id": "q:energy_density", + "name": "energy density", + "names": [ + { + "value": "energy density", + "lang": "en" + }, + { + "value": "énergie volumique", + "lang": "fr" + } + ], + "short": "energy_density", + "type": "derived", + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu13.u1e-3/1", + "name": "joule per cubic meter", + "symbol": "J/mΒ³" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq67" + }, + { + "type": "unitsml", + "id": "q:energy_density" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ENGD" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/EnergyDensity" + } + ] + }, + { + "id": "NISTq68", + "unitsml_id": "q:electric_field_strength", + "name": "electric field strength", + "names": [ + { + "value": "electric field strength", + "lang": "en" + }, + { + "value": "champ électrique", + "lang": "fr" + } + ], + "short": "electric_field_strength", + "type": "derived", + "dimension": { + "id": "NISTd42", + "name": "electric field strength", + "expression": "LΒ·MΒ·T-3Β·I-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu16.u1e-1/1", + "name": "volt per meter", + "symbol": "V/m" + }, + { + "id": "NISTu259", + "name": "atomic unit of electric field", + "symbol": "𝐸ₕ/π‘’π‘Žβ‚€" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq68" + }, + { + "type": "unitsml", + "id": "q:electric_field_strength" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ELFS" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ElectricFieldStrength" + } + ] + }, + { + "id": "NISTq69", + "unitsml_id": "q:electric_charge_density", + "name": "electric charge density", + "names": [ + { + "value": "electric charge density", + "lang": "en" + }, + { + "value": "charge Γ©lectrique volumique", + "lang": "fr" + } + ], + "short": "electric_charge_density", + "type": "derived", + "dimension": { + "id": "NISTd43", + "name": "electric charge density", + "expression": "L-3Β·TΒ·I", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu15.u1e-3/1", + "name": "coulomb per cubic meter", + "symbol": "C/mΒ³" + }, + { + "id": "NISTu256", + "name": "atomic unit of charge density", + "symbol": "π‘’π‘Žβ‚€Β³" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq69" + }, + { + "type": "unitsml", + "id": "q:electric_charge_density" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ELCD" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ElectricChargeDensity" + } + ] + }, + { + "id": "NISTq7", + "unitsml_id": "q:luminous_intensity", + "name": "luminous intensity", + "names": [ + { + "value": "luminous intensity", + "lang": "en" + }, + { + "value": "intensitΓ© lumineuse", + "lang": "fr" + } + ], + "short": "luminous_intensity", + "type": "base", + "dimension": { + "id": "NISTd7", + "name": "luminous intensity", + "expression": "J", + "components": [ + { + "key": "luminous_intensity", + "symbol": "J", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu7", + "name": "candela", + "symbol": "cd" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq7" + }, + { + "type": "unitsml", + "id": "q:luminous_intensity" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/LUIN" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/LuminousIntensity" + } + ] + }, + { + "id": "NISTq70", + "unitsml_id": "q:electric_flux_density", + "name": "electric flux density", + "names": [ + { + "value": "electric flux density", + "lang": "en" + }, + { + "value": "induction Γ©lectrique", + "lang": "fr" + } + ], + "short": "electric_flux_density", + "type": "derived", + "dimension": { + "id": "NISTd44", + "name": "electric flux density", + "expression": "L-2Β·TΒ·I", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [], + "unit_count": 0, + "identifiers": [ + { + "type": "nist", + "id": "NISTq70" + }, + { + "type": "unitsml", + "id": "q:electric_flux_density" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ELFD" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ElectricFluxDensity" + } + ] + }, + { + "id": "NISTq71", + "unitsml_id": "q:permittivity", + "name": "permittivity", + "names": [ + { + "value": "permittivity", + "lang": "en" + }, + { + "value": "permittivitΓ©", + "lang": "fr" + } + ], + "short": "permittivity", + "type": "derived", + "dimension": { + "id": "NISTd45", + "name": "permittivity", + "expression": "L-3Β·M-1Β·T4Β·I2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 4 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu17.u1e-1/1", + "name": "farad per meter", + "symbol": "F/m" + }, + { + "id": "NISTu293", + "name": "atomic unit of permittivity", + "symbol": "𝑒²/π‘Žβ‚€πΈβ‚•" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq71" + }, + { + "type": "unitsml", + "id": "q:permittivity" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/PRMI" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Permittivity" + } + ] + }, + { + "id": "NISTq72", + "unitsml_id": "q:permeability", + "name": "permeability", + "names": [ + { + "value": "permeability", + "lang": "en" + }, + { + "value": "permΓ©abilittΓ©", + "lang": "fr" + } + ], + "short": "permeability", + "type": "derived", + "dimension": { + "id": "NISTd46", + "name": "permeability", + "expression": "LΒ·MΒ·T-2Β·I-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu157", + "name": "darcy", + "symbol": "D" + }, + { + "id": "NISTu22.u1e-1/1", + "name": "henry per meter", + "symbol": "H/m" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq72" + }, + { + "type": "unitsml", + "id": "q:permeability" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/PRME" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ElectromagneticPermeability" + } + ] + }, + { + "id": "NISTq73", + "unitsml_id": "q:molar_energy", + "name": "molar energy", + "names": [ + { + "value": "molar energy", + "lang": "en" + }, + { + "value": "Γ©nergie molaire", + "lang": "fr" + } + ], + "short": "molar_energy", + "type": "derived", + "dimension": { + "id": "NISTd47", + "name": "molar energy", + "expression": "L2Β·MΒ·T-2Β·N-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu13.u6e-1/1", + "name": "joule per mole", + "symbol": "J/mol" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq73" + }, + { + "type": "unitsml", + "id": "q:molar_energy" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/MOEG" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/MolarEnergy" + } + ] + }, + { + "id": "NISTq74", + "unitsml_id": "q:molar_entropy", + "name": "molar entropy", + "names": [ + { + "value": "molar entropy", + "lang": "en" + }, + { + "value": "entropie molaire", + "lang": "fr" + } + ], + "short": "molar_entropy", + "type": "derived", + "dimension": { + "id": "NISTd48", + "name": "molar entropy", + "expression": "L2Β·MΒ·T-2Β·Theta-1Β·N-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu13.u6e-1/1.u5e-1/1", + "name": "joule per mole kelvin", + "symbol": "J/(molΒ·K)" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq74" + }, + { + "type": "unitsml", + "id": "q:molar_entropy" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/MOEN" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/MolarEntropy" + } + ] + }, + { + "id": "NISTq75", + "unitsml_id": "q:exposure_x_and_gamma_rays", + "name": "exposure (x and gamma rays)", + "names": [ + { + "value": "exposure (x and gamma rays)", + "lang": "en" + } + ], + "short": "exposure_x_and_gamma_rays", + "type": "derived", + "dimension": { + "id": "NISTd49", + "name": "exposure", + "expression": "M-1Β·TΒ·I", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu118", + "name": "roentgen", + "symbol": "R" + }, + { + "id": "NISTu15.u27p10'3e-1/1", + "name": "coulomb per kilogram", + "symbol": "C/kg" + } + ], + "unit_count": 2, + "identifiers": [ + { + "type": "nist", + "id": "NISTq75" + }, + { + "type": "unitsml", + "id": "q:exposure_x_and_gamma_rays" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ExposureOfIonizingRadiation" + } + ] + }, + { + "id": "NISTq76", + "unitsml_id": "q:absorbed_dose_rate", + "name": "absorbed dose rate", + "names": [ + { + "value": "absorbed dose rate", + "lang": "en" + }, + { + "value": "dΓ©bit de dose absorbΓ©e", + "lang": "fr" + } + ], + "short": "absorbed_dose_rate", + "type": "derived", + "dimension": { + "id": "NISTd50", + "name": "absorbed dose rate", + "expression": "L2Β·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu28.u3e-1/1", + "name": "gray per second", + "symbol": "Gy/s" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq76" + }, + { + "type": "unitsml", + "id": "q:absorbed_dose_rate" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ABDR" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/AbsorbedDoseRate" + } + ] + }, + { + "id": "NISTq77", + "unitsml_id": "q:potential_energy", + "name": "potential energy", + "names": [ + { + "value": "potential energy", + "lang": "en" + } + ], + "short": "potential_energy", + "type": "derived", + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu117", + "name": "therm (EC)", + "symbol": "thm (EC)" + }, + { + "id": "NISTu13", + "name": "joule", + "symbol": "J" + }, + { + "id": "NISTu14.u3", + "name": "watt second", + "symbol": "WΒ·s" + }, + { + "id": "NISTu206", + "name": "foot pound-force", + "symbol": "ftΒ·lbf" + }, + { + "id": "NISTu227", + "name": "thermochemical calorie", + "symbol": "cal" + }, + { + "id": "NISTu331", + "name": "therm (US)", + "symbol": "thm (US)" + }, + { + "id": "NISTu60", + "name": "I.T. calorie", + "symbol": "cal_IT" + }, + { + "id": "NISTu62", + "name": "erg", + "symbol": "erg" + }, + { + "id": "NISTu63", + "name": "kilocalorie_IT", + "symbol": "kcal_IT" + }, + { + "id": "NISTu64", + "name": "kilocalorie_th", + "symbol": "kcal_th" + }, + { + "id": "NISTu65", + "name": "kilowatt hour", + "symbol": "kWΒ·h" + }, + { + "id": "NISTu69", + "name": "watt hour", + "symbol": "WΒ·h" + } + ], + "unit_count": 12, + "identifiers": [ + { + "type": "nist", + "id": "NISTq77" + }, + { + "type": "unitsml", + "id": "q:potential_energy" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/PotentialEnergy" + } + ] + }, + { + "id": "NISTq78", + "unitsml_id": "q:irradiance", + "name": "irradiance", + "names": [ + { + "value": "irradiance", + "lang": "en" + } + ], + "short": "irradiance", + "type": "derived", + "dimension": { + "id": "NISTd38", + "name": "heat flux density", + "expression": "MΒ·T-3", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu14.u1e-2/1", + "name": "watt per square meter", + "symbol": "W/mΒ²" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq78" + }, + { + "type": "unitsml", + "id": "q:irradiance" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Irradiance" + } + ] + }, + { + "id": "NISTq79", + "unitsml_id": "q:entropy", + "name": "entropy", + "names": [ + { + "value": "entropy", + "lang": "en" + } + ], + "short": "entropy", + "type": "derived", + "dimension": { + "id": "NISTd39", + "name": "heat capacity", + "expression": "L2Β·MΒ·T-2Β·Theta-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu13.u5e-1/1", + "name": "joule per kelvin", + "symbol": "J/K" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq79" + }, + { + "type": "unitsml", + "id": "q:entropy" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Entropy" + } + ] + }, + { + "id": "NISTq8", + "unitsml_id": "q:area", + "name": "area", + "names": [ + { + "value": "area", + "lang": "en" + }, + { + "value": "superficie", + "lang": "fr" + } + ], + "short": "area", + "type": "derived", + "dimension": { + "id": "NISTd8", + "name": "area", + "expression": "L2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu164", + "name": "square yard", + "symbol": "ydΒ²" + }, + { + "id": "NISTu165", + "name": "square mile", + "symbol": "miΒ²" + }, + { + "id": "NISTu1e2/1", + "name": "square meter", + "symbol": "mΒ²" + }, + { + "id": "NISTu283", + "name": "circular mil", + "symbol": "cmil" + }, + { + "id": "NISTu317", + "name": "acre (based on US survey foot)", + "symbol": "ac" + }, + { + "id": "NISTu42", + "name": "are", + "symbol": "a" + }, + { + "id": "NISTu43", + "name": "barn", + "symbol": "b" + }, + { + "id": "NISTu44", + "name": "hectare", + "symbol": "ha" + }, + { + "id": "NISTu45", + "name": "square foot", + "symbol": "ftΒ²" + }, + { + "id": "NISTu46", + "name": "square inch", + "symbol": "inΒ²" + } + ], + "unit_count": 10, + "identifiers": [ + { + "type": "nist", + "id": "NISTq8" + }, + { + "type": "unitsml", + "id": "q:area" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/AREA" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Area" + } + ] + }, + { + "id": "NISTq80", + "unitsml_id": "q:specific_entropy", + "name": "specific entropy", + "names": [ + { + "value": "specific entropy", + "lang": "en" + } + ], + "short": "specific_entropy", + "type": "derived", + "dimension": { + "id": "NISTd40", + "name": "specific heat capacity", + "expression": "L2Β·T-2Β·Theta-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu13.u27p10'3e-1/1.u5e-1/1", + "name": "joule per kilogram kelvin", + "symbol": "J/(kgΒ·K)" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq80" + }, + { + "type": "unitsml", + "id": "q:specific_entropy" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/SpecificEntropy" + } + ] + }, + { + "id": "NISTq81", + "unitsml_id": "q:surface_charge_density", + "name": "surface charge density", + "names": [ + { + "value": "surface charge density", + "lang": "en" + }, + { + "value": "charge Γ©lectrique surfacique", + "lang": "fr" + } + ], + "short": "surface_charge_density", + "type": "derived", + "dimension": { + "id": "NISTd53", + "name": "surface charge density", + "expression": "M-2Β·TΒ·I", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": -2 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu15.u1e-2/1", + "name": "coulomb per square meter", + "symbol": "C/mΒ²" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq81" + }, + { + "type": "unitsml", + "id": "q:surface_charge_density" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/SUCD" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/AreaChargeDensity" + } + ] + }, + { + "id": "NISTq82", + "unitsml_id": "q:electric_displacement", + "name": "electric displacement", + "names": [ + { + "value": "electric displacement", + "lang": "en" + } + ], + "short": "electric_displacement", + "type": "derived", + "dimension": { + "id": "NISTd44", + "name": "electric flux density", + "expression": "L-2Β·TΒ·I", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu15.u1e-2/1", + "name": "coulomb per square meter", + "symbol": "C/mΒ²" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq82" + }, + { + "type": "unitsml", + "id": "q:electric_displacement" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/ElectricDisplacement" + } + ] + }, + { + "id": "NISTq83", + "unitsml_id": "q:molar_heat_capacity", + "name": "molar heat capacity", + "names": [ + { + "value": "molar heat capacity", + "lang": "en" + } + ], + "short": "molar_heat_capacity", + "type": "derived", + "dimension": { + "id": "NISTd48", + "name": "molar entropy", + "expression": "L2Β·MΒ·T-2Β·Theta-1Β·N-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu13.u6e-1/1.u5e-1/1", + "name": "joule per mole kelvin", + "symbol": "J/(molΒ·K)" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq83" + }, + { + "type": "unitsml", + "id": "q:molar_heat_capacity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/MolarHeatCapacity" + } + ] + }, + { + "id": "NISTq84", + "unitsml_id": "q:catalytic_activity_concentration", + "name": "catalytic activity concentration", + "names": [ + { + "value": "catalytic activity concentration", + "lang": "en" + }, + { + "value": "concentration de l’activitΓ© catalytique", + "lang": "fr" + } + ], + "short": "catalytic_activity_concentration", + "type": "derived", + "dimension": { + "id": "NISTd55", + "name": "catalytic activity concentration", + "expression": "M-3Β·T-1Β·N", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": -3 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu30.u1e-3/1", + "name": "katal per cubic meter", + "symbol": "kat/mΒ³" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq84" + }, + { + "type": "unitsml", + "id": "q:catalytic_activity_concentration" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/CTAC" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/CatalyticActivityConcentration" + } + ] + }, + { + "id": "NISTq85", + "unitsml_id": "q:kinematic_viscosity", + "name": "kinematic viscosity", + "names": [ + { + "value": "kinematic viscosity", + "lang": "en" + }, + { + "value": "viscositΓ© cinΓ©matique", + "lang": "fr" + } + ], + "short": "kinematic_viscosity", + "type": "derived", + "dimension": { + "id": "NISTd56", + "name": "kinematic viscosity", + "expression": "L2Β·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu121", + "name": "centistokes", + "symbol": "cSt" + }, + { + "id": "NISTu142", + "name": "stokes", + "symbol": "St" + }, + { + "id": "NISTu1e2/1.u3e-1/1", + "name": "meter squared per second", + "symbol": "mΒ²/s" + }, + { + "id": "NISTu210", + "name": "foot squared per second", + "symbol": "ftΒ²/s" + } + ], + "unit_count": 4, + "identifiers": [ + { + "type": "nist", + "id": "NISTq85" + }, + { + "type": "unitsml", + "id": "q:kinematic_viscosity" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/KIVI" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/KinematicViscosity" + } + ] + }, + { + "id": "NISTq87", + "unitsml_id": "q:magnetic_field", + "name": "magnetic field", + "names": [ + { + "value": "magnetic field", + "lang": "en" + } + ], + "short": "magnetic_field", + "type": "derived", + "dimension": { + "id": "NISTd33", + "name": "magnetic field strength", + "expression": "L-1Β·I", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu144", + "name": "oersted", + "symbol": "Oe" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq87" + }, + { + "type": "unitsml", + "id": "q:magnetic_field" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/MagneticField" + } + ] + }, + { + "id": "NISTq88", + "unitsml_id": "q:radiant_intensity", + "name": "radiant intensity", + "names": [ + { + "value": "radiant intensity", + "lang": "en" + }, + { + "value": "intensitΓ© Γ©nergΓ©tique", + "lang": "fr" + } + ], + "short": "radiant_intensity", + "type": "derived", + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu14.u10e-1/1", + "name": "watt per steradian", + "symbol": "W/sr" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq88" + }, + { + "type": "unitsml", + "id": "q:radiant_intensity" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/RAIN" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/RadiantIntensity" + } + ] + }, + { + "id": "NISTq89", + "unitsml_id": "q:radiance", + "name": "radiance", + "names": [ + { + "value": "radiance", + "lang": "en" + }, + { + "value": "luminance Γ©nergΓ©tique", + "lang": "fr" + } + ], + "short": "radiance", + "type": "derived", + "dimension": { + "id": "NISTd38", + "name": "heat flux density", + "expression": "MΒ·T-3", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu14.u1e-2/1.u10e-1/1", + "name": "watt per square meter steradian", + "symbol": "W/(mΒ²Β·sr)" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq89" + }, + { + "type": "unitsml", + "id": "q:radiance" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/RADI" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Radiance" + } + ] + }, + { + "id": "NISTq9", + "unitsml_id": "q:plane_angle", + "name": "plane angle", + "names": [ + { + "value": "plane angle", + "lang": "en" + }, + { + "value": "angle", + "lang": "en" + }, + { + "value": "angle plan", + "lang": "fr" + } + ], + "short": "plane_angle", + "type": "derived", + "dimension": { + "id": "NISTd9", + "name": "plane angle", + "expression": "1", + "components": [ + { + "key": "plane_angle", + "symbol": "phi", + "power": 1 + } + ], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu147", + "name": "arcminute", + "symbol": "β€²" + }, + { + "id": "NISTu148", + "name": "arcsecond", + "symbol": "as" + }, + { + "id": "NISTu149", + "name": "degree (degree of arc)", + "symbol": "ΒΊ" + }, + { + "id": "NISTu159", + "name": "gon", + "symbol": "gon" + }, + { + "id": "NISTu347", + "name": "angular mil (NATO)", + "symbol": "mil" + }, + { + "id": "NISTu9", + "name": "radian", + "symbol": "rad" + } + ], + "unit_count": 6, + "identifiers": [ + { + "type": "nist", + "id": "NISTq9" + }, + { + "type": "unitsml", + "id": "q:plane_angle" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/ANGP" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/PlaneAngle" + } + ] + }, + { + "id": "NISTq90", + "unitsml_id": "q:logarithmic_ratio_quantities", + "name": "ratio logarithm (B)", + "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", + "type": "derived", + "dimension": { + "id": "NISTd67", + "name": "logarithmic ratio", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu153", + "name": "neper", + "symbol": "Np" + }, + { + "id": "NISTu154", + "name": "bel", + "symbol": "B" + }, + { + "id": "NISTu155", + "name": "decibel", + "symbol": "dB" + }, + { + "id": "NISTu381", + "name": "dBm", + "symbol": "dB_mW" + } + ], + "unit_count": 4, + "identifiers": [ + { + "type": "nist", + "id": "NISTq90" + }, + { + "type": "unitsml", + "id": "q:logarithmic_ratio_quantities" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/quantities/RLGB" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/LinearLogarithmicRatio" + } + ] + }, + { + "id": "NISTq91", + "unitsml_id": "q:fluidity", + "name": "fluidity", + "names": [ + { + "value": "fluidity", + "lang": "en" + }, + { + "value": "reciprocal of dynamic viscosity", + "lang": "en" + } + ], + "short": "fluidity", + "type": "derived", + "dimension": { + "id": "NISTd52", + "name": "fluidity", + "expression": "LΒ·M-1Β·T", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu129", + "name": "rhe", + "symbol": "rhe" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq91" + }, + { + "type": "unitsml", + "id": "q:fluidity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Fluidity" + } + ] + }, + { + "id": "NISTq92", + "unitsml_id": "q:hydrodynamic_permeability", + "name": "hydrodynamic permeability", + "names": [ + { + "value": "hydrodynamic permeability", + "lang": "en" + } + ], + "short": "hydrodynamic_permeability", + "type": "derived", + "dimension": { + "id": "NISTd8", + "name": "area", + "expression": "L2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu157", + "name": "darcy", + "symbol": "D" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq92" + }, + { + "type": "unitsml", + "id": "q:hydrodynamic_permeability" + } + ], + "references": [] + }, + { + "id": "NISTq93", + "unitsml_id": "q:refractive_index", + "name": "refractive index", + "names": [ + { + "value": "refractive index", + "lang": "en" + } + ], + "short": "refractive_index", + "type": "derived", + "dimension": { + "id": "NISTd80", + "name": "ratio quantity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu61", + "name": "one", + "symbol": "1" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq93" + }, + { + "type": "unitsml", + "id": "q:refractive_index" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/RefractiveIndex" + } + ] + }, + { + "id": "NISTq94", + "unitsml_id": "q:relative_permeability", + "name": "relative permeability", + "names": [ + { + "value": "relative permeability", + "lang": "en" + } + ], + "short": "relative_permeability", + "type": "derived", + "dimension": { + "id": "NISTd80", + "name": "ratio quantity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "units": [ + { + "id": "NISTu61", + "name": "one", + "symbol": "1" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq94" + }, + { + "type": "unitsml", + "id": "q:relative_permeability" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/PermeabilityRatio" + } + ] + }, + { + "id": "NISTq95", + "unitsml_id": "q:breadth", + "name": "breadth", + "names": [ + { + "value": "breadth", + "lang": "en" + } + ], + "short": "breadth", + "type": "derived", + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq95" + }, + { + "type": "unitsml", + "id": "q:breadth" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Breadth" + } + ] + }, + { + "id": "NISTq96", + "unitsml_id": "q:height", + "name": "height", + "names": [ + { + "value": "height", + "lang": "en" + } + ], + "short": "height", + "type": "derived", + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq96" + }, + { + "type": "unitsml", + "id": "q:height" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Height" + } + ] + }, + { + "id": "NISTq97", + "unitsml_id": "q:thickness", + "name": "thickness", + "names": [ + { + "value": "thickness", + "lang": "en" + } + ], + "short": "thickness", + "type": "derived", + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq97" + }, + { + "type": "unitsml", + "id": "q:thickness" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Thickness" + } + ] + }, + { + "id": "NISTq98", + "unitsml_id": "q:radius", + "name": "radius", + "names": [ + { + "value": "radius", + "lang": "en" + } + ], + "short": "radius", + "type": "derived", + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq98" + }, + { + "type": "unitsml", + "id": "q:radius" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/Radius" + } + ] + }, + { + "id": "NISTq99", + "unitsml_id": "q:radial_distance", + "name": "radial distance", + "names": [ + { + "value": "radial distance", + "lang": "en" + } + ], + "short": "radial_distance", + "type": "derived", + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "units": [ + { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + } + ], + "unit_count": 1, + "identifiers": [ + { + "type": "nist", + "id": "NISTq99" + }, + { + "type": "unitsml", + "id": "q:radial_distance" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/quantitykind/RadialDistance" + } + ] + } +] \ No newline at end of file diff --git a/public/unitsdb/quantities.jsonld b/public/unitsdb/quantities.jsonld new file mode 100644 index 0000000..c6f2eea --- /dev/null +++ b/public/unitsdb/quantities.jsonld @@ -0,0 +1,4199 @@ +{ + "@context": { + "@vocab": "https://unitsml.org/ontology/", + "schema": "http://schema.org/", + "name": "schema:name", + "identifier": "schema:identifier", + "description": "schema:description", + "symbol": "https://unitsml.org/ontology/symbol", + "rootUnit": "https://unitsml.org/ontology/rootUnit", + "quantityReference": "https://unitsml.org/ontology/quantityReference", + "dimensionReference": "https://unitsml.org/ontology/dimensionReference", + "scaleReference": "https://unitsml.org/ontology/scaleReference", + "unitSystemReference": "https://unitsml.org/ontology/unitSystemReference", + "prefixReference": "https://unitsml.org/ontology/prefixReference", + "power": "https://unitsml.org/ontology/power", + "base": "https://unitsml.org/ontology/base" + }, + "@graph": [ + { + "@id": "https://unitsml.org/quantity/q:length", + "@type": "Quantity", + "name": "length", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:length" + } + ], + "quantityType": "base", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1" + } + }, + { + "@id": "https://unitsml.org/quantity/q:volume", + "@type": "Quantity", + "name": "volume", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq10" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:volume" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10" + } + }, + { + "@id": "https://unitsml.org/quantity/q:diameter", + "@type": "Quantity", + "name": "diameter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq100" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:diameter" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1" + } + }, + { + "@id": "https://unitsml.org/quantity/q:length_of_path", + "@type": "Quantity", + "name": "length of path", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq101" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:length_of_path" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1" + } + }, + { + "@id": "https://unitsml.org/quantity/q:cartesian_coordinates", + "@type": "Quantity", + "name": "cartesian coordinates", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq102" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:cartesian_coordinates" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1" + } + }, + { + "@id": "https://unitsml.org/quantity/q:position_vector", + "@type": "Quantity", + "name": "position vector", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq103" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:position_vector" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1" + } + }, + { + "@id": "https://unitsml.org/quantity/q:displacement", + "@type": "Quantity", + "name": "displacement", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq104" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:displacement" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1" + } + }, + { + "@id": "https://unitsml.org/quantity/q:radius_of_curvature", + "@type": "Quantity", + "name": "radius of curvature", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq105" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:radius_of_curvature" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1" + } + }, + { + "@id": "https://unitsml.org/quantity/q:curvature", + "@type": "Quantity", + "name": "curvature", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq106" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:curvature" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd29" + } + }, + { + "@id": "https://unitsml.org/quantity/q:speed_of_propagation_of_waves", + "@type": "Quantity", + "name": "speed of propagation of waves", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq107" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:speed_of_propagation_of_waves" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd11" + } + }, + { + "@id": "https://unitsml.org/quantity/q:acceleration_of_free_fall", + "@type": "Quantity", + "name": "acceleration of free fall", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq108" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:acceleration_of_free_fall" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd28" + } + }, + { + "@id": "https://unitsml.org/quantity/q:period_duration", + "@type": "Quantity", + "name": "period duration", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq109" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:period_duration" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd3" + } + }, + { + "@id": "https://unitsml.org/quantity/q:solid_angle", + "@type": "Quantity", + "name": "solid angle", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq11" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:solid_angle" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd64" + } + }, + { + "@id": "https://unitsml.org/quantity/q:time_constant", + "@type": "Quantity", + "name": "time constant", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq110" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:time_constant" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd3" + } + }, + { + "@id": "https://unitsml.org/quantity/q:rotation", + "@type": "Quantity", + "name": "rotation", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq111" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:rotation" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd80" + } + }, + { + "@id": "https://unitsml.org/quantity/q:rotational_frequency", + "@type": "Quantity", + "name": "rotational frequency", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq112" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:rotational_frequency" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd24" + } + }, + { + "@id": "https://unitsml.org/quantity/q:angular_frequency", + "@type": "Quantity", + "name": "angular frequency", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq113" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:angular_frequency" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd24" + } + }, + { + "@id": "https://unitsml.org/quantity/q:wavelength", + "@type": "Quantity", + "name": "wavelength", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq114" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:wavelength" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1" + } + }, + { + "@id": "https://unitsml.org/quantity/q:angular_wavenumber", + "@type": "Quantity", + "name": "angular wavenumber", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq115" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:angular_wavenumber" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd29" + } + }, + { + "@id": "https://unitsml.org/quantity/q:phase_velocity", + "@type": "Quantity", + "name": "phase velocity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq116" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:phase_velocity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd11" + } + }, + { + "@id": "https://unitsml.org/quantity/q:group_velocity", + "@type": "Quantity", + "name": "group velocity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq117" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:group_velocity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd11" + } + }, + { + "@id": "https://unitsml.org/quantity/q:level_of_a_field_quantity", + "@type": "Quantity", + "name": "level of a field quantity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq118" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:level_of_a_field_quantity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd83" + } + }, + { + "@id": "https://unitsml.org/quantity/q:level_of_a_power_quantity", + "@type": "Quantity", + "name": "level of a power quantity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq119" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:level_of_a_power_quantity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd84" + } + }, + { + "@id": "https://unitsml.org/quantity/q:velocity", + "@type": "Quantity", + "name": "velocity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq12" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:velocity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd11" + } + }, + { + "@id": "https://unitsml.org/quantity/q:damping_coefficient", + "@type": "Quantity", + "name": "damping coefficient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq120" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:damping_coefficient" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd24" + } + }, + { + "@id": "https://unitsml.org/quantity/q:logarithmic_decrement", + "@type": "Quantity", + "name": "ratio logarithm (Np)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq121" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:logarithmic_decrement" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd67" + } + }, + { + "@id": "https://unitsml.org/quantity/q:attenuation_coefficient", + "@type": "Quantity", + "name": "attenuation coefficient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq122" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:attenuation_coefficient" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd29" + } + }, + { + "@id": "https://unitsml.org/quantity/q:phase_coefficient", + "@type": "Quantity", + "name": "phase coefficient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq123" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:phase_coefficient" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd29" + } + }, + { + "@id": "https://unitsml.org/quantity/q:propagation_coefficient", + "@type": "Quantity", + "name": "propagation coefficient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq124" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:propagation_coefficient" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd29" + } + }, + { + "@id": "https://unitsml.org/quantity/q:relative_mass_density", + "@type": "Quantity", + "name": "relative mass density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq125" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:relative_mass_density" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd80" + } + }, + { + "@id": "https://unitsml.org/quantity/q:linear_density", + "@type": "Quantity", + "name": "linear density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq126" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:linear_density" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd58" + } + }, + { + "@id": "https://unitsml.org/quantity/q:mass_moment_of_inertia", + "@type": "Quantity", + "name": "mass moment of inertia", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq127" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:mass_moment_of_inertia" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd59" + } + }, + { + "@id": "https://unitsml.org/quantity/q:weight", + "@type": "Quantity", + "name": "weight", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq128" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:weight" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd12" + } + }, + { + "@id": "https://unitsml.org/quantity/q:impulse", + "@type": "Quantity", + "name": "impulse", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq129" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:impulse" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd61" + } + }, + { + "@id": "https://unitsml.org/quantity/q:force", + "@type": "Quantity", + "name": "force", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq13" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:force" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd12" + } + }, + { + "@id": "https://unitsml.org/quantity/q:gravitational_constant", + "@type": "Quantity", + "name": "gravitational constant", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq130" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:gravitational_constant" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd62" + } + }, + { + "@id": "https://unitsml.org/quantity/q:momentum", + "@type": "Quantity", + "name": "momentum", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq131" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:momentum" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd61" + } + }, + { + "@id": "https://unitsml.org/quantity/q:moment_of_momentum", + "@type": "Quantity", + "name": "moment of momentum", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq132" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:moment_of_momentum" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd60" + } + }, + { + "@id": "https://unitsml.org/quantity/q:angular_impulse", + "@type": "Quantity", + "name": "angular impulse", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq133" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:angular_impulse" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd60" + } + }, + { + "@id": "https://unitsml.org/quantity/q:normal_stress", + "@type": "Quantity", + "name": "normal stress", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq134" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:normal_stress" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14" + } + }, + { + "@id": "https://unitsml.org/quantity/q:shear_stress", + "@type": "Quantity", + "name": "shear stress", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq135" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:shear_stress" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14" + } + }, + { + "@id": "https://unitsml.org/quantity/q:linear_strain", + "@type": "Quantity", + "name": "linear strain", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq136" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:linear_strain" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd80" + } + }, + { + "@id": "https://unitsml.org/quantity/q:shear_strain", + "@type": "Quantity", + "name": "shear strain", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq137" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:shear_strain" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd80" + } + }, + { + "@id": "https://unitsml.org/quantity/q:volume_strain", + "@type": "Quantity", + "name": "volume strain", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq138" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:volume_strain" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd80" + } + }, + { + "@id": "https://unitsml.org/quantity/q:compressibility", + "@type": "Quantity", + "name": "compressibility", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq139" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:compressibility" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd63" + } + }, + { + "@id": "https://unitsml.org/quantity/q:magnetic_flux_density", + "@type": "Quantity", + "name": "magnetic flux density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq14" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:magnetic_flux_density" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd13" + } + }, + { + "@id": "https://unitsml.org/quantity/q:poisson_number", + "@type": "Quantity", + "name": "Poisson number", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq140" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:poisson_number" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd80" + } + }, + { + "@id": "https://unitsml.org/quantity/q:modulus_of_elasticity", + "@type": "Quantity", + "name": "modulus of elasticity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq141" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:modulus_of_elasticity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14" + } + }, + { + "@id": "https://unitsml.org/quantity/q:modulus_of_rigidity", + "@type": "Quantity", + "name": "modulus of rigidity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq142" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:modulus_of_rigidity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14" + } + }, + { + "@id": "https://unitsml.org/quantity/q:modulus_of_compression", + "@type": "Quantity", + "name": "modulus of compression", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq143" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:modulus_of_compression" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14" + } + }, + { + "@id": "https://unitsml.org/quantity/q:second_axial_moment_of_area", + "@type": "Quantity", + "name": "second axial moment of area", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq144" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:second_axial_moment_of_area" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd57" + } + }, + { + "@id": "https://unitsml.org/quantity/q:second_polar_moment_of_area", + "@type": "Quantity", + "name": "second polar moment of area", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq145" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:second_polar_moment_of_area" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd57" + } + }, + { + "@id": "https://unitsml.org/quantity/q:section_modulus", + "@type": "Quantity", + "name": "section modulus", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq146" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:section_modulus" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10" + } + }, + { + "@id": "https://unitsml.org/quantity/q:dynamic_friction_factor", + "@type": "Quantity", + "name": "dynamic friction factor", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq147" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:dynamic_friction_factor" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd80" + } + }, + { + "@id": "https://unitsml.org/quantity/q:pressure", + "@type": "Quantity", + "name": "pressure", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq15" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:pressure" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14" + } + }, + { + "@id": "https://unitsml.org/quantity/q:mass_flow_rate", + "@type": "Quantity", + "name": "mass flow rate", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq150" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:mass_flow_rate" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd65" + } + }, + { + "@id": "https://unitsml.org/quantity/q:volume_flow_rate", + "@type": "Quantity", + "name": "volume flow rate", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq151" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:volume_flow_rate" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd66" + } + }, + { + "@id": "https://unitsml.org/quantity/q:lagrange_function", + "@type": "Quantity", + "name": "Lagrange function", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq152" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:lagrange_function" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15" + } + }, + { + "@id": "https://unitsml.org/quantity/q:hamilton_function", + "@type": "Quantity", + "name": "Hamilton function", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq153" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:hamilton_function" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15" + } + }, + { + "@id": "https://unitsml.org/quantity/q:action", + "@type": "Quantity", + "name": "action", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq154" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:action" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd60" + } + }, + { + "@id": "https://unitsml.org/quantity/q:area_moment_of_inertia", + "@type": "Quantity", + "name": "area moment of inertia", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq155" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:area_moment_of_inertia" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd57" + } + }, + { + "@id": "https://unitsml.org/quantity/q:linear_expansion_coefficient", + "@type": "Quantity", + "name": "linear expansion coefficient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq156" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:linear_expansion_coefficient" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd68" + } + }, + { + "@id": "https://unitsml.org/quantity/q:cubic_expansion_coefficient", + "@type": "Quantity", + "name": "cubic expansion coefficient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq157" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:cubic_expansion_coefficient" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd68" + } + }, + { + "@id": "https://unitsml.org/quantity/q:relative_pressure_coefficient", + "@type": "Quantity", + "name": "relative pressure coefficient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq158" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:relative_pressure_coefficient" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd68" + } + }, + { + "@id": "https://unitsml.org/quantity/q:pressure_coefficient", + "@type": "Quantity", + "name": "pressure coefficient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq159" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:pressure_coefficient" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd69" + } + }, + { + "@id": "https://unitsml.org/quantity/q:stress", + "@type": "Quantity", + "name": "stress", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq16" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:stress" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14" + } + }, + { + "@id": "https://unitsml.org/quantity/q:isothermal_compressibility", + "@type": "Quantity", + "name": "isothermal compressibility", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq160" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:isothermal_compressibility" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd70" + } + }, + { + "@id": "https://unitsml.org/quantity/q:magnetomotive_force", + "@type": "Quantity", + "name": "magnetomotive force (Cardelli) (-SP811)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq161" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:magnetomotive_force" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd4" + } + }, + { + "@id": "https://unitsml.org/quantity/q:electric_dipole_moment", + "@type": "Quantity", + "name": "electric dipole moment", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq162" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_dipole_moment" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd72" + } + }, + { + "@id": "https://unitsml.org/quantity/q:magnetizability", + "@type": "Quantity", + "name": "magnetizability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq163" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:magnetizability" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd54" + } + }, + { + "@id": "https://unitsml.org/quantity/q:magnetic_dipole_moment", + "@type": "Quantity", + "name": "magnetic dipole moment", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq164" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:magnetic_dipole_moment" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd73" + } + }, + { + "@id": "https://unitsml.org/quantity/q:electric_field_gradient", + "@type": "Quantity", + "name": "electric field gradient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq165" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_field_gradient" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd74" + } + }, + { + "@id": "https://unitsml.org/quantity/q:electric_potential", + "@type": "Quantity", + "name": "electric potential", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq166" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_potential" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd18" + } + }, + { + "@id": "https://unitsml.org/quantity/q:electric_quadrupole_moment", + "@type": "Quantity", + "name": "electric quadrupole moment", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq167" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_quadrupole_moment" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd75" + } + }, + { + "@id": "https://unitsml.org/quantity/q:polarizability", + "@type": "Quantity", + "name": "polarizability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq168" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:polarizability" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd76" + } + }, + { + "@id": "https://unitsml.org/quantity/q:electric_capacitance", + "@type": "Quantity", + "name": "electric capacitance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq169" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_capacitance" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd19" + } + }, + { + "@id": "https://unitsml.org/quantity/q:energy", + "@type": "Quantity", + "name": "energy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq17" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:energy" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15" + } + }, + { + "@id": "https://unitsml.org/quantity/q:electric_current_intensity", + "@type": "Quantity", + "name": "electric current intensity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq170" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_current_intensity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd4" + } + }, + { + "@id": "https://unitsml.org/quantity/q:electric_inductance", + "@type": "Quantity", + "name": "electric inductance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq171" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_inductance" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd23" + } + }, + { + "@id": "https://unitsml.org/quantity/q:first_hyperpolarizability", + "@type": "Quantity", + "name": "1st hyperpolarizability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq172" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:first_hyperpolarizability" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd77" + } + }, + { + "@id": "https://unitsml.org/quantity/q:second_hyperpolarizability", + "@type": "Quantity", + "name": "2nd hyperpolarizability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq173" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:second_hyperpolarizability" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd78" + } + }, + { + "@id": "https://unitsml.org/quantity/q:index_of_acidity", + "@type": "Quantity", + "name": "index of acidity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq174" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:index_of_acidity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd94" + } + }, + { + "@id": "https://unitsml.org/quantity/q:fahrenheit_temperature", + "@type": "Quantity", + "name": "Fahrenheit temperature", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq175" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:fahrenheit_temperature" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd5" + } + }, + { + "@id": "https://unitsml.org/quantity/q:mass_divided_by_length", + "@type": "Quantity", + "name": "mass divided by length", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq176" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:mass_divided_by_length" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd58" + } + }, + { + "@id": "https://unitsml.org/quantity/q:storage_capacity", + "@type": "Quantity", + "name": "storage capacity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq177" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:storage_capacity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd95" + } + }, + { + "@id": "https://unitsml.org/quantity/q:molality_of_solute_B", + "@type": "Quantity", + "name": "molality of solute B", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq179" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:molality_of_solute_B" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd79" + } + }, + { + "@id": "https://unitsml.org/quantity/q:work", + "@type": "Quantity", + "name": "work", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq18" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:work" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15" + } + }, + { + "@id": "https://unitsml.org/quantity/q:coefficient_of_heat_transfer", + "@type": "Quantity", + "name": "coefficient of heat transfer", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq180" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:coefficient_of_heat_transfer" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd71" + } + }, + { + "@id": "https://unitsml.org/quantity/q:surface_coefficient_of_heat_transfer", + "@type": "Quantity", + "name": "surface coefficient of heat transfer", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq181" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:surface_coefficient_of_heat_transfer" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd71" + } + }, + { + "@id": "https://unitsml.org/quantity/q:kinetic_energy", + "@type": "Quantity", + "name": "kinetic energy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq182" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:kinetic_energy" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15" + } + }, + { + "@id": "https://unitsml.org/quantity/q:mechanical_energy", + "@type": "Quantity", + "name": "mechanical energy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq183" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:mechanical_energy" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15" + } + }, + { + "@id": "https://unitsml.org/quantity/q:torque", + "@type": "Quantity", + "name": "torque", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq184" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:torque" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15" + } + }, + { + "@id": "https://unitsml.org/quantity/q:bending_moment_of_force", + "@type": "Quantity", + "name": "bending moment of force", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq185" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:bending_moment_of_force" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15" + } + }, + { + "@id": "https://unitsml.org/quantity/q:mass_fraction", + "@type": "Quantity", + "name": "mass fraction", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq186" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:mass_fraction" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd85" + } + }, + { + "@id": "https://unitsml.org/quantity/q:apparent_power", + "@type": "Quantity", + "name": "apparent power", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq187" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:apparent_power" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16" + } + }, + { + "@id": "https://unitsml.org/quantity/q:nil", + "@type": "Quantity", + "name": "nil", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq188" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:nil" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd80" + } + }, + { + "@id": "https://unitsml.org/quantity/q:emission_rate", + "@type": "Quantity", + "name": "emission rate", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq189" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:emission_rate" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd24" + } + }, + { + "@id": "https://unitsml.org/quantity/q:amount_of_heat", + "@type": "Quantity", + "name": "amount of heat", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq19" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:amount_of_heat" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15" + } + }, + { + "@id": "https://unitsml.org/quantity/q:fluence", + "@type": "Quantity", + "name": "fluence", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq190" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:fluence" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd96" + } + }, + { + "@id": "https://unitsml.org/quantity/q:fluence_rate", + "@type": "Quantity", + "name": "fluence rate", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq191" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:fluence_rate" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd97" + } + }, + { + "@id": "https://unitsml.org/quantity/q:ITS-90_temperature_celsius", + "@type": "Quantity", + "name": "ITS-90 temperature (Β°C)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq192" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:ITS-90_temperature_celsius" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd5" + } + }, + { + "@id": "https://unitsml.org/quantity/q:ITS-90_temperature_kelvin", + "@type": "Quantity", + "name": "ITS-90 temperature (K)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq193" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:ITS-90_temperature_kelvin" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd5" + } + }, + { + "@id": "https://unitsml.org/quantity/q:kerma_rate", + "@type": "Quantity", + "name": "kerma rate", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq194" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:kerma_rate" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd50" + } + }, + { + "@id": "https://unitsml.org/quantity/q:phase", + "@type": "Quantity", + "name": "phase", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq195" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:phase" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd98" + } + }, + { + "@id": "https://unitsml.org/quantity/q:PLTS-2000_temperature", + "@type": "Quantity", + "name": "PLTS-2000 temperature (K)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq196" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:PLTS-2000_temperature" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd5" + } + }, + { + "@id": "https://unitsml.org/quantity/q:exposure", + "@type": "Quantity", + "name": "exposure", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq197" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:exposure" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd49" + } + }, + { + "@id": "https://unitsml.org/quantity/q:fuel_efficiency", + "@type": "Quantity", + "name": "fuel efficiency", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq198" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:fuel_efficiency" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd99" + } + }, + { + "@id": "https://unitsml.org/quantity/q:relative_humidity", + "@type": "Quantity", + "name": "relative humidity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq199" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:relative_humidity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd80" + } + }, + { + "@id": "https://unitsml.org/quantity/q:mass", + "@type": "Quantity", + "name": "mass", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq2" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:mass" + } + ], + "quantityType": "base", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2" + } + }, + { + "@id": "https://unitsml.org/quantity/q:power", + "@type": "Quantity", + "name": "power", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq20" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:power" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16" + } + }, + { + "@id": "https://unitsml.org/quantity/q:logarithmic_frequency_range", + "@type": "Quantity", + "name": "logarithmic frequency range", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq200" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:logarithmic_frequency_range" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd67" + } + }, + { + "@id": "https://unitsml.org/quantity/q:traffic_intensity", + "@type": "Quantity", + "name": "traffic intensity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq201" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:traffic_intensity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd100" + } + }, + { + "@id": "https://unitsml.org/quantity/q:symbol_rate", + "@type": "Quantity", + "name": "symbol rate", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq202" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:symbol_rate" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd101" + } + }, + { + "@id": "https://unitsml.org/quantity/q:information_content", + "@type": "Quantity", + "name": "information content", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq203" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:information_content" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd102" + } + }, + { + "@id": "https://unitsml.org/quantity/q:radiant_flux", + "@type": "Quantity", + "name": "radiant flux", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq21" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:radiant_flux" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16" + } + }, + { + "@id": "https://unitsml.org/quantity/q:electric_charge", + "@type": "Quantity", + "name": "electric charge", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq22" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_charge" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd17" + } + }, + { + "@id": "https://unitsml.org/quantity/q:amount_of_electricity", + "@type": "Quantity", + "name": "amount of electricity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq23" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:amount_of_electricity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd17" + } + }, + { + "@id": "https://unitsml.org/quantity/q:electric_potential_difference", + "@type": "Quantity", + "name": "electric potential difference", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq24" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_potential_difference" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd18" + } + }, + { + "@id": "https://unitsml.org/quantity/q:potential_difference", + "@type": "Quantity", + "name": "potential difference", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq25" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:potential_difference" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd18" + } + }, + { + "@id": "https://unitsml.org/quantity/q:electromotive_force", + "@type": "Quantity", + "name": "electromotive force", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq26" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electromotive_force" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd18" + } + }, + { + "@id": "https://unitsml.org/quantity/q:capacitance", + "@type": "Quantity", + "name": "capacitance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq27" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:capacitance" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd19" + } + }, + { + "@id": "https://unitsml.org/quantity/q:electric_resistance", + "@type": "Quantity", + "name": "electric resistance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq28" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_resistance" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd20" + } + }, + { + "@id": "https://unitsml.org/quantity/q:electric_conductance", + "@type": "Quantity", + "name": "electric conductance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq29" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_conductance" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd21" + } + }, + { + "@id": "https://unitsml.org/quantity/q:time", + "@type": "Quantity", + "name": "time", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq3" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:time" + } + ], + "quantityType": "base", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd3" + } + }, + { + "@id": "https://unitsml.org/quantity/q:magnetic_flux", + "@type": "Quantity", + "name": "magnetic flux", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq30" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:magnetic_flux" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd22" + } + }, + { + "@id": "https://unitsml.org/quantity/q:surface_density", + "@type": "Quantity", + "name": "surface density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq31" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:surface_density" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd51" + } + }, + { + "@id": "https://unitsml.org/quantity/q:inductance", + "@type": "Quantity", + "name": "inductance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq32" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:inductance" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd23" + } + }, + { + "@id": "https://unitsml.org/quantity/q:mass_concentration", + "@type": "Quantity", + "name": "mass concentration", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq33" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:mass_concentration" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd30" + } + }, + { + "@id": "https://unitsml.org/quantity/q:celsius_temperature", + "@type": "Quantity", + "name": "Celsius temperature", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq34" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:celsius_temperature" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd5" + } + }, + { + "@id": "https://unitsml.org/quantity/q:activity_referred_to_a_radionuclide", + "@type": "Quantity", + "name": "activity referred to a radionuclide", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq35" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:activity_referred_to_a_radionuclide" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd24" + } + }, + { + "@id": "https://unitsml.org/quantity/q:absorbed_dose", + "@type": "Quantity", + "name": "absorbed dose", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq36" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:absorbed_dose" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd25" + } + }, + { + "@id": "https://unitsml.org/quantity/q:specific_energy_imparted", + "@type": "Quantity", + "name": "specific energy imparted", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq37" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:specific_energy_imparted" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd25" + } + }, + { + "@id": "https://unitsml.org/quantity/q:kerma", + "@type": "Quantity", + "name": "kerma", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq38" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:kerma" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd25" + } + }, + { + "@id": "https://unitsml.org/quantity/q:dose_equivalent", + "@type": "Quantity", + "name": "dose equivalent", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq39" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:dose_equivalent" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd25" + } + }, + { + "@id": "https://unitsml.org/quantity/q:electric_current", + "@type": "Quantity", + "name": "electric current", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq4" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_current" + } + ], + "quantityType": "base", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd4" + } + }, + { + "@id": "https://unitsml.org/quantity/q:ambient_dose_equivalent", + "@type": "Quantity", + "name": "ambient dose equivalent", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq40" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:ambient_dose_equivalent" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd25" + } + }, + { + "@id": "https://unitsml.org/quantity/q:directional_dose_equivalent", + "@type": "Quantity", + "name": "directional dose equivalent", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq41" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:directional_dose_equivalent" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd25" + } + }, + { + "@id": "https://unitsml.org/quantity/q:personal_dose_equivalent", + "@type": "Quantity", + "name": "personal dose equivalent", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq42" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:personal_dose_equivalent" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd25" + } + }, + { + "@id": "https://unitsml.org/quantity/q:organ_dose_equivalent", + "@type": "Quantity", + "name": "organ dose equivalent", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq43" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:organ_dose_equivalent" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd25" + } + }, + { + "@id": "https://unitsml.org/quantity/q:catalytic_activity", + "@type": "Quantity", + "name": "catalytic activity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq44" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:catalytic_activity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd26" + } + }, + { + "@id": "https://unitsml.org/quantity/q:frequency", + "@type": "Quantity", + "name": "frequency", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq45" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:frequency" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd24" + } + }, + { + "@id": "https://unitsml.org/quantity/q:luminous_flux", + "@type": "Quantity", + "name": "luminous flux", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq46" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:luminous_flux" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd7" + } + }, + { + "@id": "https://unitsml.org/quantity/q:illuminance", + "@type": "Quantity", + "name": "illuminance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq47" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:illuminance" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd27" + } + }, + { + "@id": "https://unitsml.org/quantity/q:distance", + "@type": "Quantity", + "name": "distance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq48" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:distance" + } + ], + "quantityType": "base", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1" + } + }, + { + "@id": "https://unitsml.org/quantity/q:acceleration", + "@type": "Quantity", + "name": "acceleration", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq49" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:acceleration" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd28" + } + }, + { + "@id": "https://unitsml.org/quantity/q:temperature", + "@type": "Quantity", + "name": "thermodynamic temperature", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq5" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:temperature" + } + ], + "quantityType": "base", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd5" + } + }, + { + "@id": "https://unitsml.org/quantity/q:wavenumber", + "@type": "Quantity", + "name": "wavenumber", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq50" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:wavenumber" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd29" + } + }, + { + "@id": "https://unitsml.org/quantity/q:density", + "@type": "Quantity", + "name": "density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq51" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:density" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd30" + } + }, + { + "@id": "https://unitsml.org/quantity/q:specific_volume", + "@type": "Quantity", + "name": "specific volume", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq52" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:specific_volume" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd31" + } + }, + { + "@id": "https://unitsml.org/quantity/q:current_density", + "@type": "Quantity", + "name": "current density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq53" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:current_density" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd32" + } + }, + { + "@id": "https://unitsml.org/quantity/q:magnetic_field_strength", + "@type": "Quantity", + "name": "magnetic field strength", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq54" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:magnetic_field_strength" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd33" + } + }, + { + "@id": "https://unitsml.org/quantity/q:amount_concentration", + "@type": "Quantity", + "name": "amount of substance concentration", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq55" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:amount_concentration" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd34" + } + }, + { + "@id": "https://unitsml.org/quantity/q:luminance", + "@type": "Quantity", + "name": "luminance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq56" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:luminance" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd27" + } + }, + { + "@id": "https://unitsml.org/quantity/q:angular_velocity", + "@type": "Quantity", + "name": "angular velocity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq57" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:angular_velocity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd11" + } + }, + { + "@id": "https://unitsml.org/quantity/q:angular_acceleration", + "@type": "Quantity", + "name": "angular acceleration", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq58" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:angular_acceleration" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd35" + } + }, + { + "@id": "https://unitsml.org/quantity/q:dynamic_viscosity", + "@type": "Quantity", + "name": "dynamic viscosity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq59" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:dynamic_viscosity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd36" + } + }, + { + "@id": "https://unitsml.org/quantity/q:substance_amount", + "@type": "Quantity", + "name": "amount of substance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq6" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:substance_amount" + } + ], + "quantityType": "base", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd6" + } + }, + { + "@id": "https://unitsml.org/quantity/q:moment_of_force", + "@type": "Quantity", + "name": "moment of force", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq60" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:moment_of_force" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15" + } + }, + { + "@id": "https://unitsml.org/quantity/q:surface_tension", + "@type": "Quantity", + "name": "surface tension", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq61" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:surface_tension" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd37" + } + }, + { + "@id": "https://unitsml.org/quantity/q:heat_flux_density", + "@type": "Quantity", + "name": "heat flux density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq62" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:heat_flux_density" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd38" + } + }, + { + "@id": "https://unitsml.org/quantity/q:heat_capacity", + "@type": "Quantity", + "name": "heat capacity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq63" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:heat_capacity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd39" + } + }, + { + "@id": "https://unitsml.org/quantity/q:specific_heat_capacity", + "@type": "Quantity", + "name": "specific heat capacity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq64" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:specific_heat_capacity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd40" + } + }, + { + "@id": "https://unitsml.org/quantity/q:specific_energy", + "@type": "Quantity", + "name": "specific energy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq65" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:specific_energy" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd25" + } + }, + { + "@id": "https://unitsml.org/quantity/q:thermal_conductivity", + "@type": "Quantity", + "name": "thermal conductivity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq66" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:thermal_conductivity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd41" + } + }, + { + "@id": "https://unitsml.org/quantity/q:energy_density", + "@type": "Quantity", + "name": "energy density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq67" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:energy_density" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14" + } + }, + { + "@id": "https://unitsml.org/quantity/q:electric_field_strength", + "@type": "Quantity", + "name": "electric field strength", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq68" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_field_strength" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd42" + } + }, + { + "@id": "https://unitsml.org/quantity/q:electric_charge_density", + "@type": "Quantity", + "name": "electric charge density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq69" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_charge_density" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd43" + } + }, + { + "@id": "https://unitsml.org/quantity/q:luminous_intensity", + "@type": "Quantity", + "name": "luminous intensity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq7" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:luminous_intensity" + } + ], + "quantityType": "base", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd7" + } + }, + { + "@id": "https://unitsml.org/quantity/q:electric_flux_density", + "@type": "Quantity", + "name": "electric flux density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq70" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_flux_density" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd44" + } + }, + { + "@id": "https://unitsml.org/quantity/q:permittivity", + "@type": "Quantity", + "name": "permittivity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq71" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:permittivity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd45" + } + }, + { + "@id": "https://unitsml.org/quantity/q:permeability", + "@type": "Quantity", + "name": "permeability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq72" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:permeability" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd46" + } + }, + { + "@id": "https://unitsml.org/quantity/q:molar_energy", + "@type": "Quantity", + "name": "molar energy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq73" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:molar_energy" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd47" + } + }, + { + "@id": "https://unitsml.org/quantity/q:molar_entropy", + "@type": "Quantity", + "name": "molar entropy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq74" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:molar_entropy" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd48" + } + }, + { + "@id": "https://unitsml.org/quantity/q:exposure_x_and_gamma_rays", + "@type": "Quantity", + "name": "exposure (x and gamma rays)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq75" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:exposure_x_and_gamma_rays" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd49" + } + }, + { + "@id": "https://unitsml.org/quantity/q:absorbed_dose_rate", + "@type": "Quantity", + "name": "absorbed dose rate", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq76" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:absorbed_dose_rate" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd50" + } + }, + { + "@id": "https://unitsml.org/quantity/q:potential_energy", + "@type": "Quantity", + "name": "potential energy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq77" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:potential_energy" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15" + } + }, + { + "@id": "https://unitsml.org/quantity/q:irradiance", + "@type": "Quantity", + "name": "irradiance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq78" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:irradiance" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd38" + } + }, + { + "@id": "https://unitsml.org/quantity/q:entropy", + "@type": "Quantity", + "name": "entropy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq79" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:entropy" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd39" + } + }, + { + "@id": "https://unitsml.org/quantity/q:area", + "@type": "Quantity", + "name": "area", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq8" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:area" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd8" + } + }, + { + "@id": "https://unitsml.org/quantity/q:specific_entropy", + "@type": "Quantity", + "name": "specific entropy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq80" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:specific_entropy" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd40" + } + }, + { + "@id": "https://unitsml.org/quantity/q:surface_charge_density", + "@type": "Quantity", + "name": "surface charge density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq81" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:surface_charge_density" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd53" + } + }, + { + "@id": "https://unitsml.org/quantity/q:electric_displacement", + "@type": "Quantity", + "name": "electric displacement", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq82" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_displacement" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd44" + } + }, + { + "@id": "https://unitsml.org/quantity/q:molar_heat_capacity", + "@type": "Quantity", + "name": "molar heat capacity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq83" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:molar_heat_capacity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd48" + } + }, + { + "@id": "https://unitsml.org/quantity/q:catalytic_activity_concentration", + "@type": "Quantity", + "name": "catalytic activity concentration", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq84" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:catalytic_activity_concentration" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd55" + } + }, + { + "@id": "https://unitsml.org/quantity/q:kinematic_viscosity", + "@type": "Quantity", + "name": "kinematic viscosity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq85" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:kinematic_viscosity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd56" + } + }, + { + "@id": "https://unitsml.org/quantity/q:magnetic_field", + "@type": "Quantity", + "name": "magnetic field", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq87" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:magnetic_field" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd33" + } + }, + { + "@id": "https://unitsml.org/quantity/q:radiant_intensity", + "@type": "Quantity", + "name": "radiant intensity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq88" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:radiant_intensity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16" + } + }, + { + "@id": "https://unitsml.org/quantity/q:radiance", + "@type": "Quantity", + "name": "radiance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq89" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:radiance" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd38" + } + }, + { + "@id": "https://unitsml.org/quantity/q:plane_angle", + "@type": "Quantity", + "name": "plane angle", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq9" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:plane_angle" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd9" + } + }, + { + "@id": "https://unitsml.org/quantity/q:logarithmic_ratio_quantities", + "@type": "Quantity", + "name": "ratio logarithm (B)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq90" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:logarithmic_ratio_quantities" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd67" + } + }, + { + "@id": "https://unitsml.org/quantity/q:fluidity", + "@type": "Quantity", + "name": "fluidity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq91" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:fluidity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd52" + } + }, + { + "@id": "https://unitsml.org/quantity/q:hydrodynamic_permeability", + "@type": "Quantity", + "name": "hydrodynamic permeability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq92" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:hydrodynamic_permeability" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd8" + } + }, + { + "@id": "https://unitsml.org/quantity/q:refractive_index", + "@type": "Quantity", + "name": "refractive index", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq93" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:refractive_index" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd80" + } + }, + { + "@id": "https://unitsml.org/quantity/q:relative_permeability", + "@type": "Quantity", + "name": "relative permeability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq94" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:relative_permeability" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd80" + } + }, + { + "@id": "https://unitsml.org/quantity/q:breadth", + "@type": "Quantity", + "name": "breadth", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq95" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:breadth" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1" + } + }, + { + "@id": "https://unitsml.org/quantity/q:height", + "@type": "Quantity", + "name": "height", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq96" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:height" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1" + } + }, + { + "@id": "https://unitsml.org/quantity/q:thickness", + "@type": "Quantity", + "name": "thickness", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq97" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:thickness" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1" + } + }, + { + "@id": "https://unitsml.org/quantity/q:radius", + "@type": "Quantity", + "name": "radius", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq98" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:radius" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1" + } + }, + { + "@id": "https://unitsml.org/quantity/q:radial_distance", + "@type": "Quantity", + "name": "radial distance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq99" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:radial_distance" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1" + } + } + ] +} \ No newline at end of file diff --git a/public/unitsdb/quantity.jsonld b/public/unitsdb/quantity.jsonld new file mode 100644 index 0000000..5886955 --- /dev/null +++ b/public/unitsdb/quantity.jsonld @@ -0,0 +1,7274 @@ +{ + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@graph": [ + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:length", + "@type": "Quantity", + "name": "length", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:length" + } + ], + "quantityType": "base", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre" + }, + { + "@id": "https://unitsml.org/unit/NISTu122", + "name": "micron" + }, + { + "@id": "https://unitsml.org/unit/NISTu123", + "name": "mil (length)" + }, + { + "@id": "https://unitsml.org/unit/NISTu131", + "name": "nautical mile" + }, + { + "@id": "https://unitsml.org/unit/NISTu182", + "name": "light year" + }, + { + "@id": "https://unitsml.org/unit/NISTu183", + "name": "astronomical unit" + }, + { + "@id": "https://unitsml.org/unit/NISTu184", + "name": "parsec" + }, + { + "@id": "https://unitsml.org/unit/NISTu249", + "name": "atomic unit of length" + }, + { + "@id": "https://unitsml.org/unit/NISTu26", + "name": "fermi" + }, + { + "@id": "https://unitsml.org/unit/NISTu278", + "name": "pica (computer)" + }, + { + "@id": "https://unitsml.org/unit/NISTu279", + "name": "pica (printer's)" + }, + { + "@id": "https://unitsml.org/unit/NISTu280", + "name": "point (computer)" + }, + { + "@id": "https://unitsml.org/unit/NISTu281", + "name": "rod (based on US survey foot)" + }, + { + "@id": "https://unitsml.org/unit/NISTu282", + "name": "fathom (based on US survey foot)" + }, + { + "@id": "https://unitsml.org/unit/NISTu290", + "name": "natural unit of length" + }, + { + "@id": "https://unitsml.org/unit/NISTu310", + "name": "chain (based on US survey foot)" + }, + { + "@id": "https://unitsml.org/unit/NISTu311", + "name": "link (based on US survey foot)" + }, + { + "@id": "https://unitsml.org/unit/NISTu312", + "name": "furlong (based on US survey foot)" + }, + { + "@id": "https://unitsml.org/unit/NISTu313", + "name": "mile (based on US survey foot)" + }, + { + "@id": "https://unitsml.org/unit/NISTu314", + "name": "yard (based on US survey foot)" + }, + { + "@id": "https://unitsml.org/unit/NISTu315", + "name": "foot (based on US survey foot)" + }, + { + "@id": "https://unitsml.org/unit/NISTu316", + "name": "inch (based on US survey foot)" + }, + { + "@id": "https://unitsml.org/unit/NISTu344", + "name": "point (printer's)" + }, + { + "@id": "https://unitsml.org/unit/NISTu361", + "name": "microinch" + }, + { + "@id": "https://unitsml.org/unit/NISTu376", + "name": "light week" + }, + { + "@id": "https://unitsml.org/unit/NISTu377", + "name": "light hour" + }, + { + "@id": "https://unitsml.org/unit/NISTu378", + "name": "light minute" + }, + { + "@id": "https://unitsml.org/unit/NISTu379", + "name": "light second" + }, + { + "@id": "https://unitsml.org/unit/NISTu39", + "name": "Γ₯ngstrΓΆm" + }, + { + "@id": "https://unitsml.org/unit/NISTu78", + "name": "foot" + }, + { + "@id": "https://unitsml.org/unit/NISTu8", + "name": "inch" + }, + { + "@id": "https://unitsml.org/unit/NISTu83", + "name": "mile" + }, + { + "@id": "https://unitsml.org/unit/NISTu84", + "name": "yard" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:volume", + "@type": "Quantity", + "name": "volume", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq10" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:volume" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu115", + "name": "stere" + }, + { + "@id": "https://unitsml.org/unit/NISTu130", + "name": "litre" + }, + { + "@id": "https://unitsml.org/unit/NISTu168", + "name": "cubic inch" + }, + { + "@id": "https://unitsml.org/unit/NISTu169", + "name": "cubic foot" + }, + { + "@id": "https://unitsml.org/unit/NISTu170", + "name": "cubic yard" + }, + { + "@id": "https://unitsml.org/unit/NISTu171", + "name": "gallon (UK)" + }, + { + "@id": "https://unitsml.org/unit/NISTu172", + "name": "pint (UK)" + }, + { + "@id": "https://unitsml.org/unit/NISTu173", + "name": "fluid ounce (UK)" + }, + { + "@id": "https://unitsml.org/unit/NISTu175", + "name": "gallon (US)" + }, + { + "@id": "https://unitsml.org/unit/NISTu176", + "name": "liquid pint (US)" + }, + { + "@id": "https://unitsml.org/unit/NISTu177", + "name": "fluid ounce (US)" + }, + { + "@id": "https://unitsml.org/unit/NISTu178", + "name": "barrel (US) for petroleum" + }, + { + "@id": "https://unitsml.org/unit/NISTu179", + "name": "bushel (US)" + }, + { + "@id": "https://unitsml.org/unit/NISTu180", + "name": "dry pint (US)" + }, + { + "@id": "https://unitsml.org/unit/NISTu1e3/1", + "name": "cubic meter" + }, + { + "@id": "https://unitsml.org/unit/NISTu300", + "name": "quart (UK)" + }, + { + "@id": "https://unitsml.org/unit/NISTu301", + "name": "dry quart (US)" + }, + { + "@id": "https://unitsml.org/unit/NISTu302", + "name": "liquid quart (US)" + }, + { + "@id": "https://unitsml.org/unit/NISTu303", + "name": "teaspoon" + }, + { + "@id": "https://unitsml.org/unit/NISTu304", + "name": "tablespoon" + }, + { + "@id": "https://unitsml.org/unit/NISTu305", + "name": "tablespoon (FDA)" + }, + { + "@id": "https://unitsml.org/unit/NISTu306", + "name": "teaspoon (FDA)" + }, + { + "@id": "https://unitsml.org/unit/NISTu307", + "name": "cup (FDA)" + }, + { + "@id": "https://unitsml.org/unit/NISTu308", + "name": "fluid ounce (FDA)" + }, + { + "@id": "https://unitsml.org/unit/NISTu352", + "name": "peck" + }, + { + "@id": "https://unitsml.org/unit/NISTu353", + "name": "minim" + }, + { + "@id": "https://unitsml.org/unit/NISTu354", + "name": "cup (US)" + }, + { + "@id": "https://unitsml.org/unit/NISTu355", + "name": "fluid dram" + }, + { + "@id": "https://unitsml.org/unit/NISTu356", + "name": "gill (US)" + }, + { + "@id": "https://unitsml.org/unit/NISTu357", + "name": "gill [Canadian and UK (Imperial)]" + }, + { + "@id": "https://unitsml.org/unit/NISTu365", + "name": "milliliter" + }, + { + "@id": "https://unitsml.org/unit/NISTu57", + "name": "acre-foot (based on US survey foot)" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:diameter", + "@type": "Quantity", + "name": "diameter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq100" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:diameter" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:length_of_path", + "@type": "Quantity", + "name": "length of path", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq101" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:length_of_path" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:cartesian_coordinates", + "@type": "Quantity", + "name": "cartesian coordinates", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq102" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:cartesian_coordinates" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:position_vector", + "@type": "Quantity", + "name": "position vector", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq103" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:position_vector" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:displacement", + "@type": "Quantity", + "name": "displacement", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq104" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:displacement" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:radius_of_curvature", + "@type": "Quantity", + "name": "radius of curvature", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq105" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:radius_of_curvature" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:curvature", + "@type": "Quantity", + "name": "curvature", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq106" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:curvature" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd29", + "expression": "L-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1e-1/1", + "name": "meter to the power minus one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:speed_of_propagation_of_waves", + "@type": "Quantity", + "name": "speed of propagation of waves", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq107" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:speed_of_propagation_of_waves" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd11", + "expression": "LΒ·T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1.u3e-1/1", + "name": "meter per second" + }, + { + "@id": "https://unitsml.org/unit/NISTu160", + "name": "kilometer per hour" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:acceleration_of_free_fall", + "@type": "Quantity", + "name": "acceleration of free fall", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq108" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:acceleration_of_free_fall" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd28", + "expression": "LΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1.u3e-2/1", + "name": "meter per second squared" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:period_duration", + "@type": "Quantity", + "name": "period duration", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq109" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:period_duration" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd3", + "expression": "T" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:solid_angle", + "@type": "Quantity", + "name": "solid angle", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq11" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:solid_angle" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd64", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu10", + "name": "steradian" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:time_constant", + "@type": "Quantity", + "name": "time constant", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq110" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:time_constant" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd3", + "expression": "T" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:rotation", + "@type": "Quantity", + "name": "rotation", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq111" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:rotation" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd80", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu61", + "name": "one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:rotational_frequency", + "@type": "Quantity", + "name": "rotational frequency", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq112" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:rotational_frequency" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd24", + "expression": "T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu3e-1/1", + "name": "second to the power minus one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:angular_frequency", + "@type": "Quantity", + "name": "angular frequency", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq113" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:angular_frequency" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd24", + "expression": "T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu3e-1/1", + "name": "second to the power minus one" + }, + { + "@id": "https://unitsml.org/unit/NISTu9.u3e-1/1", + "name": "radian per second" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:wavelength", + "@type": "Quantity", + "name": "wavelength", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq114" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:wavelength" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:angular_wavenumber", + "@type": "Quantity", + "name": "angular wavenumber", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq115" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:angular_wavenumber" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd29", + "expression": "L-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1e-1/1", + "name": "meter to the power minus one" + }, + { + "@id": "https://unitsml.org/unit/NISTu9.u1e-1/1", + "name": "radian per meter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:phase_velocity", + "@type": "Quantity", + "name": "phase velocity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq116" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:phase_velocity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd11", + "expression": "LΒ·T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1.u3e-1/1", + "name": "meter per second" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:group_velocity", + "@type": "Quantity", + "name": "group velocity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq117" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:group_velocity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd11", + "expression": "LΒ·T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1.u3e-1/1", + "name": "meter per second" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:level_of_a_field_quantity", + "@type": "Quantity", + "name": "level of a field quantity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq118" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:level_of_a_field_quantity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd83", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu153", + "name": "neper" + }, + { + "@id": "https://unitsml.org/unit/NISTu154", + "name": "bel" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:level_of_a_power_quantity", + "@type": "Quantity", + "name": "level of a power quantity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq119" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:level_of_a_power_quantity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd84", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu153", + "name": "neper" + }, + { + "@id": "https://unitsml.org/unit/NISTu154", + "name": "bel" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:velocity", + "@type": "Quantity", + "name": "velocity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq12" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:velocity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd11", + "expression": "LΒ·T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1.u3e-1/1", + "name": "meter per second" + }, + { + "@id": "https://unitsml.org/unit/NISTu107", + "name": "foot per minute" + }, + { + "@id": "https://unitsml.org/unit/NISTu108", + "name": "foot per second" + }, + { + "@id": "https://unitsml.org/unit/NISTu109", + "name": "inch per second" + }, + { + "@id": "https://unitsml.org/unit/NISTu110", + "name": "mile per hour" + }, + { + "@id": "https://unitsml.org/unit/NISTu111", + "name": "mile per minute" + }, + { + "@id": "https://unitsml.org/unit/NISTu112", + "name": "mile per second" + }, + { + "@id": "https://unitsml.org/unit/NISTu152", + "name": "nautical mile per hour" + }, + { + "@id": "https://unitsml.org/unit/NISTu160", + "name": "kilometer per hour" + }, + { + "@id": "https://unitsml.org/unit/NISTu242", + "name": "natural unit of velocity" + }, + { + "@id": "https://unitsml.org/unit/NISTu294", + "name": "atomic unit of velocity" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:damping_coefficient", + "@type": "Quantity", + "name": "damping coefficient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq120" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:damping_coefficient" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd24", + "expression": "T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu163", + "name": "neper per second" + }, + { + "@id": "https://unitsml.org/unit/NISTu3e-1/1", + "name": "second to the power minus one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:logarithmic_decrement", + "@type": "Quantity", + "name": "ratio logarithm (Np)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq121" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:logarithmic_decrement" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd67", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu153", + "name": "neper" + }, + { + "@id": "https://unitsml.org/unit/NISTu61", + "name": "one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:attenuation_coefficient", + "@type": "Quantity", + "name": "attenuation coefficient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq122" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:attenuation_coefficient" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd29", + "expression": "L-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1e-1/1", + "name": "meter to the power minus one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:phase_coefficient", + "@type": "Quantity", + "name": "phase coefficient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq123" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:phase_coefficient" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd29", + "expression": "L-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1e-1/1", + "name": "meter to the power minus one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:propagation_coefficient", + "@type": "Quantity", + "name": "propagation coefficient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq124" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:propagation_coefficient" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd29", + "expression": "L-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1e-1/1", + "name": "meter to the power minus one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:relative_mass_density", + "@type": "Quantity", + "name": "relative mass density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq125" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:relative_mass_density" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd80", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu61", + "name": "one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:linear_density", + "@type": "Quantity", + "name": "linear density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq126" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:linear_density" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd58", + "expression": "L-1Β·M" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu213", + "name": "tex" + }, + { + "@id": "https://unitsml.org/unit/NISTu27p10'3.u1e-1/1", + "name": "kilogram per meter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:mass_moment_of_inertia", + "@type": "Quantity", + "name": "mass moment of inertia", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq127" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:mass_moment_of_inertia" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd59", + "expression": "L2Β·M" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu27p10'3.u1e2/1", + "name": "kilogram meter squared" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:weight", + "@type": "Quantity", + "name": "weight", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq128" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:weight" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd12", + "expression": "LΒ·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu205", + "name": "pound-force" + }, + { + "@id": "https://unitsml.org/unit/NISTu236", + "name": "poundal" + }, + { + "@id": "https://unitsml.org/unit/NISTu238", + "name": "ton-force (2000 lb)" + }, + { + "@id": "https://unitsml.org/unit/NISTu262", + "name": "atomic unit of force" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:impulse", + "@type": "Quantity", + "name": "impulse", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq129" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:impulse" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd61", + "expression": "LΒ·MΒ·T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu11.u3", + "name": "newton second" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:force", + "@type": "Quantity", + "name": "force", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq13" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:force" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd12", + "expression": "LΒ·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu11", + "name": "newton" + }, + { + "@id": "https://unitsml.org/unit/NISTu196", + "name": "gram-force" + }, + { + "@id": "https://unitsml.org/unit/NISTu205", + "name": "pound-force" + }, + { + "@id": "https://unitsml.org/unit/NISTu236", + "name": "poundal" + }, + { + "@id": "https://unitsml.org/unit/NISTu238", + "name": "ton-force (2000 lb)" + }, + { + "@id": "https://unitsml.org/unit/NISTu262", + "name": "atomic unit of force" + }, + { + "@id": "https://unitsml.org/unit/NISTu71", + "name": "dyne" + }, + { + "@id": "https://unitsml.org/unit/NISTu72", + "name": "kilogram-force" + }, + { + "@id": "https://unitsml.org/unit/NISTu73", + "name": "kilopond" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:gravitational_constant", + "@type": "Quantity", + "name": "gravitational constant", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq130" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:gravitational_constant" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd62", + "expression": "L3Β·M-1Β·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu11.u1e2/1.u27p10'3e-2/1", + "name": "newton meter squared per kilogram squared" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:momentum", + "@type": "Quantity", + "name": "momentum", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq131" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:momentum" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd61", + "expression": "LΒ·MΒ·T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu255", + "name": "atomic unit of momentum" + }, + { + "@id": "https://unitsml.org/unit/NISTu27p10'3.u1.u3e-1/1", + "name": "kilogram meter per second" + }, + { + "@id": "https://unitsml.org/unit/NISTu296", + "name": "natural unit of momentum" + }, + { + "@id": "https://unitsml.org/unit/NISTu299", + "name": "natural unit of momentum in MeV/c" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:moment_of_momentum", + "@type": "Quantity", + "name": "moment of momentum", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq132" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:moment_of_momentum" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd60", + "expression": "L2Β·MΒ·T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu27p10'3.u1e2/1.u3e-1/1", + "name": "kilogram meter squared per second" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:angular_impulse", + "@type": "Quantity", + "name": "angular impulse", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq133" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:angular_impulse" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd60", + "expression": "L2Β·MΒ·T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu11.u1.u3", + "name": "newton meter second" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:normal_stress", + "@type": "Quantity", + "name": "normal stress", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq134" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:normal_stress" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu12", + "name": "pascal" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:shear_stress", + "@type": "Quantity", + "name": "shear stress", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq135" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:shear_stress" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu12", + "name": "pascal" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:linear_strain", + "@type": "Quantity", + "name": "linear strain", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq136" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:linear_strain" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd80", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu61", + "name": "one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:shear_strain", + "@type": "Quantity", + "name": "shear strain", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq137" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:shear_strain" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd80", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu61", + "name": "one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:volume_strain", + "@type": "Quantity", + "name": "volume strain", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq138" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:volume_strain" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd80", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu61", + "name": "one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:compressibility", + "@type": "Quantity", + "name": "compressibility", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq139" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:compressibility" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd63", + "expression": "LΒ·M-1Β·T2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu12e-1/1", + "name": "pascal to the power minus one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:magnetic_flux_density", + "@type": "Quantity", + "name": "magnetic flux density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq14" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:magnetic_flux_density" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd13", + "expression": "MΒ·T-2Β·I-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu116", + "name": "gamma" + }, + { + "@id": "https://unitsml.org/unit/NISTu119", + "name": "gauss" + }, + { + "@id": "https://unitsml.org/unit/NISTu21", + "name": "tesla" + }, + { + "@id": "https://unitsml.org/unit/NISTu253", + "name": "atomic unit of magnetic flux density" + }, + { + "@id": "https://unitsml.org/unit/NISTu273", + "name": "stattesla" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:poisson_number", + "@type": "Quantity", + "name": "Poisson number", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq140" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:poisson_number" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd80", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu61", + "name": "one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:modulus_of_elasticity", + "@type": "Quantity", + "name": "modulus of elasticity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq141" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:modulus_of_elasticity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu12", + "name": "pascal" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:modulus_of_rigidity", + "@type": "Quantity", + "name": "modulus of rigidity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq142" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:modulus_of_rigidity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu12", + "name": "pascal" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:modulus_of_compression", + "@type": "Quantity", + "name": "modulus of compression", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq143" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:modulus_of_compression" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu12", + "name": "pascal" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:second_axial_moment_of_area", + "@type": "Quantity", + "name": "second axial moment of area", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq144" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:second_axial_moment_of_area" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd57", + "expression": "L4" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu185", + "name": "meter to the power four" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:second_polar_moment_of_area", + "@type": "Quantity", + "name": "second polar moment of area", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq145" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:second_polar_moment_of_area" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd57", + "expression": "L4" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu185", + "name": "meter to the power four" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:section_modulus", + "@type": "Quantity", + "name": "section modulus", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq146" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:section_modulus" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1e3/1", + "name": "cubic meter" + }, + { + "@id": "https://unitsml.org/unit/NISTu209", + "name": "inch cubed" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:dynamic_friction_factor", + "@type": "Quantity", + "name": "dynamic friction factor", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq147" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:dynamic_friction_factor" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd80", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu61", + "name": "one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:pressure", + "@type": "Quantity", + "name": "pressure", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq15" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:pressure" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu12", + "name": "pascal" + }, + { + "@id": "https://unitsml.org/unit/NISTu134", + "name": "standard atmosphere" + }, + { + "@id": "https://unitsml.org/unit/NISTu135", + "name": "technical atmosphere" + }, + { + "@id": "https://unitsml.org/unit/NISTu156", + "name": "conventional millimeter of mercury" + }, + { + "@id": "https://unitsml.org/unit/NISTu207", + "name": "pound-force per square inch" + }, + { + "@id": "https://unitsml.org/unit/NISTu214", + "name": "torr" + }, + { + "@id": "https://unitsml.org/unit/NISTu215", + "name": "conventional millimeter of water" + }, + { + "@id": "https://unitsml.org/unit/NISTu239", + "name": "barye" + }, + { + "@id": "https://unitsml.org/unit/NISTu318", + "name": "conventional centimeter of mercury" + }, + { + "@id": "https://unitsml.org/unit/NISTu319", + "name": "centimeter of mercury (0 degC)" + }, + { + "@id": "https://unitsml.org/unit/NISTu320", + "name": "centimeter of water (4 degC)" + }, + { + "@id": "https://unitsml.org/unit/NISTu321", + "name": "conventional centimeter of water" + }, + { + "@id": "https://unitsml.org/unit/NISTu322", + "name": "conventional inch of water" + }, + { + "@id": "https://unitsml.org/unit/NISTu323", + "name": "inch of water (39.2 degF)" + }, + { + "@id": "https://unitsml.org/unit/NISTu324", + "name": "inch of water (60 degF)" + }, + { + "@id": "https://unitsml.org/unit/NISTu325", + "name": "conventional foot of water" + }, + { + "@id": "https://unitsml.org/unit/NISTu326", + "name": "foot of water (39.2 degF)" + }, + { + "@id": "https://unitsml.org/unit/NISTu327", + "name": "inch of mercury (32 degF)" + }, + { + "@id": "https://unitsml.org/unit/NISTu328", + "name": "inch of mercury (60 degF)" + }, + { + "@id": "https://unitsml.org/unit/NISTu329", + "name": "conventional inch of mercury" + }, + { + "@id": "https://unitsml.org/unit/NISTu330", + "name": "conventional foot of mercury" + }, + { + "@id": "https://unitsml.org/unit/NISTu362", + "name": "millibar" + }, + { + "@id": "https://unitsml.org/unit/NISTu91", + "name": "bar" + }, + { + "@id": "https://unitsml.org/unit/NISTu92", + "name": "dyne per square centimeter" + }, + { + "@id": "https://unitsml.org/unit/NISTu93", + "name": "gram-force per square centimeter" + }, + { + "@id": "https://unitsml.org/unit/NISTu94", + "name": "kilogram-force per square centimeter" + }, + { + "@id": "https://unitsml.org/unit/NISTu95", + "name": "kilogram-force per square meter" + }, + { + "@id": "https://unitsml.org/unit/NISTu96", + "name": "kilogram-force per square millimeter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:mass_flow_rate", + "@type": "Quantity", + "name": "mass flow rate", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq150" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:mass_flow_rate" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd65", + "expression": "MΒ·T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu27p10'3.u3e-1/1", + "name": "kilogram per second" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:volume_flow_rate", + "@type": "Quantity", + "name": "volume flow rate", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq151" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:volume_flow_rate" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd66", + "expression": "L3Β·T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1e3/1.u3e-1/1", + "name": "cubic meter per second" + }, + { + "@id": "https://unitsml.org/unit/NISTu358", + "name": "cubic foot per minute" + }, + { + "@id": "https://unitsml.org/unit/NISTu359", + "name": "cubic foot per second" + }, + { + "@id": "https://unitsml.org/unit/NISTu360", + "name": "cubic inch per minute" + }, + { + "@id": "https://unitsml.org/unit/NISTu364", + "name": "gallon (US) per minute" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:lagrange_function", + "@type": "Quantity", + "name": "Lagrange function", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq152" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:lagrange_function" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu13", + "name": "joule" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:hamilton_function", + "@type": "Quantity", + "name": "Hamilton function", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq153" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:hamilton_function" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu13", + "name": "joule" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:action", + "@type": "Quantity", + "name": "action", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq154" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:action" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd60", + "expression": "L2Β·MΒ·T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu13.u3", + "name": "joule second" + }, + { + "@id": "https://unitsml.org/unit/NISTu243", + "name": "natural unit of action" + }, + { + "@id": "https://unitsml.org/unit/NISTu248", + "name": "atomic unit of action" + }, + { + "@id": "https://unitsml.org/unit/NISTu297", + "name": "natural unit of action in eV s" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:area_moment_of_inertia", + "@type": "Quantity", + "name": "area moment of inertia", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq155" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:area_moment_of_inertia" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd57", + "expression": "L4" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu208", + "name": "inch to the fourth power" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:linear_expansion_coefficient", + "@type": "Quantity", + "name": "linear expansion coefficient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq156" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:linear_expansion_coefficient" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd68", + "expression": "Theta-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu5e-1/1", + "name": "kelvin to the power minus one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:cubic_expansion_coefficient", + "@type": "Quantity", + "name": "cubic expansion coefficient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq157" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:cubic_expansion_coefficient" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd68", + "expression": "Theta-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu5e-1/1", + "name": "kelvin to the power minus one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:relative_pressure_coefficient", + "@type": "Quantity", + "name": "relative pressure coefficient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq158" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:relative_pressure_coefficient" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd68", + "expression": "Theta-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu5e-1/1", + "name": "kelvin to the power minus one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:pressure_coefficient", + "@type": "Quantity", + "name": "pressure coefficient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq159" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:pressure_coefficient" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd69", + "expression": "L-1Β·MΒ·T-2Β·Theta-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu12.u5e-1/1", + "name": "pascal per kelvin" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:stress", + "@type": "Quantity", + "name": "stress", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq16" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:stress" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu12", + "name": "pascal" + }, + { + "@id": "https://unitsml.org/unit/NISTu134", + "name": "standard atmosphere" + }, + { + "@id": "https://unitsml.org/unit/NISTu135", + "name": "technical atmosphere" + }, + { + "@id": "https://unitsml.org/unit/NISTu156", + "name": "conventional millimeter of mercury" + }, + { + "@id": "https://unitsml.org/unit/NISTu318", + "name": "conventional centimeter of mercury" + }, + { + "@id": "https://unitsml.org/unit/NISTu319", + "name": "centimeter of mercury (0 degC)" + }, + { + "@id": "https://unitsml.org/unit/NISTu320", + "name": "centimeter of water (4 degC)" + }, + { + "@id": "https://unitsml.org/unit/NISTu321", + "name": "conventional centimeter of water" + }, + { + "@id": "https://unitsml.org/unit/NISTu322", + "name": "conventional inch of water" + }, + { + "@id": "https://unitsml.org/unit/NISTu323", + "name": "inch of water (39.2 degF)" + }, + { + "@id": "https://unitsml.org/unit/NISTu324", + "name": "inch of water (60 degF)" + }, + { + "@id": "https://unitsml.org/unit/NISTu325", + "name": "conventional foot of water" + }, + { + "@id": "https://unitsml.org/unit/NISTu326", + "name": "foot of water (39.2 degF)" + }, + { + "@id": "https://unitsml.org/unit/NISTu327", + "name": "inch of mercury (32 degF)" + }, + { + "@id": "https://unitsml.org/unit/NISTu328", + "name": "inch of mercury (60 degF)" + }, + { + "@id": "https://unitsml.org/unit/NISTu329", + "name": "conventional inch of mercury" + }, + { + "@id": "https://unitsml.org/unit/NISTu330", + "name": "conventional foot of mercury" + }, + { + "@id": "https://unitsml.org/unit/NISTu362", + "name": "millibar" + }, + { + "@id": "https://unitsml.org/unit/NISTu91", + "name": "bar" + }, + { + "@id": "https://unitsml.org/unit/NISTu92", + "name": "dyne per square centimeter" + }, + { + "@id": "https://unitsml.org/unit/NISTu93", + "name": "gram-force per square centimeter" + }, + { + "@id": "https://unitsml.org/unit/NISTu94", + "name": "kilogram-force per square centimeter" + }, + { + "@id": "https://unitsml.org/unit/NISTu95", + "name": "kilogram-force per square meter" + }, + { + "@id": "https://unitsml.org/unit/NISTu96", + "name": "kilogram-force per square millimeter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:isothermal_compressibility", + "@type": "Quantity", + "name": "isothermal compressibility", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq160" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:isothermal_compressibility" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd70", + "expression": "LΒ·M-1Β·T2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu12e-1/1", + "name": "pascal to the power minus one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:magnetomotive_force", + "@type": "Quantity", + "name": "magnetomotive force (Cardelli) (-SP811)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq161" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:magnetomotive_force" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd4", + "expression": "I" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu223", + "name": "gilbert" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:electric_dipole_moment", + "@type": "Quantity", + "name": "electric dipole moment", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq162" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_dipole_moment" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd72", + "expression": "LΒ·TΒ·I" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu224", + "name": "debye" + }, + { + "@id": "https://unitsml.org/unit/NISTu258", + "name": "atomic unit of electric dipole moment" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:magnetizability", + "@type": "Quantity", + "name": "magnetizability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq163" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:magnetizability" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd54", + "expression": "L2Β·MΒ·T2Β·I2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu252", + "name": "atomic unit of magnetizability" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:magnetic_dipole_moment", + "@type": "Quantity", + "name": "magnetic dipole moment", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq164" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:magnetic_dipole_moment" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd73", + "expression": "L2Β·I" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu254", + "name": "atomic unit of magnetic dipole moment" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:electric_field_gradient", + "@type": "Quantity", + "name": "electric field gradient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq165" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_field_gradient" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd74", + "expression": "MΒ·T-3Β·I-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu260", + "name": "atomic unit of electric field gradient" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:electric_potential", + "@type": "Quantity", + "name": "electric potential", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq166" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_potential" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd18", + "expression": "L2Β·MΒ·T-3Β·I-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu261", + "name": "atomic unit of electric potential" + }, + { + "@id": "https://unitsml.org/unit/NISTu268", + "name": "statvolt" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:electric_quadrupole_moment", + "@type": "Quantity", + "name": "electric quadrupole moment", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq167" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_quadrupole_moment" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd75", + "expression": "L2Β·TΒ·I" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu263", + "name": "atomic unit of electric quadrupole moment" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:polarizability", + "@type": "Quantity", + "name": "polarizability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq168" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:polarizability" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd76", + "expression": "MΒ·T4Β·I2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu264", + "name": "atomic unit of electric polarizability" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:electric_capacitance", + "@type": "Quantity", + "name": "electric capacitance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq169" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_capacitance" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd19", + "expression": "L-2Β·M-1Β·T4Β·I2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu266", + "name": "statfarad" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:energy", + "@type": "Quantity", + "name": "energy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq17" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:energy" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu117", + "name": "therm (EC)" + }, + { + "@id": "https://unitsml.org/unit/NISTu126", + "name": "kilogram-force meter" + }, + { + "@id": "https://unitsml.org/unit/NISTu13", + "name": "joule" + }, + { + "@id": "https://unitsml.org/unit/NISTu14.u3", + "name": "watt second" + }, + { + "@id": "https://unitsml.org/unit/NISTu166", + "name": "ton of TNT (energy equivalent)" + }, + { + "@id": "https://unitsml.org/unit/NISTu206", + "name": "foot pound-force" + }, + { + "@id": "https://unitsml.org/unit/NISTu227", + "name": "thermochemical calorie" + }, + { + "@id": "https://unitsml.org/unit/NISTu240", + "name": "electronvolt" + }, + { + "@id": "https://unitsml.org/unit/NISTu250", + "name": "atomic unit of energy" + }, + { + "@id": "https://unitsml.org/unit/NISTu295", + "name": "natural unit of energy" + }, + { + "@id": "https://unitsml.org/unit/NISTu298", + "name": "natural unit of energy in MeV" + }, + { + "@id": "https://unitsml.org/unit/NISTu331", + "name": "therm (US)" + }, + { + "@id": "https://unitsml.org/unit/NISTu60", + "name": "I.T. calorie" + }, + { + "@id": "https://unitsml.org/unit/NISTu62", + "name": "erg" + }, + { + "@id": "https://unitsml.org/unit/NISTu63", + "name": "kilocalorie_IT" + }, + { + "@id": "https://unitsml.org/unit/NISTu64", + "name": "kilocalorie_th" + }, + { + "@id": "https://unitsml.org/unit/NISTu65", + "name": "kilowatt hour" + }, + { + "@id": "https://unitsml.org/unit/NISTu69", + "name": "watt hour" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:electric_current_intensity", + "@type": "Quantity", + "name": "electric current intensity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq170" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_current_intensity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd4", + "expression": "I" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu267", + "name": "statampere" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:electric_inductance", + "@type": "Quantity", + "name": "electric inductance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq171" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_inductance" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd23", + "expression": "L2Β·MΒ·T-2Β·I-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu269", + "name": "stathenry" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:first_hyperpolarizability", + "@type": "Quantity", + "name": "1st hyperpolarizability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq172" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:first_hyperpolarizability" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd77", + "expression": "L-1Β·M-2Β·T7Β·I3" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu291", + "name": "atomic unit of 1st hyperpolarizability" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:second_hyperpolarizability", + "@type": "Quantity", + "name": "2nd hyperpolarizability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq173" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:second_hyperpolarizability" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd78", + "expression": "L-2Β·M-3Β·T10Β·I4" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu292", + "name": "atomic unit of 2nd hyperpolarizability" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:index_of_acidity", + "@type": "Quantity", + "name": "index of acidity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq174" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:index_of_acidity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd94", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu332", + "name": "pH" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:fahrenheit_temperature", + "@type": "Quantity", + "name": "Fahrenheit temperature", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq175" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:fahrenheit_temperature" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd5", + "expression": "Theta" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu133", + "name": "degree Fahrenheit" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:mass_divided_by_length", + "@type": "Quantity", + "name": "mass divided by length", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq176" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:mass_divided_by_length" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd58", + "expression": "L-1Β·M" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu346", + "name": "denier" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:storage_capacity", + "@type": "Quantity", + "name": "storage capacity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq177" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:storage_capacity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd95", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu350", + "name": "bit" + }, + { + "@id": "https://unitsml.org/unit/NISTu351", + "name": "byte" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:molality_of_solute_B", + "@type": "Quantity", + "name": "molality of solute B", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq179" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:molality_of_solute_B" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd79", + "expression": "MΒ·N" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu6.u27p10'3e-1/1", + "name": "mole per kilogram" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:work", + "@type": "Quantity", + "name": "work", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq18" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:work" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu117", + "name": "therm (EC)" + }, + { + "@id": "https://unitsml.org/unit/NISTu126", + "name": "kilogram-force meter" + }, + { + "@id": "https://unitsml.org/unit/NISTu13", + "name": "joule" + }, + { + "@id": "https://unitsml.org/unit/NISTu14.u3", + "name": "watt second" + }, + { + "@id": "https://unitsml.org/unit/NISTu206", + "name": "foot pound-force" + }, + { + "@id": "https://unitsml.org/unit/NISTu227", + "name": "thermochemical calorie" + }, + { + "@id": "https://unitsml.org/unit/NISTu331", + "name": "therm (US)" + }, + { + "@id": "https://unitsml.org/unit/NISTu60", + "name": "I.T. calorie" + }, + { + "@id": "https://unitsml.org/unit/NISTu62", + "name": "erg" + }, + { + "@id": "https://unitsml.org/unit/NISTu63", + "name": "kilocalorie_IT" + }, + { + "@id": "https://unitsml.org/unit/NISTu64", + "name": "kilocalorie_th" + }, + { + "@id": "https://unitsml.org/unit/NISTu65", + "name": "kilowatt hour" + }, + { + "@id": "https://unitsml.org/unit/NISTu69", + "name": "watt hour" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:coefficient_of_heat_transfer", + "@type": "Quantity", + "name": "coefficient of heat transfer", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq180" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:coefficient_of_heat_transfer" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd71", + "expression": "MΒ·T-3Β·Theta-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu221", + "name": "watt per square meter kelvin" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:surface_coefficient_of_heat_transfer", + "@type": "Quantity", + "name": "surface coefficient of heat transfer", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq181" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:surface_coefficient_of_heat_transfer" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd71", + "expression": "MΒ·T-3Β·Theta-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu221", + "name": "watt per square meter kelvin" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:kinetic_energy", + "@type": "Quantity", + "name": "kinetic energy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq182" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:kinetic_energy" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu117", + "name": "therm (EC)" + }, + { + "@id": "https://unitsml.org/unit/NISTu13", + "name": "joule" + }, + { + "@id": "https://unitsml.org/unit/NISTu14.u3", + "name": "watt second" + }, + { + "@id": "https://unitsml.org/unit/NISTu206", + "name": "foot pound-force" + }, + { + "@id": "https://unitsml.org/unit/NISTu227", + "name": "thermochemical calorie" + }, + { + "@id": "https://unitsml.org/unit/NISTu331", + "name": "therm (US)" + }, + { + "@id": "https://unitsml.org/unit/NISTu60", + "name": "I.T. calorie" + }, + { + "@id": "https://unitsml.org/unit/NISTu62", + "name": "erg" + }, + { + "@id": "https://unitsml.org/unit/NISTu63", + "name": "kilocalorie_IT" + }, + { + "@id": "https://unitsml.org/unit/NISTu64", + "name": "kilocalorie_th" + }, + { + "@id": "https://unitsml.org/unit/NISTu65", + "name": "kilowatt hour" + }, + { + "@id": "https://unitsml.org/unit/NISTu69", + "name": "watt hour" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:mechanical_energy", + "@type": "Quantity", + "name": "mechanical energy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq183" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:mechanical_energy" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu117", + "name": "therm (EC)" + }, + { + "@id": "https://unitsml.org/unit/NISTu13", + "name": "joule" + }, + { + "@id": "https://unitsml.org/unit/NISTu14.u3", + "name": "watt second" + }, + { + "@id": "https://unitsml.org/unit/NISTu206", + "name": "foot pound-force" + }, + { + "@id": "https://unitsml.org/unit/NISTu227", + "name": "thermochemical calorie" + }, + { + "@id": "https://unitsml.org/unit/NISTu331", + "name": "therm (US)" + }, + { + "@id": "https://unitsml.org/unit/NISTu60", + "name": "I.T. calorie" + }, + { + "@id": "https://unitsml.org/unit/NISTu62", + "name": "erg" + }, + { + "@id": "https://unitsml.org/unit/NISTu63", + "name": "kilocalorie_IT" + }, + { + "@id": "https://unitsml.org/unit/NISTu64", + "name": "kilocalorie_th" + }, + { + "@id": "https://unitsml.org/unit/NISTu65", + "name": "kilowatt hour" + }, + { + "@id": "https://unitsml.org/unit/NISTu69", + "name": "watt hour" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:torque", + "@type": "Quantity", + "name": "torque", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq184" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:torque" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu11.u1", + "name": "newton meter" + }, + { + "@id": "https://unitsml.org/unit/NISTu126", + "name": "kilogram-force meter" + }, + { + "@id": "https://unitsml.org/unit/NISTu206", + "name": "foot pound-force" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:bending_moment_of_force", + "@type": "Quantity", + "name": "bending moment of force", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq185" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:bending_moment_of_force" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu11.u1", + "name": "newton meter" + }, + { + "@id": "https://unitsml.org/unit/NISTu126", + "name": "kilogram-force meter" + }, + { + "@id": "https://unitsml.org/unit/NISTu206", + "name": "foot pound-force" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:mass_fraction", + "@type": "Quantity", + "name": "mass fraction", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq186" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:mass_fraction" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd85", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu400", + "name": "parts per million" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:apparent_power", + "@type": "Quantity", + "name": "apparent power", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq187" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:apparent_power" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu401", + "name": "var" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:nil", + "@type": "Quantity", + "name": "nil", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq188" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:nil" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd80", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu61", + "name": "one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:emission_rate", + "@type": "Quantity", + "name": "emission rate", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq189" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:emission_rate" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd24", + "expression": "T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu3e-1/1", + "name": "second to the power minus one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:amount_of_heat", + "@type": "Quantity", + "name": "amount of heat", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq19" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:amount_of_heat" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu117", + "name": "therm (EC)" + }, + { + "@id": "https://unitsml.org/unit/NISTu13", + "name": "joule" + }, + { + "@id": "https://unitsml.org/unit/NISTu14.u3", + "name": "watt second" + }, + { + "@id": "https://unitsml.org/unit/NISTu216", + "name": "British thermal unit_th" + }, + { + "@id": "https://unitsml.org/unit/NISTu227", + "name": "thermochemical calorie" + }, + { + "@id": "https://unitsml.org/unit/NISTu331", + "name": "therm (US)" + }, + { + "@id": "https://unitsml.org/unit/NISTu333", + "name": "British thermal unit_IT" + }, + { + "@id": "https://unitsml.org/unit/NISTu334", + "name": "British thermal unit (mean)" + }, + { + "@id": "https://unitsml.org/unit/NISTu335", + "name": "British thermal unit (39 degF)" + }, + { + "@id": "https://unitsml.org/unit/NISTu336", + "name": "British thermal unit (59 degF)" + }, + { + "@id": "https://unitsml.org/unit/NISTu337", + "name": "British thermal unit (60 degF)" + }, + { + "@id": "https://unitsml.org/unit/NISTu60", + "name": "I.T. calorie" + }, + { + "@id": "https://unitsml.org/unit/NISTu62", + "name": "erg" + }, + { + "@id": "https://unitsml.org/unit/NISTu63", + "name": "kilocalorie_IT" + }, + { + "@id": "https://unitsml.org/unit/NISTu64", + "name": "kilocalorie_th" + }, + { + "@id": "https://unitsml.org/unit/NISTu65", + "name": "kilowatt hour" + }, + { + "@id": "https://unitsml.org/unit/NISTu69", + "name": "watt hour" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:fluence", + "@type": "Quantity", + "name": "fluence", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq190" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:fluence" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd96", + "expression": "L-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1e-2/1", + "name": "meter to the power minus two" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:fluence_rate", + "@type": "Quantity", + "name": "fluence rate", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq191" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:fluence_rate" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd97", + "expression": "L-2Β·T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1e-2/1.u3e-1/1", + "name": "meter to the power minus two per second" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:ITS-90_temperature_celsius", + "@type": "Quantity", + "name": "ITS-90 temperature (Β°C)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq192" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:ITS-90_temperature_celsius" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd5", + "expression": "Theta" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu23", + "name": "degree Celsius" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:ITS-90_temperature_kelvin", + "@type": "Quantity", + "name": "ITS-90 temperature (K)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq193" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:ITS-90_temperature_kelvin" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd5", + "expression": "Theta" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu5", + "name": "kelvin" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:kerma_rate", + "@type": "Quantity", + "name": "kerma rate", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq194" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:kerma_rate" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd50", + "expression": "L2Β·T-3" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu28.u3e-1/1", + "name": "gray per second" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:phase", + "@type": "Quantity", + "name": "phase", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq195" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:phase" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd98", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu9", + "name": "radian" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:PLTS-2000_temperature", + "@type": "Quantity", + "name": "PLTS-2000 temperature (K)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq196" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:PLTS-2000_temperature" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd5", + "expression": "Theta" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu5", + "name": "kelvin" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:exposure", + "@type": "Quantity", + "name": "exposure", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq197" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:exposure" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd49", + "expression": "M-1Β·TΒ·I" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu15.u27p10'3e-1/1", + "name": "coulomb per kilogram" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:fuel_efficiency", + "@type": "Quantity", + "name": "fuel efficiency", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq198" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:fuel_efficiency" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd99", + "expression": "L-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu363", + "name": "mile per gallon (US)" + }, + { + "@id": "https://unitsml.org/unit/NISTu380", + "name": "kilometer per liter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:relative_humidity", + "@type": "Quantity", + "name": "relative humidity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq199" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:relative_humidity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd80", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu382", + "name": "relative humidity" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:mass", + "@type": "Quantity", + "name": "mass", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq2" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:mass" + } + ], + "quantityType": "base", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu125", + "name": "kilogram-force second squared per meter" + }, + { + "@id": "https://unitsml.org/unit/NISTu2", + "name": "kilogram" + }, + { + "@id": "https://unitsml.org/unit/NISTu201", + "name": "pound (avoirdupois)" + }, + { + "@id": "https://unitsml.org/unit/NISTu202", + "name": "ounce (avoirdupois)" + }, + { + "@id": "https://unitsml.org/unit/NISTu203", + "name": "hundredweight (long, 112 lb)" + }, + { + "@id": "https://unitsml.org/unit/NISTu212", + "name": "carat" + }, + { + "@id": "https://unitsml.org/unit/NISTu226", + "name": "slug" + }, + { + "@id": "https://unitsml.org/unit/NISTu228", + "name": "short ton" + }, + { + "@id": "https://unitsml.org/unit/NISTu229", + "name": "long ton" + }, + { + "@id": "https://unitsml.org/unit/NISTu230", + "name": "hundredweight (short, 100 lb)" + }, + { + "@id": "https://unitsml.org/unit/NISTu231", + "name": "ounce (troy or apothecary)" + }, + { + "@id": "https://unitsml.org/unit/NISTu232", + "name": "pound (troy or apothecary)" + }, + { + "@id": "https://unitsml.org/unit/NISTu233", + "name": "pennyweight" + }, + { + "@id": "https://unitsml.org/unit/NISTu234", + "name": "dram (apothecary)" + }, + { + "@id": "https://unitsml.org/unit/NISTu235", + "name": "scruple" + }, + { + "@id": "https://unitsml.org/unit/NISTu237", + "name": "kip" + }, + { + "@id": "https://unitsml.org/unit/NISTu241", + "name": "unified atomic mass unit" + }, + { + "@id": "https://unitsml.org/unit/NISTu244", + "name": "natural unit of mass" + }, + { + "@id": "https://unitsml.org/unit/NISTu247", + "name": "atomic unit of mass" + }, + { + "@id": "https://unitsml.org/unit/NISTu27", + "name": "gram" + }, + { + "@id": "https://unitsml.org/unit/NISTu275", + "name": "dram (avoirdupois)" + }, + { + "@id": "https://unitsml.org/unit/NISTu289", + "name": "dalton" + }, + { + "@id": "https://unitsml.org/unit/NISTu309", + "name": "ounce (FDA)" + }, + { + "@id": "https://unitsml.org/unit/NISTu86", + "name": "grain (troy or apothecary)" + }, + { + "@id": "https://unitsml.org/unit/NISTu88", + "name": "tonne" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:power", + "@type": "Quantity", + "name": "power", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq20" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:power" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu127", + "name": "horsepower, electric" + }, + { + "@id": "https://unitsml.org/unit/NISTu14", + "name": "watt" + }, + { + "@id": "https://unitsml.org/unit/NISTu211", + "name": "foot pound-force per second" + }, + { + "@id": "https://unitsml.org/unit/NISTu217", + "name": "kilogram-force meter per second" + }, + { + "@id": "https://unitsml.org/unit/NISTu218", + "name": "horsepower, metric" + }, + { + "@id": "https://unitsml.org/unit/NISTu225", + "name": "abwatt" + }, + { + "@id": "https://unitsml.org/unit/NISTu274", + "name": "statwatt" + }, + { + "@id": "https://unitsml.org/unit/NISTu284", + "name": "horsepower" + }, + { + "@id": "https://unitsml.org/unit/NISTu285", + "name": "horsepower, boiler" + }, + { + "@id": "https://unitsml.org/unit/NISTu286", + "name": "horsepower, water" + }, + { + "@id": "https://unitsml.org/unit/NISTu287", + "name": "horsepower (UK)" + }, + { + "@id": "https://unitsml.org/unit/NISTu349", + "name": "ton of refrigeration (12 000 Btu_IT/h)" + }, + { + "@id": "https://unitsml.org/unit/NISTu74", + "name": "calorie_th per second" + }, + { + "@id": "https://unitsml.org/unit/NISTu75", + "name": "kilocalorie_th per second" + }, + { + "@id": "https://unitsml.org/unit/NISTu89", + "name": "erg per second" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:logarithmic_frequency_range", + "@type": "Quantity", + "name": "logarithmic frequency range", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq200" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:logarithmic_frequency_range" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd67", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu383", + "name": "octave" + }, + { + "@id": "https://unitsml.org/unit/NISTu384", + "name": "decade" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:traffic_intensity", + "@type": "Quantity", + "name": "traffic intensity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq201" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:traffic_intensity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd100", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu385", + "name": "erlang" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:symbol_rate", + "@type": "Quantity", + "name": "symbol rate", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq202" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:symbol_rate" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd101", + "expression": "T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu386", + "name": "baud" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:information_content", + "@type": "Quantity", + "name": "information content", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq203" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:information_content" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd102", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu387", + "name": "shannon" + }, + { + "@id": "https://unitsml.org/unit/NISTu388", + "name": "hartley" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:radiant_flux", + "@type": "Quantity", + "name": "radiant flux", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq21" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:radiant_flux" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu127", + "name": "horsepower, electric" + }, + { + "@id": "https://unitsml.org/unit/NISTu14", + "name": "watt" + }, + { + "@id": "https://unitsml.org/unit/NISTu74", + "name": "calorie_th per second" + }, + { + "@id": "https://unitsml.org/unit/NISTu75", + "name": "kilocalorie_th per second" + }, + { + "@id": "https://unitsml.org/unit/NISTu89", + "name": "erg per second" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:electric_charge", + "@type": "Quantity", + "name": "electric charge", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq22" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_charge" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd17", + "expression": "TΒ·I" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu15", + "name": "coulomb" + }, + { + "@id": "https://unitsml.org/unit/NISTu246", + "name": "atomic unit of charge" + }, + { + "@id": "https://unitsml.org/unit/NISTu271", + "name": "statcoulomb" + }, + { + "@id": "https://unitsml.org/unit/NISTu48", + "name": "abcoulomb" + }, + { + "@id": "https://unitsml.org/unit/NISTu54", + "name": "ampere hour" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:amount_of_electricity", + "@type": "Quantity", + "name": "amount of electricity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq23" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:amount_of_electricity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd17", + "expression": "TΒ·I" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu15", + "name": "coulomb" + }, + { + "@id": "https://unitsml.org/unit/NISTu271", + "name": "statcoulomb" + }, + { + "@id": "https://unitsml.org/unit/NISTu48", + "name": "abcoulomb" + }, + { + "@id": "https://unitsml.org/unit/NISTu54", + "name": "ampere hour" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:electric_potential_difference", + "@type": "Quantity", + "name": "electric potential difference", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq24" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_potential_difference" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd18", + "expression": "L2Β·MΒ·T-3Β·I-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu16", + "name": "volt" + }, + { + "@id": "https://unitsml.org/unit/NISTu261", + "name": "atomic unit of electric potential" + }, + { + "@id": "https://unitsml.org/unit/NISTu268", + "name": "statvolt" + }, + { + "@id": "https://unitsml.org/unit/NISTu53", + "name": "abvolt" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:potential_difference", + "@type": "Quantity", + "name": "potential difference", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq25" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:potential_difference" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd18", + "expression": "L2Β·MΒ·T-3Β·I-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu16", + "name": "volt" + }, + { + "@id": "https://unitsml.org/unit/NISTu53", + "name": "abvolt" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:electromotive_force", + "@type": "Quantity", + "name": "electromotive force", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq26" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electromotive_force" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd18", + "expression": "L2Β·MΒ·T-3Β·I-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu16", + "name": "volt" + }, + { + "@id": "https://unitsml.org/unit/NISTu261", + "name": "atomic unit of electric potential" + }, + { + "@id": "https://unitsml.org/unit/NISTu268", + "name": "statvolt" + }, + { + "@id": "https://unitsml.org/unit/NISTu53", + "name": "abvolt" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:capacitance", + "@type": "Quantity", + "name": "capacitance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq27" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:capacitance" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd19", + "expression": "L-2Β·M-1Β·T4Β·I2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu17", + "name": "farad" + }, + { + "@id": "https://unitsml.org/unit/NISTu49", + "name": "abfarad" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:electric_resistance", + "@type": "Quantity", + "name": "electric resistance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq28" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_resistance" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd20", + "expression": "L2Β·MΒ·T-3Β·I-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu18", + "name": "ohm" + }, + { + "@id": "https://unitsml.org/unit/NISTu265", + "name": "statohm" + }, + { + "@id": "https://unitsml.org/unit/NISTu52", + "name": "abohm" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:electric_conductance", + "@type": "Quantity", + "name": "electric conductance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq29" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_conductance" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd21", + "expression": "L-2Β·M-1Β·T3Β·I2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu19", + "name": "siemens" + }, + { + "@id": "https://unitsml.org/unit/NISTu270", + "name": "statmho" + }, + { + "@id": "https://unitsml.org/unit/NISTu51", + "name": "abmho" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:time", + "@type": "Quantity", + "name": "time", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq3" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:time" + } + ], + "quantityType": "base", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd3", + "expression": "T" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu106", + "name": "year (365 days)" + }, + { + "@id": "https://unitsml.org/unit/NISTu245", + "name": "natural unit of time" + }, + { + "@id": "https://unitsml.org/unit/NISTu251", + "name": "atomic unit of time" + }, + { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second" + }, + { + "@id": "https://unitsml.org/unit/NISTu338", + "name": "year, tropical" + }, + { + "@id": "https://unitsml.org/unit/NISTu339", + "name": "year, sidereal" + }, + { + "@id": "https://unitsml.org/unit/NISTu340", + "name": "day, sidereal" + }, + { + "@id": "https://unitsml.org/unit/NISTu341", + "name": "hour, sidereal" + }, + { + "@id": "https://unitsml.org/unit/NISTu342", + "name": "minute, sidereal" + }, + { + "@id": "https://unitsml.org/unit/NISTu343", + "name": "second, sidereal" + }, + { + "@id": "https://unitsml.org/unit/NISTu345", + "name": "shake" + }, + { + "@id": "https://unitsml.org/unit/NISTu36", + "name": "minute" + }, + { + "@id": "https://unitsml.org/unit/NISTu37", + "name": "hour" + }, + { + "@id": "https://unitsml.org/unit/NISTu38", + "name": "day" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:magnetic_flux", + "@type": "Quantity", + "name": "magnetic flux", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq30" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:magnetic_flux" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd22", + "expression": "L2Β·MΒ·T-2Β·I-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu20", + "name": "weber" + }, + { + "@id": "https://unitsml.org/unit/NISTu272", + "name": "statweber" + }, + { + "@id": "https://unitsml.org/unit/NISTu58", + "name": "maxwell" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:surface_density", + "@type": "Quantity", + "name": "surface density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq31" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:surface_density" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd51", + "expression": "L-2Β·M" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu27p10'3.u1e-2/1", + "name": "kilogram per square meter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:inductance", + "@type": "Quantity", + "name": "inductance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq32" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:inductance" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd23", + "expression": "L2Β·MΒ·T-2Β·I-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu22", + "name": "henry" + }, + { + "@id": "https://unitsml.org/unit/NISTu50", + "name": "abhenry" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:mass_concentration", + "@type": "Quantity", + "name": "mass concentration", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq33" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:mass_concentration" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd30", + "expression": "L-3Β·M" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu27p10'3.u1e-3/1", + "name": "kilogram per cubic meter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:celsius_temperature", + "@type": "Quantity", + "name": "Celsius temperature", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq34" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:celsius_temperature" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd5", + "expression": "Theta" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu23", + "name": "degree Celsius" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:activity_referred_to_a_radionuclide", + "@type": "Quantity", + "name": "activity referred to a radionuclide", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq35" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:activity_referred_to_a_radionuclide" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd24", + "expression": "T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu25", + "name": "becquerel" + }, + { + "@id": "https://unitsml.org/unit/NISTu98", + "name": "curie" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:absorbed_dose", + "@type": "Quantity", + "name": "absorbed dose", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq36" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:absorbed_dose" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd25", + "expression": "L2Β·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu28", + "name": "gray" + }, + { + "@id": "https://unitsml.org/unit/NISTu99", + "name": "rad (absorbed dose)" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:specific_energy_imparted", + "@type": "Quantity", + "name": "specific energy imparted", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq37" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:specific_energy_imparted" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd25", + "expression": "L2Β·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu28", + "name": "gray" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:kerma", + "@type": "Quantity", + "name": "kerma", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq38" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:kerma" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd25", + "expression": "L2Β·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu28", + "name": "gray" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:dose_equivalent", + "@type": "Quantity", + "name": "dose equivalent", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq39" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:dose_equivalent" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd25", + "expression": "L2Β·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu100", + "name": "rem" + }, + { + "@id": "https://unitsml.org/unit/NISTu29", + "name": "sievert" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:electric_current", + "@type": "Quantity", + "name": "electric current", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq4" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_current" + } + ], + "quantityType": "base", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd4", + "expression": "I" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu257", + "name": "atomic unit of current" + }, + { + "@id": "https://unitsml.org/unit/NISTu4", + "name": "ampere" + }, + { + "@id": "https://unitsml.org/unit/NISTu47", + "name": "abampere" + }, + { + "@id": "https://unitsml.org/unit/NISTu55", + "name": "biot" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:ambient_dose_equivalent", + "@type": "Quantity", + "name": "ambient dose equivalent", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq40" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:ambient_dose_equivalent" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd25", + "expression": "L2Β·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:directional_dose_equivalent", + "@type": "Quantity", + "name": "directional dose equivalent", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq41" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:directional_dose_equivalent" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd25", + "expression": "L2Β·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:personal_dose_equivalent", + "@type": "Quantity", + "name": "personal dose equivalent", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq42" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:personal_dose_equivalent" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd25", + "expression": "L2Β·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:organ_dose_equivalent", + "@type": "Quantity", + "name": "organ dose equivalent", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq43" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:organ_dose_equivalent" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd25", + "expression": "L2Β·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:catalytic_activity", + "@type": "Quantity", + "name": "catalytic activity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq44" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:catalytic_activity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd26", + "expression": "T-1Β·N" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu30", + "name": "katal" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:frequency", + "@type": "Quantity", + "name": "frequency", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq45" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:frequency" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd24", + "expression": "T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu31", + "name": "hertz" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:luminous_flux", + "@type": "Quantity", + "name": "luminous flux", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq46" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:luminous_flux" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd7", + "expression": "J" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu32", + "name": "lumen" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:illuminance", + "@type": "Quantity", + "name": "illuminance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq47" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:illuminance" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd27", + "expression": "L-2Β·J" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu276", + "name": "footcandle" + }, + { + "@id": "https://unitsml.org/unit/NISTu33", + "name": "lux" + }, + { + "@id": "https://unitsml.org/unit/NISTu85", + "name": "phot" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:distance", + "@type": "Quantity", + "name": "distance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq48" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:distance" + } + ], + "quantityType": "base", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre" + }, + { + "@id": "https://unitsml.org/unit/NISTu122", + "name": "micron" + }, + { + "@id": "https://unitsml.org/unit/NISTu123", + "name": "mil (length)" + }, + { + "@id": "https://unitsml.org/unit/NISTu131", + "name": "nautical mile" + }, + { + "@id": "https://unitsml.org/unit/NISTu26", + "name": "fermi" + }, + { + "@id": "https://unitsml.org/unit/NISTu278", + "name": "pica (computer)" + }, + { + "@id": "https://unitsml.org/unit/NISTu280", + "name": "point (computer)" + }, + { + "@id": "https://unitsml.org/unit/NISTu39", + "name": "Γ₯ngstrΓΆm" + }, + { + "@id": "https://unitsml.org/unit/NISTu78", + "name": "foot" + }, + { + "@id": "https://unitsml.org/unit/NISTu8", + "name": "inch" + }, + { + "@id": "https://unitsml.org/unit/NISTu83", + "name": "mile" + }, + { + "@id": "https://unitsml.org/unit/NISTu84", + "name": "yard" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:acceleration", + "@type": "Quantity", + "name": "acceleration", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq49" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:acceleration" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd28", + "expression": "LΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1.u3e-2/1", + "name": "meter per second squared" + }, + { + "@id": "https://unitsml.org/unit/NISTu143", + "name": "gal" + }, + { + "@id": "https://unitsml.org/unit/NISTu167", + "name": "foot per second squared" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:temperature", + "@type": "Quantity", + "name": "thermodynamic temperature", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq5" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:temperature" + } + ], + "quantityType": "base", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd5", + "expression": "Theta" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu288", + "name": "degree Rankine" + }, + { + "@id": "https://unitsml.org/unit/NISTu5", + "name": "kelvin" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:wavenumber", + "@type": "Quantity", + "name": "wavenumber", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq50" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:wavenumber" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd29", + "expression": "L-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu120", + "name": "kayser" + }, + { + "@id": "https://unitsml.org/unit/NISTu1e-1/1", + "name": "meter to the power minus one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:density", + "@type": "Quantity", + "name": "density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq51" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:density" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd30", + "expression": "L-3Β·M" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu188", + "name": "kilogram per liter" + }, + { + "@id": "https://unitsml.org/unit/NISTu189", + "name": "metric ton per cubic meter" + }, + { + "@id": "https://unitsml.org/unit/NISTu204", + "name": "pound per cubic foot" + }, + { + "@id": "https://unitsml.org/unit/NISTu27p10'3.u1e-3/1", + "name": "kilogram per cubic meter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:specific_volume", + "@type": "Quantity", + "name": "specific volume", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq52" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:specific_volume" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd31", + "expression": "L3Β·M-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1e3/1.u27p10'3", + "name": "cubic meter per kilogram" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:current_density", + "@type": "Quantity", + "name": "current density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq53" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:current_density" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd32", + "expression": "L-2Β·I" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu4.u1e-2/1", + "name": "ampere per square meter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:magnetic_field_strength", + "@type": "Quantity", + "name": "magnetic field strength", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq54" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:magnetic_field_strength" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd33", + "expression": "L-1Β·I" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu4.u1e-1/1", + "name": "ampere per meter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:amount_concentration", + "@type": "Quantity", + "name": "amount of substance concentration", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq55" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:amount_concentration" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd34", + "expression": "L-3Β·N" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu366", + "name": "mole per liter" + }, + { + "@id": "https://unitsml.org/unit/NISTu6.u1e-3/1", + "name": "mole per cubic meter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:luminance", + "@type": "Quantity", + "name": "luminance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq56" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:luminance" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd27", + "expression": "L-2Β·J" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu124", + "name": "stilb" + }, + { + "@id": "https://unitsml.org/unit/NISTu222", + "name": "lambert" + }, + { + "@id": "https://unitsml.org/unit/NISTu277", + "name": "footlambert" + }, + { + "@id": "https://unitsml.org/unit/NISTu7.u1e-2/1", + "name": "candela per square meter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:angular_velocity", + "@type": "Quantity", + "name": "angular velocity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq57" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:angular_velocity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd11", + "expression": "LΒ·T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu9.u3e-1/1", + "name": "radian per second" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:angular_acceleration", + "@type": "Quantity", + "name": "angular acceleration", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq58" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:angular_acceleration" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd35", + "expression": "T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu9.u3e-2/1", + "name": "radian per second squared" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:dynamic_viscosity", + "@type": "Quantity", + "name": "dynamic viscosity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq59" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:dynamic_viscosity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd36", + "expression": "L-1Β·MΒ·T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu12.u3", + "name": "pascal second" + }, + { + "@id": "https://unitsml.org/unit/NISTu128", + "name": "poise" + }, + { + "@id": "https://unitsml.org/unit/NISTu97", + "name": "centipoise" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:substance_amount", + "@type": "Quantity", + "name": "amount of substance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq6" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:substance_amount" + } + ], + "quantityType": "base", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd6", + "expression": "N" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu348", + "name": "pound-mole" + }, + { + "@id": "https://unitsml.org/unit/NISTu6", + "name": "mole" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:moment_of_force", + "@type": "Quantity", + "name": "moment of force", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq60" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:moment_of_force" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu11.u1", + "name": "newton meter" + }, + { + "@id": "https://unitsml.org/unit/NISTu126", + "name": "kilogram-force meter" + }, + { + "@id": "https://unitsml.org/unit/NISTu206", + "name": "foot pound-force" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:surface_tension", + "@type": "Quantity", + "name": "surface tension", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq61" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:surface_tension" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd37", + "expression": "MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu11.u1e-1/1", + "name": "newton per meter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:heat_flux_density", + "@type": "Quantity", + "name": "heat flux density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq62" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:heat_flux_density" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd38", + "expression": "MΒ·T-3" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu14.u1e-2/1", + "name": "watt per square meter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:heat_capacity", + "@type": "Quantity", + "name": "heat capacity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq63" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:heat_capacity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd39", + "expression": "L2Β·MΒ·T-2Β·Theta-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu13.u5e-1/1", + "name": "joule per kelvin" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:specific_heat_capacity", + "@type": "Quantity", + "name": "specific heat capacity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq64" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:specific_heat_capacity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd40", + "expression": "L2Β·T-2Β·Theta-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu13.u27p10'3e-1/1.u5e-1/1", + "name": "joule per kilogram kelvin" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:specific_energy", + "@type": "Quantity", + "name": "specific energy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq65" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:specific_energy" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd25", + "expression": "L2Β·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu13.u27p10'3e-1/1", + "name": "joule per kilogram" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:thermal_conductivity", + "@type": "Quantity", + "name": "thermal conductivity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq66" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:thermal_conductivity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd41", + "expression": "LΒ·MΒ·T-3Β·Theta-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu14.u1e-1/1.u5e-1/1", + "name": "watt per meter kelvin" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:energy_density", + "@type": "Quantity", + "name": "energy density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq67" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:energy_density" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu13.u1e-3/1", + "name": "joule per cubic meter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:electric_field_strength", + "@type": "Quantity", + "name": "electric field strength", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq68" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_field_strength" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd42", + "expression": "LΒ·MΒ·T-3Β·I-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu16.u1e-1/1", + "name": "volt per meter" + }, + { + "@id": "https://unitsml.org/unit/NISTu259", + "name": "atomic unit of electric field" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:electric_charge_density", + "@type": "Quantity", + "name": "electric charge density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq69" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_charge_density" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd43", + "expression": "L-3Β·TΒ·I" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu15.u1e-3/1", + "name": "coulomb per cubic meter" + }, + { + "@id": "https://unitsml.org/unit/NISTu256", + "name": "atomic unit of charge density" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:luminous_intensity", + "@type": "Quantity", + "name": "luminous intensity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq7" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:luminous_intensity" + } + ], + "quantityType": "base", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd7", + "expression": "J" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu7", + "name": "candela" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:electric_flux_density", + "@type": "Quantity", + "name": "electric flux density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq70" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_flux_density" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd44", + "expression": "L-2Β·TΒ·I" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:permittivity", + "@type": "Quantity", + "name": "permittivity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq71" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:permittivity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd45", + "expression": "L-3Β·M-1Β·T4Β·I2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu17.u1e-1/1", + "name": "farad per meter" + }, + { + "@id": "https://unitsml.org/unit/NISTu293", + "name": "atomic unit of permittivity" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:permeability", + "@type": "Quantity", + "name": "permeability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq72" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:permeability" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd46", + "expression": "LΒ·MΒ·T-2Β·I-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu157", + "name": "darcy" + }, + { + "@id": "https://unitsml.org/unit/NISTu22.u1e-1/1", + "name": "henry per meter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:molar_energy", + "@type": "Quantity", + "name": "molar energy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq73" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:molar_energy" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd47", + "expression": "L2Β·MΒ·T-2Β·N-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu13.u6e-1/1", + "name": "joule per mole" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:molar_entropy", + "@type": "Quantity", + "name": "molar entropy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq74" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:molar_entropy" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd48", + "expression": "L2Β·MΒ·T-2Β·Theta-1Β·N-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu13.u6e-1/1.u5e-1/1", + "name": "joule per mole kelvin" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:exposure_x_and_gamma_rays", + "@type": "Quantity", + "name": "exposure (x and gamma rays)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq75" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:exposure_x_and_gamma_rays" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd49", + "expression": "M-1Β·TΒ·I" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu118", + "name": "roentgen" + }, + { + "@id": "https://unitsml.org/unit/NISTu15.u27p10'3e-1/1", + "name": "coulomb per kilogram" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:absorbed_dose_rate", + "@type": "Quantity", + "name": "absorbed dose rate", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq76" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:absorbed_dose_rate" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd50", + "expression": "L2Β·T-3" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu28.u3e-1/1", + "name": "gray per second" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:potential_energy", + "@type": "Quantity", + "name": "potential energy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq77" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:potential_energy" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu117", + "name": "therm (EC)" + }, + { + "@id": "https://unitsml.org/unit/NISTu13", + "name": "joule" + }, + { + "@id": "https://unitsml.org/unit/NISTu14.u3", + "name": "watt second" + }, + { + "@id": "https://unitsml.org/unit/NISTu206", + "name": "foot pound-force" + }, + { + "@id": "https://unitsml.org/unit/NISTu227", + "name": "thermochemical calorie" + }, + { + "@id": "https://unitsml.org/unit/NISTu331", + "name": "therm (US)" + }, + { + "@id": "https://unitsml.org/unit/NISTu60", + "name": "I.T. calorie" + }, + { + "@id": "https://unitsml.org/unit/NISTu62", + "name": "erg" + }, + { + "@id": "https://unitsml.org/unit/NISTu63", + "name": "kilocalorie_IT" + }, + { + "@id": "https://unitsml.org/unit/NISTu64", + "name": "kilocalorie_th" + }, + { + "@id": "https://unitsml.org/unit/NISTu65", + "name": "kilowatt hour" + }, + { + "@id": "https://unitsml.org/unit/NISTu69", + "name": "watt hour" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:irradiance", + "@type": "Quantity", + "name": "irradiance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq78" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:irradiance" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd38", + "expression": "MΒ·T-3" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu14.u1e-2/1", + "name": "watt per square meter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:entropy", + "@type": "Quantity", + "name": "entropy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq79" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:entropy" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd39", + "expression": "L2Β·MΒ·T-2Β·Theta-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu13.u5e-1/1", + "name": "joule per kelvin" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:area", + "@type": "Quantity", + "name": "area", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq8" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:area" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd8", + "expression": "L2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu164", + "name": "square yard" + }, + { + "@id": "https://unitsml.org/unit/NISTu165", + "name": "square mile" + }, + { + "@id": "https://unitsml.org/unit/NISTu1e2/1", + "name": "square meter" + }, + { + "@id": "https://unitsml.org/unit/NISTu283", + "name": "circular mil" + }, + { + "@id": "https://unitsml.org/unit/NISTu317", + "name": "acre (based on US survey foot)" + }, + { + "@id": "https://unitsml.org/unit/NISTu42", + "name": "are" + }, + { + "@id": "https://unitsml.org/unit/NISTu43", + "name": "barn" + }, + { + "@id": "https://unitsml.org/unit/NISTu44", + "name": "hectare" + }, + { + "@id": "https://unitsml.org/unit/NISTu45", + "name": "square foot" + }, + { + "@id": "https://unitsml.org/unit/NISTu46", + "name": "square inch" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:specific_entropy", + "@type": "Quantity", + "name": "specific entropy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq80" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:specific_entropy" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd40", + "expression": "L2Β·T-2Β·Theta-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu13.u27p10'3e-1/1.u5e-1/1", + "name": "joule per kilogram kelvin" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:surface_charge_density", + "@type": "Quantity", + "name": "surface charge density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq81" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:surface_charge_density" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd53", + "expression": "M-2Β·TΒ·I" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu15.u1e-2/1", + "name": "coulomb per square meter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:electric_displacement", + "@type": "Quantity", + "name": "electric displacement", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq82" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_displacement" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd44", + "expression": "L-2Β·TΒ·I" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu15.u1e-2/1", + "name": "coulomb per square meter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:molar_heat_capacity", + "@type": "Quantity", + "name": "molar heat capacity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq83" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:molar_heat_capacity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd48", + "expression": "L2Β·MΒ·T-2Β·Theta-1Β·N-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu13.u6e-1/1.u5e-1/1", + "name": "joule per mole kelvin" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:catalytic_activity_concentration", + "@type": "Quantity", + "name": "catalytic activity concentration", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq84" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:catalytic_activity_concentration" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd55", + "expression": "M-3Β·T-1Β·N" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu30.u1e-3/1", + "name": "katal per cubic meter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:kinematic_viscosity", + "@type": "Quantity", + "name": "kinematic viscosity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq85" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:kinematic_viscosity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd56", + "expression": "L2Β·T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu121", + "name": "centistokes" + }, + { + "@id": "https://unitsml.org/unit/NISTu142", + "name": "stokes" + }, + { + "@id": "https://unitsml.org/unit/NISTu1e2/1.u3e-1/1", + "name": "meter squared per second" + }, + { + "@id": "https://unitsml.org/unit/NISTu210", + "name": "foot squared per second" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:magnetic_field", + "@type": "Quantity", + "name": "magnetic field", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq87" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:magnetic_field" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd33", + "expression": "L-1Β·I" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu144", + "name": "oersted" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:radiant_intensity", + "@type": "Quantity", + "name": "radiant intensity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq88" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:radiant_intensity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu14.u10e-1/1", + "name": "watt per steradian" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:radiance", + "@type": "Quantity", + "name": "radiance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq89" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:radiance" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd38", + "expression": "MΒ·T-3" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu14.u1e-2/1.u10e-1/1", + "name": "watt per square meter steradian" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:plane_angle", + "@type": "Quantity", + "name": "plane angle", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq9" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:plane_angle" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd9", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu147", + "name": "arcminute" + }, + { + "@id": "https://unitsml.org/unit/NISTu148", + "name": "arcsecond" + }, + { + "@id": "https://unitsml.org/unit/NISTu149", + "name": "degree (degree of arc)" + }, + { + "@id": "https://unitsml.org/unit/NISTu159", + "name": "gon" + }, + { + "@id": "https://unitsml.org/unit/NISTu347", + "name": "angular mil (NATO)" + }, + { + "@id": "https://unitsml.org/unit/NISTu9", + "name": "radian" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:logarithmic_ratio_quantities", + "@type": "Quantity", + "name": "ratio logarithm (B)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq90" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:logarithmic_ratio_quantities" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd67", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu153", + "name": "neper" + }, + { + "@id": "https://unitsml.org/unit/NISTu154", + "name": "bel" + }, + { + "@id": "https://unitsml.org/unit/NISTu155", + "name": "decibel" + }, + { + "@id": "https://unitsml.org/unit/NISTu381", + "name": "dBm" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:fluidity", + "@type": "Quantity", + "name": "fluidity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq91" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:fluidity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd52", + "expression": "LΒ·M-1Β·T" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu129", + "name": "rhe" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:hydrodynamic_permeability", + "@type": "Quantity", + "name": "hydrodynamic permeability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq92" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:hydrodynamic_permeability" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd8", + "expression": "L2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu157", + "name": "darcy" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:refractive_index", + "@type": "Quantity", + "name": "refractive index", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq93" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:refractive_index" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd80", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu61", + "name": "one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:relative_permeability", + "@type": "Quantity", + "name": "relative permeability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq94" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:relative_permeability" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd80", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu61", + "name": "one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:breadth", + "@type": "Quantity", + "name": "breadth", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq95" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:breadth" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:height", + "@type": "Quantity", + "name": "height", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq96" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:height" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:thickness", + "@type": "Quantity", + "name": "thickness", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq97" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:thickness" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:radius", + "@type": "Quantity", + "name": "radius", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq98" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:radius" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:radial_distance", + "@type": "Quantity", + "name": "radial distance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq99" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:radial_distance" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre" + } + ] + } + ] +} \ No newline at end of file diff --git a/public/unitsdb/sample-meter.jsonld b/public/unitsdb/sample-meter.jsonld new file mode 100644 index 0000000..d7621c5 --- /dev/null +++ b/public/unitsdb/sample-meter.jsonld @@ -0,0 +1,36 @@ +{ + "@context": { + "@vocab": "https://unitsml.org/ontology/", + "unit": "https://unitsml.org/ontology/unit/", + "quantity": "https://unitsml.org/ontology/quantity/", + "dimension": "https://unitsml.org/ontology/dimension/", + "prefix": "https://unitsml.org/ontology/prefix/", + "scale": "https://unitsml.org/ontology/scale/", + "unitSystem": "https://unitsml.org/ontology/unitSystem/", + "schema": "http://schema.org/", + "name": "schema:name", + "identifier": "schema:identifier", + "description": "schema:description", + "symbol": "https://unitsml.org/ontology/symbol", + "rootUnit": "https://unitsml.org/ontology/rootUnit", + "quantityReference": "https://unitsml.org/ontology/quantityReference", + "dimensionReference": "https://unitsml.org/ontology/dimensionReference", + "scaleReference": "https://unitsml.org/ontology/scaleReference", + "unitSystemReference": "https://unitsml.org/ontology/unitSystemReference", + "prefixReference": "https://unitsml.org/ontology/prefixReference", + "power": "https://unitsml.org/ontology/power", + "base": "https://unitsml.org/ontology/base" + }, + "@id": "https://unitsml.org/unit/u:meter", + "@type": "Unit", + "identifier": [ + "NISTu1", + "u:meter" + ], + "name": "metre", + "symbol": "m", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + } +} \ No newline at end of file diff --git a/public/unitsdb/scale.jsonld b/public/unitsdb/scale.jsonld new file mode 100644 index 0000000..1cb8545 --- /dev/null +++ b/public/unitsdb/scale.jsonld @@ -0,0 +1,130 @@ +{ + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@graph": [ + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/scale/continuous_ratio", + "@type": "Scale", + "name": "continuous ratio scale", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "continuous_ratio" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "s:continuous_ratio" + } + ], + "properties": { + "continuous": true, + "ordered": true, + "logarithmic": false, + "interval": true, + "ratio": true + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/scale/continuous_interval", + "@type": "Scale", + "name": "continuous interval scale", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "continuous_interval" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "s:continuous_interval" + } + ], + "properties": { + "continuous": true, + "ordered": true, + "logarithmic": false, + "interval": true, + "ratio": false + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/scale/logarithmic_ratio", + "@type": "Scale", + "name": "logarithmic ratio scale", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "logarithmic_ratio" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "s:logarithmic_ratio" + } + ], + "properties": { + "continuous": true, + "ordered": true, + "logarithmic": true, + "interval": true, + "ratio": true + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/scale/logarithmic_field", + "@type": "Scale", + "name": "logarithmic field scale", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "logarithmic_field" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "s:logarithmic_field" + } + ], + "properties": { + "continuous": true, + "ordered": true, + "logarithmic": true, + "interval": true, + "ratio": false + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/scale/discrete", + "@type": "Scale", + "name": "discrete scale", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "discrete" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "s:discrete" + } + ], + "properties": { + "continuous": false, + "ordered": true, + "logarithmic": false, + "interval": true, + "ratio": true + } + } + ] +} \ No newline at end of file diff --git a/public/unitsdb/scales.json b/public/unitsdb/scales.json new file mode 100644 index 0000000..b651f11 --- /dev/null +++ b/public/unitsdb/scales.json @@ -0,0 +1,122 @@ +[ + { + "id": "continuous_ratio", + "unitsml_id": "continuous_ratio", + "name": "continuous ratio scale", + "properties": { + "continuous": true, + "ordered": true, + "logarithmic": false, + "interval": true, + "ratio": true + }, + "description": [], + "unit_count": 367, + "identifiers": [ + { + "type": "unitsml", + "id": "continuous_ratio" + }, + { + "type": "unitsml", + "id": "s:continuous_ratio" + } + ] + }, + { + "id": "continuous_interval", + "unitsml_id": "continuous_interval", + "name": "continuous interval scale", + "properties": { + "continuous": true, + "ordered": true, + "logarithmic": false, + "interval": true, + "ratio": false + }, + "description": [], + "unit_count": 3, + "identifiers": [ + { + "type": "unitsml", + "id": "continuous_interval" + }, + { + "type": "unitsml", + "id": "s:continuous_interval" + } + ] + }, + { + "id": "logarithmic_ratio", + "unitsml_id": "logarithmic_ratio", + "name": "logarithmic ratio scale", + "properties": { + "continuous": true, + "ordered": true, + "logarithmic": true, + "interval": true, + "ratio": true + }, + "description": [], + "unit_count": 3, + "identifiers": [ + { + "type": "unitsml", + "id": "logarithmic_ratio" + }, + { + "type": "unitsml", + "id": "s:logarithmic_ratio" + } + ] + }, + { + "id": "logarithmic_field", + "unitsml_id": "logarithmic_field", + "name": "logarithmic field scale", + "properties": { + "continuous": true, + "ordered": true, + "logarithmic": true, + "interval": true, + "ratio": false + }, + "description": [], + "unit_count": 2, + "identifiers": [ + { + "type": "unitsml", + "id": "logarithmic_field" + }, + { + "type": "unitsml", + "id": "s:logarithmic_field" + } + ] + }, + { + "id": "discrete", + "unitsml_id": "discrete", + "name": "discrete scale", + "properties": { + "continuous": false, + "ordered": true, + "logarithmic": false, + "interval": true, + "ratio": true + }, + "description": [], + "unit_count": 5, + "identifiers": [ + { + "type": "unitsml", + "id": "discrete" + }, + { + "type": "unitsml", + "id": "s:discrete" + } + ] + } +] \ No newline at end of file diff --git a/public/unitsdb/scales.jsonld b/public/unitsdb/scales.jsonld new file mode 100644 index 0000000..9fedd03 --- /dev/null +++ b/public/unitsdb/scales.jsonld @@ -0,0 +1,140 @@ +{ + "@context": { + "@vocab": "https://unitsml.org/ontology/", + "schema": "http://schema.org/", + "name": "schema:name", + "identifier": "schema:identifier", + "description": "schema:description", + "symbol": "https://unitsml.org/ontology/symbol", + "rootUnit": "https://unitsml.org/ontology/rootUnit", + "quantityReference": "https://unitsml.org/ontology/quantityReference", + "dimensionReference": "https://unitsml.org/ontology/dimensionReference", + "scaleReference": "https://unitsml.org/ontology/scaleReference", + "unitSystemReference": "https://unitsml.org/ontology/unitSystemReference", + "prefixReference": "https://unitsml.org/ontology/prefixReference", + "power": "https://unitsml.org/ontology/power", + "base": "https://unitsml.org/ontology/base" + }, + "@graph": [ + { + "@id": "https://unitsml.org/scale/continuous_ratio", + "@type": "Scale", + "name": "continuous ratio scale", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "continuous_ratio" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "s:continuous_ratio" + } + ], + "properties": { + "continuous": true, + "ordered": true, + "logarithmic": false, + "interval": true, + "ratio": true + } + }, + { + "@id": "https://unitsml.org/scale/continuous_interval", + "@type": "Scale", + "name": "continuous interval scale", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "continuous_interval" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "s:continuous_interval" + } + ], + "properties": { + "continuous": true, + "ordered": true, + "logarithmic": false, + "interval": true, + "ratio": false + } + }, + { + "@id": "https://unitsml.org/scale/logarithmic_ratio", + "@type": "Scale", + "name": "logarithmic ratio scale", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "logarithmic_ratio" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "s:logarithmic_ratio" + } + ], + "properties": { + "continuous": true, + "ordered": true, + "logarithmic": true, + "interval": true, + "ratio": true + } + }, + { + "@id": "https://unitsml.org/scale/logarithmic_field", + "@type": "Scale", + "name": "logarithmic field scale", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "logarithmic_field" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "s:logarithmic_field" + } + ], + "properties": { + "continuous": true, + "ordered": true, + "logarithmic": true, + "interval": true, + "ratio": false + } + }, + { + "@id": "https://unitsml.org/scale/discrete", + "@type": "Scale", + "name": "discrete scale", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "discrete" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "s:discrete" + } + ], + "properties": { + "continuous": false, + "ordered": true, + "logarithmic": false, + "interval": true, + "ratio": true + } + } + ] +} \ No newline at end of file diff --git a/public/unitsdb/stats.json b/public/unitsdb/stats.json new file mode 100644 index 0000000..e8a5c2e --- /dev/null +++ b/public/unitsdb/stats.json @@ -0,0 +1,23 @@ +{ + "meta": { + "source": "https://github.com/unitsml/unitsdb", + "version": "2.0.0", + "schema_site": "https://schema.unitsml.org", + "generated": "2026-04-29" + }, + "stats": { + "units": 380, + "quantities": 199, + "dimensions": 92, + "prefixes": 33, + "scales": 5, + "unit_systems": 7, + "total": 716, + "units_root": 255, + "units_composite": 123, + "quantities_base": 8, + "quantities_derived": 191, + "prefixes_decimal": 25, + "prefixes_binary": 8 + } +} \ No newline at end of file diff --git a/public/unitsdb/unit-systems.jsonld b/public/unitsdb/unit-systems.jsonld new file mode 100644 index 0000000..10a65ed --- /dev/null +++ b/public/unitsdb/unit-systems.jsonld @@ -0,0 +1,138 @@ +{ + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@graph": [ + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit-system/us:si-base", + "@type": "UnitSystem", + "name": "SI base units", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "SI_base" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "us:si-base" + } + ], + "short": "si-base" + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit-system/us:si-compatible", + "@type": "UnitSystem", + "name": "Units compatible with SI", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "SI_compatible" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "us:si-compatible" + } + ], + "short": "si-compatible" + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit-system/us:si-derived-nonspecial", + "@type": "UnitSystem", + "name": "SI-derived units non-special", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "SI_derived_non-special" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "us:si-derived-nonspecial" + } + ], + "short": "si-derived-nonspecial" + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit-system/us:si-derived-special", + "@type": "UnitSystem", + "name": "SI-derived units special", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "SI_derived_special" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "us:si-derived-special" + } + ], + "short": "si-derived-special" + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit-system/us:nonsi-acceptable", + "@type": "UnitSystem", + "name": "non-SI but acceptable", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "non-SI_acceptable" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "us:nonsi-acceptable" + } + ], + "short": "nonsi-acceptable" + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit-system/us:nonsi-nist-acceptable", + "@type": "UnitSystem", + "name": "non-SI but acceptable by NIST SP 811", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "non-SI_nist_acceptable" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "us:nonsi-nist-acceptable" + } + ], + "short": "nonsi-nist-acceptable" + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit-system/us:nonsi-unacceptable", + "@type": "UnitSystem", + "name": "non-SI and not acceptable", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "non-SI_not_acceptable" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "us:nonsi-unacceptable" + } + ], + "short": "nonsi-unacceptable" + } + ] +} \ No newline at end of file diff --git a/public/unitsdb/unit.jsonld b/public/unitsdb/unit.jsonld new file mode 100644 index 0000000..c5fc168 --- /dev/null +++ b/public/unitsdb/unit.jsonld @@ -0,0 +1,18172 @@ +{ + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@graph": [ + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:meter", + "@type": "Unit", + "name": "metre", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:meter" + } + ], + "symbol": "m", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_base", + "name": "SI base units" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + }, + { + "@id": "https://unitsml.org/quantity/NISTq100", + "name": "diameter" + }, + { + "@id": "https://unitsml.org/quantity/NISTq101", + "name": "length of path" + }, + { + "@id": "https://unitsml.org/quantity/NISTq102", + "name": "cartesian coordinates" + }, + { + "@id": "https://unitsml.org/quantity/NISTq103", + "name": "position vector" + }, + { + "@id": "https://unitsml.org/quantity/NISTq104", + "name": "displacement" + }, + { + "@id": "https://unitsml.org/quantity/NISTq105", + "name": "radius of curvature" + }, + { + "@id": "https://unitsml.org/quantity/NISTq114", + "name": "wavelength" + }, + { + "@id": "https://unitsml.org/quantity/NISTq48", + "name": "distance" + }, + { + "@id": "https://unitsml.org/quantity/NISTq95", + "name": "breadth" + }, + { + "@id": "https://unitsml.org/quantity/NISTq96", + "name": "height" + }, + { + "@id": "https://unitsml.org/quantity/NISTq97", + "name": "thickness" + }, + { + "@id": "https://unitsml.org/quantity/NISTq98", + "name": "radius" + }, + { + "@id": "https://unitsml.org/quantity/NISTq99", + "name": "radial distance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:meter_per_second", + "@type": "Unit", + "name": "meter per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu1.u3e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:meter_per_second" + } + ], + "symbol": "mΒ·s⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq107", + "name": "speed of propagation of waves" + }, + { + "@id": "https://unitsml.org/quantity/NISTq116", + "name": "phase velocity" + }, + { + "@id": "https://unitsml.org/quantity/NISTq117", + "name": "group velocity" + }, + { + "@id": "https://unitsml.org/quantity/NISTq12", + "name": "velocity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd11", + "expression": "LΒ·T-1" + }, + "rootUnits": [ + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:meter_per_second_squared", + "@type": "Unit", + "name": "meter per second squared", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu1.u3e-2/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:meter_per_second_squared" + } + ], + "symbol": "mΒ·s⁻²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq108", + "name": "acceleration of free fall" + }, + { + "@id": "https://unitsml.org/quantity/NISTq49", + "name": "acceleration" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd28", + "expression": "LΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:steradian", + "@type": "Unit", + "name": "steradian", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu10" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:steradian" + } + ], + "symbol": "sr", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq11", + "name": "solid angle" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd64", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:rem", + "@type": "Unit", + "name": "rem", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu100" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:rem" + } + ], + "symbol": "rem", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_nist_acceptable", + "name": "non-SI but acceptable by NIST SP 811" + }, + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq39", + "name": "dose equivalent" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd25", + "expression": "L2Β·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:year_365", + "@type": "Unit", + "name": "year (365 days)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu106" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:year_365" + } + ], + "symbol": "a", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq3", + "name": "time" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd3", + "expression": "T" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:foot_per_minute", + "@type": "Unit", + "name": "foot per minute", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu107" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:foot_per_minute" + } + ], + "symbol": "ftΒ·min⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq12", + "name": "velocity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd11", + "expression": "LΒ·T-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu78", + "name": "foot", + "symbol": "β€²" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu36", + "name": "minute", + "symbol": "β€²" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:foot_per_second", + "@type": "Unit", + "name": "foot per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu108" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:foot_per_second" + } + ], + "symbol": "ftΒ·s⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq12", + "name": "velocity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd11", + "expression": "LΒ·T-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu78", + "name": "foot", + "symbol": "β€²" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:inch_per_second", + "@type": "Unit", + "name": "inch per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu109" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:inch_per_second" + } + ], + "symbol": "inΒ·s⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq12", + "name": "velocity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd11", + "expression": "LΒ·T-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu8", + "name": "inch", + "symbol": "β€³" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:newton", + "@type": "Unit", + "name": "newton", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu11" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:newton" + } + ], + "symbol": "N", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq13", + "name": "force" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd12", + "expression": "LΒ·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:newton_meter", + "@type": "Unit", + "name": "newton meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu11.u1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:newton_meter" + } + ], + "symbol": "NΒ·m", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq184", + "name": "torque" + }, + { + "@id": "https://unitsml.org/quantity/NISTq185", + "name": "bending moment of force" + }, + { + "@id": "https://unitsml.org/quantity/NISTq60", + "name": "moment of force" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu11", + "name": "newton", + "symbol": "N" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:newton_meter_second", + "@type": "Unit", + "name": "newton meter second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu11.u1.u3" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:newton_meter_second" + } + ], + "symbol": "NΒ·mΒ·s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq133", + "name": "angular impulse" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd60", + "expression": "L2Β·MΒ·T-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu11", + "name": "newton", + "symbol": "N" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:newton_per_meter", + "@type": "Unit", + "name": "newton per meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu11.u1e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:newton_per_meter" + } + ], + "symbol": "N/m", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq61", + "name": "surface tension" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd37", + "expression": "MΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu11", + "name": "newton", + "symbol": "N" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:newton_meter_squared_per_kilogram_squared", + "@type": "Unit", + "name": "newton meter squared per kilogram squared", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu11.u1e2/1.u27p10'3e-2/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:newton_meter_squared_per_kilogram_squared" + } + ], + "symbol": "NΒ·mΒ²/kgΒ²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq130", + "name": "gravitational constant" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd62", + "expression": "L3Β·M-1Β·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu11", + "name": "newton", + "symbol": "N" + } + }, + { + "power": 2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:newton_second", + "@type": "Unit", + "name": "newton second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu11.u3" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:newton_second" + } + ], + "symbol": "NΒ·s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq129", + "name": "impulse" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd61", + "expression": "LΒ·MΒ·T-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu11", + "name": "newton", + "symbol": "N" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:mile_per_hour", + "@type": "Unit", + "name": "mile per hour", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu110" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:mile_per_hour" + } + ], + "symbol": "miΒ·h⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq12", + "name": "velocity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd11", + "expression": "LΒ·T-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu83", + "name": "mile", + "symbol": "mi" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu37", + "name": "hour", + "symbol": "h" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:mile_per_minute", + "@type": "Unit", + "name": "mile per minute", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu111" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:mile_per_minute" + } + ], + "symbol": "miΒ·min⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq12", + "name": "velocity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd11", + "expression": "LΒ·T-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu83", + "name": "mile", + "symbol": "mi" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu36", + "name": "minute", + "symbol": "β€²" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:mile_per_second", + "@type": "Unit", + "name": "mile per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu112" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:mile_per_second" + } + ], + "symbol": "miΒ·s⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq12", + "name": "velocity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd11", + "expression": "LΒ·T-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu83", + "name": "mile", + "symbol": "mi" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:stere", + "@type": "Unit", + "name": "stere", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu115" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:stere" + } + ], + "symbol": "st", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + }, + "rootUnits": [ + { + "power": 3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:gamma", + "@type": "Unit", + "name": "gamma", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu116" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:gamma" + } + ], + "symbol": "Ξ³", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq14", + "name": "magnetic flux density" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd13", + "expression": "MΒ·T-2Β·I-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu21", + "name": "tesla", + "symbol": "T" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_-9", + "name": "nano", + "symbol": "n" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:ec_therm", + "@type": "Unit", + "name": "therm (EC)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu117" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:ec_therm" + } + ], + "symbol": "thm (EC)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17", + "name": "energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq18", + "name": "work" + }, + { + "@id": "https://unitsml.org/quantity/NISTq182", + "name": "kinetic energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq183", + "name": "mechanical energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq19", + "name": "amount of heat" + }, + { + "@id": "https://unitsml.org/quantity/NISTq77", + "name": "potential energy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:roentgen", + "@type": "Unit", + "name": "roentgen", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu118" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:roentgen" + } + ], + "symbol": "R", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_nist_acceptable", + "name": "non-SI but acceptable by NIST SP 811" + }, + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq75", + "name": "exposure (x and gamma rays)" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd49", + "expression": "M-1Β·TΒ·I" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:gauss", + "@type": "Unit", + "name": "gauss", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu119" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:gauss" + } + ], + "symbol": "G", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq14", + "name": "magnetic flux density" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd13", + "expression": "MΒ·T-2Β·I-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:pascal", + "@type": "Unit", + "name": "pascal", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu12" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:pascal" + } + ], + "symbol": "Pa", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq134", + "name": "normal stress" + }, + { + "@id": "https://unitsml.org/quantity/NISTq135", + "name": "shear stress" + }, + { + "@id": "https://unitsml.org/quantity/NISTq141", + "name": "modulus of elasticity" + }, + { + "@id": "https://unitsml.org/quantity/NISTq142", + "name": "modulus of rigidity" + }, + { + "@id": "https://unitsml.org/quantity/NISTq143", + "name": "modulus of compression" + }, + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:pascal_second", + "@type": "Unit", + "name": "pascal second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu12.u3" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:pascal_second" + } + ], + "symbol": "PaΒ·s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq59", + "name": "dynamic viscosity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd36", + "expression": "L-1Β·MΒ·T-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu12", + "name": "pascal", + "symbol": "Pa" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:pascal_per_kelvin", + "@type": "Unit", + "name": "pascal per kelvin", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu12.u5e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:pascal_per_kelvin" + } + ], + "symbol": "Pa/K", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq159", + "name": "pressure coefficient" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd69", + "expression": "L-1Β·MΒ·T-2Β·Theta-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu12", + "name": "pascal", + "symbol": "Pa" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu5", + "name": "kelvin", + "symbol": "Β°K" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kayser", + "@type": "Unit", + "name": "kayser", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu120" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kayser" + } + ], + "symbol": "K", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq50", + "name": "wavenumber" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd29", + "expression": "L-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:centistokes", + "@type": "Unit", + "name": "centistokes", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu121" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:centistokes" + } + ], + "symbol": "cSt", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq85", + "name": "kinematic viscosity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd56", + "expression": "L2Β·T-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu142", + "name": "stokes", + "symbol": "St" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_-2", + "name": "centi", + "symbol": "c" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:micron", + "@type": "Unit", + "name": "micron", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu122" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:micron" + } + ], + "symbol": "ΞΌ", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + }, + { + "@id": "https://unitsml.org/quantity/NISTq48", + "name": "distance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_-6", + "name": "micro", + "symbol": "ΞΌ" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:mil (length)", + "@type": "Unit", + "name": "mil (length)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu123" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:mil (length)" + } + ], + "symbol": "thou", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + }, + { + "@id": "https://unitsml.org/quantity/NISTq48", + "name": "distance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu8", + "name": "inch", + "symbol": "β€³" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_-3", + "name": "milli", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:stilb", + "@type": "Unit", + "name": "stilb", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu124" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:stilb" + } + ], + "symbol": "sb", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq56", + "name": "luminance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd27", + "expression": "L-2Β·J" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilogram_force_second_squared_per_meter", + "@type": "Unit", + "name": "kilogram-force second squared per meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu125" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_force_second_squared_per_meter" + } + ], + "symbol": "kgfΒ·sΒ²m⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": 2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilogram_force_meter", + "@type": "Unit", + "name": "kilogram-force meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu126" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_force_meter" + } + ], + "symbol": "kgfΒ·m", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17", + "name": "energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq18", + "name": "work" + }, + { + "@id": "https://unitsml.org/quantity/NISTq184", + "name": "torque" + }, + { + "@id": "https://unitsml.org/quantity/NISTq185", + "name": "bending moment of force" + }, + { + "@id": "https://unitsml.org/quantity/NISTq60", + "name": "moment of force" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:electric_horsepower", + "@type": "Unit", + "name": "horsepower, electric", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu127" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:electric_horsepower" + } + ], + "symbol": "hp", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20", + "name": "power" + }, + { + "@id": "https://unitsml.org/quantity/NISTq21", + "name": "radiant flux" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:poise", + "@type": "Unit", + "name": "poise", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu128" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:poise" + } + ], + "symbol": "P", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq59", + "name": "dynamic viscosity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd36", + "expression": "L-1Β·MΒ·T-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:rhe", + "@type": "Unit", + "name": "rhe", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu129" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:rhe" + } + ], + "symbol": "rhe", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq91", + "name": "fluidity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd52", + "expression": "LΒ·M-1Β·T" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:pascal_to_the_power_minus_one", + "@type": "Unit", + "name": "pascal to the power minus one", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu12e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:pascal_to_the_power_minus_one" + } + ], + "symbol": "Pa⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq139", + "name": "compressibility" + }, + { + "@id": "https://unitsml.org/quantity/NISTq160", + "name": "isothermal compressibility" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd63", + "expression": "LΒ·M-1Β·T2" + }, + "rootUnits": [ + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu12", + "name": "pascal", + "symbol": "Pa" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:joule", + "@type": "Unit", + "name": "joule", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu13" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:joule" + } + ], + "symbol": "J", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq152", + "name": "Lagrange function" + }, + { + "@id": "https://unitsml.org/quantity/NISTq153", + "name": "Hamilton function" + }, + { + "@id": "https://unitsml.org/quantity/NISTq17", + "name": "energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq18", + "name": "work" + }, + { + "@id": "https://unitsml.org/quantity/NISTq182", + "name": "kinetic energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq183", + "name": "mechanical energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq19", + "name": "amount of heat" + }, + { + "@id": "https://unitsml.org/quantity/NISTq77", + "name": "potential energy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:joule_per_cubic_meter", + "@type": "Unit", + "name": "joule per cubic meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu13.u1e-3/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:joule_per_cubic_meter" + } + ], + "symbol": "J/mΒ³", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq67", + "name": "energy density" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu13", + "name": "joule", + "symbol": "J" + } + }, + { + "power": -3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:joule_per_kilogram", + "@type": "Unit", + "name": "joule per kilogram", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu13.u27p10'3e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:joule_per_kilogram" + } + ], + "symbol": "J/kg", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq65", + "name": "specific energy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd25", + "expression": "L2Β·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu13", + "name": "joule", + "symbol": "J" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:joule_per_kilogram_kelvin", + "@type": "Unit", + "name": "joule per kilogram kelvin", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu13.u27p10'3e-1/1.u5e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:joule_per_kilogram_kelvin" + } + ], + "symbol": "J/(kgΒ·K)", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq64", + "name": "specific heat capacity" + }, + { + "@id": "https://unitsml.org/quantity/NISTq80", + "name": "specific entropy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd40", + "expression": "L2Β·T-2Β·Theta-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu13", + "name": "joule", + "symbol": "J" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu5", + "name": "kelvin", + "symbol": "Β°K" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:joule_second", + "@type": "Unit", + "name": "joule second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu13.u3" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:joule_second" + } + ], + "symbol": "JΒ·s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq154", + "name": "action" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd60", + "expression": "L2Β·MΒ·T-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu13", + "name": "joule", + "symbol": "J" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:joule_per_kelvin", + "@type": "Unit", + "name": "joule per kelvin", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu13.u5e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:joule_per_kelvin" + } + ], + "symbol": "J/K", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq63", + "name": "heat capacity" + }, + { + "@id": "https://unitsml.org/quantity/NISTq79", + "name": "entropy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd39", + "expression": "L2Β·MΒ·T-2Β·Theta-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu13", + "name": "joule", + "symbol": "J" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu5", + "name": "kelvin", + "symbol": "Β°K" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:joule_per_mole", + "@type": "Unit", + "name": "joule per mole", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu13.u6e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:joule_per_mole" + } + ], + "symbol": "J/mol", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq73", + "name": "molar energy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd47", + "expression": "L2Β·MΒ·T-2Β·N-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu13", + "name": "joule", + "symbol": "J" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu6", + "name": "mole", + "symbol": "mol" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:joule_per_mole_kelvin", + "@type": "Unit", + "name": "joule per mole kelvin", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu13.u6e-1/1.u5e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:joule_per_mole_kelvin" + } + ], + "symbol": "J/(molΒ·K)", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq74", + "name": "molar entropy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq83", + "name": "molar heat capacity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd48", + "expression": "L2Β·MΒ·T-2Β·Theta-1Β·N-1" + }, + "rootUnits": [ + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu5", + "name": "kelvin", + "symbol": "Β°K" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:liter", + "@type": "Unit", + "name": "litre", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu130" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:liter" + } + ], + "symbol": "L", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:nautical_mile", + "@type": "Unit", + "name": "nautical mile", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu131" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:nautical_mile" + } + ], + "symbol": "M", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + }, + { + "@id": "https://unitsml.org/quantity/NISTq48", + "name": "distance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:degree_Fahrenheit", + "@type": "Unit", + "name": "degree Fahrenheit", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu133" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:degree_Fahrenheit" + } + ], + "symbol": "Β°F", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_interval" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq175", + "name": "Fahrenheit temperature" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd5", + "expression": "Theta" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:standard_atmosphere", + "@type": "Unit", + "name": "standard atmosphere", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu134" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:standard_atmosphere" + } + ], + "symbol": "atm", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:technical_atmosphere", + "@type": "Unit", + "name": "technical atmosphere", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu135" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:technical_atmosphere" + } + ], + "symbol": "at", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:watt", + "@type": "Unit", + "name": "watt", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu14" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:watt" + } + ], + "symbol": "W", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20", + "name": "power" + }, + { + "@id": "https://unitsml.org/quantity/NISTq21", + "name": "radiant flux" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:watt_per_steradian", + "@type": "Unit", + "name": "watt per steradian", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu14.u10e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:watt_per_steradian" + } + ], + "symbol": "W/sr", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq88", + "name": "radiant intensity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu14", + "name": "watt", + "symbol": "W" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu10", + "name": "steradian", + "symbol": "sr" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:watt_per_meter_kelvin", + "@type": "Unit", + "name": "watt per meter kelvin", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu14.u1e-1/1.u5e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:watt_per_meter_kelvin" + } + ], + "symbol": "W/(mΒ·K)", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq66", + "name": "thermal conductivity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd41", + "expression": "LΒ·MΒ·T-3Β·Theta-1" + }, + "rootUnits": [ + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu5", + "name": "kelvin", + "symbol": "Β°K" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:watt_per_square_meter", + "@type": "Unit", + "name": "watt per square meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu14.u1e-2/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:watt_per_square_meter" + } + ], + "symbol": "W/mΒ²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq62", + "name": "heat flux density" + }, + { + "@id": "https://unitsml.org/quantity/NISTq78", + "name": "irradiance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd38", + "expression": "MΒ·T-3" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu14", + "name": "watt", + "symbol": "W" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:watt_per_square_meter_steradian", + "@type": "Unit", + "name": "watt per square meter steradian", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu14.u1e-2/1.u10e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:watt_per_square_meter_steradian" + } + ], + "symbol": "W/(mΒ²Β·sr)", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq89", + "name": "radiance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd38", + "expression": "MΒ·T-3" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu14", + "name": "watt", + "symbol": "W" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu10", + "name": "steradian", + "symbol": "sr" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:watt_second", + "@type": "Unit", + "name": "watt second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu14.u3" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:watt_second" + } + ], + "symbol": "WΒ·s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17", + "name": "energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq18", + "name": "work" + }, + { + "@id": "https://unitsml.org/quantity/NISTq182", + "name": "kinetic energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq183", + "name": "mechanical energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq19", + "name": "amount of heat" + }, + { + "@id": "https://unitsml.org/quantity/NISTq77", + "name": "potential energy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu14", + "name": "watt", + "symbol": "W" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:stokes", + "@type": "Unit", + "name": "stokes", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu142" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:stokes" + } + ], + "symbol": "St", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq85", + "name": "kinematic viscosity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd56", + "expression": "L2Β·T-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:gal", + "@type": "Unit", + "name": "gal", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu143" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:gal" + } + ], + "symbol": "Gal", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq49", + "name": "acceleration" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd28", + "expression": "LΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:oersted", + "@type": "Unit", + "name": "oersted", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu144" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:oersted" + } + ], + "symbol": "Oe", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq87", + "name": "magnetic field" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd33", + "expression": "L-1Β·I" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:arc_minute", + "@type": "Unit", + "name": "arcminute", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu147" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:arc_minute" + } + ], + "symbol": "β€²", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq9", + "name": "plane angle" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd9", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:arc_second", + "@type": "Unit", + "name": "arcsecond", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu148" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:arc_second" + } + ], + "symbol": "as", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq9", + "name": "plane angle" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd9", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:arc_degree", + "@type": "Unit", + "name": "degree (degree of arc)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu149" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:arc_degree" + } + ], + "symbol": "ΒΊ", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq9", + "name": "plane angle" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd9", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:coulomb", + "@type": "Unit", + "name": "coulomb", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu15" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:coulomb" + } + ], + "symbol": "C", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq22", + "name": "electric charge" + }, + { + "@id": "https://unitsml.org/quantity/NISTq23", + "name": "amount of electricity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd17", + "expression": "TΒ·I" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:coulomb_per_square_meter", + "@type": "Unit", + "name": "coulomb per square meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu15.u1e-2/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:coulomb_per_square_meter" + } + ], + "symbol": "C/mΒ²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq81", + "name": "surface charge density" + }, + { + "@id": "https://unitsml.org/quantity/NISTq82", + "name": "electric displacement" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd53", + "expression": "M-2Β·TΒ·I" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu15", + "name": "coulomb", + "symbol": "C" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:coulomb_per_cubic_meter", + "@type": "Unit", + "name": "coulomb per cubic meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu15.u1e-3/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:coulomb_per_cubic_meter" + } + ], + "symbol": "C/mΒ³", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq69", + "name": "electric charge density" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd43", + "expression": "L-3Β·TΒ·I" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu15", + "name": "coulomb", + "symbol": "C" + } + }, + { + "power": -3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:coulomb_per_kilogram", + "@type": "Unit", + "name": "coulomb per kilogram", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu15.u27p10'3e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:coulomb_per_kilogram" + } + ], + "symbol": "C/kg", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq197", + "name": "exposure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq75", + "name": "exposure (x and gamma rays)" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd49", + "expression": "M-1Β·TΒ·I" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu15", + "name": "coulomb", + "symbol": "C" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:knot", + "@type": "Unit", + "name": "nautical mile per hour", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu152" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:knot" + } + ], + "symbol": "kn", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq12", + "name": "velocity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd11", + "expression": "LΒ·T-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:neper", + "@type": "Unit", + "name": "neper", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu153" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:neper" + } + ], + "symbol": "Np", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/logarithmic_field" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq118", + "name": "level of a field quantity" + }, + { + "@id": "https://unitsml.org/quantity/NISTq119", + "name": "level of a power quantity" + }, + { + "@id": "https://unitsml.org/quantity/NISTq121", + "name": "ratio logarithm (Np)" + }, + { + "@id": "https://unitsml.org/quantity/NISTq90", + "name": "ratio logarithm (B)" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd83", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:bel", + "@type": "Unit", + "name": "bel", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu154" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:bel" + } + ], + "symbol": "B", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/logarithmic_field" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq118", + "name": "level of a field quantity" + }, + { + "@id": "https://unitsml.org/quantity/NISTq119", + "name": "level of a power quantity" + }, + { + "@id": "https://unitsml.org/quantity/NISTq90", + "name": "ratio logarithm (B)" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd83", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:decibel", + "@type": "Unit", + "name": "decibel", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu155" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:decibel" + } + ], + "symbol": "dB", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/logarithmic_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq90", + "name": "ratio logarithm (B)" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd67", + "expression": "1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu154", + "name": "bel", + "symbol": "B" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_-1", + "name": "deci", + "symbol": "d" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:mm_Hg", + "@type": "Unit", + "name": "conventional millimeter of mercury", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu156" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:mm_Hg" + } + ], + "symbol": "mmHg", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:darcy", + "@type": "Unit", + "name": "darcy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu157" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:darcy" + } + ], + "symbol": "D", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq72", + "name": "permeability" + }, + { + "@id": "https://unitsml.org/quantity/NISTq92", + "name": "hydrodynamic permeability" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd46", + "expression": "LΒ·MΒ·T-2Β·I-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:gon", + "@type": "Unit", + "name": "gon", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu159" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:gon" + } + ], + "symbol": "gon", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq9", + "name": "plane angle" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd9", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:volt", + "@type": "Unit", + "name": "volt", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu16" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:volt" + } + ], + "symbol": "V", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq24", + "name": "electric potential difference" + }, + { + "@id": "https://unitsml.org/quantity/NISTq25", + "name": "potential difference" + }, + { + "@id": "https://unitsml.org/quantity/NISTq26", + "name": "electromotive force" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd18", + "expression": "L2Β·MΒ·T-3Β·I-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:volt_per_meter", + "@type": "Unit", + "name": "volt per meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu16.u1e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:volt_per_meter" + } + ], + "symbol": "V/m", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq68", + "name": "electric field strength" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd42", + "expression": "LΒ·MΒ·T-3Β·I-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu16", + "name": "volt", + "symbol": "V" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilometer_per_hour", + "@type": "Unit", + "name": "kilometer per hour", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu160" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilometer_per_hour" + } + ], + "symbol": "km/h", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq107", + "name": "speed of propagation of waves" + }, + { + "@id": "https://unitsml.org/quantity/NISTq12", + "name": "velocity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd11", + "expression": "LΒ·T-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu37", + "name": "hour", + "symbol": "h" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:neper_per_second", + "@type": "Unit", + "name": "neper per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu163" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:neper_per_second" + } + ], + "symbol": "Np/s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq120", + "name": "damping coefficient" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd24", + "expression": "T-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu153", + "name": "neper", + "symbol": "Np" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:square_yard", + "@type": "Unit", + "name": "square yard", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu164" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:square_yard" + } + ], + "symbol": "ydΒ²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq8", + "name": "area" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd8", + "expression": "L2" + }, + "rootUnits": [ + { + "power": 2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu84", + "name": "yard", + "symbol": "yd" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:square_mile", + "@type": "Unit", + "name": "square mile", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu165" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:square_mile" + } + ], + "symbol": "miΒ²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq8", + "name": "area" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd8", + "expression": "L2" + }, + "rootUnits": [ + { + "power": 2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu83", + "name": "mile", + "symbol": "mi" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:tons_of_tnt", + "@type": "Unit", + "name": "ton of TNT (energy equivalent)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu166" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:tons_of_tnt" + } + ], + "symbol": "ton", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17", + "name": "energy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:foot_per_second_squared", + "@type": "Unit", + "name": "foot per second squared", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu167" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:foot_per_second_squared" + } + ], + "symbol": "ft/sΒ²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq49", + "name": "acceleration" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd28", + "expression": "LΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu78", + "name": "foot", + "symbol": "β€²" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:cubic_inch", + "@type": "Unit", + "name": "cubic inch", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu168" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:cubic_inch" + } + ], + "symbol": "inΒ³", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + }, + "rootUnits": [ + { + "power": 3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu8", + "name": "inch", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:cubic_foot", + "@type": "Unit", + "name": "cubic foot", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu169" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:cubic_foot" + } + ], + "symbol": "ftΒ³", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + }, + "rootUnits": [ + { + "power": 3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu78", + "name": "foot", + "symbol": "β€²" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:farad", + "@type": "Unit", + "name": "farad", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu17" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:farad" + } + ], + "symbol": "F", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq27", + "name": "capacitance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd19", + "expression": "L-2Β·M-1Β·T4Β·I2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:farad_per_meter", + "@type": "Unit", + "name": "farad per meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu17.u1e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:farad_per_meter" + } + ], + "symbol": "F/m", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq71", + "name": "permittivity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd45", + "expression": "L-3Β·M-1Β·T4Β·I2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu17", + "name": "farad", + "symbol": "F" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:cubic_yard", + "@type": "Unit", + "name": "cubic yard", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu170" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:cubic_yard" + } + ], + "symbol": "ydΒ³", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + }, + "rootUnits": [ + { + "power": 3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu84", + "name": "yard", + "symbol": "yd" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:imperial_gallon", + "@type": "Unit", + "name": "gallon (UK)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu171" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:imperial_gallon" + } + ], + "symbol": "gal (UK)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:imperial_pint", + "@type": "Unit", + "name": "pint (UK)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu172" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:imperial_pint" + } + ], + "symbol": "pt (UK)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:imperial_ounce", + "@type": "Unit", + "name": "fluid ounce (UK)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu173" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:imperial_ounce" + } + ], + "symbol": "fl oz (UK)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_gallon", + "@type": "Unit", + "name": "gallon (US)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu175" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_gallon" + } + ], + "symbol": "gal (US)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_interval" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_pint", + "@type": "Unit", + "name": "liquid pint (US)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu176" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_pint" + } + ], + "symbol": "liq pint (US)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_fluid_ounce", + "@type": "Unit", + "name": "fluid ounce (US)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu177" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_fluid_ounce" + } + ], + "symbol": "fl oz (US)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:petro_barrel", + "@type": "Unit", + "name": "barrel (US) for petroleum", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu178" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:petro_barrel" + } + ], + "symbol": "bbl (US)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_bushel", + "@type": "Unit", + "name": "bushel (US)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu179" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_bushel" + } + ], + "symbol": "bu (US)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:ohm", + "@type": "Unit", + "name": "ohm", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu18" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:ohm" + } + ], + "symbol": "Ω", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq28", + "name": "electric resistance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd20", + "expression": "L2Β·MΒ·T-3Β·I-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_dry_pint", + "@type": "Unit", + "name": "dry pint (US)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu180" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_dry_pint" + } + ], + "symbol": "dry pt (US)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:light_year", + "@type": "Unit", + "name": "light year", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu182" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:light_year" + } + ], + "symbol": "l.y.", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:astronomical_unit", + "@type": "Unit", + "name": "astronomical unit", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu183" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:astronomical_unit" + } + ], + "symbol": "ua", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:parsec", + "@type": "Unit", + "name": "parsec", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu184" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:parsec" + } + ], + "symbol": "pc", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:meter_to_the_power_four", + "@type": "Unit", + "name": "meter to the power four", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu185" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:meter_to_the_power_four" + } + ], + "symbol": "m⁴", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq144", + "name": "second axial moment of area" + }, + { + "@id": "https://unitsml.org/quantity/NISTq145", + "name": "second polar moment of area" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd57", + "expression": "L4" + }, + "rootUnits": [ + { + "power": 4, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilogram_per_liter", + "@type": "Unit", + "name": "kilogram per liter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu188" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_per_liter" + } + ], + "symbol": "kg/l", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq51", + "name": "density" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd30", + "expression": "L-3Β·M" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu130", + "name": "litre", + "symbol": "L" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:metric_ton_per_cubic_meter", + "@type": "Unit", + "name": "metric ton per cubic meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu189" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:metric_ton_per_cubic_meter" + } + ], + "symbol": "t/mΒ³", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq51", + "name": "density" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd30", + "expression": "L-3Β·M" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu88", + "name": "tonne", + "symbol": "t" + } + }, + { + "power": -3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:siemens", + "@type": "Unit", + "name": "siemens", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu19" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:siemens" + } + ], + "symbol": "S", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq29", + "name": "electric conductance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd21", + "expression": "L-2Β·M-1Β·T3Β·I2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:gram_force", + "@type": "Unit", + "name": "gram-force", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu196" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:gram_force" + } + ], + "symbol": "gf", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq13", + "name": "force" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd12", + "expression": "LΒ·MΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:meter_to_the_power_minus_one", + "@type": "Unit", + "name": "meter to the power minus one", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu1e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:meter_to_the_power_minus_one" + } + ], + "symbol": "m⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq106", + "name": "curvature" + }, + { + "@id": "https://unitsml.org/quantity/NISTq115", + "name": "angular wavenumber" + }, + { + "@id": "https://unitsml.org/quantity/NISTq122", + "name": "attenuation coefficient" + }, + { + "@id": "https://unitsml.org/quantity/NISTq123", + "name": "phase coefficient" + }, + { + "@id": "https://unitsml.org/quantity/NISTq124", + "name": "propagation coefficient" + }, + { + "@id": "https://unitsml.org/quantity/NISTq50", + "name": "wavenumber" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd29", + "expression": "L-1" + }, + "rootUnits": [ + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:meter_to_the_power_minus_two", + "@type": "Unit", + "name": "meter to the power minus two", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu1e-2/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:meter_to_the_power_minus_two" + } + ], + "symbol": "m⁻²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq190", + "name": "fluence" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd96", + "expression": "L-2" + }, + "rootUnits": [ + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:meter_to_the_power_minus_two_per_second", + "@type": "Unit", + "name": "meter to the power minus two per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu1e-2/1.u3e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:meter_to_the_power_minus_two_per_second" + } + ], + "symbol": "m⁻²·s⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq191", + "name": "fluence rate" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd97", + "expression": "L-2Β·T-1" + }, + "rootUnits": [ + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:square_meter", + "@type": "Unit", + "name": "square meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu1e2/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:square_meter" + } + ], + "symbol": "mΒ²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq8", + "name": "area" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd8", + "expression": "L2" + }, + "rootUnits": [ + { + "power": 2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:meter_squared_per_second", + "@type": "Unit", + "name": "meter squared per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu1e2/1.u3e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:meter_squared_per_second" + } + ], + "symbol": "mΒ²/s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq85", + "name": "kinematic viscosity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd56", + "expression": "L2Β·T-1" + }, + "rootUnits": [ + { + "power": 2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:cubic_meter", + "@type": "Unit", + "name": "cubic meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu1e3/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:cubic_meter" + } + ], + "symbol": "mΒ³", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + }, + { + "@id": "https://unitsml.org/quantity/NISTq146", + "name": "section modulus" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + }, + "rootUnits": [ + { + "power": 3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:cubic_meter_per_kilogram", + "@type": "Unit", + "name": "cubic meter per kilogram", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu1e3/1.u27p10'3" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:cubic_meter_per_kilogram" + } + ], + "symbol": "mΒ³Β·kg", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq52", + "name": "specific volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd31", + "expression": "L3Β·M-1" + }, + "rootUnits": [ + { + "power": 3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:cubic_meter_per_second", + "@type": "Unit", + "name": "cubic meter per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu1e3/1.u3e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:cubic_meter_per_second" + } + ], + "symbol": "mΒ³/s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq151", + "name": "volume flow rate" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd66", + "expression": "L3Β·T-1" + }, + "rootUnits": [ + { + "power": 3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilogram", + "@type": "Unit", + "name": "kilogram", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu2" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram" + } + ], + "symbol": "kg", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_base", + "name": "SI base units" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:weber", + "@type": "Unit", + "name": "weber", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu20" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:weber" + } + ], + "symbol": "Wb", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq30", + "name": "magnetic flux" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd22", + "expression": "L2Β·MΒ·T-2Β·I-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:av_pound", + "@type": "Unit", + "name": "pound (avoirdupois)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu201" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:av_pound" + } + ], + "symbol": "lb", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:av_ounce", + "@type": "Unit", + "name": "ounce (avoirdupois)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu202" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:av_ounce" + } + ], + "symbol": "oz", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:gross_hundredweight", + "@type": "Unit", + "name": "hundredweight (long, 112 lb)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu203" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:gross_hundredweight" + } + ], + "symbol": "cwt (UK)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:pound_per_cubic_foot", + "@type": "Unit", + "name": "pound per cubic foot", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu204" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:pound_per_cubic_foot" + } + ], + "symbol": "lb/ftΒ³", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq51", + "name": "density" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd30", + "expression": "L-3Β·M" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu201", + "name": "pound (avoirdupois)", + "symbol": "lb" + } + }, + { + "power": -3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu78", + "name": "foot", + "symbol": "β€²" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:pound_force", + "@type": "Unit", + "name": "pound-force", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu205" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:pound_force" + } + ], + "symbol": "lbf", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq128", + "name": "weight" + }, + { + "@id": "https://unitsml.org/quantity/NISTq13", + "name": "force" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd12", + "expression": "LΒ·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:foot_pound_force", + "@type": "Unit", + "name": "foot pound-force", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu206" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:foot_pound_force" + } + ], + "symbol": "ftΒ·lbf", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17", + "name": "energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq18", + "name": "work" + }, + { + "@id": "https://unitsml.org/quantity/NISTq182", + "name": "kinetic energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq183", + "name": "mechanical energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq184", + "name": "torque" + }, + { + "@id": "https://unitsml.org/quantity/NISTq185", + "name": "bending moment of force" + }, + { + "@id": "https://unitsml.org/quantity/NISTq60", + "name": "moment of force" + }, + { + "@id": "https://unitsml.org/quantity/NISTq77", + "name": "potential energy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu78", + "name": "foot", + "symbol": "β€²" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu205", + "name": "pound-force", + "symbol": "lbf" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:pound_force_per_square_inch", + "@type": "Unit", + "name": "pound-force per square inch", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu207" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:pound_force_per_square_inch" + } + ], + "symbol": "lbf/inΒ²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu205", + "name": "pound-force", + "symbol": "lbf" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu8", + "name": "inch", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:inch_to_the_fourth_power", + "@type": "Unit", + "name": "inch to the fourth power", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu208" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:inch_to_the_fourth_power" + } + ], + "symbol": "in⁴", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq155", + "name": "area moment of inertia" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd57", + "expression": "L4" + }, + "rootUnits": [ + { + "power": 4, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu8", + "name": "inch", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:inch_cubed", + "@type": "Unit", + "name": "inch cubed", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu209" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:inch_cubed" + } + ], + "symbol": "inΒ³", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq146", + "name": "section modulus" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + }, + "rootUnits": [ + { + "power": 3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu8", + "name": "inch", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:tesla", + "@type": "Unit", + "name": "tesla", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu21" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:tesla" + } + ], + "symbol": "T", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq14", + "name": "magnetic flux density" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd13", + "expression": "MΒ·T-2Β·I-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:foot_squared_per_second", + "@type": "Unit", + "name": "foot squared per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu210" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:foot_squared_per_second" + } + ], + "symbol": "ftΒ²/s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq85", + "name": "kinematic viscosity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd56", + "expression": "L2Β·T-1" + }, + "rootUnits": [ + { + "power": 2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu78", + "name": "foot", + "symbol": "β€²" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:foot_pound_force_per_second", + "@type": "Unit", + "name": "foot pound-force per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu211" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:foot_pound_force_per_second" + } + ], + "symbol": "ftΒ·lbf/2", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20", + "name": "power" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu78", + "name": "foot", + "symbol": "β€²" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu205", + "name": "pound-force", + "symbol": "lbf" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:carat", + "@type": "Unit", + "name": "carat", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu212" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:carat" + } + ], + "symbol": "ct", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:tex", + "@type": "Unit", + "name": "tex", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu213" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:tex" + } + ], + "symbol": "tex", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq126", + "name": "linear density" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd58", + "expression": "L-1Β·M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:torr", + "@type": "Unit", + "name": "torr", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu214" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:torr" + } + ], + "symbol": "torr", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:mm_water", + "@type": "Unit", + "name": "conventional millimeter of water", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu215" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:mm_water" + } + ], + "symbol": "mmHβ‚‚O", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:thermo_btu", + "@type": "Unit", + "name": "British thermal unit_th", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu216" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:thermo_btu" + } + ], + "symbol": "Btu_th", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq19", + "name": "amount of heat" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilogram_force_meter_per_second", + "@type": "Unit", + "name": "kilogram-force meter per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu217" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_force_meter_per_second" + } + ], + "symbol": "kgfΒ·m/s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20", + "name": "power" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:metric_horsepower", + "@type": "Unit", + "name": "horsepower, metric", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu218" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:metric_horsepower" + } + ], + "symbol": "hp", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20", + "name": "power" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:henry", + "@type": "Unit", + "name": "henry", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu22" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:henry" + } + ], + "symbol": "H", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq32", + "name": "inductance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd23", + "expression": "L2Β·MΒ·T-2Β·I-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:henry_per_meter", + "@type": "Unit", + "name": "henry per meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu22.u1e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:henry_per_meter" + } + ], + "symbol": "H/m", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq72", + "name": "permeability" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd46", + "expression": "LΒ·MΒ·T-2Β·I-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu22", + "name": "henry", + "symbol": "H" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:watt_per_square_meter_kelvin", + "@type": "Unit", + "name": "watt per square meter kelvin", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu221" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:watt_per_square_meter_kelvin" + } + ], + "symbol": "W/(mΒ²Β·K)", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq180", + "name": "coefficient of heat transfer" + }, + { + "@id": "https://unitsml.org/quantity/NISTq181", + "name": "surface coefficient of heat transfer" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd71", + "expression": "MΒ·T-3Β·Theta-1" + }, + "rootUnits": [ + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu5", + "name": "kelvin", + "symbol": "Β°K" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:lambert", + "@type": "Unit", + "name": "lambert", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu222" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:lambert" + } + ], + "symbol": "L", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq56", + "name": "luminance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd27", + "expression": "L-2Β·J" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:gilbert", + "@type": "Unit", + "name": "gilbert", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu223" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:gilbert" + } + ], + "symbol": "Gi", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq161", + "name": "magnetomotive force (Cardelli) (-SP811)" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd4", + "expression": "I" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:debye", + "@type": "Unit", + "name": "debye", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu224" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:debye" + } + ], + "symbol": "D", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq162", + "name": "electric dipole moment" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd72", + "expression": "LΒ·TΒ·I" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:abwatt", + "@type": "Unit", + "name": "abwatt", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu225" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:abwatt" + } + ], + "symbol": "aW", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20", + "name": "power" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:slug", + "@type": "Unit", + "name": "slug", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu226" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:slug" + } + ], + "symbol": "slug", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:thermo_calorie", + "@type": "Unit", + "name": "thermochemical calorie", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu227" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:thermo_calorie" + } + ], + "symbol": "cal", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17", + "name": "energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq18", + "name": "work" + }, + { + "@id": "https://unitsml.org/quantity/NISTq182", + "name": "kinetic energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq183", + "name": "mechanical energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq19", + "name": "amount of heat" + }, + { + "@id": "https://unitsml.org/quantity/NISTq77", + "name": "potential energy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:short_ton", + "@type": "Unit", + "name": "short ton", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu228" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:short_ton" + } + ], + "symbol": "t", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:long_ton", + "@type": "Unit", + "name": "long ton", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu229" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:long_ton" + } + ], + "symbol": "t", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:degree_Celsius", + "@type": "Unit", + "name": "degree Celsius", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu23" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:degree_Celsius" + } + ], + "symbol": "Β°C", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_interval" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq192", + "name": "ITS-90 temperature (Β°C)" + }, + { + "@id": "https://unitsml.org/quantity/NISTq34", + "name": "Celsius temperature" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd5", + "expression": "Theta" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:hundredweight", + "@type": "Unit", + "name": "hundredweight (short, 100 lb)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu230" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:hundredweight" + } + ], + "symbol": "cwt (US)", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu203", + "name": "hundredweight (long, 112 lb)", + "symbol": "cwt (UK)" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:troy_ounce", + "@type": "Unit", + "name": "ounce (troy or apothecary)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu231" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:troy_ounce" + } + ], + "symbol": "oz", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:troy_pound", + "@type": "Unit", + "name": "pound (troy or apothecary)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu232" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:troy_pound" + } + ], + "symbol": "lb", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:pennyweight", + "@type": "Unit", + "name": "pennyweight", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu233" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:pennyweight" + } + ], + "symbol": "dwt (troy)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:apothecaries_dram", + "@type": "Unit", + "name": "dram (apothecary)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu234" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:apothecaries_dram" + } + ], + "symbol": "dr", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:scruple", + "@type": "Unit", + "name": "scruple", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu235" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:scruple" + } + ], + "symbol": "scr (ap.)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:poundal", + "@type": "Unit", + "name": "poundal", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu236" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:poundal" + } + ], + "symbol": "pdl", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq128", + "name": "weight" + }, + { + "@id": "https://unitsml.org/quantity/NISTq13", + "name": "force" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd12", + "expression": "LΒ·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kip", + "@type": "Unit", + "name": "kip", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu237" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kip" + } + ], + "symbol": "kip", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:ton_force", + "@type": "Unit", + "name": "ton-force (2000 lb)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu238" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:ton_force" + } + ], + "symbol": "ton-force (2000 lb)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq128", + "name": "weight" + }, + { + "@id": "https://unitsml.org/quantity/NISTq13", + "name": "force" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd12", + "expression": "LΒ·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:barye", + "@type": "Unit", + "name": "barye", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu239" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:barye" + } + ], + "symbol": "barye", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:electronvolt", + "@type": "Unit", + "name": "electronvolt", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu240" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:electronvolt" + } + ], + "symbol": "eV", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17", + "name": "energy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:unified_atomic_mass_unit", + "@type": "Unit", + "name": "unified atomic mass unit", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu241" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:unified_atomic_mass_unit" + } + ], + "symbol": "u", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:natural_unit_of_velocity", + "@type": "Unit", + "name": "natural unit of velocity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu242" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:natural_unit_of_velocity" + } + ], + "symbol": "𝑐", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq12", + "name": "velocity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd11", + "expression": "LΒ·T-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:natural_unit_of_action", + "@type": "Unit", + "name": "natural unit of action", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu243" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:natural_unit_of_action" + } + ], + "symbol": "ℏ", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq154", + "name": "action" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd60", + "expression": "L2Β·MΒ·T-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:natural_unit_of_mass", + "@type": "Unit", + "name": "natural unit of mass", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu244" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:natural_unit_of_mass" + } + ], + "symbol": "π‘šβ‚‘", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:natural_unit_of_time", + "@type": "Unit", + "name": "natural unit of time", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu245" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:natural_unit_of_time" + } + ], + "symbol": "ℏ/π‘šβ‚‘π‘Β²", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq3", + "name": "time" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd3", + "expression": "T" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_charge", + "@type": "Unit", + "name": "atomic unit of charge", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu246" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_charge" + } + ], + "symbol": "𝑒", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq22", + "name": "electric charge" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd17", + "expression": "TΒ·I" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_mass", + "@type": "Unit", + "name": "atomic unit of mass", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu247" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_mass" + } + ], + "symbol": "π‘šβ‚‘", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_action", + "@type": "Unit", + "name": "atomic unit of action", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu248" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_action" + } + ], + "symbol": "ℏ", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq154", + "name": "action" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd60", + "expression": "L2Β·MΒ·T-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_length", + "@type": "Unit", + "name": "atomic unit of length", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu249" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_length" + } + ], + "symbol": "π‘Žβ‚€", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:becquerel", + "@type": "Unit", + "name": "becquerel", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu25" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:becquerel" + } + ], + "symbol": "Bq", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq35", + "name": "activity referred to a radionuclide" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd24", + "expression": "T-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_energy", + "@type": "Unit", + "name": "atomic unit of energy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu250" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_energy" + } + ], + "symbol": "𝐸ₕ", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17", + "name": "energy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_time", + "@type": "Unit", + "name": "atomic unit of time", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu251" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_time" + } + ], + "symbol": "ℏ/𝐸ₕ", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq3", + "name": "time" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd3", + "expression": "T" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_magnetizability", + "@type": "Unit", + "name": "atomic unit of magnetizability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu252" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_magnetizability" + } + ], + "symbol": "π‘’Β²π‘Žβ‚€Β²/π‘šβ‚‘", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq163", + "name": "magnetizability" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd54", + "expression": "L2Β·MΒ·T2Β·I2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_magnetic_flux_density", + "@type": "Unit", + "name": "atomic unit of magnetic flux density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu253" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_magnetic_flux_density" + } + ], + "symbol": "ℏ/π‘’π‘Žβ‚€Β²", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq14", + "name": "magnetic flux density" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd13", + "expression": "MΒ·T-2Β·I-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_magnetic_dipole_moment", + "@type": "Unit", + "name": "atomic unit of magnetic dipole moment", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu254" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_magnetic_dipole_moment" + } + ], + "symbol": "ℏ𝑒/π‘šβ‚‘", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq164", + "name": "magnetic dipole moment" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd73", + "expression": "L2Β·I" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_momentum", + "@type": "Unit", + "name": "atomic unit of momentum", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu255" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_momentum" + } + ], + "symbol": "ℏ/π‘Žβ‚€", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq131", + "name": "momentum" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd61", + "expression": "LΒ·MΒ·T-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_charge_density", + "@type": "Unit", + "name": "atomic unit of charge density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu256" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_charge_density" + } + ], + "symbol": "π‘’π‘Žβ‚€Β³", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq69", + "name": "electric charge density" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd43", + "expression": "L-3Β·TΒ·I" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_current", + "@type": "Unit", + "name": "atomic unit of current", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu257" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_current" + } + ], + "symbol": "𝑒𝐸ₕ/ℏ", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq4", + "name": "electric current" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd4", + "expression": "I" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_electric_dipole_moment", + "@type": "Unit", + "name": "atomic unit of electric dipole moment", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu258" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_electric_dipole_moment" + } + ], + "symbol": "π‘’π‘Žβ‚€", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq162", + "name": "electric dipole moment" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd72", + "expression": "LΒ·TΒ·I" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_electric_field", + "@type": "Unit", + "name": "atomic unit of electric field", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu259" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_electric_field" + } + ], + "symbol": "𝐸ₕ/π‘’π‘Žβ‚€", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq68", + "name": "electric field strength" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd42", + "expression": "LΒ·MΒ·T-3Β·I-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:fermi", + "@type": "Unit", + "name": "fermi", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu26" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:fermi" + } + ], + "symbol": "fermi", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + }, + { + "@id": "https://unitsml.org/quantity/NISTq48", + "name": "distance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_-15", + "name": "femto", + "symbol": "f" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_electric_field_gradient", + "@type": "Unit", + "name": "atomic unit of electric field gradient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu260" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_electric_field_gradient" + } + ], + "symbol": "𝐸ₕ/π‘’π‘Žβ‚€Β²", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq165", + "name": "electric field gradient" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd74", + "expression": "MΒ·T-3Β·I-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_electric_potential", + "@type": "Unit", + "name": "atomic unit of electric potential", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu261" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_electric_potential" + } + ], + "symbol": "𝐸ₕ/𝑒", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq166", + "name": "electric potential" + }, + { + "@id": "https://unitsml.org/quantity/NISTq24", + "name": "electric potential difference" + }, + { + "@id": "https://unitsml.org/quantity/NISTq26", + "name": "electromotive force" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd18", + "expression": "L2Β·MΒ·T-3Β·I-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_force", + "@type": "Unit", + "name": "atomic unit of force", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu262" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_force" + } + ], + "symbol": "𝐸ₕ/π‘Žβ‚€", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq128", + "name": "weight" + }, + { + "@id": "https://unitsml.org/quantity/NISTq13", + "name": "force" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd12", + "expression": "LΒ·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_electric_quadrupole_moment", + "@type": "Unit", + "name": "atomic unit of electric quadrupole moment", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu263" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_electric_quadrupole_moment" + } + ], + "symbol": "π‘’π‘Žβ‚€Β²", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq167", + "name": "electric quadrupole moment" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd75", + "expression": "L2Β·TΒ·I" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_electric_polarizability", + "@type": "Unit", + "name": "atomic unit of electric polarizability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu264" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_electric_polarizability" + } + ], + "symbol": "π‘’Β²π‘Žβ‚€Β²/𝐸ₕ", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq168", + "name": "polarizability" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd76", + "expression": "MΒ·T4Β·I2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:statohm", + "@type": "Unit", + "name": "statohm", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu265" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:statohm" + } + ], + "symbol": "statohm", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq28", + "name": "electric resistance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd20", + "expression": "L2Β·MΒ·T-3Β·I-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:statfarad", + "@type": "Unit", + "name": "statfarad", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu266" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:statfarad" + } + ], + "symbol": "statF", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq169", + "name": "electric capacitance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd19", + "expression": "L-2Β·M-1Β·T4Β·I2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:statampere", + "@type": "Unit", + "name": "statampere", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu267" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:statampere" + } + ], + "symbol": "statA", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq170", + "name": "electric current intensity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd4", + "expression": "I" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:statvolt", + "@type": "Unit", + "name": "statvolt", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu268" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:statvolt" + } + ], + "symbol": "statV", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq166", + "name": "electric potential" + }, + { + "@id": "https://unitsml.org/quantity/NISTq24", + "name": "electric potential difference" + }, + { + "@id": "https://unitsml.org/quantity/NISTq26", + "name": "electromotive force" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd18", + "expression": "L2Β·MΒ·T-3Β·I-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:stathenry", + "@type": "Unit", + "name": "stathenry", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu269" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:stathenry" + } + ], + "symbol": "statH", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq171", + "name": "electric inductance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd23", + "expression": "L2Β·MΒ·T-2Β·I-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:gram", + "@type": "Unit", + "name": "gram", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu27" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:gram" + } + ], + "symbol": "g", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_base", + "name": "SI base units" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:statmho", + "@type": "Unit", + "name": "statmho", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu270" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:statmho" + } + ], + "symbol": "statmho", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq29", + "name": "electric conductance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd21", + "expression": "L-2Β·M-1Β·T3Β·I2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:statcoulomb", + "@type": "Unit", + "name": "statcoulomb", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu271" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:statcoulomb" + } + ], + "symbol": "statcoulomb", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq22", + "name": "electric charge" + }, + { + "@id": "https://unitsml.org/quantity/NISTq23", + "name": "amount of electricity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd17", + "expression": "TΒ·I" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:statweber", + "@type": "Unit", + "name": "statweber", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu272" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:statweber" + } + ], + "symbol": "statWb", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq30", + "name": "magnetic flux" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd22", + "expression": "L2Β·MΒ·T-2Β·I-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:stattesla", + "@type": "Unit", + "name": "stattesla", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu273" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:stattesla" + } + ], + "symbol": "statT", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq14", + "name": "magnetic flux density" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd13", + "expression": "MΒ·T-2Β·I-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:statwatt", + "@type": "Unit", + "name": "statwatt", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu274" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:statwatt" + } + ], + "symbol": "statwatt", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20", + "name": "power" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:av_dram", + "@type": "Unit", + "name": "dram (avoirdupois)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu275" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:av_dram" + } + ], + "symbol": "dr (avdp)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:footcandle", + "@type": "Unit", + "name": "footcandle", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu276" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:footcandle" + } + ], + "symbol": "ft.c", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq47", + "name": "illuminance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd27", + "expression": "L-2Β·J" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:footlambert", + "@type": "Unit", + "name": "footlambert", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu277" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:footlambert" + } + ], + "symbol": "ft.L", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq56", + "name": "luminance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd27", + "expression": "L-2Β·J" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:computer_pica", + "@type": "Unit", + "name": "pica (computer)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu278" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:computer_pica" + } + ], + "symbol": "pc", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + }, + { + "@id": "https://unitsml.org/quantity/NISTq48", + "name": "distance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:printers_pica", + "@type": "Unit", + "name": "pica (printer's)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu279" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:printers_pica" + } + ], + "symbol": "pc", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilogram_meter_per_second", + "@type": "Unit", + "name": "kilogram meter per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu27p10'3.u1.u3e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_meter_per_second" + } + ], + "symbol": "NΒ·m/s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq131", + "name": "momentum" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd61", + "expression": "LΒ·MΒ·T-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilogram_per_meter", + "@type": "Unit", + "name": "kilogram per meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu27p10'3.u1e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_per_meter" + } + ], + "symbol": "kg/m", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq126", + "name": "linear density" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd58", + "expression": "L-1Β·M" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilogram_per_square_meter", + "@type": "Unit", + "name": "kilogram per square meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu27p10'3.u1e-2/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_per_square_meter" + } + ], + "symbol": "kg/mΒ²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq31", + "name": "surface density" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd51", + "expression": "L-2Β·M" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilogram_per_cubic_meter", + "@type": "Unit", + "name": "kilogram per cubic meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu27p10'3.u1e-3/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_per_cubic_meter" + } + ], + "symbol": "kgΒ·m⁻³", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq33", + "name": "mass concentration" + }, + { + "@id": "https://unitsml.org/quantity/NISTq51", + "name": "density" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd30", + "expression": "L-3Β·M" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilogram_meter_squared", + "@type": "Unit", + "name": "kilogram meter squared", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu27p10'3.u1e2/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_meter_squared" + } + ], + "symbol": "kgΒ·mΒ²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq127", + "name": "mass moment of inertia" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd59", + "expression": "L2Β·M" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilogram_meter_squared_per_second", + "@type": "Unit", + "name": "kilogram meter squared per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu27p10'3.u1e2/1.u3e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_meter_squared_per_second" + } + ], + "symbol": "kgΒ·mΒ²/s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq132", + "name": "moment of momentum" + }, + { + "@id": "https://unitsml.org/quantity/NISTq132", + "name": "moment of momentum" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd60", + "expression": "L2Β·MΒ·T-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": 2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilogram_per_second", + "@type": "Unit", + "name": "kilogram per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu27p10'3.u3e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_per_second" + } + ], + "symbol": "kg/s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq150", + "name": "mass flow rate" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd65", + "expression": "MΒ·T-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:gray", + "@type": "Unit", + "name": "gray", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu28" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:gray" + } + ], + "symbol": "Gy", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq36", + "name": "absorbed dose" + }, + { + "@id": "https://unitsml.org/quantity/NISTq37", + "name": "specific energy imparted" + }, + { + "@id": "https://unitsml.org/quantity/NISTq38", + "name": "kerma" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd25", + "expression": "L2Β·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:gray_per_second", + "@type": "Unit", + "name": "gray per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu28.u3e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:gray_per_second" + } + ], + "symbol": "Gy/s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq194", + "name": "kerma rate" + }, + { + "@id": "https://unitsml.org/quantity/NISTq76", + "name": "absorbed dose rate" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd50", + "expression": "L2Β·T-3" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu28", + "name": "gray", + "symbol": "Gy" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:computer_point", + "@type": "Unit", + "name": "point (computer)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu280" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:computer_point" + } + ], + "symbol": "pt", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + }, + { + "@id": "https://unitsml.org/quantity/NISTq48", + "name": "distance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_survey_rod", + "@type": "Unit", + "name": "rod (based on US survey foot)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu281" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_survey_rod" + } + ], + "symbol": "rd", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_survey_fathom", + "@type": "Unit", + "name": "fathom (based on US survey foot)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu282" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_survey_fathom" + } + ], + "symbol": "fath", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:circular_mil", + "@type": "Unit", + "name": "circular mil", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu283" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:circular_mil" + } + ], + "symbol": "cmil", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq8", + "name": "area" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd8", + "expression": "L2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:horsepower", + "@type": "Unit", + "name": "horsepower", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu284" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:horsepower" + } + ], + "symbol": "hp", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20", + "name": "power" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:boiler_horsepower", + "@type": "Unit", + "name": "horsepower, boiler", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu285" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:boiler_horsepower" + } + ], + "symbol": "hp", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20", + "name": "power" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:water_horsepower", + "@type": "Unit", + "name": "horsepower, water", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu286" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:water_horsepower" + } + ], + "symbol": "hp", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20", + "name": "power" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:uk_horsepower", + "@type": "Unit", + "name": "horsepower (UK)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu287" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:uk_horsepower" + } + ], + "symbol": "hp", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20", + "name": "power" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:degree_Rankine", + "@type": "Unit", + "name": "degree Rankine", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu288" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:degree_Rankine" + } + ], + "symbol": "Β°R", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq5", + "name": "thermodynamic temperature" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd5", + "expression": "Theta" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:dalton", + "@type": "Unit", + "name": "dalton", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu289" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:dalton" + } + ], + "symbol": "Da", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu241", + "name": "unified atomic mass unit", + "symbol": "u" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:sievert", + "@type": "Unit", + "name": "sievert", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu29" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:sievert" + } + ], + "symbol": "Sv", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq39", + "name": "dose equivalent" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd25", + "expression": "L2Β·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:natural_unit_of_length", + "@type": "Unit", + "name": "natural unit of length", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu290" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:natural_unit_of_length" + } + ], + "symbol": "Ζ›_C", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_1st_hyperpolarizability", + "@type": "Unit", + "name": "atomic unit of 1st hyperpolarizability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu291" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_1st_hyperpolarizability" + } + ], + "symbol": "π‘’Β³π‘Žβ‚€Β³πΈβ‚•Β³", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq172", + "name": "1st hyperpolarizability" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd77", + "expression": "L-1Β·M-2Β·T7Β·I3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_2nd_hyperpolarizability", + "@type": "Unit", + "name": "atomic unit of 2nd hyperpolarizability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu292" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_2nd_hyperpolarizability" + } + ], + "symbol": "π‘’β΄π‘Žβ‚€β΄πΈβ‚•β΄", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq173", + "name": "2nd hyperpolarizability" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd78", + "expression": "L-2Β·M-3Β·T10Β·I4" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_permittivity", + "@type": "Unit", + "name": "atomic unit of permittivity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu293" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_permittivity" + } + ], + "symbol": "𝑒²/π‘Žβ‚€πΈβ‚•", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq71", + "name": "permittivity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd45", + "expression": "L-3Β·M-1Β·T4Β·I2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_velocity", + "@type": "Unit", + "name": "atomic unit of velocity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu294" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_velocity" + } + ], + "symbol": "π‘Žβ‚€πΈβ‚•/ℏ", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq12", + "name": "velocity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd11", + "expression": "LΒ·T-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:natural_unit_of_energy", + "@type": "Unit", + "name": "natural unit of energy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu295" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:natural_unit_of_energy" + } + ], + "symbol": "π‘šβ‚‘π‘Β²", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17", + "name": "energy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:natural_unit_of_momentum", + "@type": "Unit", + "name": "natural unit of momentum", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu296" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:natural_unit_of_momentum" + } + ], + "symbol": "π‘šβ‚‘π‘", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq131", + "name": "momentum" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd61", + "expression": "LΒ·MΒ·T-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:natural_unit_of_action_in_eV_s", + "@type": "Unit", + "name": "natural unit of action in eV s", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu297" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:natural_unit_of_action_in_eV_s" + } + ], + "symbol": "ℏ", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq154", + "name": "action" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd60", + "expression": "L2Β·MΒ·T-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:natural_unit_of_energy_in_MeV", + "@type": "Unit", + "name": "natural unit of energy in MeV", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu298" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:natural_unit_of_energy_in_MeV" + } + ], + "symbol": "π‘šβ‚‘π‘Β²", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17", + "name": "energy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:natural_unit_of_momentum_in_MeV_per_c", + "@type": "Unit", + "name": "natural unit of momentum in MeV/c", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu299" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:natural_unit_of_momentum_in_MeV_per_c" + } + ], + "symbol": "π‘šβ‚‘π‘", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq131", + "name": "momentum" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd61", + "expression": "LΒ·MΒ·T-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:second", + "@type": "Unit", + "name": "second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu3" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:second" + } + ], + "symbol": "β€³", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_base", + "name": "SI base units" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq109", + "name": "period duration" + }, + { + "@id": "https://unitsml.org/quantity/NISTq110", + "name": "time constant" + }, + { + "@id": "https://unitsml.org/quantity/NISTq3", + "name": "time" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd3", + "expression": "T" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:katal", + "@type": "Unit", + "name": "katal", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu30" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:katal" + } + ], + "symbol": "kat", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq44", + "name": "catalytic activity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd26", + "expression": "T-1Β·N" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:katal_per_cubic_meter", + "@type": "Unit", + "name": "katal per cubic meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu30.u1e-3/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:katal_per_cubic_meter" + } + ], + "symbol": "kat/mΒ³", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq84", + "name": "catalytic activity concentration" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd55", + "expression": "M-3Β·T-1Β·N" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu30", + "name": "katal", + "symbol": "kat" + } + }, + { + "power": -3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:imperial_quart", + "@type": "Unit", + "name": "quart (UK)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu300" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:imperial_quart" + } + ], + "symbol": "qt (UK)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_dry_quart", + "@type": "Unit", + "name": "dry quart (US)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu301" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_dry_quart" + } + ], + "symbol": "dry qt (US)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_quart", + "@type": "Unit", + "name": "liquid quart (US)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu302" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_quart" + } + ], + "symbol": "liq qt (US)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_teaspoon", + "@type": "Unit", + "name": "teaspoon", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu303" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_teaspoon" + } + ], + "symbol": "tsp", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_tablespoon", + "@type": "Unit", + "name": "tablespoon", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu304" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_tablespoon" + } + ], + "symbol": "tbsp", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_label_tablespoon", + "@type": "Unit", + "name": "tablespoon (FDA)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu305" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_label_tablespoon" + } + ], + "symbol": "tbsp", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_label_teaspoon", + "@type": "Unit", + "name": "teaspoon (FDA)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu306" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_label_teaspoon" + } + ], + "symbol": "tsp", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_label_cup", + "@type": "Unit", + "name": "cup (FDA)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu307" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_label_cup" + } + ], + "symbol": "cup", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_label_fluid_ounce", + "@type": "Unit", + "name": "fluid ounce (FDA)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu308" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_label_fluid_ounce" + } + ], + "symbol": "fl oz (US label)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_label_ounce", + "@type": "Unit", + "name": "ounce (FDA)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu309" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_label_ounce" + } + ], + "symbol": "oz (US label)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:hertz", + "@type": "Unit", + "name": "hertz", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu31" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:hertz" + } + ], + "symbol": "Hz", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq45", + "name": "frequency" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd24", + "expression": "T-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_survey_chain", + "@type": "Unit", + "name": "chain (based on US survey foot)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu310" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_survey_chain" + } + ], + "symbol": "ch", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_survey_link", + "@type": "Unit", + "name": "link (based on US survey foot)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu311" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_survey_link" + } + ], + "symbol": "lnk", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_survey_furlong", + "@type": "Unit", + "name": "furlong (based on US survey foot)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu312" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_survey_furlong" + } + ], + "symbol": "fur", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_survey_mile", + "@type": "Unit", + "name": "mile (based on US survey foot)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu313" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_survey_mile" + } + ], + "symbol": "mi", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_survey_yard", + "@type": "Unit", + "name": "yard (based on US survey foot)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu314" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_survey_yard" + } + ], + "symbol": "yd", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_survey_foot", + "@type": "Unit", + "name": "foot (based on US survey foot)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu315" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_survey_foot" + } + ], + "symbol": "ft", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_survey_inch", + "@type": "Unit", + "name": "inch (based on US survey foot)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu316" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_survey_inch" + } + ], + "symbol": "in", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_acre", + "@type": "Unit", + "name": "acre (based on US survey foot)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu317" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_acre" + } + ], + "symbol": "ac", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq8", + "name": "area" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd8", + "expression": "L2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:cm_Hg", + "@type": "Unit", + "name": "conventional centimeter of mercury", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu318" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:cm_Hg" + } + ], + "symbol": "cmHg", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:0C_cm_Hg", + "@type": "Unit", + "name": "centimeter of mercury (0 degC)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu319" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:0C_cm_Hg" + } + ], + "symbol": "cmHg", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:lumen", + "@type": "Unit", + "name": "lumen", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu32" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:lumen" + } + ], + "symbol": "lm", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq46", + "name": "luminous flux" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd7", + "expression": "J" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:4C_cm_water", + "@type": "Unit", + "name": "centimeter of water (4 degC)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu320" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:4C_cm_water" + } + ], + "symbol": "cmHβ‚‚O", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:cm_water", + "@type": "Unit", + "name": "conventional centimeter of water", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu321" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:cm_water" + } + ], + "symbol": "cmHβ‚‚O", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:in_water", + "@type": "Unit", + "name": "conventional inch of water", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu322" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:in_water" + } + ], + "symbol": "inHβ‚‚O", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:39F_in_water", + "@type": "Unit", + "name": "inch of water (39.2 degF)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu323" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:39F_in_water" + } + ], + "symbol": "inHβ‚‚O", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:60F_in_water", + "@type": "Unit", + "name": "inch of water (60 degF)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu324" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:60F_in_water" + } + ], + "symbol": "inHβ‚‚O", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:ft_water", + "@type": "Unit", + "name": "conventional foot of water", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu325" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:ft_water" + } + ], + "symbol": "ftHβ‚‚O", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:39F_ft_water", + "@type": "Unit", + "name": "foot of water (39.2 degF)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu326" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:39F_ft_water" + } + ], + "symbol": "ftHβ‚‚O", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:32F_in_Hg", + "@type": "Unit", + "name": "inch of mercury (32 degF)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu327" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:32F_in_Hg" + } + ], + "symbol": "β€³Hg", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:60F_in_Hg", + "@type": "Unit", + "name": "inch of mercury (60 degF)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu328" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:60F_in_Hg" + } + ], + "symbol": "β€³Hg", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:in_Hg", + "@type": "Unit", + "name": "conventional inch of mercury", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu329" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:in_Hg" + } + ], + "symbol": "β€³Hg", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:lux", + "@type": "Unit", + "name": "lux", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu33" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:lux" + } + ], + "symbol": "lx", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq47", + "name": "illuminance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd27", + "expression": "L-2Β·J" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:ft_Hg", + "@type": "Unit", + "name": "conventional foot of mercury", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu330" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:ft_Hg" + } + ], + "symbol": "β€²Hg", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_therm", + "@type": "Unit", + "name": "therm (US)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu331" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_therm" + } + ], + "symbol": "thm (US)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17", + "name": "energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq18", + "name": "work" + }, + { + "@id": "https://unitsml.org/quantity/NISTq182", + "name": "kinetic energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq183", + "name": "mechanical energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq19", + "name": "amount of heat" + }, + { + "@id": "https://unitsml.org/quantity/NISTq77", + "name": "potential energy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:pH", + "@type": "Unit", + "name": "pH", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu332" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:pH" + } + ], + "symbol": "pH", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/logarithmic_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq174", + "name": "index of acidity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd94", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:table_btu", + "@type": "Unit", + "name": "British thermal unit_IT", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu333" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:table_btu" + } + ], + "symbol": "Btu", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq19", + "name": "amount of heat" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:mean_btu", + "@type": "Unit", + "name": "British thermal unit (mean)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu334" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:mean_btu" + } + ], + "symbol": "Btu", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq19", + "name": "amount of heat" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:39F_btu", + "@type": "Unit", + "name": "British thermal unit (39 degF)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu335" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:39F_btu" + } + ], + "symbol": "Btu", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq19", + "name": "amount of heat" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:59F_btu", + "@type": "Unit", + "name": "British thermal unit (59 degF)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu336" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:59F_btu" + } + ], + "symbol": "Btu", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq19", + "name": "amount of heat" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:60F_btu", + "@type": "Unit", + "name": "British thermal unit (60 degF)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu337" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:60F_btu" + } + ], + "symbol": "Btu", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq19", + "name": "amount of heat" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:tropical_year", + "@type": "Unit", + "name": "year, tropical", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu338" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:tropical_year" + } + ], + "symbol": "a", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq3", + "name": "time" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd3", + "expression": "T" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:sidereal_year", + "@type": "Unit", + "name": "year, sidereal", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu339" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:sidereal_year" + } + ], + "symbol": "a", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq3", + "name": "time" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd3", + "expression": "T" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:sidereal_day", + "@type": "Unit", + "name": "day, sidereal", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu340" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:sidereal_day" + } + ], + "symbol": "d", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq3", + "name": "time" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd3", + "expression": "T" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:sidereal_hour", + "@type": "Unit", + "name": "hour, sidereal", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu341" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:sidereal_hour" + } + ], + "symbol": "h", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq3", + "name": "time" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd3", + "expression": "T" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:sidereal_minute", + "@type": "Unit", + "name": "minute, sidereal", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu342" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:sidereal_minute" + } + ], + "symbol": "min", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq3", + "name": "time" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd3", + "expression": "T" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:sidereal_second", + "@type": "Unit", + "name": "second, sidereal", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu343" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:sidereal_second" + } + ], + "symbol": "s", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq3", + "name": "time" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd3", + "expression": "T" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:printers_point", + "@type": "Unit", + "name": "point (printer's)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu344" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:printers_point" + } + ], + "symbol": "pt", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:shake", + "@type": "Unit", + "name": "shake", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu345" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:shake" + } + ], + "symbol": "shake", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq3", + "name": "time" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd3", + "expression": "T" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:denier", + "@type": "Unit", + "name": "denier", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu346" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:denier" + } + ], + "symbol": "den", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq176", + "name": "mass divided by length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd58", + "expression": "L-1Β·M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:nato_mil", + "@type": "Unit", + "name": "angular mil (NATO)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu347" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:nato_mil" + } + ], + "symbol": "mil", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq9", + "name": "plane angle" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd9", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:pound_mole", + "@type": "Unit", + "name": "pound-mole", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu348" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:pound_mole" + } + ], + "symbol": "lbmol", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq6", + "name": "amount of substance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd6", + "expression": "N" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:ton_refrigeration", + "@type": "Unit", + "name": "ton of refrigeration (12 000 Btu_IT/h)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu349" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:ton_refrigeration" + } + ], + "symbol": "ton", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20", + "name": "power" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:bit", + "@type": "Unit", + "name": "bit", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu350" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:bit" + } + ], + "symbol": "bit", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/discrete" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq177", + "name": "storage capacity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd95", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:byte", + "@type": "Unit", + "name": "byte", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu351" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:byte" + } + ], + "symbol": "B", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/discrete" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq177", + "name": "storage capacity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd95", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_peck", + "@type": "Unit", + "name": "peck", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu352" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_peck" + } + ], + "symbol": "pk", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_minim", + "@type": "Unit", + "name": "minim", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu353" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_minim" + } + ], + "symbol": "min", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_cup", + "@type": "Unit", + "name": "cup (US)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu354" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_cup" + } + ], + "symbol": "cup", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_fluid_dram", + "@type": "Unit", + "name": "fluid dram", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu355" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_fluid_dram" + } + ], + "symbol": "fl dr", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_gill", + "@type": "Unit", + "name": "gill (US)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu356" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_gill" + } + ], + "symbol": "gi", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:imperial_gill", + "@type": "Unit", + "name": "gill [Canadian and UK (Imperial)]", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu357" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:imperial_gill" + } + ], + "symbol": "gi", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:cubic_foot_per_minute", + "@type": "Unit", + "name": "cubic foot per minute", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu358" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:cubic_foot_per_minute" + } + ], + "symbol": "ftΒ³min", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq151", + "name": "volume flow rate" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd66", + "expression": "L3Β·T-1" + }, + "rootUnits": [ + { + "power": 3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu78", + "name": "foot", + "symbol": "β€²" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu36", + "name": "minute", + "symbol": "β€²" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:cubic_foot_per_second", + "@type": "Unit", + "name": "cubic foot per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu359" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:cubic_foot_per_second" + } + ], + "symbol": "ftΒ³sec", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq151", + "name": "volume flow rate" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd66", + "expression": "L3Β·T-1" + }, + "rootUnits": [ + { + "power": 3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu78", + "name": "foot", + "symbol": "β€²" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:minute", + "@type": "Unit", + "name": "minute", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu36" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:minute" + } + ], + "symbol": "β€²", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq3", + "name": "time" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd3", + "expression": "T" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:cubic_inch_per_minute", + "@type": "Unit", + "name": "cubic inch per minute", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu360" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:cubic_inch_per_minute" + } + ], + "symbol": "inΒ³min", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq151", + "name": "volume flow rate" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd66", + "expression": "L3Β·T-1" + }, + "rootUnits": [ + { + "power": 3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu8", + "name": "inch", + "symbol": "β€³" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu36", + "name": "minute", + "symbol": "β€²" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:microinch", + "@type": "Unit", + "name": "microinch", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu361" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:microinch" + } + ], + "symbol": "ΞΌin", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu8", + "name": "inch", + "symbol": "β€³" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_-6", + "name": "micro", + "symbol": "ΞΌ" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:millibar", + "@type": "Unit", + "name": "millibar", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu362" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:millibar" + } + ], + "symbol": "mbar", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu91", + "name": "bar", + "symbol": "bar" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_-3", + "name": "milli", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:mile_per_gallon", + "@type": "Unit", + "name": "mile per gallon (US)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu363" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:mile_per_gallon" + } + ], + "symbol": "mi/gal", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq198", + "name": "fuel efficiency" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd99", + "expression": "L-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu83", + "name": "mile", + "symbol": "mi" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu175", + "name": "gallon (US)", + "symbol": "gal (US)" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:gallon_per_minute", + "@type": "Unit", + "name": "gallon (US) per minute", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu364" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:gallon_per_minute" + } + ], + "symbol": "gpm", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq151", + "name": "volume flow rate" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd66", + "expression": "L3Β·T-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu175", + "name": "gallon (US)", + "symbol": "gal (US)" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu36", + "name": "minute", + "symbol": "β€²" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:milliliter", + "@type": "Unit", + "name": "milliliter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu365" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:milliliter" + } + ], + "symbol": "ml", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu130", + "name": "litre", + "symbol": "L" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_-3", + "name": "milli", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:mole_per_liter", + "@type": "Unit", + "name": "mole per liter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu366" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:mole_per_liter" + } + ], + "symbol": "mol/L", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq55", + "name": "amount of substance concentration" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd34", + "expression": "L-3Β·N" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu6", + "name": "mole", + "symbol": "mol" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu130", + "name": "litre", + "symbol": "L" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:hour", + "@type": "Unit", + "name": "hour", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu37" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:hour" + } + ], + "symbol": "h", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq3", + "name": "time" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd3", + "expression": "T" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:light_week", + "@type": "Unit", + "name": "light week", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu376" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:light_week" + } + ], + "symbol": "l.w.", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:light_hour", + "@type": "Unit", + "name": "light hour", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu377" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:light_hour" + } + ], + "symbol": "l.h.", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:light_minute", + "@type": "Unit", + "name": "light minute", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu378" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:light_minute" + } + ], + "symbol": "l.m.", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:light_second", + "@type": "Unit", + "name": "light second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu379" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:light_second" + } + ], + "symbol": "l.s.", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:day", + "@type": "Unit", + "name": "day", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu38" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:day" + } + ], + "symbol": "d", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq3", + "name": "time" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd3", + "expression": "T" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilometer_per_liter", + "@type": "Unit", + "name": "kilometer per liter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu380" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilometer_per_liter" + } + ], + "symbol": "km/L", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq198", + "name": "fuel efficiency" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd99", + "expression": "L-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu130", + "name": "litre", + "symbol": "L" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:decibel_milliwatt", + "@type": "Unit", + "name": "dBm", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu381" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:decibel_milliwatt" + } + ], + "symbol": "dB_mW", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/logarithmic_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq90", + "name": "ratio logarithm (B)" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd67", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:relative_humidity", + "@type": "Unit", + "name": "relative humidity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu382" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:relative_humidity" + } + ], + "symbol": "%rh", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq199", + "name": "relative humidity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd80", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:octave", + "@type": "Unit", + "name": "octave", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu383" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:octave" + } + ], + "symbol": "oct", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq200", + "name": "logarithmic frequency range" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd67", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:decade", + "@type": "Unit", + "name": "decade", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu384" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:decade" + } + ], + "symbol": "dec", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq200", + "name": "logarithmic frequency range" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd67", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:erlang", + "@type": "Unit", + "name": "erlang", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu385" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:erlang" + } + ], + "symbol": "E", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq201", + "name": "traffic intensity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd100", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:baud", + "@type": "Unit", + "name": "baud", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu386" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:baud" + } + ], + "symbol": "Bd", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/discrete" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq202", + "name": "symbol rate" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd101", + "expression": "T-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:shannon", + "@type": "Unit", + "name": "shannon", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu387" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:shannon" + } + ], + "symbol": "Sh", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/discrete" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq203", + "name": "information content" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd102", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:hartley", + "@type": "Unit", + "name": "hartley", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu388" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:hartley" + } + ], + "symbol": "Hart", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/discrete" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq203", + "name": "information content" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd102", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:angstrom", + "@type": "Unit", + "name": "Γ₯ngstrΓΆm", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu39" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:angstrom" + } + ], + "symbol": "β„«", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + }, + { + "@id": "https://unitsml.org/quantity/NISTq48", + "name": "distance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:second_to_the_power_minus_one", + "@type": "Unit", + "name": "second to the power minus one", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu3e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:second_to_the_power_minus_one" + } + ], + "symbol": "s⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq112", + "name": "rotational frequency" + }, + { + "@id": "https://unitsml.org/quantity/NISTq113", + "name": "angular frequency" + }, + { + "@id": "https://unitsml.org/quantity/NISTq120", + "name": "damping coefficient" + }, + { + "@id": "https://unitsml.org/quantity/NISTq189", + "name": "emission rate" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd24", + "expression": "T-1" + }, + "rootUnits": [ + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:ampere", + "@type": "Unit", + "name": "ampere", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu4" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:ampere" + } + ], + "symbol": "A", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_base", + "name": "SI base units" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq4", + "name": "electric current" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd4", + "expression": "I" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:ampere_per_meter", + "@type": "Unit", + "name": "ampere per meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu4.u1e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:ampere_per_meter" + } + ], + "symbol": "AΒ·m⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq54", + "name": "magnetic field strength" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd33", + "expression": "L-1Β·I" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu4", + "name": "ampere", + "symbol": "A" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:ampere_per_square_meter", + "@type": "Unit", + "name": "ampere per square meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu4.u1e-2/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:ampere_per_square_meter" + } + ], + "symbol": "AΒ·m⁻²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq53", + "name": "current density" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd32", + "expression": "L-2Β·I" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu4", + "name": "ampere", + "symbol": "A" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:parts_per_million", + "@type": "Unit", + "name": "parts per million", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu400" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:parts_per_million" + } + ], + "symbol": "ppm", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq186", + "name": "mass fraction" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd85", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:var", + "@type": "Unit", + "name": "var", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu401" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:var" + } + ], + "symbol": "var", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq187", + "name": "apparent power" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu16", + "name": "volt", + "symbol": "V" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu4", + "name": "ampere", + "symbol": "A" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:are", + "@type": "Unit", + "name": "are", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu42" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:are" + } + ], + "symbol": "a", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_nist_acceptable", + "name": "non-SI but acceptable by NIST SP 811" + }, + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq8", + "name": "area" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd8", + "expression": "L2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:barn", + "@type": "Unit", + "name": "barn", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu43" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:barn" + } + ], + "symbol": "b", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq8", + "name": "area" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd8", + "expression": "L2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:hectare", + "@type": "Unit", + "name": "hectare", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu44" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:hectare" + } + ], + "symbol": "ha", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq8", + "name": "area" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd8", + "expression": "L2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:square_foot", + "@type": "Unit", + "name": "square foot", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu45" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:square_foot" + } + ], + "symbol": "ftΒ²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq8", + "name": "area" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd8", + "expression": "L2" + }, + "rootUnits": [ + { + "power": 2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu78", + "name": "foot", + "symbol": "β€²" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:square_inch", + "@type": "Unit", + "name": "square inch", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu46" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:square_inch" + } + ], + "symbol": "inΒ²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq8", + "name": "area" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd8", + "expression": "L2" + }, + "rootUnits": [ + { + "power": 2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu8", + "name": "inch", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:abampere", + "@type": "Unit", + "name": "abampere", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu47" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:abampere" + } + ], + "symbol": "abA", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq4", + "name": "electric current" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd4", + "expression": "I" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:abcoulomb", + "@type": "Unit", + "name": "abcoulomb", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu48" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:abcoulomb" + } + ], + "symbol": "abC", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq22", + "name": "electric charge" + }, + { + "@id": "https://unitsml.org/quantity/NISTq23", + "name": "amount of electricity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd17", + "expression": "TΒ·I" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:abfarad", + "@type": "Unit", + "name": "abfarad", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu49" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:abfarad" + } + ], + "symbol": "abF", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq27", + "name": "capacitance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd19", + "expression": "L-2Β·M-1Β·T4Β·I2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kelvin", + "@type": "Unit", + "name": "kelvin", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu5" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kelvin" + } + ], + "symbol": "Β°K", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_base", + "name": "SI base units" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq193", + "name": "ITS-90 temperature (K)" + }, + { + "@id": "https://unitsml.org/quantity/NISTq196", + "name": "PLTS-2000 temperature (K)" + }, + { + "@id": "https://unitsml.org/quantity/NISTq5", + "name": "thermodynamic temperature" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd5", + "expression": "Theta" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:abhenry", + "@type": "Unit", + "name": "abhenry", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu50" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:abhenry" + } + ], + "symbol": "abH", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq32", + "name": "inductance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd23", + "expression": "L2Β·MΒ·T-2Β·I-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:abmho", + "@type": "Unit", + "name": "abmho", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu51" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:abmho" + } + ], + "symbol": "(abΞ©)⁻¹", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq29", + "name": "electric conductance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd21", + "expression": "L-2Β·M-1Β·T3Β·I2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:abohm", + "@type": "Unit", + "name": "abohm", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu52" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:abohm" + } + ], + "symbol": "abΞ©", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq28", + "name": "electric resistance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd20", + "expression": "L2Β·MΒ·T-3Β·I-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:abvolt", + "@type": "Unit", + "name": "abvolt", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu53" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:abvolt" + } + ], + "symbol": "abV", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq24", + "name": "electric potential difference" + }, + { + "@id": "https://unitsml.org/quantity/NISTq25", + "name": "potential difference" + }, + { + "@id": "https://unitsml.org/quantity/NISTq26", + "name": "electromotive force" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd18", + "expression": "L2Β·MΒ·T-3Β·I-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:ampere_hour", + "@type": "Unit", + "name": "ampere hour", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu54" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:ampere_hour" + } + ], + "symbol": "AΒ·h", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq22", + "name": "electric charge" + }, + { + "@id": "https://unitsml.org/quantity/NISTq23", + "name": "amount of electricity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd17", + "expression": "TΒ·I" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu4", + "name": "ampere", + "symbol": "A" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu37", + "name": "hour", + "symbol": "h" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:biot", + "@type": "Unit", + "name": "biot", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu55" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:biot" + } + ], + "symbol": "Bi", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq4", + "name": "electric current" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd4", + "expression": "I" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu47", + "name": "abampere", + "symbol": "abA" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_survey_acre_foot", + "@type": "Unit", + "name": "acre-foot (based on US survey foot)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu57" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_survey_acre_foot" + } + ], + "symbol": "acΒ·ft", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu317", + "name": "acre (based on US survey foot)", + "symbol": "ac" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu78", + "name": "foot", + "symbol": "β€²" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:maxwell", + "@type": "Unit", + "name": "maxwell", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu58" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:maxwell" + } + ], + "symbol": "Mx", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq30", + "name": "magnetic flux" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd22", + "expression": "L2Β·MΒ·T-2Β·I-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kelvin_to_the_power_minus_one", + "@type": "Unit", + "name": "kelvin to the power minus one", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu5e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kelvin_to_the_power_minus_one" + } + ], + "symbol": "K⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq156", + "name": "linear expansion coefficient" + }, + { + "@id": "https://unitsml.org/quantity/NISTq157", + "name": "cubic expansion coefficient" + }, + { + "@id": "https://unitsml.org/quantity/NISTq158", + "name": "relative pressure coefficient" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd68", + "expression": "Theta-1" + }, + "rootUnits": [ + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu5", + "name": "kelvin", + "symbol": "Β°K" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:mole", + "@type": "Unit", + "name": "mole", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu6" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:mole" + } + ], + "symbol": "mol", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_base", + "name": "SI base units" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq6", + "name": "amount of substance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd6", + "expression": "N" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:mole_per_cubic_meter", + "@type": "Unit", + "name": "mole per cubic meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu6.u1e-3/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:mole_per_cubic_meter" + } + ], + "symbol": "molΒ·m⁻³", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq55", + "name": "amount of substance concentration" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd34", + "expression": "L-3Β·N" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu6", + "name": "mole", + "symbol": "mol" + } + }, + { + "power": -3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:mole_per_kilogram", + "@type": "Unit", + "name": "mole per kilogram", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu6.u27p10'3e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:mole_per_kilogram" + } + ], + "symbol": "mol/kg", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq179", + "name": "molality of solute B" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd79", + "expression": "MΒ·N" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu6", + "name": "mole", + "symbol": "mol" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:table_calorie", + "@type": "Unit", + "name": "I.T. calorie", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu60" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:table_calorie" + } + ], + "symbol": "cal_IT", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17", + "name": "energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq18", + "name": "work" + }, + { + "@id": "https://unitsml.org/quantity/NISTq182", + "name": "kinetic energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq183", + "name": "mechanical energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq19", + "name": "amount of heat" + }, + { + "@id": "https://unitsml.org/quantity/NISTq77", + "name": "potential energy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:one", + "@type": "Unit", + "name": "one", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu61" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:one" + } + ], + "symbol": "1", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq111", + "name": "rotation" + }, + { + "@id": "https://unitsml.org/quantity/NISTq121", + "name": "ratio logarithm (Np)" + }, + { + "@id": "https://unitsml.org/quantity/NISTq125", + "name": "relative mass density" + }, + { + "@id": "https://unitsml.org/quantity/NISTq136", + "name": "linear strain" + }, + { + "@id": "https://unitsml.org/quantity/NISTq137", + "name": "shear strain" + }, + { + "@id": "https://unitsml.org/quantity/NISTq138", + "name": "volume strain" + }, + { + "@id": "https://unitsml.org/quantity/NISTq140", + "name": "Poisson number" + }, + { + "@id": "https://unitsml.org/quantity/NISTq147", + "name": "dynamic friction factor" + }, + { + "@id": "https://unitsml.org/quantity/NISTq188", + "name": "nil" + }, + { + "@id": "https://unitsml.org/quantity/NISTq93", + "name": "refractive index" + }, + { + "@id": "https://unitsml.org/quantity/NISTq94", + "name": "relative permeability" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd80", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:erg", + "@type": "Unit", + "name": "erg", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu62" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:erg" + } + ], + "symbol": "erg", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17", + "name": "energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq18", + "name": "work" + }, + { + "@id": "https://unitsml.org/quantity/NISTq182", + "name": "kinetic energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq183", + "name": "mechanical energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq19", + "name": "amount of heat" + }, + { + "@id": "https://unitsml.org/quantity/NISTq77", + "name": "potential energy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:table_kg_calorie", + "@type": "Unit", + "name": "kilocalorie_IT", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu63" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:table_kg_calorie" + } + ], + "symbol": "kcal_IT", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17", + "name": "energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq18", + "name": "work" + }, + { + "@id": "https://unitsml.org/quantity/NISTq182", + "name": "kinetic energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq183", + "name": "mechanical energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq19", + "name": "amount of heat" + }, + { + "@id": "https://unitsml.org/quantity/NISTq77", + "name": "potential energy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:thermo_kg_calorie", + "@type": "Unit", + "name": "kilocalorie_th", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu64" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:thermo_kg_calorie" + } + ], + "symbol": "kcal_th", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17", + "name": "energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq18", + "name": "work" + }, + { + "@id": "https://unitsml.org/quantity/NISTq182", + "name": "kinetic energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq183", + "name": "mechanical energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq19", + "name": "amount of heat" + }, + { + "@id": "https://unitsml.org/quantity/NISTq77", + "name": "potential energy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilowatt_hour", + "@type": "Unit", + "name": "kilowatt hour", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu65" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilowatt_hour" + } + ], + "symbol": "kWΒ·h", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17", + "name": "energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq18", + "name": "work" + }, + { + "@id": "https://unitsml.org/quantity/NISTq182", + "name": "kinetic energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq183", + "name": "mechanical energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq19", + "name": "amount of heat" + }, + { + "@id": "https://unitsml.org/quantity/NISTq77", + "name": "potential energy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu14", + "name": "watt", + "symbol": "W" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu37", + "name": "hour", + "symbol": "h" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:watt_hour", + "@type": "Unit", + "name": "watt hour", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu69" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:watt_hour" + } + ], + "symbol": "WΒ·h", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17", + "name": "energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq18", + "name": "work" + }, + { + "@id": "https://unitsml.org/quantity/NISTq182", + "name": "kinetic energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq183", + "name": "mechanical energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq19", + "name": "amount of heat" + }, + { + "@id": "https://unitsml.org/quantity/NISTq77", + "name": "potential energy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu14", + "name": "watt", + "symbol": "W" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu37", + "name": "hour", + "symbol": "h" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:candela", + "@type": "Unit", + "name": "candela", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu7" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:candela" + } + ], + "symbol": "cd", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_base", + "name": "SI base units" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq7", + "name": "luminous intensity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd7", + "expression": "J" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:candela_per_square_meter", + "@type": "Unit", + "name": "candela per square meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu7.u1e-2/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:candela_per_square_meter" + } + ], + "symbol": "cdΒ·m⁻²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq56", + "name": "luminance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd27", + "expression": "L-2Β·J" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu7", + "name": "candela", + "symbol": "cd" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:dyne", + "@type": "Unit", + "name": "dyne", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu71" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:dyne" + } + ], + "symbol": "dyn", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq13", + "name": "force" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd12", + "expression": "LΒ·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilogram_force", + "@type": "Unit", + "name": "kilogram-force", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu72" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_force" + } + ], + "symbol": "kgf", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq13", + "name": "force" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd12", + "expression": "LΒ·MΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilopond", + "@type": "Unit", + "name": "kilopond", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu73" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilopond" + } + ], + "symbol": "kp", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq13", + "name": "force" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd12", + "expression": "LΒ·MΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu196", + "name": "gram-force", + "symbol": "gf" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:calorie_th_per_second", + "@type": "Unit", + "name": "calorie_th per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu74" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:calorie_th_per_second" + } + ], + "symbol": "cal_th/s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20", + "name": "power" + }, + { + "@id": "https://unitsml.org/quantity/NISTq21", + "name": "radiant flux" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu227", + "name": "thermochemical calorie", + "symbol": "cal" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilocalorie_th_per_second", + "@type": "Unit", + "name": "kilocalorie_th per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu75" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilocalorie_th_per_second" + } + ], + "symbol": "kcal_th/s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20", + "name": "power" + }, + { + "@id": "https://unitsml.org/quantity/NISTq21", + "name": "radiant flux" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu227", + "name": "thermochemical calorie", + "symbol": "cal" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:foot", + "@type": "Unit", + "name": "foot", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu78" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:foot" + } + ], + "symbol": "β€²", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + }, + { + "@id": "https://unitsml.org/quantity/NISTq48", + "name": "distance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:inch", + "@type": "Unit", + "name": "inch", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu8" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:inch" + } + ], + "symbol": "β€³", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + }, + { + "@id": "https://unitsml.org/quantity/NISTq48", + "name": "distance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:mile", + "@type": "Unit", + "name": "mile", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu83" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:mile" + } + ], + "symbol": "mi", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + }, + { + "@id": "https://unitsml.org/quantity/NISTq48", + "name": "distance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:yard", + "@type": "Unit", + "name": "yard", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu84" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:yard" + } + ], + "symbol": "yd", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + }, + { + "@id": "https://unitsml.org/quantity/NISTq48", + "name": "distance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:phot", + "@type": "Unit", + "name": "phot", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu85" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:phot" + } + ], + "symbol": "ph", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq47", + "name": "illuminance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd27", + "expression": "L-2Β·J" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:grain", + "@type": "Unit", + "name": "grain (troy or apothecary)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu86" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:grain" + } + ], + "symbol": "gr", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:metric_ton", + "@type": "Unit", + "name": "tonne", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu88" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:metric_ton" + } + ], + "symbol": "t", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:erg_per_second", + "@type": "Unit", + "name": "erg per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu89" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:erg_per_second" + } + ], + "symbol": "ergΒ·s⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20", + "name": "power" + }, + { + "@id": "https://unitsml.org/quantity/NISTq21", + "name": "radiant flux" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu62", + "name": "erg", + "symbol": "erg" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:radian", + "@type": "Unit", + "name": "radian", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu9" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:radian" + } + ], + "symbol": "rad", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq195", + "name": "phase" + }, + { + "@id": "https://unitsml.org/quantity/NISTq9", + "name": "plane angle" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd98", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:radian_per_meter", + "@type": "Unit", + "name": "radian per meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu9.u1e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:radian_per_meter" + } + ], + "symbol": "rad/m", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq115", + "name": "angular wavenumber" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd29", + "expression": "L-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu9", + "name": "radian", + "symbol": "rad" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:radian_per_second", + "@type": "Unit", + "name": "radian per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu9.u3e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:radian_per_second" + } + ], + "symbol": "rad/s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq113", + "name": "angular frequency" + }, + { + "@id": "https://unitsml.org/quantity/NISTq57", + "name": "angular velocity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd24", + "expression": "T-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu9", + "name": "radian", + "symbol": "rad" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:radian_per_second_squared", + "@type": "Unit", + "name": "radian per second squared", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu9.u3e-2/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:radian_per_second_squared" + } + ], + "symbol": "rad/sΒ²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq58", + "name": "angular acceleration" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd35", + "expression": "T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu9", + "name": "radian", + "symbol": "rad" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:bar", + "@type": "Unit", + "name": "bar", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu91" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:bar" + } + ], + "symbol": "bar", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:dyne_per_square_centimeter", + "@type": "Unit", + "name": "dyne per square centimeter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu92" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:dyne_per_square_centimeter" + } + ], + "symbol": "dynΒ·cm⁻²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu71", + "name": "dyne", + "symbol": "dyn" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_-2", + "name": "centi", + "symbol": "c" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:gram_force_per_square_centimeter", + "@type": "Unit", + "name": "gram-force per square centimeter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu93" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:gram_force_per_square_centimeter" + } + ], + "symbol": "gfΒ·cm⁻²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu196", + "name": "gram-force", + "symbol": "gf" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_-2", + "name": "centi", + "symbol": "c" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilogram_force_per_square_centimeter", + "@type": "Unit", + "name": "kilogram-force per square centimeter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu94" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_force_per_square_centimeter" + } + ], + "symbol": "kgfΒ·cm⁻²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_-2", + "name": "centi", + "symbol": "c" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilogram_force_per_square_meter", + "@type": "Unit", + "name": "kilogram-force per square meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu95" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_force_per_square_meter" + } + ], + "symbol": "kgfΒ·m⁻²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilogram_force_per_square_millimeter", + "@type": "Unit", + "name": "kilogram-force per square millimeter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu96" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_force_per_square_millimeter" + } + ], + "symbol": "kgfΒ·mm⁻²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_-3", + "name": "milli", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:centipoise", + "@type": "Unit", + "name": "centipoise", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu97" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:centipoise" + } + ], + "symbol": "cP", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq59", + "name": "dynamic viscosity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd36", + "expression": "L-1Β·MΒ·T-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu128", + "name": "poise", + "symbol": "P" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_-2", + "name": "centi", + "symbol": "c" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:curie", + "@type": "Unit", + "name": "curie", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu98" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:curie" + } + ], + "symbol": "Ci", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_nist_acceptable", + "name": "non-SI but acceptable by NIST SP 811" + }, + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq35", + "name": "activity referred to a radionuclide" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd24", + "expression": "T-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:rad", + "@type": "Unit", + "name": "rad (absorbed dose)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu99" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:rad" + } + ], + "symbol": "rad", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_nist_acceptable", + "name": "non-SI but acceptable by NIST SP 811" + }, + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq36", + "name": "absorbed dose" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd25", + "expression": "L2Β·T-2" + } + } + ] +} \ No newline at end of file diff --git a/public/unitsdb/unit_systems.json b/public/unitsdb/unit_systems.json new file mode 100644 index 0000000..246936d --- /dev/null +++ b/public/unitsdb/unit_systems.json @@ -0,0 +1,135 @@ +[ + { + "id": "SI_base", + "unitsml_id": "us:si-base", + "name": "SI base units", + "short": "si-base", + "acceptable": true, + "unit_count": 8, + "identifiers": [ + { + "type": "nist", + "id": "SI_base" + }, + { + "type": "unitsml", + "id": "us:si-base" + } + ], + "base_units": [] + }, + { + "id": "SI_compatible", + "unitsml_id": "us:si-compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true, + "unit_count": 88, + "identifiers": [ + { + "type": "nist", + "id": "SI_compatible" + }, + { + "type": "unitsml", + "id": "us:si-compatible" + } + ], + "base_units": [] + }, + { + "id": "SI_derived_non-special", + "unitsml_id": "us:si-derived-nonspecial", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true, + "unit_count": 58, + "identifiers": [ + { + "type": "nist", + "id": "SI_derived_non-special" + }, + { + "type": "unitsml", + "id": "us:si-derived-nonspecial" + } + ], + "base_units": [] + }, + { + "id": "SI_derived_special", + "unitsml_id": "us:si-derived-special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true, + "unit_count": 22, + "identifiers": [ + { + "type": "nist", + "id": "SI_derived_special" + }, + { + "type": "unitsml", + "id": "us:si-derived-special" + } + ], + "base_units": [] + }, + { + "id": "non-SI_acceptable", + "unitsml_id": "us:nonsi-acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true, + "unit_count": 33, + "identifiers": [ + { + "type": "nist", + "id": "non-SI_acceptable" + }, + { + "type": "unitsml", + "id": "us:nonsi-acceptable" + } + ], + "base_units": [] + }, + { + "id": "non-SI_nist_acceptable", + "unitsml_id": "us:nonsi-nist-acceptable", + "name": "non-SI but acceptable by NIST SP 811", + "short": "nonsi-nist-acceptable", + "acceptable": true, + "unit_count": 5, + "identifiers": [ + { + "type": "nist", + "id": "non-SI_nist_acceptable" + }, + { + "type": "unitsml", + "id": "us:nonsi-nist-acceptable" + } + ], + "base_units": [] + }, + { + "id": "non-SI_not_acceptable", + "unitsml_id": "us:nonsi-unacceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false, + "unit_count": 259, + "identifiers": [ + { + "type": "nist", + "id": "non-SI_not_acceptable" + }, + { + "type": "unitsml", + "id": "us:nonsi-unacceptable" + } + ], + "base_units": [] + } +] \ No newline at end of file diff --git a/public/unitsdb/units.json b/public/unitsdb/units.json new file mode 100644 index 0000000..efe4b4f --- /dev/null +++ b/public/unitsdb/units.json @@ -0,0 +1,34124 @@ +[ + { + "id": "NISTu1", + "unitsml_id": "u:meter", + "name": "metre", + "names": [ + { + "value": "metre", + "lang": "en" + }, + { + "value": "meter", + "lang": "en" + }, + { + "value": "mΓ¨tre", + "lang": "fr" + } + ], + "symbols": { + "unicode": "m", + "ascii": "m", + "html": "m", + "latex": "\\ensuremath{\\mathrm{m}}", + "id": "m", + "mathml": "m" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu1" + }, + { + "type": "unitsml", + "id": "u:meter" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/metre" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:base-unit:code:m" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/M" + } + ], + "short": "meter", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + }, + { + "id": "NISTq100", + "name": "diameter", + "type": "derived" + }, + { + "id": "NISTq101", + "name": "length of path", + "type": "derived" + }, + { + "id": "NISTq102", + "name": "cartesian coordinates", + "type": "derived" + }, + { + "id": "NISTq103", + "name": "position vector", + "type": "derived" + }, + { + "id": "NISTq104", + "name": "displacement", + "type": "derived" + }, + { + "id": "NISTq105", + "name": "radius of curvature", + "type": "derived" + }, + { + "id": "NISTq114", + "name": "wavelength", + "type": "derived" + }, + { + "id": "NISTq48", + "name": "distance", + "type": "base" + }, + { + "id": "NISTq95", + "name": "breadth", + "type": "derived" + }, + { + "id": "NISTq96", + "name": "height", + "type": "derived" + }, + { + "id": "NISTq97", + "name": "thickness", + "type": "derived" + }, + { + "id": "NISTq98", + "name": "radius", + "type": "derived" + }, + { + "id": "NISTq99", + "name": "radial distance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_base", + "name": "SI base units", + "short": "si-base", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu1.u3e-1/1", + "unitsml_id": "u:meter_per_second", + "name": "meter per second", + "names": [ + { + "value": "meter per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "mΒ·s⁻¹", + "ascii": "m*s^-1", + "html": "m/s", + "latex": "\\ensuremath{\\mathrm{m/s}}", + "id": "m*s^-1", + "mathml": "m/s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu1.u3e-1/1" + }, + { + "type": "unitsml", + "id": "u:meter_per_second" + } + ], + "references": [], + "short": "meter_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq107", + "name": "speed of propagation of waves", + "type": "derived" + }, + { + "id": "NISTq116", + "name": "phase velocity", + "type": "derived" + }, + { + "id": "NISTq117", + "name": "group velocity", + "type": "derived" + }, + { + "id": "NISTq12", + "name": "velocity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd11", + "name": "velocity", + "expression": "LΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + }, + { + "power": 1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu1.u3e-2/1", + "unitsml_id": "u:meter_per_second_squared", + "name": "meter per second squared", + "names": [ + { + "value": "meter per second squared", + "lang": "en" + } + ], + "symbols": { + "unicode": "mΒ·s⁻²", + "ascii": "m*s^-2", + "html": "m/s2", + "latex": "\\ensuremath{\\mathrm{m/s^2}}", + "id": "m*s^-2", + "mathml": "m/s2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu1.u3e-2/1" + }, + { + "type": "unitsml", + "id": "u:meter_per_second_squared" + } + ], + "references": [], + "short": "meter_per_second_squared", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq108", + "name": "acceleration of free fall", + "type": "derived" + }, + { + "id": "NISTq49", + "name": "acceleration", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd28", + "name": "acceleration", + "expression": "LΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + }, + { + "power": -2, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu10", + "unitsml_id": "u:steradian", + "name": "steradian", + "names": [ + { + "value": "steradian", + "lang": "en" + }, + { + "value": "stΓ©radian", + "lang": "fr" + } + ], + "symbols": { + "unicode": "sr", + "ascii": "sr", + "html": "sr", + "latex": "\\ensuremath{\\mathrm{sr}}", + "id": "sr", + "mathml": "sr" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu10" + }, + { + "type": "unitsml", + "id": "u:steradian" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/steradian" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:sr" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/SR" + } + ], + "short": "steradian", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq11", + "name": "solid angle", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd64", + "name": "solid angle", + "expression": "1", + "components": [ + { + "key": "plane_angle", + "symbol": "phi", + "power": 1 + } + ], + "dimensionless": true + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu100", + "unitsml_id": "u:rem", + "name": "rem", + "names": [ + { + "value": "rem", + "lang": "en" + } + ], + "symbols": { + "unicode": "rem", + "ascii": "rem", + "html": "rem", + "latex": "\\ensuremath{\\mathrm{rem}}", + "id": "rem", + "mathml": "rem" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu100" + }, + { + "type": "unitsml", + "id": "u:rem" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/REM" + } + ], + "short": "rem", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq39", + "name": "dose equivalent", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd25", + "name": "absorbed dose", + "expression": "L2Β·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_nist_acceptable", + "name": "non-SI but acceptable by NIST SP 811", + "short": "nonsi-nist-acceptable", + "acceptable": true + }, + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu106", + "unitsml_id": "u:year_365", + "name": "year (365 days)", + "names": [ + { + "value": "year (365 days)", + "lang": "en" + }, + { + "value": "year", + "lang": "en" + } + ], + "symbols": { + "unicode": "a", + "ascii": "a", + "html": "a", + "latex": "\\ensuremath{\\mathrm{a}}", + "id": "a_year", + "mathml": "a" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu106" + }, + { + "type": "unitsml", + "id": "u:year_365" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:a" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/YR" + } + ], + "short": "year_365", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq3", + "name": "time", + "type": "base" + } + ], + "dimension": { + "id": "NISTd3", + "name": "time", + "expression": "T", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu107", + "unitsml_id": "u:foot_per_minute", + "name": "foot per minute", + "names": [ + { + "value": "foot per minute", + "lang": "en" + } + ], + "symbols": { + "unicode": "ftΒ·min⁻¹", + "ascii": "ft*min^-1", + "html": "ft/min", + "latex": "\\ensuremath{\\mathrm{ft/min}}", + "id": "ft*min^-1", + "mathml": "ft/min" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu107" + }, + { + "type": "unitsml", + "id": "u:foot_per_minute" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FT-PER-MIN" + } + ], + "short": "foot_per_minute", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq12", + "name": "velocity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd11", + "name": "velocity", + "expression": "LΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu78", + "name": "foot", + "symbol": "β€²" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu36", + "name": "minute", + "symbol": "β€²" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu108", + "unitsml_id": "u:foot_per_second", + "name": "foot per second", + "names": [ + { + "value": "foot per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "ftΒ·s⁻¹", + "ascii": "ft*s^-1", + "html": "ft/s", + "latex": "\\ensuremath{\\mathrm{ft/s}}", + "id": "ft*s^-1", + "mathml": "ft/s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu108" + }, + { + "type": "unitsml", + "id": "u:foot_per_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FT-PER-SEC" + } + ], + "short": "foot_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq12", + "name": "velocity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd11", + "name": "velocity", + "expression": "LΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu78", + "name": "foot", + "symbol": "β€²" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu109", + "unitsml_id": "u:inch_per_second", + "name": "inch per second", + "names": [ + { + "value": "inch per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "inΒ·s⁻¹", + "ascii": "in*s^-1", + "html": "in/s", + "latex": "\\ensuremath{\\mathrm{in/s}}", + "id": "in*s^-1", + "mathml": "in/s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu109" + }, + { + "type": "unitsml", + "id": "u:inch_per_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/IN-PER-SEC" + } + ], + "short": "inch_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq12", + "name": "velocity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd11", + "name": "velocity", + "expression": "LΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu8", + "name": "inch", + "symbol": "β€³" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu11", + "unitsml_id": "u:newton", + "name": "newton", + "names": [ + { + "value": "newton", + "lang": "en" + }, + { + "value": "newton", + "lang": "fr" + } + ], + "symbols": { + "unicode": "N", + "ascii": "N", + "html": "N", + "latex": "\\ensuremath{\\mathrm{N}}", + "id": "N", + "mathml": "N" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu11" + }, + { + "type": "unitsml", + "id": "u:newton" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/newton" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:N" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/N" + } + ], + "short": "newton", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq13", + "name": "force", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd12", + "name": "force", + "expression": "LΒ·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu11.u1", + "unitsml_id": "u:newton_meter", + "name": "newton meter", + "names": [ + { + "value": "newton meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "NΒ·m", + "ascii": "N*m", + "html": "N · m", + "latex": "\\ensuremath{\\mathrm{N\\cdot m}}", + "id": "N*m", + "mathml": "N·m" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu11.u1" + }, + { + "type": "unitsml", + "id": "u:newton_meter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/N-M" + } + ], + "short": "newton_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq184", + "name": "torque", + "type": "derived" + }, + { + "id": "NISTq185", + "name": "bending moment of force", + "type": "derived" + }, + { + "id": "NISTq60", + "name": "moment of force", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu11", + "name": "newton", + "symbol": "N" + }, + "prefix": null + }, + { + "power": 1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu11.u1.u3", + "unitsml_id": "u:newton_meter_second", + "name": "newton meter second", + "names": [ + { + "value": "newton meter second", + "lang": "en" + } + ], + "symbols": { + "unicode": "NΒ·mΒ·s", + "ascii": "N*m*s", + "html": "N · m · s", + "latex": "\\ensuremath{\\mathrm{N\\cdot m\\cdot s}}", + "id": "N*m*s", + "mathml": "N·m·s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu11.u1.u3" + }, + { + "type": "unitsml", + "id": "u:newton_meter_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/N-M-SEC" + } + ], + "short": "newton_meter_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq133", + "name": "angular impulse", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd60", + "name": "action", + "expression": "L2Β·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu11", + "name": "newton", + "symbol": "N" + }, + "prefix": null + }, + { + "power": 1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + }, + { + "power": 1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu11.u1e-1/1", + "unitsml_id": "u:newton_per_meter", + "name": "newton per meter", + "names": [ + { + "value": "newton per meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "N/m", + "ascii": "N*m^-1", + "html": "N/m", + "latex": "\\ensuremath{\\mathrm{N/m}}", + "id": "N*m^-1", + "mathml": "N/m" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu11.u1e-1/1" + }, + { + "type": "unitsml", + "id": "u:newton_per_meter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/N-PER-M" + } + ], + "short": "newton_per_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq61", + "name": "surface tension", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd37", + "name": "surface tension", + "expression": "MΒ·T-2", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu11", + "name": "newton", + "symbol": "N" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu11.u1e2/1.u27p10'3e-2/1", + "unitsml_id": "u:newton_meter_squared_per_kilogram_squared", + "name": "newton meter squared per kilogram squared", + "names": [ + { + "value": "newton meter squared per kilogram squared", + "lang": "en" + } + ], + "symbols": { + "unicode": "NΒ·mΒ²/kgΒ²", + "ascii": "N*m^2*kg^-2", + "html": "N · m2/kg 2", + "latex": "\\ensuremath{\\mathrm{N\\cdot m^2/kg^2}}", + "id": "N*m^2*kg^-2", + "mathml": "N·m2/kg2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu11.u1e2/1.u27p10'3e-2/1" + }, + { + "type": "unitsml", + "id": "u:newton_meter_squared_per_kilogram_squared" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/N-M2-PER-KiloGM2" + } + ], + "short": "newton_meter_squared_per_kilogram_squared", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq130", + "name": "gravitational constant", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd62", + "name": "gravitational constant", + "expression": "L3Β·M-1Β·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu11", + "name": "newton", + "symbol": "N" + }, + "prefix": null + }, + { + "power": 2, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + }, + { + "power": -2, + "unit": { + "id": "NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + } + ] + }, + { + "id": "NISTu11.u3", + "unitsml_id": "u:newton_second", + "name": "newton second", + "names": [ + { + "value": "newton second", + "lang": "en" + } + ], + "symbols": { + "unicode": "NΒ·s", + "ascii": "N*s", + "html": "N · s", + "latex": "\\ensuremath{\\mathrm{N\\cdot s}}", + "id": "N*s", + "mathml": "N·s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu11.u3" + }, + { + "type": "unitsml", + "id": "u:newton_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/N-SEC" + } + ], + "short": "newton_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq129", + "name": "impulse", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd61", + "name": "momentum", + "expression": "LΒ·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu11", + "name": "newton", + "symbol": "N" + }, + "prefix": null + }, + { + "power": 1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu110", + "unitsml_id": "u:mile_per_hour", + "name": "mile per hour", + "names": [ + { + "value": "mile per hour", + "lang": "en" + } + ], + "symbols": { + "unicode": "miΒ·h⁻¹", + "ascii": "mi*h^-1", + "html": "mi/h", + "latex": "\\ensuremath{\\mathrm{mi/h}}", + "id": "mi*h^-1", + "mathml": "mi/h" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu110" + }, + { + "type": "unitsml", + "id": "u:mile_per_hour" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MI-PER-HR" + } + ], + "short": "mile_per_hour", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq12", + "name": "velocity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd11", + "name": "velocity", + "expression": "LΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu83", + "name": "mile", + "symbol": "mi" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu37", + "name": "hour", + "symbol": "h" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu111", + "unitsml_id": "u:mile_per_minute", + "name": "mile per minute", + "names": [ + { + "value": "mile per minute", + "lang": "en" + } + ], + "symbols": { + "unicode": "miΒ·min⁻¹", + "ascii": "mi*min^-1", + "html": "mi/min", + "latex": "\\ensuremath{\\mathrm{mi/min}}", + "id": "mi*min^-1", + "mathml": "mi/min" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu111" + }, + { + "type": "unitsml", + "id": "u:mile_per_minute" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MI-PER-MIN" + } + ], + "short": "mile_per_minute", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq12", + "name": "velocity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd11", + "name": "velocity", + "expression": "LΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu83", + "name": "mile", + "symbol": "mi" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu36", + "name": "minute", + "symbol": "β€²" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu112", + "unitsml_id": "u:mile_per_second", + "name": "mile per second", + "names": [ + { + "value": "mile per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "miΒ·s⁻¹", + "ascii": "mi*s^-1", + "html": "mi/s", + "latex": "\\ensuremath{\\mathrm{mi/s}}", + "id": "mi*s^-1", + "mathml": "mi/s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu112" + }, + { + "type": "unitsml", + "id": "u:mile_per_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MI-PER-SEC" + } + ], + "short": "mile_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq12", + "name": "velocity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd11", + "name": "velocity", + "expression": "LΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu83", + "name": "mile", + "symbol": "mi" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu115", + "unitsml_id": "u:stere", + "name": "stere", + "names": [ + { + "value": "stere", + "lang": "en" + } + ], + "symbols": { + "unicode": "st", + "ascii": "st", + "html": "st", + "latex": "\\ensuremath{\\mathrm{st}}", + "id": "st", + "mathml": "st" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu115" + }, + { + "type": "unitsml", + "id": "u:stere" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:misc:code:st" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/STR" + } + ], + "short": "stere", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 3, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu116", + "unitsml_id": "u:gamma", + "name": "gamma", + "names": [ + { + "value": "gamma", + "lang": "en" + } + ], + "symbols": { + "unicode": "Ξ³", + "ascii": "gamma", + "html": "γ", + "latex": "\\ensuremath{\\gamma}}", + "id": "gamma", + "mathml": "γ" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu116" + }, + { + "type": "unitsml", + "id": "u:gamma" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/GAMMA" + } + ], + "short": "gamma", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq14", + "name": "magnetic flux density", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd13", + "name": "magnetic flux density", + "expression": "MΒ·T-2Β·I-1", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu21", + "name": "tesla", + "symbol": "T" + }, + "prefix": { + "id": "NISTp10_-9", + "name": "nano", + "symbol": "n" + } + } + ] + }, + { + "id": "NISTu117", + "unitsml_id": "u:ec_therm", + "name": "therm (EC)", + "names": [ + { + "value": "therm (EC)", + "lang": "en" + } + ], + "symbols": { + "unicode": "thm (EC)", + "ascii": "thm (EC)", + "html": "thm (EC)", + "latex": "\\ensuremath{\\mathrm{thm (EC)}}", + "id": "thm (EC)", + "mathml": "thm (EC)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu117" + }, + { + "type": "unitsml", + "id": "u:ec_therm" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/THERM_EC" + } + ], + "short": "ec_therm", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq17", + "name": "energy", + "type": "derived" + }, + { + "id": "NISTq18", + "name": "work", + "type": "derived" + }, + { + "id": "NISTq182", + "name": "kinetic energy", + "type": "derived" + }, + { + "id": "NISTq183", + "name": "mechanical energy", + "type": "derived" + }, + { + "id": "NISTq19", + "name": "amount of heat", + "type": "derived" + }, + { + "id": "NISTq77", + "name": "potential energy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu118", + "unitsml_id": "u:roentgen", + "name": "roentgen", + "names": [ + { + "value": "roentgen", + "lang": "en" + } + ], + "symbols": { + "unicode": "R", + "ascii": "R", + "html": "R", + "latex": "\\ensuremath{\\mathrm{R}}", + "id": "R", + "mathml": "R" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu118" + }, + { + "type": "unitsml", + "id": "u:roentgen" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:cgs:code:R" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/R" + } + ], + "short": "roentgen", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq75", + "name": "exposure (x and gamma rays)", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd49", + "name": "exposure", + "expression": "M-1Β·TΒ·I", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_nist_acceptable", + "name": "non-SI but acceptable by NIST SP 811", + "short": "nonsi-nist-acceptable", + "acceptable": true + }, + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu119", + "unitsml_id": "u:gauss", + "name": "gauss", + "names": [ + { + "value": "gauss", + "lang": "en" + } + ], + "symbols": { + "unicode": "G", + "ascii": "G", + "html": "G", + "latex": "\\ensuremath{\\mathrm{G}}", + "id": "G", + "mathml": "G" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu119" + }, + { + "type": "unitsml", + "id": "u:gauss" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:cgs:code:G" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/GAUSS" + } + ], + "short": "gauss", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq14", + "name": "magnetic flux density", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd13", + "name": "magnetic flux density", + "expression": "MΒ·T-2Β·I-1", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu12", + "unitsml_id": "u:pascal", + "name": "pascal", + "names": [ + { + "value": "pascal", + "lang": "en" + }, + { + "value": "pascal", + "lang": "fr" + } + ], + "symbols": { + "unicode": "Pa", + "ascii": "Pa", + "html": "Pa", + "latex": "\\ensuremath{\\mathrm{Pa}}", + "id": "Pa", + "mathml": "Pa" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu12" + }, + { + "type": "unitsml", + "id": "u:pascal" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/pascal" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:Pa" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/PA" + } + ], + "short": "pascal", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq134", + "name": "normal stress", + "type": "derived" + }, + { + "id": "NISTq135", + "name": "shear stress", + "type": "derived" + }, + { + "id": "NISTq141", + "name": "modulus of elasticity", + "type": "derived" + }, + { + "id": "NISTq142", + "name": "modulus of rigidity", + "type": "derived" + }, + { + "id": "NISTq143", + "name": "modulus of compression", + "type": "derived" + }, + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu12.u3", + "unitsml_id": "u:pascal_second", + "name": "pascal second", + "names": [ + { + "value": "pascal second", + "lang": "en" + } + ], + "symbols": { + "unicode": "PaΒ·s", + "ascii": "Pa*s", + "html": "Pa · s", + "latex": "\\ensuremath{\\mathrm{Pa\\cdot s}}", + "id": "Pa*s", + "mathml": "Pa·s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu12.u3" + }, + { + "type": "unitsml", + "id": "u:pascal_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/PA-SEC" + } + ], + "short": "pascal_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq59", + "name": "dynamic viscosity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd36", + "name": "dynamic viscosity", + "expression": "L-1Β·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu12", + "name": "pascal", + "symbol": "Pa" + }, + "prefix": null + }, + { + "power": 1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu12.u5e-1/1", + "unitsml_id": "u:pascal_per_kelvin", + "name": "pascal per kelvin", + "names": [ + { + "value": "pascal per kelvin", + "lang": "en" + } + ], + "symbols": { + "unicode": "Pa/K", + "ascii": "Pa*K^-1", + "html": "Pa/K", + "latex": "\\ensuremath{\\mathrm{Pa/K}}", + "id": "Pa*K^-1", + "mathml": "Pa/K" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu12.u5e-1/1" + }, + { + "type": "unitsml", + "id": "u:pascal_per_kelvin" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/PA-PER-K" + } + ], + "short": "pascal_per_kelvin", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq159", + "name": "pressure coefficient", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd69", + "name": "pressure coefficient", + "expression": "L-1Β·MΒ·T-2Β·Theta-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu12", + "name": "pascal", + "symbol": "Pa" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu5", + "name": "kelvin", + "symbol": "Β°K" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu120", + "unitsml_id": "u:kayser", + "name": "kayser", + "names": [ + { + "value": "kayser", + "lang": "en" + } + ], + "symbols": { + "unicode": "K", + "ascii": "K", + "html": "K", + "latex": "\\ensuremath{\\mathrm{K}}", + "id": "kayser", + "mathml": "K" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu120" + }, + { + "type": "unitsml", + "id": "u:kayser" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:cgs:code:Ky" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/KY" + } + ], + "short": "kayser", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq50", + "name": "wavenumber", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd29", + "name": "wavenumber", + "expression": "L-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu121", + "unitsml_id": "u:centistokes", + "name": "centistokes", + "names": [ + { + "value": "centistokes", + "lang": "en" + } + ], + "symbols": { + "unicode": "cSt", + "ascii": "cSt", + "html": "cSt", + "latex": "\\ensuremath{\\mathrm{cSt}}", + "id": "cSt", + "mathml": "cSt" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu121" + }, + { + "type": "unitsml", + "id": "u:centistokes" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/CentiST" + } + ], + "short": "centistokes", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq85", + "name": "kinematic viscosity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd56", + "name": "kinematic viscosity", + "expression": "L2Β·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu142", + "name": "stokes", + "symbol": "St" + }, + "prefix": { + "id": "NISTp10_-2", + "name": "centi", + "symbol": "c" + } + } + ] + }, + { + "id": "NISTu122", + "unitsml_id": "u:micron", + "name": "micron", + "names": [ + { + "value": "micron", + "lang": "en" + } + ], + "symbols": { + "unicode": "ΞΌ", + "ascii": "micron", + "html": "μ", + "latex": "\\ensuremath{\\mathrm{mu}}", + "id": "micron", + "mathml": "μ" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu122" + }, + { + "type": "unitsml", + "id": "u:micron" + } + ], + "references": [], + "short": "micron", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + }, + { + "id": "NISTq48", + "name": "distance", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": { + "id": "NISTp10_-6", + "name": "micro", + "symbol": "ΞΌ" + } + } + ] + }, + { + "id": "NISTu123", + "unitsml_id": "u:mil (length)", + "name": "mil (length)", + "names": [ + { + "value": "mil (length)", + "lang": "en" + }, + { + "value": "mil", + "lang": "en" + }, + { + "value": "thou", + "lang": "en" + } + ], + "symbols": { + "unicode": "thou", + "ascii": "thou", + "html": "thou", + "latex": "\\ensuremath{\\mathrm{thou}}", + "id": "thou", + "mathml": "thou" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu123" + }, + { + "type": "unitsml", + "id": "u:mil (length)" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[mil_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MilLength" + } + ], + "short": "mil (length)", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + }, + { + "id": "NISTq48", + "name": "distance", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu8", + "name": "inch", + "symbol": "β€³" + }, + "prefix": { + "id": "NISTp10_-3", + "name": "milli", + "symbol": "m" + } + } + ] + }, + { + "id": "NISTu124", + "unitsml_id": "u:stilb", + "name": "stilb", + "names": [ + { + "value": "stilb", + "lang": "en" + } + ], + "symbols": { + "unicode": "sb", + "ascii": "sb", + "html": "sb", + "latex": "\\ensuremath{\\mathrm{sb}}", + "id": "sb", + "mathml": "sb" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu124" + }, + { + "type": "unitsml", + "id": "u:stilb" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:cgs:code:sb" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/STILB" + } + ], + "short": "stilb", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq56", + "name": "luminance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd27", + "name": "illuminance", + "expression": "L-2Β·J", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "luminous_intensity", + "symbol": "J", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu125", + "unitsml_id": "u:kilogram_force_second_squared_per_meter", + "name": "kilogram-force second squared per meter", + "names": [ + { + "value": "kilogram-force second squared per meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "kgfΒ·sΒ²m⁻¹", + "ascii": "kgf*s^2/m", + "html": "kgf · s2/m", + "latex": "\\ensuremath{\\mathrm{kgf\\cdot s^2/m}}", + "id": "kgf*s^2/m", + "mathml": "kgf·s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu125" + }, + { + "type": "unitsml", + "id": "u:kilogram_force_second_squared_per_meter" + } + ], + "references": [], + "short": "kilogram_force_second_squared_per_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": 2, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu126", + "unitsml_id": "u:kilogram_force_meter", + "name": "kilogram-force meter", + "names": [ + { + "value": "kilogram-force meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "kgfΒ·m", + "ascii": "kgf*m", + "html": "kgf · m", + "latex": "\\ensuremath{\\mathrm{kgf\\cdot m}}", + "id": "kgf*m", + "mathml": "kgf·m" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu126" + }, + { + "type": "unitsml", + "id": "u:kilogram_force_meter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/KiloGM_F-M" + } + ], + "short": "kilogram_force_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq17", + "name": "energy", + "type": "derived" + }, + { + "id": "NISTq18", + "name": "work", + "type": "derived" + }, + { + "id": "NISTq184", + "name": "torque", + "type": "derived" + }, + { + "id": "NISTq185", + "name": "bending moment of force", + "type": "derived" + }, + { + "id": "NISTq60", + "name": "moment of force", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": 1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu127", + "unitsml_id": "u:electric_horsepower", + "name": "horsepower, electric", + "names": [ + { + "value": "horsepower, electric", + "lang": "en" + }, + { + "value": "electric horsepower", + "lang": "en" + } + ], + "symbols": { + "unicode": "hp", + "ascii": "hp", + "html": "hp", + "latex": "\\ensuremath{\\mathrm{hp}}", + "id": "hp_electric", + "mathml": "hp" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu127" + }, + { + "type": "unitsml", + "id": "u:electric_horsepower" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/HP_Electric" + } + ], + "short": "electric_horsepower", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq20", + "name": "power", + "type": "derived" + }, + { + "id": "NISTq21", + "name": "radiant flux", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu128", + "unitsml_id": "u:poise", + "name": "poise", + "names": [ + { + "value": "poise", + "lang": "en" + } + ], + "symbols": { + "unicode": "P", + "ascii": "P", + "html": "P", + "latex": "\\ensuremath{\\mathrm{P}}", + "id": "P", + "mathml": "P" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu128" + }, + { + "type": "unitsml", + "id": "u:poise" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:cgs:code:P" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/POISE" + } + ], + "short": "poise", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq59", + "name": "dynamic viscosity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd36", + "name": "dynamic viscosity", + "expression": "L-1Β·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu129", + "unitsml_id": "u:rhe", + "name": "rhe", + "names": [ + { + "value": "rhe", + "lang": "en" + } + ], + "symbols": { + "unicode": "rhe", + "ascii": "rhe", + "html": "rhe", + "latex": "\\ensuremath{\\mathrm{rhe}}", + "id": "rhe", + "mathml": "rhe" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu129" + }, + { + "type": "unitsml", + "id": "u:rhe" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/RHE" + } + ], + "short": "rhe", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq91", + "name": "fluidity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd52", + "name": "fluidity", + "expression": "LΒ·M-1Β·T", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu12e-1/1", + "unitsml_id": "u:pascal_to_the_power_minus_one", + "name": "pascal to the power minus one", + "names": [ + { + "value": "pascal to the power minus one", + "lang": "en" + } + ], + "symbols": { + "unicode": "Pa⁻¹", + "ascii": "Pa^-1", + "html": "Pa-1", + "latex": "\\ensuremath{\\mathrm{Pa^{-1}}}", + "id": "Pa^-1", + "mathml": "Pa1" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu12e-1/1" + }, + { + "type": "unitsml", + "id": "u:pascal_to_the_power_minus_one" + } + ], + "references": [], + "short": "pascal_to_the_power_minus_one", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq139", + "name": "compressibility", + "type": "derived" + }, + { + "id": "NISTq160", + "name": "isothermal compressibility", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd63", + "name": "compressibility", + "expression": "LΒ·M-1Β·T2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": -1, + "unit": { + "id": "NISTu12", + "name": "pascal", + "symbol": "Pa" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu13", + "unitsml_id": "u:joule", + "name": "joule", + "names": [ + { + "value": "joule", + "lang": "en" + }, + { + "value": "joule", + "lang": "fr" + } + ], + "symbols": { + "unicode": "J", + "ascii": "J", + "html": "J", + "latex": "\\ensuremath{\\mathrm{J}}", + "id": "J", + "mathml": "J" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu13" + }, + { + "type": "unitsml", + "id": "u:joule" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/joule" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:J" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/J" + } + ], + "short": "joule", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq152", + "name": "Lagrange function", + "type": "derived" + }, + { + "id": "NISTq153", + "name": "Hamilton function", + "type": "derived" + }, + { + "id": "NISTq17", + "name": "energy", + "type": "derived" + }, + { + "id": "NISTq18", + "name": "work", + "type": "derived" + }, + { + "id": "NISTq182", + "name": "kinetic energy", + "type": "derived" + }, + { + "id": "NISTq183", + "name": "mechanical energy", + "type": "derived" + }, + { + "id": "NISTq19", + "name": "amount of heat", + "type": "derived" + }, + { + "id": "NISTq77", + "name": "potential energy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu13.u1e-3/1", + "unitsml_id": "u:joule_per_cubic_meter", + "name": "joule per cubic meter", + "names": [ + { + "value": "joule per cubic meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "J/mΒ³", + "ascii": "J*m^-3", + "html": "J/m3", + "latex": "\\ensuremath{\\mathrm{J/m^3}}", + "id": "J*m^-3", + "mathml": "J/m3" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu13.u1e-3/1" + }, + { + "type": "unitsml", + "id": "u:joule_per_cubic_meter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/J-PER-M3" + } + ], + "short": "joule_per_cubic_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq67", + "name": "energy density", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu13", + "name": "joule", + "symbol": "J" + }, + "prefix": null + }, + { + "power": -3, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu13.u27p10'3e-1/1", + "unitsml_id": "u:joule_per_kilogram", + "name": "joule per kilogram", + "names": [ + { + "value": "joule per kilogram", + "lang": "en" + } + ], + "symbols": { + "unicode": "J/kg", + "ascii": "J*kg^-1", + "html": "J/kg", + "latex": "\\ensuremath{\\mathrm{J/kg}}", + "id": "J*kg^-1", + "mathml": "J/kg" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu13.u27p10'3e-1/1" + }, + { + "type": "unitsml", + "id": "u:joule_per_kilogram" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/J-PER-KiloGM" + } + ], + "short": "joule_per_kilogram", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq65", + "name": "specific energy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd25", + "name": "absorbed dose", + "expression": "L2Β·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu13", + "name": "joule", + "symbol": "J" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + } + ] + }, + { + "id": "NISTu13.u27p10'3e-1/1.u5e-1/1", + "unitsml_id": "u:joule_per_kilogram_kelvin", + "name": "joule per kilogram kelvin", + "names": [ + { + "value": "joule per kilogram kelvin", + "lang": "en" + } + ], + "symbols": { + "unicode": "J/(kgΒ·K)", + "ascii": "J*kg^-1*K^-1", + "html": "J/(kg · K)", + "latex": "\\ensuremath{\\mathrm{J/(kg\\cdot K)}}", + "id": "J*kg^-1*K^-1", + "mathml": "J/(kg·K)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu13.u27p10'3e-1/1.u5e-1/1" + }, + { + "type": "unitsml", + "id": "u:joule_per_kilogram_kelvin" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/J-PER-KiloGM-K" + } + ], + "short": "joule_per_kilogram_kelvin", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq64", + "name": "specific heat capacity", + "type": "derived" + }, + { + "id": "NISTq80", + "name": "specific entropy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd40", + "name": "specific heat capacity", + "expression": "L2Β·T-2Β·Theta-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu13", + "name": "joule", + "symbol": "J" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -1, + "unit": { + "id": "NISTu5", + "name": "kelvin", + "symbol": "Β°K" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu13.u3", + "unitsml_id": "u:joule_second", + "name": "joule second", + "names": [ + { + "value": "joule second", + "lang": "en" + } + ], + "symbols": { + "unicode": "JΒ·s", + "ascii": "J*s", + "html": "J · s", + "latex": "\\ensuremath{\\mathrm{J\\cdot s}}", + "id": "J*s", + "mathml": "J·s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu13.u3" + }, + { + "type": "unitsml", + "id": "u:joule_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/J-SEC" + } + ], + "short": "joule_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq154", + "name": "action", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd60", + "name": "action", + "expression": "L2Β·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu13", + "name": "joule", + "symbol": "J" + }, + "prefix": null + }, + { + "power": 1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu13.u5e-1/1", + "unitsml_id": "u:joule_per_kelvin", + "name": "joule per kelvin", + "names": [ + { + "value": "joule per kelvin", + "lang": "en" + } + ], + "symbols": { + "unicode": "J/K", + "ascii": "J*K^-1", + "html": "J/K", + "latex": "\\ensuremath{\\mathrm{J/K}}", + "id": "J*K^-1", + "mathml": "J/K" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu13.u5e-1/1" + }, + { + "type": "unitsml", + "id": "u:joule_per_kelvin" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/J-PER-K" + } + ], + "short": "joule_per_kelvin", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq63", + "name": "heat capacity", + "type": "derived" + }, + { + "id": "NISTq79", + "name": "entropy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd39", + "name": "heat capacity", + "expression": "L2Β·MΒ·T-2Β·Theta-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu13", + "name": "joule", + "symbol": "J" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu5", + "name": "kelvin", + "symbol": "Β°K" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu13.u6e-1/1", + "unitsml_id": "u:joule_per_mole", + "name": "joule per mole", + "names": [ + { + "value": "joule per mole", + "lang": "en" + } + ], + "symbols": { + "unicode": "J/mol", + "ascii": "J*mol^-1", + "html": "J/mol", + "latex": "\\ensuremath{\\mathrm{J/mol}}", + "id": "J*mol^-1", + "mathml": "J/mol" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu13.u6e-1/1" + }, + { + "type": "unitsml", + "id": "u:joule_per_mole" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/J-PER-MOL" + } + ], + "short": "joule_per_mole", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq73", + "name": "molar energy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd47", + "name": "molar energy", + "expression": "L2Β·MΒ·T-2Β·N-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu13", + "name": "joule", + "symbol": "J" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu6", + "name": "mole", + "symbol": "mol" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu13.u6e-1/1.u5e-1/1", + "unitsml_id": "u:joule_per_mole_kelvin", + "name": "joule per mole kelvin", + "names": [ + { + "value": "joule per mole kelvin", + "lang": "en" + } + ], + "symbols": { + "unicode": "J/(molΒ·K)", + "ascii": "J*mol^-1*K^-1", + "html": "J/(mol · K)", + "latex": "\\ensuremath{\\mathrm{J/(mol\\cdot K)}}", + "id": "J*mol^-1*K^-1", + "mathml": "J/(mol·K)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu13.u6e-1/1.u5e-1/1" + }, + { + "type": "unitsml", + "id": "u:joule_per_mole_kelvin" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/J-PER-MOL-K" + } + ], + "short": "joule_per_mole_kelvin", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq74", + "name": "molar entropy", + "type": "derived" + }, + { + "id": "NISTq83", + "name": "molar heat capacity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd48", + "name": "molar entropy", + "expression": "L2Β·MΒ·T-2Β·Theta-1Β·N-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": -1, + "unit": { + "id": "NISTu5", + "name": "kelvin", + "symbol": "Β°K" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu130", + "unitsml_id": "u:liter", + "name": "litre", + "names": [ + { + "value": "litre", + "lang": "en" + }, + { + "value": "liter", + "lang": "en" + }, + { + "value": "litre", + "lang": "fr" + } + ], + "symbols": { + "unicode": "L", + "ascii": "L", + "html": "L", + "latex": "\\ensuremath{\\mathrm{L}}", + "id": "L", + "mathml": "L" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu130" + }, + { + "type": "unitsml", + "id": "u:liter" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/litre" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:l" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/L" + } + ], + "short": "liter", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu131", + "unitsml_id": "u:nautical_mile", + "name": "nautical mile", + "names": [ + { + "value": "nautical mile", + "lang": "en" + } + ], + "symbols": { + "unicode": "M", + "ascii": "M", + "html": "M", + "latex": "\\ensuremath{\\mathrm{M}}", + "id": "M", + "mathml": "M" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu131" + }, + { + "type": "unitsml", + "id": "u:nautical_mile" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[nmi_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MI_N" + } + ], + "short": "nautical_mile", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + }, + { + "id": "NISTq48", + "name": "distance", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu133", + "unitsml_id": "u:degree_Fahrenheit", + "name": "degree Fahrenheit", + "names": [ + { + "value": "degree Fahrenheit", + "lang": "en" + } + ], + "symbols": { + "unicode": "Β°F", + "ascii": "degF", + "html": "°F", + "latex": "\\ensuremath{\\mathrm{^{\\circ}F}}", + "id": "degF", + "mathml": "°F" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu133" + }, + { + "type": "unitsml", + "id": "u:degree_Fahrenheit" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:heat:code:[degF]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/DEG_F" + } + ], + "short": "degree_Fahrenheit", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq175", + "name": "Fahrenheit temperature", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd5", + "name": "temperature", + "expression": "Theta", + "components": [ + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_interval", + "name": "continuous interval scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu134", + "unitsml_id": "u:standard_atmosphere", + "name": "standard atmosphere", + "names": [ + { + "value": "standard atmosphere", + "lang": "en" + } + ], + "symbols": { + "unicode": "atm", + "ascii": "atm", + "html": "atm", + "latex": "\\ensuremath{\\mathrm{atm}}", + "id": "atm", + "mathml": "atm" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu134" + }, + { + "type": "unitsml", + "id": "u:standard_atmosphere" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:const:code:atm" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/ATM" + } + ], + "short": "standard_atmosphere", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu135", + "unitsml_id": "u:technical_atmosphere", + "name": "technical atmosphere", + "names": [ + { + "value": "technical atmosphere", + "lang": "en" + } + ], + "symbols": { + "unicode": "at", + "ascii": "at", + "html": "at", + "latex": "\\ensuremath{\\mathrm{at}}", + "id": "at", + "mathml": "at" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu135" + }, + { + "type": "unitsml", + "id": "u:technical_atmosphere" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:misc:code:att" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/ATM_T" + } + ], + "short": "technical_atmosphere", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu14", + "unitsml_id": "u:watt", + "name": "watt", + "names": [ + { + "value": "watt", + "lang": "en" + }, + { + "value": "watt", + "lang": "fr" + } + ], + "symbols": { + "unicode": "W", + "ascii": "W", + "html": "W", + "latex": "\\ensuremath{\\mathrm{W}}", + "id": "W", + "mathml": "W" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu14" + }, + { + "type": "unitsml", + "id": "u:watt" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/watt" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:W" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/W" + } + ], + "short": "watt", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq20", + "name": "power", + "type": "derived" + }, + { + "id": "NISTq21", + "name": "radiant flux", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu14.u10e-1/1", + "unitsml_id": "u:watt_per_steradian", + "name": "watt per steradian", + "names": [ + { + "value": "watt per steradian", + "lang": "en" + } + ], + "symbols": { + "unicode": "W/sr", + "ascii": "W*sr^-1", + "html": "W/sr", + "latex": "\\ensuremath{\\mathrm{W/sr}}", + "id": "W*sr^-1", + "mathml": "W/sr" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu14.u10e-1/1" + }, + { + "type": "unitsml", + "id": "u:watt_per_steradian" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/W-PER-SR" + } + ], + "short": "watt_per_steradian", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq88", + "name": "radiant intensity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu14", + "name": "watt", + "symbol": "W" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu10", + "name": "steradian", + "symbol": "sr" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu14.u1e-1/1.u5e-1/1", + "unitsml_id": "u:watt_per_meter_kelvin", + "name": "watt per meter kelvin", + "names": [ + { + "value": "watt per meter kelvin", + "lang": "en" + } + ], + "symbols": { + "unicode": "W/(mΒ·K)", + "ascii": "W*m^-1*K^-1", + "html": "W/(m · K)", + "latex": "\\ensuremath{\\mathrm{W/(m\\cdot K)}}", + "id": "W*m^-1*K^-1", + "mathml": "W/(m·K)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu14.u1e-1/1.u5e-1/1" + }, + { + "type": "unitsml", + "id": "u:watt_per_meter_kelvin" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/W-PER-M-K" + } + ], + "short": "watt_per_meter_kelvin", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq66", + "name": "thermal conductivity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd41", + "name": "thermal conductivity", + "expression": "LΒ·MΒ·T-3Β·Theta-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": -1, + "unit": { + "id": "NISTu5", + "name": "kelvin", + "symbol": "Β°K" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu14.u1e-2/1", + "unitsml_id": "u:watt_per_square_meter", + "name": "watt per square meter", + "names": [ + { + "value": "watt per square meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "W/mΒ²", + "ascii": "W*m^-2", + "html": "W/m2", + "latex": "\\ensuremath{\\mathrm{W/m^2}}", + "id": "W*m^-2", + "mathml": "W/m2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu14.u1e-2/1" + }, + { + "type": "unitsml", + "id": "u:watt_per_square_meter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/W-PER-M2" + } + ], + "short": "watt_per_square_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq62", + "name": "heat flux density", + "type": "derived" + }, + { + "id": "NISTq78", + "name": "irradiance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd38", + "name": "heat flux density", + "expression": "MΒ·T-3", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu14", + "name": "watt", + "symbol": "W" + }, + "prefix": null + }, + { + "power": -2, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu14.u1e-2/1.u10e-1/1", + "unitsml_id": "u:watt_per_square_meter_steradian", + "name": "watt per square meter steradian", + "names": [ + { + "value": "watt per square meter steradian", + "lang": "en" + } + ], + "symbols": { + "unicode": "W/(mΒ²Β·sr)", + "ascii": "W*m^-2*sr^-1", + "html": "W/(m^2 · sr)", + "latex": "\\ensuremath{\\mathrm{W/(m^2\\cdot sr)}}", + "id": "W*m^-2*sr^-1", + "mathml": "W/(m2·sr)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu14.u1e-2/1.u10e-1/1" + }, + { + "type": "unitsml", + "id": "u:watt_per_square_meter_steradian" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/W-PER-M2-SR" + } + ], + "short": "watt_per_square_meter_steradian", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq89", + "name": "radiance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd38", + "name": "heat flux density", + "expression": "MΒ·T-3", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu14", + "name": "watt", + "symbol": "W" + }, + "prefix": null + }, + { + "power": -2, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu10", + "name": "steradian", + "symbol": "sr" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu14.u3", + "unitsml_id": "u:watt_second", + "name": "watt second", + "names": [ + { + "value": "watt second", + "lang": "en" + } + ], + "symbols": { + "unicode": "WΒ·s", + "ascii": "W*s", + "html": "W · s", + "latex": "\\ensuremath{\\mathrm{W\\cdot s}}", + "id": "W*s", + "mathml": "W·s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu14.u3" + }, + { + "type": "unitsml", + "id": "u:watt_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/W-SEC" + } + ], + "short": "watt_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq17", + "name": "energy", + "type": "derived" + }, + { + "id": "NISTq18", + "name": "work", + "type": "derived" + }, + { + "id": "NISTq182", + "name": "kinetic energy", + "type": "derived" + }, + { + "id": "NISTq183", + "name": "mechanical energy", + "type": "derived" + }, + { + "id": "NISTq19", + "name": "amount of heat", + "type": "derived" + }, + { + "id": "NISTq77", + "name": "potential energy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu14", + "name": "watt", + "symbol": "W" + }, + "prefix": null + }, + { + "power": 1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu142", + "unitsml_id": "u:stokes", + "name": "stokes", + "names": [ + { + "value": "stokes", + "lang": "en" + } + ], + "symbols": { + "unicode": "St", + "ascii": "St", + "html": "St", + "latex": "\\ensuremath{\\mathrm{St}}", + "id": "St", + "mathml": "St" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu142" + }, + { + "type": "unitsml", + "id": "u:stokes" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:cgs:code:St" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/ST" + } + ], + "short": "stokes", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq85", + "name": "kinematic viscosity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd56", + "name": "kinematic viscosity", + "expression": "L2Β·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu143", + "unitsml_id": "u:gal", + "name": "gal", + "names": [ + { + "value": "gal", + "lang": "en" + } + ], + "symbols": { + "unicode": "Gal", + "ascii": "Gal", + "html": "Gal", + "latex": "\\ensuremath{\\mathrm{Gal}}", + "id": "Gal", + "mathml": "Gal" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu143" + }, + { + "type": "unitsml", + "id": "u:gal" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:cgs:code:Gal" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/GALILEO" + } + ], + "short": "gal", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq49", + "name": "acceleration", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd28", + "name": "acceleration", + "expression": "LΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu144", + "unitsml_id": "u:oersted", + "name": "oersted", + "names": [ + { + "value": "oersted", + "lang": "en" + } + ], + "symbols": { + "unicode": "Oe", + "ascii": "Oe", + "html": "Oe", + "latex": "\\ensuremath{\\mathrm{Oe}}", + "id": "Oe", + "mathml": "Oe" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu144" + }, + { + "type": "unitsml", + "id": "u:oersted" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:cgs:code:Oe" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/OERSTED" + } + ], + "short": "oersted", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq87", + "name": "magnetic field", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd33", + "name": "magnetic field strength", + "expression": "L-1Β·I", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu147", + "unitsml_id": "u:arc_minute", + "name": "arcminute", + "names": [ + { + "value": "arcminute", + "lang": "en" + }, + { + "value": "minute (minute of arc)", + "lang": "en" + }, + { + "value": "arcminute", + "lang": "fr" + } + ], + "symbols": { + "unicode": "β€²", + "ascii": "'", + "html": "′", + "latex": "\\ensuremath{\\mathrm{'}}", + "id": "prime", + "mathml": "" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu147" + }, + { + "type": "unitsml", + "id": "u:arc_minute" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/arcminute" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:'" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/ARCMIN" + } + ], + "short": "arc_minute", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq9", + "name": "plane angle", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd9", + "name": "plane angle", + "expression": "1", + "components": [ + { + "key": "plane_angle", + "symbol": "phi", + "power": 1 + } + ], + "dimensionless": true + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu148", + "unitsml_id": "u:arc_second", + "name": "arcsecond", + "names": [ + { + "value": "arcsecond", + "lang": "en" + }, + { + "value": "second (second of arc)", + "lang": "en" + }, + { + "value": "arcseconde", + "lang": "fr" + } + ], + "symbols": { + "unicode": "as", + "ascii": "as", + "html": "as", + "latex": "\\ensuremath{\\mathrm{as}}", + "id": "as", + "mathml": "as" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu148" + }, + { + "type": "unitsml", + "id": "u:arc_second" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/arcsecond" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/ARCSEC" + } + ], + "short": "arc_second", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq9", + "name": "plane angle", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd9", + "name": "plane angle", + "expression": "1", + "components": [ + { + "key": "plane_angle", + "symbol": "phi", + "power": 1 + } + ], + "dimensionless": true + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu149", + "unitsml_id": "u:arc_degree", + "name": "degree (degree of arc)", + "names": [ + { + "value": "degree (degree of arc)", + "lang": "en" + }, + { + "value": "degrΓ©", + "lang": "fr" + } + ], + "symbols": { + "unicode": "ΒΊ", + "ascii": "deg", + "html": "°", + "latex": "\\ensuremath{\\mathrm{^{\\circ}}}", + "id": "deg", + "mathml": "°" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu149" + }, + { + "type": "unitsml", + "id": "u:arc_degree" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/degree" + } + ], + "short": "arc_degree", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq9", + "name": "plane angle", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd9", + "name": "plane angle", + "expression": "1", + "components": [ + { + "key": "plane_angle", + "symbol": "phi", + "power": 1 + } + ], + "dimensionless": true + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu15", + "unitsml_id": "u:coulomb", + "name": "coulomb", + "names": [ + { + "value": "coulomb", + "lang": "en" + }, + { + "value": "coulomb", + "lang": "fr" + } + ], + "symbols": { + "unicode": "C", + "ascii": "C", + "html": "C", + "latex": "\\ensuremath{\\mathrm{C}}", + "id": "C", + "mathml": "C" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu15" + }, + { + "type": "unitsml", + "id": "u:coulomb" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/coulomb" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:base-unit:code:C" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/C" + } + ], + "short": "coulomb", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq22", + "name": "electric charge", + "type": "derived" + }, + { + "id": "NISTq23", + "name": "amount of electricity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd17", + "name": "electric charge", + "expression": "TΒ·I", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu15.u1e-2/1", + "unitsml_id": "u:coulomb_per_square_meter", + "name": "coulomb per square meter", + "names": [ + { + "value": "coulomb per square meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "C/mΒ²", + "ascii": "C*m^-2", + "html": "C/m2", + "latex": "\\ensuremath{\\mathrm{C/m^2}}", + "id": "C*m^-2", + "mathml": "C/m2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu15.u1e-2/1" + }, + { + "type": "unitsml", + "id": "u:coulomb_per_square_meter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/C-PER-M2" + } + ], + "short": "coulomb_per_square_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq81", + "name": "surface charge density", + "type": "derived" + }, + { + "id": "NISTq82", + "name": "electric displacement", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd53", + "name": "surface charge density", + "expression": "M-2Β·TΒ·I", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": -2 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu15", + "name": "coulomb", + "symbol": "C" + }, + "prefix": null + }, + { + "power": -2, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu15.u1e-3/1", + "unitsml_id": "u:coulomb_per_cubic_meter", + "name": "coulomb per cubic meter", + "names": [ + { + "value": "coulomb per cubic meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "C/mΒ³", + "ascii": "C*m^-3", + "html": "C/m3", + "latex": "\\ensuremath{\\mathrm{C/m^3}}", + "id": "C*m^-3", + "mathml": "C/m3" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu15.u1e-3/1" + }, + { + "type": "unitsml", + "id": "u:coulomb_per_cubic_meter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/C-PER-M3" + } + ], + "short": "coulomb_per_cubic_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq69", + "name": "electric charge density", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd43", + "name": "electric charge density", + "expression": "L-3Β·TΒ·I", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu15", + "name": "coulomb", + "symbol": "C" + }, + "prefix": null + }, + { + "power": -3, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu15.u27p10'3e-1/1", + "unitsml_id": "u:coulomb_per_kilogram", + "name": "coulomb per kilogram", + "names": [ + { + "value": "coulomb per kilogram", + "lang": "en" + } + ], + "symbols": { + "unicode": "C/kg", + "ascii": "C*kg^-1", + "html": "C/kg", + "latex": "\\ensuremath{\\mathrm{C/kg}}", + "id": "C*kg^-1", + "mathml": "C/kg" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu15.u27p10'3e-1/1" + }, + { + "type": "unitsml", + "id": "u:coulomb_per_kilogram" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/C-PER-KiloGM" + } + ], + "short": "coulomb_per_kilogram", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq197", + "name": "exposure", + "type": "derived" + }, + { + "id": "NISTq75", + "name": "exposure (x and gamma rays)", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd49", + "name": "exposure", + "expression": "M-1Β·TΒ·I", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu15", + "name": "coulomb", + "symbol": "C" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + } + ] + }, + { + "id": "NISTu152", + "unitsml_id": "u:knot", + "name": "nautical mile per hour", + "names": [ + { + "value": "nautical mile per hour", + "lang": "en" + }, + { + "value": "knot", + "lang": "en" + } + ], + "symbols": { + "unicode": "kn", + "ascii": "kn", + "html": "kn", + "latex": "\\ensuremath{\\mathrm{kn}}", + "id": "kn", + "mathml": "kn" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu152" + }, + { + "type": "unitsml", + "id": "u:knot" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[kn_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/KN" + } + ], + "short": "knot", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq12", + "name": "velocity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd11", + "name": "velocity", + "expression": "LΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu153", + "unitsml_id": "u:neper", + "name": "neper", + "names": [ + { + "value": "neper", + "lang": "en" + }, + { + "value": "nΓ©per", + "lang": "fr" + } + ], + "symbols": { + "unicode": "Np", + "ascii": "Np", + "html": "Np", + "latex": "\\ensuremath{\\mathrm{Np}}", + "id": "Np", + "mathml": "Np" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu153" + }, + { + "type": "unitsml", + "id": "u:neper" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/neper" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:levels:code:Np" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/NP" + } + ], + "short": "neper", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq118", + "name": "level of a field quantity", + "type": "derived" + }, + { + "id": "NISTq119", + "name": "level of a power quantity", + "type": "derived" + }, + { + "id": "NISTq121", + "name": "ratio logarithm (Np)", + "type": "derived" + }, + { + "id": "NISTq90", + "name": "ratio logarithm (B)", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd83", + "name": "level of field quantity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "scale": { + "id": "logarithmic_field", + "name": "logarithmic field scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu154", + "unitsml_id": "u:bel", + "name": "bel", + "names": [ + { + "value": "bel", + "lang": "en" + }, + { + "value": "bel", + "lang": "fr" + } + ], + "symbols": { + "unicode": "B", + "ascii": "B", + "html": "B", + "latex": "\\ensuremath{\\mathrm{B}}", + "id": "bel_B", + "mathml": "B" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu154" + }, + { + "type": "unitsml", + "id": "u:bel" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/bel" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:levels:code:B" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/B" + } + ], + "short": "bel", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq118", + "name": "level of a field quantity", + "type": "derived" + }, + { + "id": "NISTq119", + "name": "level of a power quantity", + "type": "derived" + }, + { + "id": "NISTq90", + "name": "ratio logarithm (B)", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd83", + "name": "level of field quantity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "scale": { + "id": "logarithmic_field", + "name": "logarithmic field scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu155", + "unitsml_id": "u:decibel", + "name": "decibel", + "names": [ + { + "value": "decibel", + "lang": "en" + } + ], + "symbols": { + "unicode": "dB", + "ascii": "dB", + "html": "dB", + "latex": "\\ensuremath{\\mathrm{dB}}", + "id": "dB", + "mathml": "dB" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu155" + }, + { + "type": "unitsml", + "id": "u:decibel" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/DeciB" + } + ], + "short": "decibel", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq90", + "name": "ratio logarithm (B)", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd67", + "name": "logarithmic ratio", + "expression": "1", + "components": [], + "dimensionless": true + }, + "scale": { + "id": "logarithmic_ratio", + "name": "logarithmic ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu154", + "name": "bel", + "symbol": "B" + }, + "prefix": { + "id": "NISTp10_-1", + "name": "deci", + "symbol": "d" + } + } + ] + }, + { + "id": "NISTu156", + "unitsml_id": "u:mm_Hg", + "name": "conventional millimeter of mercury", + "names": [ + { + "value": "conventional millimeter of mercury", + "lang": "en" + }, + { + "value": "millimeter of mercury, conventional", + "lang": "en" + }, + { + "value": "millimeter of mercury", + "lang": "en" + } + ], + "symbols": { + "unicode": "mmHg", + "ascii": "mmHg", + "html": "mmHg", + "latex": "\\ensuremath{\\mathrm{mmHg}}", + "id": "mmHg", + "mathml": "mmHg" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu156" + }, + { + "type": "unitsml", + "id": "u:mm_Hg" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MilliM_HG" + } + ], + "short": "mm_Hg", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu157", + "unitsml_id": "u:darcy", + "name": "darcy", + "names": [ + { + "value": "darcy", + "lang": "en" + } + ], + "symbols": { + "unicode": "D", + "ascii": "D", + "html": "D", + "latex": "\\ensuremath{\\mathrm{D}}", + "id": "Darcy", + "mathml": "D" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu157" + }, + { + "type": "unitsml", + "id": "u:darcy" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:d" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/DARCY" + } + ], + "short": "darcy", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq72", + "name": "permeability", + "type": "derived" + }, + { + "id": "NISTq92", + "name": "hydrodynamic permeability", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd46", + "name": "permeability", + "expression": "LΒ·MΒ·T-2Β·I-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu159", + "unitsml_id": "u:gon", + "name": "gon", + "names": [ + { + "value": "gon", + "lang": "en" + } + ], + "symbols": { + "unicode": "gon", + "ascii": "gon", + "html": "gon", + "latex": "\\ensuremath{\\mathrm{gon}}", + "id": "gon", + "mathml": "gon" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu159" + }, + { + "type": "unitsml", + "id": "u:gon" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:gon" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/GON" + } + ], + "short": "gon", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq9", + "name": "plane angle", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd9", + "name": "plane angle", + "expression": "1", + "components": [ + { + "key": "plane_angle", + "symbol": "phi", + "power": 1 + } + ], + "dimensionless": true + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu16", + "unitsml_id": "u:volt", + "name": "volt", + "names": [ + { + "value": "volt", + "lang": "en" + }, + { + "value": "volt", + "lang": "fr" + } + ], + "symbols": { + "unicode": "V", + "ascii": "V", + "html": "V", + "latex": "\\ensuremath{\\mathrm{V}}", + "id": "V", + "mathml": "V" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu16" + }, + { + "type": "unitsml", + "id": "u:volt" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/volt" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:V" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/V" + } + ], + "short": "volt", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq24", + "name": "electric potential difference", + "type": "derived" + }, + { + "id": "NISTq25", + "name": "potential difference", + "type": "derived" + }, + { + "id": "NISTq26", + "name": "electromotive force", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd18", + "name": "electric potential difference", + "expression": "L2Β·MΒ·T-3Β·I-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu16.u1e-1/1", + "unitsml_id": "u:volt_per_meter", + "name": "volt per meter", + "names": [ + { + "value": "volt per meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "V/m", + "ascii": "V*m^-1", + "html": "V/m", + "latex": "\\ensuremath{\\mathrm{V/m}}", + "id": "V*m^-1", + "mathml": "V/m" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu16.u1e-1/1" + }, + { + "type": "unitsml", + "id": "u:volt_per_meter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/V-PER-M" + } + ], + "short": "volt_per_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq68", + "name": "electric field strength", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd42", + "name": "electric field strength", + "expression": "LΒ·MΒ·T-3Β·I-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu16", + "name": "volt", + "symbol": "V" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu160", + "unitsml_id": "u:kilometer_per_hour", + "name": "kilometer per hour", + "names": [ + { + "value": "kilometer per hour", + "lang": "en" + } + ], + "symbols": { + "unicode": "km/h", + "ascii": "km/h", + "html": "kh/h", + "latex": "\\ensuremath{\\mathrm{kh/h}}", + "id": "km/h", + "mathml": "kh/h" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu160" + }, + { + "type": "unitsml", + "id": "u:kilometer_per_hour" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/KiloM-PER-HR" + } + ], + "short": "kilometer_per_hour", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq107", + "name": "speed of propagation of waves", + "type": "derived" + }, + { + "id": "NISTq12", + "name": "velocity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd11", + "name": "velocity", + "expression": "LΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -1, + "unit": { + "id": "NISTu37", + "name": "hour", + "symbol": "h" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu163", + "unitsml_id": "u:neper_per_second", + "name": "neper per second", + "names": [ + { + "value": "neper per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "Np/s", + "ascii": "Np*s^-1", + "html": "Np/s", + "latex": "\\ensuremath{\\mathrm{Np/s}}", + "id": "Np*s^-1", + "mathml": "Np/s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu163" + }, + { + "type": "unitsml", + "id": "u:neper_per_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/NP-PER-SEC" + } + ], + "short": "neper_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq120", + "name": "damping coefficient", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd24", + "name": "frequency", + "expression": "T-1", + "components": [ + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu153", + "name": "neper", + "symbol": "Np" + }, + "prefix": null + }, + { + "power": -2, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu164", + "unitsml_id": "u:square_yard", + "name": "square yard", + "names": [ + { + "value": "square yard", + "lang": "en" + } + ], + "symbols": { + "unicode": "ydΒ²", + "ascii": "yd^2", + "html": "yd2", + "latex": "\\ensuremath{\\mathrm{yd^2}}", + "id": "yd^2", + "mathml": "yd2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu164" + }, + { + "type": "unitsml", + "id": "u:square_yard" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[syd_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/YD2" + } + ], + "short": "square_yard", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq8", + "name": "area", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd8", + "name": "area", + "expression": "L2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 2, + "unit": { + "id": "NISTu84", + "name": "yard", + "symbol": "yd" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu165", + "unitsml_id": "u:square_mile", + "name": "square mile", + "names": [ + { + "value": "square mile", + "lang": "en" + } + ], + "symbols": { + "unicode": "miΒ²", + "ascii": "mi^2", + "html": "mi2", + "latex": "\\ensuremath{\\mathrm{mi^2}}", + "id": "mi^2", + "mathml": "mi2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu165" + }, + { + "type": "unitsml", + "id": "u:square_mile" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-lengths:code:[smi_us]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MI2" + } + ], + "short": "square_mile", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq8", + "name": "area", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd8", + "name": "area", + "expression": "L2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 2, + "unit": { + "id": "NISTu83", + "name": "mile", + "symbol": "mi" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu166", + "unitsml_id": "u:tons_of_tnt", + "name": "ton of TNT (energy equivalent)", + "names": [ + { + "value": "ton of TNT (energy equivalent)", + "lang": "en" + }, + { + "value": "ton", + "lang": "en" + } + ], + "symbols": { + "unicode": "ton", + "ascii": "ton", + "html": "ton", + "latex": "\\ensuremath{\\mathrm{ton}}", + "id": "ton_TNT", + "mathml": "ton" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu166" + }, + { + "type": "unitsml", + "id": "u:tons_of_tnt" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/TonEnergy" + } + ], + "short": "tons_of_tnt", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq17", + "name": "energy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu167", + "unitsml_id": "u:foot_per_second_squared", + "name": "foot per second squared", + "names": [ + { + "value": "foot per second squared", + "lang": "en" + } + ], + "symbols": { + "unicode": "ft/sΒ²", + "ascii": "ft*s^-2", + "html": "ft/s2", + "latex": "\\ensuremath{\\mathrm{ft/s^2}}", + "id": "ft*s^-2", + "mathml": "ft/s2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu167" + }, + { + "type": "unitsml", + "id": "u:foot_per_second_squared" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FT-PER-SEC2" + } + ], + "short": "foot_per_second_squared", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq49", + "name": "acceleration", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd28", + "name": "acceleration", + "expression": "LΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu78", + "name": "foot", + "symbol": "β€²" + }, + "prefix": null + }, + { + "power": -2, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu168", + "unitsml_id": "u:cubic_inch", + "name": "cubic inch", + "names": [ + { + "value": "cubic inch", + "lang": "en" + } + ], + "symbols": { + "unicode": "inΒ³", + "ascii": "in^3", + "html": "in3", + "latex": "\\ensuremath{\\mathrm{in^3}}", + "id": "in^3", + "mathml": "in3" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu168" + }, + { + "type": "unitsml", + "id": "u:cubic_inch" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[cin_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/IN3" + } + ], + "short": "cubic_inch", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 3, + "unit": { + "id": "NISTu8", + "name": "inch", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu169", + "unitsml_id": "u:cubic_foot", + "name": "cubic foot", + "names": [ + { + "value": "cubic foot", + "lang": "en" + } + ], + "symbols": { + "unicode": "ftΒ³", + "ascii": "ft^3", + "html": "ft3", + "latex": "\\ensuremath{\\mathrm{ft^3}}", + "id": "ft^3", + "mathml": "ft3" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu169" + }, + { + "type": "unitsml", + "id": "u:cubic_foot" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[cft_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FT3" + } + ], + "short": "cubic_foot", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 3, + "unit": { + "id": "NISTu78", + "name": "foot", + "symbol": "β€²" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu17", + "unitsml_id": "u:farad", + "name": "farad", + "names": [ + { + "value": "farad", + "lang": "en" + }, + { + "value": "farad", + "lang": "fr" + } + ], + "symbols": { + "unicode": "F", + "ascii": "F", + "html": "F", + "latex": "\\ensuremath{\\mathrm{F}}", + "id": "F", + "mathml": "F" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu17" + }, + { + "type": "unitsml", + "id": "u:farad" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/farad" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:F" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/F" + } + ], + "short": "farad", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq27", + "name": "capacitance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd19", + "name": "capacitance", + "expression": "L-2Β·M-1Β·T4Β·I2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 4 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu17.u1e-1/1", + "unitsml_id": "u:farad_per_meter", + "name": "farad per meter", + "names": [ + { + "value": "farad per meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "F/m", + "ascii": "F*m^-1", + "html": "F/m", + "latex": "\\ensuremath{\\mathrm{F/m}}", + "id": "F*m^-1", + "mathml": "F/m" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu17.u1e-1/1" + }, + { + "type": "unitsml", + "id": "u:farad_per_meter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FARAD-PER-M" + } + ], + "short": "farad_per_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq71", + "name": "permittivity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd45", + "name": "permittivity", + "expression": "L-3Β·M-1Β·T4Β·I2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 4 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu17", + "name": "farad", + "symbol": "F" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu170", + "unitsml_id": "u:cubic_yard", + "name": "cubic yard", + "names": [ + { + "value": "cubic yard", + "lang": "en" + } + ], + "symbols": { + "unicode": "ydΒ³", + "ascii": "yd^3", + "html": "yd3", + "latex": "\\ensuremath{\\mathrm{yd^3}}", + "id": "yd^3", + "mathml": "yd3" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu170" + }, + { + "type": "unitsml", + "id": "u:cubic_yard" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[cyd_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/YD3" + } + ], + "short": "cubic_yard", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 3, + "unit": { + "id": "NISTu84", + "name": "yard", + "symbol": "yd" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu171", + "unitsml_id": "u:imperial_gallon", + "name": "gallon (UK)", + "names": [ + { + "value": "gallon (UK)", + "lang": "en" + }, + { + "value": "imperial gallon", + "lang": "en" + }, + { + "value": "gallon", + "lang": "en" + } + ], + "symbols": { + "unicode": "gal (UK)", + "ascii": "gal (UK)", + "html": "gal (UK)", + "latex": "\\ensuremath{\\mathrm{gal (UK)}}", + "id": "gal (UK)", + "mathml": "gal (UK)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu171" + }, + { + "type": "unitsml", + "id": "u:imperial_gallon" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:brit-volumes:code:[gal_br]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/GAL_IMP" + } + ], + "short": "imperial_gallon", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu172", + "unitsml_id": "u:imperial_pint", + "name": "pint (UK)", + "names": [ + { + "value": "pint (UK)", + "lang": "en" + }, + { + "value": "pint", + "lang": "en" + } + ], + "symbols": { + "unicode": "pt (UK)", + "ascii": "pt (UK)", + "html": "pt (UK)", + "latex": "\\ensuremath{\\mathrm{pint~{UK}}", + "id": "pt (UK)", + "mathml": "pt (UK)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu172" + }, + { + "type": "unitsml", + "id": "u:imperial_pint" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[pt_us]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/PINT_UK" + } + ], + "short": "imperial_pint", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu173", + "unitsml_id": "u:imperial_ounce", + "name": "fluid ounce (UK)", + "names": [ + { + "value": "fluid ounce (UK)", + "lang": "en" + }, + { + "value": "fluid ounce", + "lang": "en" + }, + { + "value": "ounce", + "lang": "en" + } + ], + "symbols": { + "unicode": "fl oz (UK)", + "ascii": "fl oz (UK)", + "html": "fl oz (UK)", + "latex": "\\ensuremath{\\mathrm{fl oz (UK)}}", + "id": "fl oz (UK)", + "mathml": "fl oz (UK)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu173" + }, + { + "type": "unitsml", + "id": "u:imperial_ounce" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[foz_us]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/OZ_VOL_UK" + } + ], + "short": "imperial_ounce", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu175", + "unitsml_id": "u:us_gallon", + "name": "gallon (US)", + "names": [ + { + "value": "gallon (US)", + "lang": "en" + }, + { + "value": "gallon", + "lang": "en" + } + ], + "symbols": { + "unicode": "gal (US)", + "ascii": "gal (US)", + "html": "gal (US)", + "latex": "\\ensuremath{\\mathrm{gal (US)}}", + "id": "gal (US)", + "mathml": "gal (US)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu175" + }, + { + "type": "unitsml", + "id": "u:us_gallon" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:brit-volumes:code:[gal_br]" + } + ], + "short": "us_gallon", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_interval", + "name": "continuous interval scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu176", + "unitsml_id": "u:us_pint", + "name": "liquid pint (US)", + "names": [ + { + "value": "liquid pint (US)", + "lang": "en" + }, + { + "value": "pint", + "lang": "en" + } + ], + "symbols": { + "unicode": "liq pint (US)", + "ascii": "liq pint (US)", + "html": "liq pint (US)", + "latex": "\\ensuremath{\\mathrm{liq pint (US)}}", + "id": "liq pint (US)", + "mathml": "liq pint (US)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu176" + }, + { + "type": "unitsml", + "id": "u:us_pint" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[pt_us]" + } + ], + "short": "us_pint", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu177", + "unitsml_id": "u:us_fluid_ounce", + "name": "fluid ounce (US)", + "names": [ + { + "value": "fluid ounce (US)", + "lang": "en" + }, + { + "value": "fluid ounce", + "lang": "en" + }, + { + "value": "ounce", + "lang": "en" + } + ], + "symbols": { + "unicode": "fl oz (US)", + "ascii": "fl oz (US)", + "html": "fl oz (US)", + "latex": "\\ensuremath{\\mathrm{fl oz (US)}}", + "id": "fl oz (US)", + "mathml": "fl oz (US)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu177" + }, + { + "type": "unitsml", + "id": "u:us_fluid_ounce" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[foz_us]" + } + ], + "short": "us_fluid_ounce", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu178", + "unitsml_id": "u:petro_barrel", + "name": "barrel (US) for petroleum", + "names": [ + { + "value": "barrel (US) for petroleum", + "lang": "en" + }, + { + "value": "barrel", + "lang": "en" + } + ], + "symbols": { + "unicode": "bbl (US)", + "ascii": "bbl (US)", + "html": "bbl (US)", + "latex": "\\ensuremath{\\mathrm{bbl (US)}}", + "id": "bbl (US)", + "mathml": "bbl (US)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu178" + }, + { + "type": "unitsml", + "id": "u:petro_barrel" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[bbl_us]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/BBL" + } + ], + "short": "petro_barrel", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu179", + "unitsml_id": "u:us_bushel", + "name": "bushel (US)", + "names": [ + { + "value": "bushel (US)", + "lang": "en" + }, + { + "value": "bushel", + "lang": "en" + } + ], + "symbols": { + "unicode": "bu (US)", + "ascii": "bu (US)", + "html": "bu (US)", + "latex": "\\ensuremath{\\mathrm{bu (US)}}", + "id": "bu (US)", + "mathml": "bu (US)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu179" + }, + { + "type": "unitsml", + "id": "u:us_bushel" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[bu_us]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/BU_US" + } + ], + "short": "us_bushel", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu18", + "unitsml_id": "u:ohm", + "name": "ohm", + "names": [ + { + "value": "ohm", + "lang": "en" + }, + { + "value": "ohm", + "lang": "fr" + } + ], + "symbols": { + "unicode": "Ω", + "ascii": "Ohm", + "html": "Ω", + "latex": "\\ensuremath{\\mathrm{\\Omega}}", + "id": "Ohm", + "mathml": "" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu18" + }, + { + "type": "unitsml", + "id": "u:ohm" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/ohm" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:Ohm" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/OHM" + } + ], + "short": "ohm", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq28", + "name": "electric resistance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd20", + "name": "electric resistance", + "expression": "L2Β·MΒ·T-3Β·I-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu180", + "unitsml_id": "u:us_dry_pint", + "name": "dry pint (US)", + "names": [ + { + "value": "dry pint (US)", + "lang": "en" + }, + { + "value": "pint", + "lang": "en" + } + ], + "symbols": { + "unicode": "dry pt (US)", + "ascii": "dry pt (US)", + "html": "dry pt (US)", + "latex": "\\ensuremath{\\mathrm{dry pt (US)}}", + "id": "dry pt (US)", + "mathml": "dry pt (US)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu180" + }, + { + "type": "unitsml", + "id": "u:us_dry_pint" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[pt_us]" + } + ], + "short": "us_dry_pint", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu182", + "unitsml_id": "u:light_year", + "name": "light year", + "names": [ + { + "value": "light year", + "lang": "en" + } + ], + "symbols": { + "unicode": "l.y.", + "ascii": "l.y.", + "html": "l.y.", + "latex": "\\ensuremath{\\mathrm{l.y.}}", + "id": "l.y.", + "mathml": "l.y." + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu182" + }, + { + "type": "unitsml", + "id": "u:light_year" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:const:code:[ly]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/LY" + } + ], + "short": "light_year", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu183", + "unitsml_id": "u:astronomical_unit", + "name": "astronomical unit", + "names": [ + { + "value": "astronomical unit", + "lang": "en" + }, + { + "value": "unitΓ© astronomique", + "lang": "fr" + } + ], + "symbols": { + "unicode": "ua", + "ascii": "ua", + "html": "ua", + "latex": "\\ensuremath{\\mathrm{ua}}", + "id": "ua", + "mathml": "ua" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu183" + }, + { + "type": "unitsml", + "id": "u:astronomical_unit" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/astronomicalunit" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/AU" + } + ], + "short": "astronomical_unit", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu184", + "unitsml_id": "u:parsec", + "name": "parsec", + "names": [ + { + "value": "parsec", + "lang": "en" + } + ], + "symbols": { + "unicode": "pc", + "ascii": "pc", + "html": "pc", + "latex": "\\ensuremath{\\mathrm{pc}}", + "id": "pc", + "mathml": "pc" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu184" + }, + { + "type": "unitsml", + "id": "u:parsec" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:pc" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/PARSEC" + } + ], + "short": "parsec", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu185", + "unitsml_id": "u:meter_to_the_power_four", + "name": "meter to the power four", + "names": [ + { + "value": "meter to the power four", + "lang": "en" + } + ], + "symbols": { + "unicode": "m⁴", + "ascii": "m^4", + "html": "m4", + "latex": "\\ensuremath{\\mathrm{m^4}}", + "id": "m^4", + "mathml": "m4" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu185" + }, + { + "type": "unitsml", + "id": "u:meter_to_the_power_four" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/M4" + } + ], + "short": "meter_to_the_power_four", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq144", + "name": "second axial moment of area", + "type": "derived" + }, + { + "id": "NISTq145", + "name": "second polar moment of area", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd57", + "name": "area moment of inertia", + "expression": "L4", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 4 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 4, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu188", + "unitsml_id": "u:kilogram_per_liter", + "name": "kilogram per liter", + "names": [ + { + "value": "kilogram per liter", + "lang": "en" + } + ], + "symbols": { + "unicode": "kg/l", + "ascii": "kg*l^-1", + "html": "kg/l", + "latex": "\\ensuremath{\\mathrm{kg/l}}", + "id": "kg*l^-1", + "mathml": "kg/l" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu188" + }, + { + "type": "unitsml", + "id": "u:kilogram_per_liter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/KiloGM-PER-L" + } + ], + "short": "kilogram_per_liter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq51", + "name": "density", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd30", + "name": "mass density", + "expression": "L-3Β·M", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -1, + "unit": { + "id": "NISTu130", + "name": "litre", + "symbol": "L" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu189", + "unitsml_id": "u:metric_ton_per_cubic_meter", + "name": "metric ton per cubic meter", + "names": [ + { + "value": "metric ton per cubic meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "t/mΒ³", + "ascii": "t*m^-3", + "html": "t/m3", + "latex": "\\ensuremath{\\mathrm{t/m^3}}", + "id": "t*m^-3", + "mathml": "t/m3" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu189" + }, + { + "type": "unitsml", + "id": "u:metric_ton_per_cubic_meter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/TONNE-PER-M3" + } + ], + "short": "metric_ton_per_cubic_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq51", + "name": "density", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd30", + "name": "mass density", + "expression": "L-3Β·M", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu88", + "name": "tonne", + "symbol": "t" + }, + "prefix": null + }, + { + "power": -3, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu19", + "unitsml_id": "u:siemens", + "name": "siemens", + "names": [ + { + "value": "siemens", + "lang": "en" + }, + { + "value": "siemens", + "lang": "fr" + } + ], + "symbols": { + "unicode": "S", + "ascii": "S", + "html": "S", + "latex": "\\ensuremath{\\mathrm{S}}", + "id": "S", + "mathml": "S" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu19" + }, + { + "type": "unitsml", + "id": "u:siemens" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/siemens" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:S" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/S" + } + ], + "short": "siemens", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq29", + "name": "electric conductance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd21", + "name": "electric conductance", + "expression": "L-2Β·M-1Β·T3Β·I2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu196", + "unitsml_id": "u:gram_force", + "name": "gram-force", + "names": [ + { + "value": "gram-force", + "lang": "en" + } + ], + "symbols": { + "unicode": "gf", + "ascii": "gf", + "html": "gf", + "latex": "\\ensuremath{\\mathrm{gf}}", + "id": "gf", + "mathml": "gf" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu196" + }, + { + "type": "unitsml", + "id": "u:gram_force" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:const:code:gf" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/GM_F" + } + ], + "short": "gram_force", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq13", + "name": "force", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd12", + "name": "force", + "expression": "LΒ·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + } + ] + }, + { + "id": "NISTu1e-1/1", + "unitsml_id": "u:meter_to_the_power_minus_one", + "name": "meter to the power minus one", + "names": [ + { + "value": "meter to the power minus one", + "lang": "en" + }, + { + "value": "reciprocal meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "m⁻¹", + "ascii": "m^-1", + "html": "m-1", + "latex": "\\ensuremath{\\mathrm{m^{-1}}}", + "id": "m^-1", + "mathml": "m1" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu1e-1/1" + }, + { + "type": "unitsml", + "id": "u:meter_to_the_power_minus_one" + } + ], + "references": [], + "short": "meter_to_the_power_minus_one", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq106", + "name": "curvature", + "type": "derived" + }, + { + "id": "NISTq115", + "name": "angular wavenumber", + "type": "derived" + }, + { + "id": "NISTq122", + "name": "attenuation coefficient", + "type": "derived" + }, + { + "id": "NISTq123", + "name": "phase coefficient", + "type": "derived" + }, + { + "id": "NISTq124", + "name": "propagation coefficient", + "type": "derived" + }, + { + "id": "NISTq50", + "name": "wavenumber", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd29", + "name": "wavenumber", + "expression": "L-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": -1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu1e-2/1", + "unitsml_id": "u:meter_to_the_power_minus_two", + "name": "meter to the power minus two", + "names": [ + { + "value": "meter to the power minus two", + "lang": "en" + }, + { + "value": "reciprocal square meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "m⁻²", + "ascii": "m^-2", + "html": "m-2", + "latex": "\\ensuremath{\\mathrm{m^{-2}}}", + "id": "m^-2", + "mathml": "m2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu1e-2/1" + }, + { + "type": "unitsml", + "id": "u:meter_to_the_power_minus_two" + } + ], + "references": [], + "short": "meter_to_the_power_minus_two", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq190", + "name": "fluence", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd96", + "name": "fluence", + "expression": "L-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": -2, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu1e-2/1.u3e-1/1", + "unitsml_id": "u:meter_to_the_power_minus_two_per_second", + "name": "meter to the power minus two per second", + "names": [ + { + "value": "meter to the power minus two per second", + "lang": "en" + }, + { + "value": "reciprocal square meter per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "m⁻²·s⁻¹", + "ascii": "m^-2*s^-1", + "html": "m-2/s", + "latex": "\\ensuremath{\\mathrm{m^{-2}/s}}", + "id": "m^-2*s^-1", + "mathml": "m2/s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu1e-2/1.u3e-1/1" + }, + { + "type": "unitsml", + "id": "u:meter_to_the_power_minus_two_per_second" + } + ], + "references": [], + "short": "meter_to_the_power_minus_two_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq191", + "name": "fluence rate", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd97", + "name": "fluence_rate", + "expression": "L-2Β·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": -2, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu1e2/1", + "unitsml_id": "u:square_meter", + "name": "square meter", + "names": [ + { + "value": "square meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "mΒ²", + "ascii": "m^2", + "html": "m2", + "latex": "\\ensuremath{\\mathrm{m^2}}", + "id": "m^2", + "mathml": "m2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu1e2/1" + }, + { + "type": "unitsml", + "id": "u:square_meter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/M2" + } + ], + "short": "square_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq8", + "name": "area", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd8", + "name": "area", + "expression": "L2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 2, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu1e2/1.u3e-1/1", + "unitsml_id": "u:meter_squared_per_second", + "name": "meter squared per second", + "names": [ + { + "value": "meter squared per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "mΒ²/s", + "ascii": "m^2*s^-1", + "html": "m2/s", + "latex": "\\ensuremath{\\mathrm{m^2/s}}", + "id": "m^2*s^-1", + "mathml": "m2/s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu1e2/1.u3e-1/1" + }, + { + "type": "unitsml", + "id": "u:meter_squared_per_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/M2-PER-SEC" + } + ], + "short": "meter_squared_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq85", + "name": "kinematic viscosity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd56", + "name": "kinematic viscosity", + "expression": "L2Β·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 2, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu1e3/1", + "unitsml_id": "u:cubic_meter", + "name": "cubic meter", + "names": [ + { + "value": "cubic meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "mΒ³", + "ascii": "m^3", + "html": "m3", + "latex": "\\ensuremath{\\mathrm{m^3}}", + "id": "m^3", + "mathml": "m3" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu1e3/1" + }, + { + "type": "unitsml", + "id": "u:cubic_meter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/M3" + } + ], + "short": "cubic_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + }, + { + "id": "NISTq146", + "name": "section modulus", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 3, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu1e3/1.u27p10'3", + "unitsml_id": "u:cubic_meter_per_kilogram", + "name": "cubic meter per kilogram", + "names": [ + { + "value": "cubic meter per kilogram", + "lang": "en" + } + ], + "symbols": { + "unicode": "mΒ³Β·kg", + "ascii": "m^3*kg", + "html": "m3/kg", + "latex": "\\ensuremath{\\mathrm{m^3/kg}}", + "id": "m^3*kg", + "mathml": "m3/kg" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu1e3/1.u27p10'3" + }, + { + "type": "unitsml", + "id": "u:cubic_meter_per_kilogram" + } + ], + "references": [], + "short": "cubic_meter_per_kilogram", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq52", + "name": "specific volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd31", + "name": "specific volume", + "expression": "L3Β·M-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 3, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + } + ] + }, + { + "id": "NISTu1e3/1.u3e-1/1", + "unitsml_id": "u:cubic_meter_per_second", + "name": "cubic meter per second", + "names": [ + { + "value": "cubic meter per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "mΒ³/s", + "ascii": "m^3*s^-1", + "html": "m3/s", + "latex": "\\ensuremath{\\mathrm{m^3/s}}", + "id": "m^3*s^-1", + "mathml": "m3/s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu1e3/1.u3e-1/1" + }, + { + "type": "unitsml", + "id": "u:cubic_meter_per_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/M3-PER-SEC" + } + ], + "short": "cubic_meter_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq151", + "name": "volume flow rate", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd66", + "name": "volume flow rate", + "expression": "L3Β·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 3, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu2", + "unitsml_id": "u:kilogram", + "name": "kilogram", + "names": [ + { + "value": "kilogram", + "lang": "en" + }, + { + "value": "kilogramme", + "lang": "fr" + } + ], + "symbols": { + "unicode": "kg", + "ascii": "kg", + "html": "kg", + "latex": "\\ensuremath{\\mathrm{kg}}", + "id": "kg", + "mathml": "kg" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu2" + }, + { + "type": "unitsml", + "id": "u:kilogram" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/kilogram" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/KiloGM" + } + ], + "short": "kilogram", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_base", + "name": "SI base units", + "short": "si-base", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + } + ] + }, + { + "id": "NISTu20", + "unitsml_id": "u:weber", + "name": "weber", + "names": [ + { + "value": "weber", + "lang": "en" + }, + { + "value": "weber", + "lang": "fr" + } + ], + "symbols": { + "unicode": "Wb", + "ascii": "Wb", + "html": "Wb", + "latex": "\\ensuremath{\\mathrm{Wb}}", + "id": "Wb", + "mathml": "Wb" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu20" + }, + { + "type": "unitsml", + "id": "u:weber" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/weber" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:Wb" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/WB" + } + ], + "short": "weber", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq30", + "name": "magnetic flux", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd22", + "name": "magnetic flux", + "expression": "L2Β·MΒ·T-2Β·I-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu201", + "unitsml_id": "u:av_pound", + "name": "pound (avoirdupois)", + "names": [ + { + "value": "pound (avoirdupois)", + "lang": "en" + }, + { + "value": "avoirdupois pound", + "lang": "en" + }, + { + "value": "pound", + "lang": "en" + } + ], + "symbols": { + "unicode": "lb", + "ascii": "lb", + "html": "lb", + "latex": "\\ensuremath{\\mathrm{lb}}", + "id": "lb", + "mathml": "lb" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu201" + }, + { + "type": "unitsml", + "id": "u:av_pound" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:avoirdupois:code:[lb_av]" + } + ], + "short": "av_pound", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu202", + "unitsml_id": "u:av_ounce", + "name": "ounce (avoirdupois)", + "names": [ + { + "value": "ounce (avoirdupois)", + "lang": "en" + }, + { + "value": "avoirdupois ounce", + "lang": "en" + }, + { + "value": "ounce", + "lang": "en" + } + ], + "symbols": { + "unicode": "oz", + "ascii": "oz", + "html": "oz", + "latex": "\\ensuremath{\\mathrm{oz}}", + "id": "oz", + "mathml": "oz" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu202" + }, + { + "type": "unitsml", + "id": "u:av_ounce" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:avoirdupois:code:[oz_av]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/OZ-FT" + } + ], + "short": "av_ounce", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu203", + "unitsml_id": "u:gross_hundredweight", + "name": "hundredweight (long, 112 lb)", + "names": [ + { + "value": "hundredweight (long, 112 lb)", + "lang": "en" + }, + { + "value": "hundredweight", + "lang": "en" + } + ], + "symbols": { + "unicode": "cwt (UK)", + "ascii": "cwt (UK)", + "html": "cwt (UK)", + "latex": "\\ensuremath{\\mathrm{cwt (UK)}}", + "id": "cwt (UK)", + "mathml": "cwt (UK)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu203" + }, + { + "type": "unitsml", + "id": "u:gross_hundredweight" + } + ], + "references": [], + "short": "gross_hundredweight", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu204", + "unitsml_id": "u:pound_per_cubic_foot", + "name": "pound per cubic foot", + "names": [ + { + "value": "pound per cubic foot", + "lang": "en" + } + ], + "symbols": { + "unicode": "lb/ftΒ³", + "ascii": "lb*ft^-3", + "html": "lb/ft3", + "latex": "\\ensuremath{\\mathrm{lb/ft^3}}", + "id": "lb*ft^-3", + "mathml": "lb/ft3" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu204" + }, + { + "type": "unitsml", + "id": "u:pound_per_cubic_foot" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/LB-PER-FT3" + } + ], + "short": "pound_per_cubic_foot", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq51", + "name": "density", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd30", + "name": "mass density", + "expression": "L-3Β·M", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu201", + "name": "pound (avoirdupois)", + "symbol": "lb" + }, + "prefix": null + }, + { + "power": -3, + "unit": { + "id": "NISTu78", + "name": "foot", + "symbol": "β€²" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu205", + "unitsml_id": "u:pound_force", + "name": "pound-force", + "names": [ + { + "value": "pound-force", + "lang": "en" + } + ], + "symbols": { + "unicode": "lbf", + "ascii": "lbf", + "html": "lbf", + "latex": "\\ensuremath{\\mathrm{lbf}}", + "id": "lbf", + "mathml": "lbf" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu205" + }, + { + "type": "unitsml", + "id": "u:pound_force" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:const:code:[lbf_av]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/LB_F" + } + ], + "short": "pound_force", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq128", + "name": "weight", + "type": "derived" + }, + { + "id": "NISTq13", + "name": "force", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd12", + "name": "force", + "expression": "LΒ·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu206", + "unitsml_id": "u:foot_pound_force", + "name": "foot pound-force", + "names": [ + { + "value": "foot pound-force", + "lang": "en" + } + ], + "symbols": { + "unicode": "ftΒ·lbf", + "ascii": "ft*lbf", + "html": "ft · lbf", + "latex": "\\ensuremath{\\mathrm{ft\\cdot lbf}}", + "id": "ft*lbf", + "mathml": "ft·lbf" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu206" + }, + { + "type": "unitsml", + "id": "u:foot_pound_force" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FT-LB_F" + } + ], + "short": "foot_pound_force", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq17", + "name": "energy", + "type": "derived" + }, + { + "id": "NISTq18", + "name": "work", + "type": "derived" + }, + { + "id": "NISTq182", + "name": "kinetic energy", + "type": "derived" + }, + { + "id": "NISTq183", + "name": "mechanical energy", + "type": "derived" + }, + { + "id": "NISTq184", + "name": "torque", + "type": "derived" + }, + { + "id": "NISTq185", + "name": "bending moment of force", + "type": "derived" + }, + { + "id": "NISTq60", + "name": "moment of force", + "type": "derived" + }, + { + "id": "NISTq77", + "name": "potential energy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu78", + "name": "foot", + "symbol": "β€²" + }, + "prefix": null + }, + { + "power": 1, + "unit": { + "id": "NISTu205", + "name": "pound-force", + "symbol": "lbf" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu207", + "unitsml_id": "u:pound_force_per_square_inch", + "name": "pound-force per square inch", + "names": [ + { + "value": "pound-force per square inch", + "lang": "en" + } + ], + "symbols": { + "unicode": "lbf/inΒ²", + "ascii": "psi", + "html": "psi", + "latex": "\\ensuremath{\\mathrm{psi}}", + "id": "psi", + "mathml": "psi" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu207" + }, + { + "type": "unitsml", + "id": "u:pound_force_per_square_inch" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:misc:code:[psi]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/LB_F-PER-IN2" + } + ], + "short": "pound_force_per_square_inch", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu205", + "name": "pound-force", + "symbol": "lbf" + }, + "prefix": null + }, + { + "power": -2, + "unit": { + "id": "NISTu8", + "name": "inch", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu208", + "unitsml_id": "u:inch_to_the_fourth_power", + "name": "inch to the fourth power", + "names": [ + { + "value": "inch to the fourth power", + "lang": "en" + } + ], + "symbols": { + "unicode": "in⁴", + "ascii": "in^4", + "html": "in4", + "latex": "\\ensuremath{\\mathrm{in^4}}", + "id": "in^4", + "mathml": "in4" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu208" + }, + { + "type": "unitsml", + "id": "u:inch_to_the_fourth_power" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/IN4" + } + ], + "short": "inch_to_the_fourth_power", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq155", + "name": "area moment of inertia", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd57", + "name": "area moment of inertia", + "expression": "L4", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 4 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 4, + "unit": { + "id": "NISTu8", + "name": "inch", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu209", + "unitsml_id": "u:inch_cubed", + "name": "inch cubed", + "names": [ + { + "value": "inch cubed", + "lang": "en" + } + ], + "symbols": { + "unicode": "inΒ³", + "ascii": "in^3", + "html": "in3", + "latex": "\\ensuremath{\\mathrm{in^3}}", + "id": "in^3_section_modulus", + "mathml": "in3" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu209" + }, + { + "type": "unitsml", + "id": "u:inch_cubed" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/IN3" + } + ], + "short": "inch_cubed", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq146", + "name": "section modulus", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 3, + "unit": { + "id": "NISTu8", + "name": "inch", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu21", + "unitsml_id": "u:tesla", + "name": "tesla", + "names": [ + { + "value": "tesla", + "lang": "en" + }, + { + "value": "tesla", + "lang": "fr" + } + ], + "symbols": { + "unicode": "T", + "ascii": "T", + "html": "T", + "latex": "\\ensuremath{\\mathrm{T}}", + "id": "T", + "mathml": "T" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu21" + }, + { + "type": "unitsml", + "id": "u:tesla" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/tesla" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:T" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/T" + } + ], + "short": "tesla", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq14", + "name": "magnetic flux density", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd13", + "name": "magnetic flux density", + "expression": "MΒ·T-2Β·I-1", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu210", + "unitsml_id": "u:foot_squared_per_second", + "name": "foot squared per second", + "names": [ + { + "value": "foot squared per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "ftΒ²/s", + "ascii": "ft^2*s^-1", + "html": "ft2/s", + "latex": "\\ensuremath{\\mathrm{ft^2/s}}", + "id": "ft^2*s^-1", + "mathml": "ft2/s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu210" + }, + { + "type": "unitsml", + "id": "u:foot_squared_per_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FT2-PER-SEC" + } + ], + "short": "foot_squared_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq85", + "name": "kinematic viscosity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd56", + "name": "kinematic viscosity", + "expression": "L2Β·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 2, + "unit": { + "id": "NISTu78", + "name": "foot", + "symbol": "β€²" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu211", + "unitsml_id": "u:foot_pound_force_per_second", + "name": "foot pound-force per second", + "names": [ + { + "value": "foot pound-force per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "ftΒ·lbf/2", + "ascii": "ft*lbf*s^-1", + "html": "ft · lbf/s", + "latex": "\\ensuremath{\\mathrm{ft\\cdot lbf/s}}", + "id": "ft*lbf*s^-1", + "mathml": "ft·lbf/s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu211" + }, + { + "type": "unitsml", + "id": "u:foot_pound_force_per_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FT-LB_F-PER-SEC" + } + ], + "short": "foot_pound_force_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq20", + "name": "power", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu78", + "name": "foot", + "symbol": "β€²" + }, + "prefix": null + }, + { + "power": 1, + "unit": { + "id": "NISTu205", + "name": "pound-force", + "symbol": "lbf" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu212", + "unitsml_id": "u:carat", + "name": "carat", + "names": [ + { + "value": "carat", + "lang": "en" + }, + { + "value": "metric carat", + "lang": "en" + }, + { + "value": "carat, metric", + "lang": "en" + } + ], + "symbols": { + "unicode": "ct", + "ascii": "ct", + "html": "ct", + "latex": "\\ensuremath{\\mathrm{ct}}", + "id": "ct", + "mathml": "ct" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu212" + }, + { + "type": "unitsml", + "id": "u:carat" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:misc:code:[car_m]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/CARAT" + } + ], + "short": "carat", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu213", + "unitsml_id": "u:tex", + "name": "tex", + "names": [ + { + "value": "tex", + "lang": "en" + } + ], + "symbols": { + "unicode": "tex", + "ascii": "tex", + "html": "tex", + "latex": "\\ensuremath{\\mathrm{tex}}", + "id": "tex", + "mathml": "tex" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu213" + }, + { + "type": "unitsml", + "id": "u:tex" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:heat:code:tex" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/TEX" + } + ], + "short": "tex", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq126", + "name": "linear density", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd58", + "name": "linear density", + "expression": "L-1Β·M", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu214", + "unitsml_id": "u:torr", + "name": "torr", + "names": [ + { + "value": "torr", + "lang": "en" + } + ], + "symbols": { + "unicode": "torr", + "ascii": "Torr", + "html": "Torr", + "latex": "\\ensuremath{\\mathrm{torr}}", + "id": "Torr", + "mathml": "Torr" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu214" + }, + { + "type": "unitsml", + "id": "u:torr" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/TORR" + } + ], + "short": "torr", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu215", + "unitsml_id": "u:mm_water", + "name": "conventional millimeter of water", + "names": [ + { + "value": "conventional millimeter of water", + "lang": "en" + }, + { + "value": "millimeter of water, conventional", + "lang": "en" + }, + { + "value": "millimeter of water", + "lang": "en" + } + ], + "symbols": { + "unicode": "mmHβ‚‚O", + "ascii": "mmH_2O", + "html": "mmH2O", + "latex": "\\ensuremath{\\mathrm{mmH_{2}O}}", + "id": "mmH_2O", + "mathml": "mmH2O" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu215" + }, + { + "type": "unitsml", + "id": "u:mm_water" + } + ], + "references": [], + "short": "mm_water", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu216", + "unitsml_id": "u:thermo_btu", + "name": "British thermal unit_th", + "names": [ + { + "value": "British thermal unit_th", + "lang": "en" + }, + { + "value": "thermochemical Btu", + "lang": "en" + } + ], + "symbols": { + "unicode": "Btu_th", + "ascii": "Btu_th", + "html": "Btuth", + "latex": "\\ensuremath{\\mathrm{Btu_{th}}}", + "id": "Btu_th", + "mathml": "Btuth" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu216" + }, + { + "type": "unitsml", + "id": "u:thermo_btu" + } + ], + "references": [], + "short": "thermo_btu", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq19", + "name": "amount of heat", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu217", + "unitsml_id": "u:kilogram_force_meter_per_second", + "name": "kilogram-force meter per second", + "names": [ + { + "value": "kilogram-force meter per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "kgfΒ·m/s", + "ascii": "kgf*m*s^-1", + "html": "kgf · m/s", + "latex": "\\ensuremath{\\mathrm{kgf\\cdot m/s}}", + "id": "kgf*m*s^-1", + "mathml": "kgf·m/s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu217" + }, + { + "type": "unitsml", + "id": "u:kilogram_force_meter_per_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/KiloGM_F-M-PER-SEC" + } + ], + "short": "kilogram_force_meter_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq20", + "name": "power", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": 1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu218", + "unitsml_id": "u:metric_horsepower", + "name": "horsepower, metric", + "names": [ + { + "value": "horsepower, metric", + "lang": "en" + }, + { + "value": "metric horsepower", + "lang": "en" + } + ], + "symbols": { + "unicode": "hp", + "ascii": "hp", + "html": "hp", + "latex": "\\ensuremath{\\mathrm{hp}}", + "id": "hp_metric", + "mathml": "hp" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu218" + }, + { + "type": "unitsml", + "id": "u:metric_horsepower" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/HP_Metric" + } + ], + "short": "metric_horsepower", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq20", + "name": "power", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu22", + "unitsml_id": "u:henry", + "name": "henry", + "names": [ + { + "value": "henry", + "lang": "en" + }, + { + "value": "henry", + "lang": "fr" + } + ], + "symbols": { + "unicode": "H", + "ascii": "H", + "html": "H", + "latex": "\\ensuremath{\\mathrm{H}}", + "id": "H", + "mathml": "H" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu22" + }, + { + "type": "unitsml", + "id": "u:henry" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/henry" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:H" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/H" + } + ], + "short": "henry", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq32", + "name": "inductance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd23", + "name": "inductance", + "expression": "L2Β·MΒ·T-2Β·I-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu22.u1e-1/1", + "unitsml_id": "u:henry_per_meter", + "name": "henry per meter", + "names": [ + { + "value": "henry per meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "H/m", + "ascii": "H*m^-1", + "html": "H/m", + "latex": "\\ensuremath{\\mathrm{H/m}}", + "id": "H*m^-1", + "mathml": "H/m" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu22.u1e-1/1" + }, + { + "type": "unitsml", + "id": "u:henry_per_meter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/H-PER-M" + } + ], + "short": "henry_per_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq72", + "name": "permeability", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd46", + "name": "permeability", + "expression": "LΒ·MΒ·T-2Β·I-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu22", + "name": "henry", + "symbol": "H" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu221", + "unitsml_id": "u:watt_per_square_meter_kelvin", + "name": "watt per square meter kelvin", + "names": [ + { + "value": "watt per square meter kelvin", + "lang": "en" + } + ], + "symbols": { + "unicode": "W/(mΒ²Β·K)", + "ascii": "W*m^-2*K^-1", + "html": "W/(m 2 · K)", + "latex": "\\ensuremath{\\mathrm{W/(m^2\\cdot K)}}", + "id": "W*m^-2*K^-1", + "mathml": "W/(m2·K)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu221" + }, + { + "type": "unitsml", + "id": "u:watt_per_square_meter_kelvin" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/W-PER-M2-K" + } + ], + "short": "watt_per_square_meter_kelvin", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq180", + "name": "coefficient of heat transfer", + "type": "derived" + }, + { + "id": "NISTq181", + "name": "surface coefficient of heat transfer", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd71", + "name": "heat transfer coefficient", + "expression": "MΒ·T-3Β·Theta-1", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": -1, + "unit": { + "id": "NISTu5", + "name": "kelvin", + "symbol": "Β°K" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu222", + "unitsml_id": "u:lambert", + "name": "lambert", + "names": [ + { + "value": "lambert", + "lang": "en" + } + ], + "symbols": { + "unicode": "L", + "ascii": "L", + "html": "L", + "latex": "\\ensuremath{\\mathrm{L}}", + "id": "Lambert", + "mathml": "L" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu222" + }, + { + "type": "unitsml", + "id": "u:lambert" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:cgs:code:Lmb" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/LA" + } + ], + "short": "lambert", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq56", + "name": "luminance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd27", + "name": "illuminance", + "expression": "L-2Β·J", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "luminous_intensity", + "symbol": "J", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu223", + "unitsml_id": "u:gilbert", + "name": "gilbert", + "names": [ + { + "value": "gilbert", + "lang": "en" + } + ], + "symbols": { + "unicode": "Gi", + "ascii": "Gi", + "html": "Gi", + "latex": "\\ensuremath{\\mathrm{Gi}}", + "id": "Gi", + "mathml": "Gi" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu223" + }, + { + "type": "unitsml", + "id": "u:gilbert" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:cgs:code:Gb" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/GI" + } + ], + "short": "gilbert", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq161", + "name": "magnetomotive force (Cardelli) (-SP811)", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd4", + "name": "electric current", + "expression": "I", + "components": [ + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu224", + "unitsml_id": "u:debye", + "name": "debye", + "names": [ + { + "value": "debye", + "lang": "en" + } + ], + "symbols": { + "unicode": "D", + "ascii": "D", + "html": "D", + "latex": "\\ensuremath{\\mathrm{D}}", + "id": "D", + "mathml": "D" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu224" + }, + { + "type": "unitsml", + "id": "u:debye" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/DEBYE" + } + ], + "short": "debye", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq162", + "name": "electric dipole moment", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd72", + "name": "electric dipole moment", + "expression": "LΒ·TΒ·I", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu225", + "unitsml_id": "u:abwatt", + "name": "abwatt", + "names": [ + { + "value": "abwatt", + "lang": "en" + } + ], + "symbols": { + "unicode": "aW", + "ascii": "aW (Cardelli)", + "html": "aW", + "latex": "\\ensuremath{\\mathrm{aW}}", + "id": "aW (Cardelli)", + "mathml": "aW" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu225" + }, + { + "type": "unitsml", + "id": "u:abwatt" + } + ], + "references": [], + "short": "abwatt", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq20", + "name": "power", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu226", + "unitsml_id": "u:slug", + "name": "slug", + "names": [ + { + "value": "slug", + "lang": "en" + } + ], + "symbols": { + "unicode": "slug", + "ascii": "slug", + "html": "slug", + "latex": "\\ensuremath{\\mathrm{D}}", + "id": "slug", + "mathml": "slug" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu226" + }, + { + "type": "unitsml", + "id": "u:slug" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/SLUG" + } + ], + "short": "slug", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu227", + "unitsml_id": "u:thermo_calorie", + "name": "thermochemical calorie", + "names": [ + { + "value": "thermochemical calorie", + "lang": "en" + }, + { + "value": "calorie_th", + "lang": "en" + }, + { + "value": "calorie", + "lang": "en" + } + ], + "symbols": { + "unicode": "cal", + "ascii": "cal", + "html": "cal", + "latex": "\\ensuremath{\\mathrm{cal}}", + "id": "cal", + "mathml": "cal" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu227" + }, + { + "type": "unitsml", + "id": "u:thermo_calorie" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:heat:code:cal_th" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/CAL_TH" + } + ], + "short": "thermo_calorie", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq17", + "name": "energy", + "type": "derived" + }, + { + "id": "NISTq18", + "name": "work", + "type": "derived" + }, + { + "id": "NISTq182", + "name": "kinetic energy", + "type": "derived" + }, + { + "id": "NISTq183", + "name": "mechanical energy", + "type": "derived" + }, + { + "id": "NISTq19", + "name": "amount of heat", + "type": "derived" + }, + { + "id": "NISTq77", + "name": "potential energy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu228", + "unitsml_id": "u:short_ton", + "name": "short ton", + "names": [ + { + "value": "short ton", + "lang": "en" + }, + { + "value": "ton", + "lang": "en" + } + ], + "symbols": { + "unicode": "t", + "ascii": "ton", + "html": "t", + "latex": "\\ensuremath{\\mathrm{t}}", + "id": "ton_short", + "mathml": "t" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu228" + }, + { + "type": "unitsml", + "id": "u:short_ton" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:avoirdupois:code:[ston_av]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/TON_SHORT" + } + ], + "short": "short_ton", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu229", + "unitsml_id": "u:long_ton", + "name": "long ton", + "names": [ + { + "value": "long ton", + "lang": "en" + }, + { + "value": "ton", + "lang": "en" + } + ], + "symbols": { + "unicode": "t", + "ascii": "ton", + "html": "t", + "latex": "\\ensuremath{\\mathrm{t}}", + "id": "ton_long", + "mathml": "t" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu229" + }, + { + "type": "unitsml", + "id": "u:long_ton" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:avoirdupois:code:[lton_av]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/TON_LONG" + } + ], + "short": "long_ton", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu23", + "unitsml_id": "u:degree_Celsius", + "name": "degree Celsius", + "names": [ + { + "value": "degree Celsius", + "lang": "en" + }, + { + "value": "degrΓ© Celsius", + "lang": "fr" + } + ], + "symbols": { + "unicode": "Β°C", + "ascii": "degC", + "html": "°C", + "latex": "\\ensuremath{\\mathrm{^{\\circ}C}}", + "id": "degC", + "mathml": "°C" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu23" + }, + { + "type": "unitsml", + "id": "u:degree_Celsius" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/degreeCelsius" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:Cel" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/DEG_C" + } + ], + "short": "degree_Celsius", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq192", + "name": "ITS-90 temperature (Β°C)", + "type": "derived" + }, + { + "id": "NISTq34", + "name": "Celsius temperature", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd5", + "name": "temperature", + "expression": "Theta", + "components": [ + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_interval", + "name": "continuous interval scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu230", + "unitsml_id": "u:hundredweight", + "name": "hundredweight (short, 100 lb)", + "names": [ + { + "value": "hundredweight (short, 100 lb)", + "lang": "en" + }, + { + "value": "hundredweight", + "lang": "en" + } + ], + "symbols": { + "unicode": "cwt (US)", + "ascii": "cwt (US)", + "html": "cwt (US)", + "latex": "\\ensuremath{\\mathrm{cwt (US)}}", + "id": "cwt (US)", + "mathml": "cwt (US)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu230" + }, + { + "type": "unitsml", + "id": "u:hundredweight" + } + ], + "references": [], + "short": "hundredweight", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu203", + "name": "hundredweight (long, 112 lb)", + "symbol": "cwt (UK)" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu231", + "unitsml_id": "u:troy_ounce", + "name": "ounce (troy or apothecary)", + "names": [ + { + "value": "ounce (troy or apothecary)", + "lang": "en" + }, + { + "value": "troy ounce", + "lang": "en" + }, + { + "value": "ounce", + "lang": "en" + } + ], + "symbols": { + "unicode": "oz", + "ascii": "oz", + "html": "oz", + "latex": "\\ensuremath{\\mathrm{oz}}", + "id": "oz_troy", + "mathml": "oz" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu231" + }, + { + "type": "unitsml", + "id": "u:troy_ounce" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:avoirdupois:code:[oz_av]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/OZ" + } + ], + "short": "troy_ounce", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu232", + "unitsml_id": "u:troy_pound", + "name": "pound (troy or apothecary)", + "names": [ + { + "value": "pound (troy or apothecary)", + "lang": "en" + }, + { + "value": "troy pound", + "lang": "en" + }, + { + "value": "pound", + "lang": "en" + } + ], + "symbols": { + "unicode": "lb", + "ascii": "lb", + "html": "lb", + "latex": "\\ensuremath{\\mathrm{lb}}", + "id": "lb_troy", + "mathml": "lb" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu232" + }, + { + "type": "unitsml", + "id": "u:troy_pound" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:avoirdupois:code:[lb_av]" + } + ], + "short": "troy_pound", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu233", + "unitsml_id": "u:pennyweight", + "name": "pennyweight", + "names": [ + { + "value": "pennyweight", + "lang": "en" + } + ], + "symbols": { + "unicode": "dwt (troy)", + "ascii": "dwt (troy)", + "html": "dwt (troy)", + "latex": "\\ensuremath{\\mathrm{dwt (troy)}}", + "id": "dwt (troy)", + "mathml": "dwt (troy)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu233" + }, + { + "type": "unitsml", + "id": "u:pennyweight" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:troy:code:[pwt_tr]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/PENNYWEIGHT" + } + ], + "short": "pennyweight", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu234", + "unitsml_id": "u:apothecaries_dram", + "name": "dram (apothecary)", + "names": [ + { + "value": "dram (apothecary)", + "lang": "en" + }, + { + "value": "apothecary dram", + "lang": "en" + }, + { + "value": "dram", + "lang": "en" + } + ], + "symbols": { + "unicode": "dr", + "ascii": "dr", + "html": "dr", + "latex": "\\ensuremath{\\mathrm{dr}}", + "id": "dr", + "mathml": "dr" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu234" + }, + { + "type": "unitsml", + "id": "u:apothecaries_dram" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:avoirdupois:code:[dr_av]" + } + ], + "short": "apothecaries_dram", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu235", + "unitsml_id": "u:scruple", + "name": "scruple", + "names": [ + { + "value": "scruple", + "lang": "en" + }, + { + "value": "apothecary scruple", + "lang": "en" + } + ], + "symbols": { + "unicode": "scr (ap.)", + "ascii": "scr (ap.)", + "html": "scr (ap.)", + "latex": "\\ensuremath{\\mathrm{scr (ap.)}}", + "id": "scr (ap.)", + "mathml": "scr (ap.)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu235" + }, + { + "type": "unitsml", + "id": "u:scruple" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:apoth:code:[sc_ap]" + } + ], + "short": "scruple", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu236", + "unitsml_id": "u:poundal", + "name": "poundal", + "names": [ + { + "value": "poundal", + "lang": "en" + } + ], + "symbols": { + "unicode": "pdl", + "ascii": "pdl", + "html": "pdl", + "latex": "\\ensuremath{\\mathrm{pdl}}", + "id": "pdl", + "mathml": "pdl" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu236" + }, + { + "type": "unitsml", + "id": "u:poundal" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/PDL" + } + ], + "short": "poundal", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq128", + "name": "weight", + "type": "derived" + }, + { + "id": "NISTq13", + "name": "force", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd12", + "name": "force", + "expression": "LΒ·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu237", + "unitsml_id": "u:kip", + "name": "kip", + "names": [ + { + "value": "kip", + "lang": "en" + } + ], + "symbols": { + "unicode": "kip", + "ascii": "kip", + "html": "kip", + "latex": "\\ensuremath{\\mathrm{kip}}", + "id": "kip", + "mathml": "kip" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu237" + }, + { + "type": "unitsml", + "id": "u:kip" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/KIP_F" + } + ], + "short": "kip", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu238", + "unitsml_id": "u:ton_force", + "name": "ton-force (2000 lb)", + "names": [ + { + "value": "ton-force (2000 lb)", + "lang": "en" + } + ], + "symbols": { + "unicode": "ton-force (2000 lb)", + "ascii": "ton-force (2000 lb)", + "html": "ton-force (2000 lb)", + "latex": "\\ensuremath{\\mathrm{ton-force (2000 lb)}}", + "id": "ton-force (2000 lb)", + "mathml": "ton-force (2000 lb)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu238" + }, + { + "type": "unitsml", + "id": "u:ton_force" + } + ], + "references": [], + "short": "ton_force", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq128", + "name": "weight", + "type": "derived" + }, + { + "id": "NISTq13", + "name": "force", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd12", + "name": "force", + "expression": "LΒ·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu239", + "unitsml_id": "u:barye", + "name": "barye", + "names": [ + { + "value": "barye", + "lang": "en" + } + ], + "symbols": { + "unicode": "barye", + "ascii": "barye", + "html": "barye", + "latex": "\\ensuremath{\\mathrm{barye}}", + "id": "barye", + "mathml": "barye" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu239" + }, + { + "type": "unitsml", + "id": "u:barye" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/BARYE" + } + ], + "short": "barye", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu240", + "unitsml_id": "u:electronvolt", + "name": "electronvolt", + "names": [ + { + "value": "electronvolt", + "lang": "en" + }, + { + "value": "Γ©lectronvolt", + "lang": "fr" + } + ], + "symbols": { + "unicode": "eV", + "ascii": "eV", + "html": "eV", + "latex": "\\ensuremath{\\mathrm{eV}}", + "id": "eV", + "mathml": "eV" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu240" + }, + { + "type": "unitsml", + "id": "u:electronvolt" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/electronvolt" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:eV" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/EV" + } + ], + "short": "electronvolt", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq17", + "name": "energy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu241", + "unitsml_id": "u:unified_atomic_mass_unit", + "name": "unified atomic mass unit", + "names": [ + { + "value": "unified atomic mass unit", + "lang": "en" + } + ], + "symbols": { + "unicode": "u", + "ascii": "u", + "html": "u", + "latex": "\\ensuremath{\\mathrm{u}}", + "id": "u", + "mathml": "u" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu241" + }, + { + "type": "unitsml", + "id": "u:unified_atomic_mass_unit" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:u" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/U" + } + ], + "short": "unified_atomic_mass_unit", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu242", + "unitsml_id": "u:natural_unit_of_velocity", + "name": "natural unit of velocity", + "names": [ + { + "value": "natural unit of velocity", + "lang": "en" + } + ], + "symbols": { + "unicode": "𝑐", + "ascii": "c", + "html": "c", + "latex": "\\ensuremath{\\mathit{c}}", + "id": "c", + "mathml": "c" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu242" + }, + { + "type": "unitsml", + "id": "u:natural_unit_of_velocity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/C" + } + ], + "short": "natural_unit_of_velocity", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq12", + "name": "velocity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd11", + "name": "velocity", + "expression": "LΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu243", + "unitsml_id": "u:natural_unit_of_action", + "name": "natural unit of action", + "names": [ + { + "value": "natural unit of action", + "lang": "en" + } + ], + "symbols": { + "unicode": "ℏ", + "ascii": "h-bar", + "html": "ħ", + "latex": "\\ensuremath{\\mathit{\\hbar}}", + "id": "h-bar", + "mathml": "ħ" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu243" + }, + { + "type": "unitsml", + "id": "u:natural_unit_of_action" + } + ], + "references": [], + "short": "natural_unit_of_action", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq154", + "name": "action", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd60", + "name": "action", + "expression": "L2Β·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu244", + "unitsml_id": "u:natural_unit_of_mass", + "name": "natural unit of mass", + "names": [ + { + "value": "natural unit of mass", + "lang": "en" + } + ], + "symbols": { + "unicode": "π‘šβ‚‘", + "ascii": "m_e", + "html": "me", + "latex": "\\ensuremath{\\mathit{m}_\\mathrm{e}}", + "id": "m_e", + "mathml": "me" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu244" + }, + { + "type": "unitsml", + "id": "u:natural_unit_of_mass" + } + ], + "references": [], + "short": "natural_unit_of_mass", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu245", + "unitsml_id": "u:natural_unit_of_time", + "name": "natural unit of time", + "names": [ + { + "value": "natural unit of time", + "lang": "en" + } + ], + "symbols": { + "unicode": "ℏ/π‘šβ‚‘π‘Β²", + "ascii": "h-bar*(m_e*c^2)", + "html": "ħ/mec2", + "latex": "\\ensuremath{\\mathit{\\hbar}/(\\mathit{m}_\\mathrm{e}\\mathit{c}^\\mathrm{2}})", + "id": "h-bar*(m_e*c^2)", + "mathml": "ħ/mec2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu245" + }, + { + "type": "unitsml", + "id": "u:natural_unit_of_time" + } + ], + "references": [], + "short": "natural_unit_of_time", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq3", + "name": "time", + "type": "base" + } + ], + "dimension": { + "id": "NISTd3", + "name": "time", + "expression": "T", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu246", + "unitsml_id": "u:atomic_unit_of_charge", + "name": "atomic unit of charge", + "names": [ + { + "value": "atomic unit of charge", + "lang": "en" + } + ], + "symbols": { + "unicode": "𝑒", + "ascii": "e", + "html": "e", + "latex": "\\ensuremath{\\mathit{e}}", + "id": "e", + "mathml": "e" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu246" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_charge" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/E" + } + ], + "short": "atomic_unit_of_charge", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq22", + "name": "electric charge", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd17", + "name": "electric charge", + "expression": "TΒ·I", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu247", + "unitsml_id": "u:atomic_unit_of_mass", + "name": "atomic unit of mass", + "names": [ + { + "value": "atomic unit of mass", + "lang": "en" + } + ], + "symbols": { + "unicode": "π‘šβ‚‘", + "ascii": "m_e", + "html": "me", + "latex": "\\ensuremath{\\mathit{m}_\\mathrm{e}}", + "id": "m_e_atomic", + "mathml": "me" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu247" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_mass" + } + ], + "references": [], + "short": "atomic_unit_of_mass", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu248", + "unitsml_id": "u:atomic_unit_of_action", + "name": "atomic unit of action", + "names": [ + { + "value": "atomic unit of action", + "lang": "en" + } + ], + "symbols": { + "unicode": "ℏ", + "ascii": "h-bar", + "html": "ħ", + "latex": "\\ensuremath{\\mathit{\\hbar}}", + "id": "h-bar_atomic", + "mathml": "ħ" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu248" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_action" + } + ], + "references": [], + "short": "atomic_unit_of_action", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq154", + "name": "action", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd60", + "name": "action", + "expression": "L2Β·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu249", + "unitsml_id": "u:atomic_unit_of_length", + "name": "atomic unit of length", + "names": [ + { + "value": "atomic unit of length", + "lang": "en" + } + ], + "symbols": { + "unicode": "π‘Žβ‚€", + "ascii": "a_0", + "html": "a0", + "latex": "\\ensuremath{\\mathit{a}_\\mathrm{0}}", + "id": "a_0", + "mathml": "a0" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu249" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_length" + } + ], + "references": [], + "short": "atomic_unit_of_length", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu25", + "unitsml_id": "u:becquerel", + "name": "becquerel", + "names": [ + { + "value": "becquerel", + "lang": "en" + }, + { + "value": "becquerel", + "lang": "fr" + } + ], + "symbols": { + "unicode": "Bq", + "ascii": "Bq", + "html": "Bq", + "latex": "\\ensuremath{\\mathrm{Bq}}", + "id": "Bq", + "mathml": "Bq" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu25" + }, + { + "type": "unitsml", + "id": "u:becquerel" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/becquerel" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:Bq" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/BQ" + } + ], + "short": "becquerel", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq35", + "name": "activity referred to a radionuclide", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd24", + "name": "frequency", + "expression": "T-1", + "components": [ + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu250", + "unitsml_id": "u:atomic_unit_of_energy", + "name": "atomic unit of energy", + "names": [ + { + "value": "atomic unit of energy", + "lang": "en" + } + ], + "symbols": { + "unicode": "𝐸ₕ", + "ascii": "E_h", + "html": "Eh", + "latex": "\\ensuremath{\\mathit{E}_\\mathrm{h}}", + "id": "E_h", + "mathml": "Eh" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu250" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_energy" + } + ], + "references": [], + "short": "atomic_unit_of_energy", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq17", + "name": "energy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu251", + "unitsml_id": "u:atomic_unit_of_time", + "name": "atomic unit of time", + "names": [ + { + "value": "atomic unit of time", + "lang": "en" + } + ], + "symbols": { + "unicode": "ℏ/𝐸ₕ", + "ascii": "h-bar/E_h", + "html": "ħ/Eh", + "latex": "\\ensuremath{\\mathit{\\hbar}/\\mathit{E}_\\mathrm{h}}", + "id": "h-bar/E_h", + "mathml": "ħ/Eh" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu251" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_time" + } + ], + "references": [], + "short": "atomic_unit_of_time", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq3", + "name": "time", + "type": "base" + } + ], + "dimension": { + "id": "NISTd3", + "name": "time", + "expression": "T", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu252", + "unitsml_id": "u:atomic_unit_of_magnetizability", + "name": "atomic unit of magnetizability", + "names": [ + { + "value": "atomic unit of magnetizability", + "lang": "en" + } + ], + "symbols": { + "unicode": "π‘’Β²π‘Žβ‚€Β²/π‘šβ‚‘", + "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}}", + "id": "e^2*a_0^2*m_e-1", + "mathml": "e2a02/me" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu252" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_magnetizability" + } + ], + "references": [], + "short": "atomic_unit_of_magnetizability", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq163", + "name": "magnetizability", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd54", + "name": "magnetizability", + "expression": "L2Β·MΒ·T2Β·I2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": 2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu253", + "unitsml_id": "u:atomic_unit_of_magnetic_flux_density", + "name": "atomic unit of magnetic flux density", + "names": [ + { + "value": "atomic unit of magnetic flux density", + "lang": "en" + } + ], + "symbols": { + "unicode": "ℏ/π‘’π‘Žβ‚€Β²", + "ascii": "h-bar*(e*a_0^2)-1", + "html": "ħ/ea02", + "latex": "\\ensuremath{\\mathit{\\hbar}/\\mathit{e}a_0^2}", + "id": "h-bar*(e*a_0^2)-1", + "mathml": "ħ/ea02" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu253" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_magnetic_flux_density" + } + ], + "references": [], + "short": "atomic_unit_of_magnetic_flux_density", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq14", + "name": "magnetic flux density", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd13", + "name": "magnetic flux density", + "expression": "MΒ·T-2Β·I-1", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu254", + "unitsml_id": "u:atomic_unit_of_magnetic_dipole_moment", + "name": "atomic unit of magnetic dipole moment", + "names": [ + { + "value": "atomic unit of magnetic dipole moment", + "lang": "en" + } + ], + "symbols": { + "unicode": "ℏ𝑒/π‘šβ‚‘", + "ascii": "h-bar*e*(m_e)-1", + "html": "ħe/me", + "latex": "\\ensuremath{\\mathit{\\hbar e}/\\mathit{m}_\\mathrm{e}}", + "id": "h-bar*e*(m_e)-1", + "mathml": "ħe/me" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu254" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_magnetic_dipole_moment" + } + ], + "references": [], + "short": "atomic_unit_of_magnetic_dipole_moment", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq164", + "name": "magnetic dipole moment", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd73", + "name": "magnetic dipole moment", + "expression": "L2Β·I", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu255", + "unitsml_id": "u:atomic_unit_of_momentum", + "name": "atomic unit of momentum", + "names": [ + { + "value": "atomic unit of momentum", + "lang": "en" + } + ], + "symbols": { + "unicode": "ℏ/π‘Žβ‚€", + "ascii": "h-bar*(a_0)-1", + "html": "ħ/a0", + "latex": "\\ensuremath{\\mathit{\\hbar}/\\mathit{a}_0}", + "id": "h-bar*(a_0)-1", + "mathml": "ħ/a0" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu255" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_momentum" + } + ], + "references": [], + "short": "atomic_unit_of_momentum", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq131", + "name": "momentum", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd61", + "name": "momentum", + "expression": "LΒ·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu256", + "unitsml_id": "u:atomic_unit_of_charge_density", + "name": "atomic unit of charge density", + "names": [ + { + "value": "atomic unit of charge density", + "lang": "en" + } + ], + "symbols": { + "unicode": "π‘’π‘Žβ‚€Β³", + "ascii": "e*(a_0^3)", + "html": "ea03", + "latex": "\\ensuremath{\\mathit{e}\\mathit{a}_0^{3}}", + "id": "e*(a_0^3)", + "mathml": "ea03" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu256" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_charge_density" + } + ], + "references": [], + "short": "atomic_unit_of_charge_density", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq69", + "name": "electric charge density", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd43", + "name": "electric charge density", + "expression": "L-3Β·TΒ·I", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu257", + "unitsml_id": "u:atomic_unit_of_current", + "name": "atomic unit of current", + "names": [ + { + "value": "atomic unit of current", + "lang": "en" + } + ], + "symbols": { + "unicode": "𝑒𝐸ₕ/ℏ", + "ascii": "eE_h*h-bar^-1", + "html": "eEh/ħ", + "latex": "\\ensuremath{\\mathit{e}E_{h}/\\mathit{\\hbar}}", + "id": "eE_h*h-bar^-1", + "mathml": "eEh/ħ" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu257" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_current" + } + ], + "references": [], + "short": "atomic_unit_of_current", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq4", + "name": "electric current", + "type": "base" + } + ], + "dimension": { + "id": "NISTd4", + "name": "electric current", + "expression": "I", + "components": [ + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu258", + "unitsml_id": "u:atomic_unit_of_electric_dipole_moment", + "name": "atomic unit of electric dipole moment", + "names": [ + { + "value": "atomic unit of electric dipole moment", + "lang": "en" + } + ], + "symbols": { + "unicode": "π‘’π‘Žβ‚€", + "ascii": "e*a_0", + "html": "ea0", + "latex": "\\ensuremath{\\mathit{e}\\mathit{a}_0}", + "id": "e*a_0", + "mathml": "ea0" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu258" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_electric_dipole_moment" + } + ], + "references": [], + "short": "atomic_unit_of_electric_dipole_moment", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq162", + "name": "electric dipole moment", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd72", + "name": "electric dipole moment", + "expression": "LΒ·TΒ·I", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu259", + "unitsml_id": "u:atomic_unit_of_electric_field", + "name": "atomic unit of electric field", + "names": [ + { + "value": "atomic unit of electric field", + "lang": "en" + } + ], + "symbols": { + "unicode": "𝐸ₕ/π‘’π‘Žβ‚€", + "ascii": "E_h*(e*a_0)", + "html": "Eh/ea0", + "latex": "\\ensuremath{\\mathit{E}_{h}/\\mathit{\\e}\\mathit{a}_0}", + "id": "E_h*(e*a_0)", + "mathml": "Eh/ea0" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu259" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_electric_field" + } + ], + "references": [], + "short": "atomic_unit_of_electric_field", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq68", + "name": "electric field strength", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd42", + "name": "electric field strength", + "expression": "LΒ·MΒ·T-3Β·I-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu26", + "unitsml_id": "u:fermi", + "name": "fermi", + "names": [ + { + "value": "fermi", + "lang": "en" + } + ], + "symbols": { + "unicode": "fermi", + "ascii": "fermi", + "html": "fermi", + "latex": "\\ensuremath{\\mathrm{fermi}}", + "id": "fermi", + "mathml": "fermi" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu26" + }, + { + "type": "unitsml", + "id": "u:fermi" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FM" + } + ], + "short": "fermi", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + }, + { + "id": "NISTq48", + "name": "distance", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": { + "id": "NISTp10_-15", + "name": "femto", + "symbol": "f" + } + } + ] + }, + { + "id": "NISTu260", + "unitsml_id": "u:atomic_unit_of_electric_field_gradient", + "name": "atomic unit of electric field gradient", + "names": [ + { + "value": "atomic unit of electric field gradient", + "lang": "en" + } + ], + "symbols": { + "unicode": "𝐸ₕ/π‘’π‘Žβ‚€Β²", + "ascii": "E_h*(e*a_0^2)", + "html": "Eh/ea02", + "latex": "\\ensuremath{\\mathit{E}_{h}/\\mathit{\\e}\\mathit{a}_0^2}", + "id": "E_h*(e*a_0^2)", + "mathml": "Eh/ea02" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu260" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_electric_field_gradient" + } + ], + "references": [], + "short": "atomic_unit_of_electric_field_gradient", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq165", + "name": "electric field gradient", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd74", + "name": "electric field gradient", + "expression": "MΒ·T-3Β·I-1", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu261", + "unitsml_id": "u:atomic_unit_of_electric_potential", + "name": "atomic unit of electric potential", + "names": [ + { + "value": "atomic unit of electric potential", + "lang": "en" + } + ], + "symbols": { + "unicode": "𝐸ₕ/𝑒", + "ascii": "E_h*e-1", + "html": "Eh/e", + "latex": "\\ensuremath{\\mathit{E}_{h}/\\mathit{\\e}}", + "id": "E_h*e-1", + "mathml": "Eh/e" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu261" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_electric_potential" + } + ], + "references": [], + "short": "atomic_unit_of_electric_potential", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq166", + "name": "electric potential", + "type": "derived" + }, + { + "id": "NISTq24", + "name": "electric potential difference", + "type": "derived" + }, + { + "id": "NISTq26", + "name": "electromotive force", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd18", + "name": "electric potential difference", + "expression": "L2Β·MΒ·T-3Β·I-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu262", + "unitsml_id": "u:atomic_unit_of_force", + "name": "atomic unit of force", + "names": [ + { + "value": "atomic unit of force", + "lang": "en" + } + ], + "symbols": { + "unicode": "𝐸ₕ/π‘Žβ‚€", + "ascii": "E_h*(a_0)-1", + "html": "Eh/a0", + "latex": "\\ensuremath{\\mathit{E}_{h}/\\mathit{a}_0}", + "id": "E_h*(a_0)-1", + "mathml": "Eh/a0" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu262" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_force" + } + ], + "references": [], + "short": "atomic_unit_of_force", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq128", + "name": "weight", + "type": "derived" + }, + { + "id": "NISTq13", + "name": "force", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd12", + "name": "force", + "expression": "LΒ·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu263", + "unitsml_id": "u:atomic_unit_of_electric_quadrupole_moment", + "name": "atomic unit of electric quadrupole moment", + "names": [ + { + "value": "atomic unit of electric quadrupole moment", + "lang": "en" + } + ], + "symbols": { + "unicode": "π‘’π‘Žβ‚€Β²", + "ascii": "e*a_0^2", + "html": "ea02", + "latex": "\\ensuremath{\\mathit{e}\\mathit{a}_0^2}", + "id": "e*a_0^2", + "mathml": "ea0>2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu263" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_electric_quadrupole_moment" + } + ], + "references": [], + "short": "atomic_unit_of_electric_quadrupole_moment", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq167", + "name": "electric quadrupole moment", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd75", + "name": "electric quadrupole moment", + "expression": "L2Β·TΒ·I", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu264", + "unitsml_id": "u:atomic_unit_of_electric_polarizability", + "name": "atomic unit of electric polarizability", + "names": [ + { + "value": "atomic unit of electric polarizability", + "lang": "en" + } + ], + "symbols": { + "unicode": "π‘’Β²π‘Žβ‚€Β²/𝐸ₕ", + "ascii": "e^2*a_0^2*(E_h)^-1", + "html": "e2a02/Eh", + "latex": "\\ensuremath{\\mathit{e}\\mathit{a}_0^2/\\mathit{E}_h}", + "id": "e^2*a_0^2*(E_h)^-1", + "mathml": "e2a02/Eh" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu264" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_electric_polarizability" + } + ], + "references": [], + "short": "atomic_unit_of_electric_polarizability", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq168", + "name": "polarizability", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd76", + "name": "polarizability", + "expression": "MΒ·T4Β·I2", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": 4 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu265", + "unitsml_id": "u:statohm", + "name": "statohm", + "names": [ + { + "value": "statohm", + "lang": "en" + }, + { + "value": "ESU of resistance", + "lang": "en" + } + ], + "symbols": { + "unicode": "statohm", + "ascii": "statohm", + "html": "statohm", + "latex": "\\ensuremath{\\mathrm{statohm}}", + "id": "statohm", + "mathml": "statohm" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu265" + }, + { + "type": "unitsml", + "id": "u:statohm" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/OHM_Stat" + } + ], + "short": "statohm", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq28", + "name": "electric resistance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd20", + "name": "electric resistance", + "expression": "L2Β·MΒ·T-3Β·I-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu266", + "unitsml_id": "u:statfarad", + "name": "statfarad", + "names": [ + { + "value": "statfarad", + "lang": "en" + }, + { + "value": "ESU of capacitance", + "lang": "en" + } + ], + "symbols": { + "unicode": "statF", + "ascii": "statF", + "html": "statF", + "latex": "\\ensuremath{\\mathrm{statF}}", + "id": "statF", + "mathml": "statF" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu266" + }, + { + "type": "unitsml", + "id": "u:statfarad" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FARAD_Stat" + } + ], + "short": "statfarad", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq169", + "name": "electric capacitance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd19", + "name": "capacitance", + "expression": "L-2Β·M-1Β·T4Β·I2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 4 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu267", + "unitsml_id": "u:statampere", + "name": "statampere", + "names": [ + { + "value": "statampere", + "lang": "en" + }, + { + "value": "ESU of current", + "lang": "en" + } + ], + "symbols": { + "unicode": "statA", + "ascii": "statA", + "html": "statA", + "latex": "\\ensuremath{\\mathrm{statA}}", + "id": "statA", + "mathml": "statA" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu267" + }, + { + "type": "unitsml", + "id": "u:statampere" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/A_Stat" + } + ], + "short": "statampere", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq170", + "name": "electric current intensity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd4", + "name": "electric current", + "expression": "I", + "components": [ + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu268", + "unitsml_id": "u:statvolt", + "name": "statvolt", + "names": [ + { + "value": "statvolt", + "lang": "en" + }, + { + "value": "ESU of Electric potential", + "lang": "en" + } + ], + "symbols": { + "unicode": "statV", + "ascii": "statV", + "html": "statV", + "latex": "statV", + "id": "statV", + "mathml": "statV" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu268" + }, + { + "type": "unitsml", + "id": "u:statvolt" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/V_Stat" + } + ], + "short": "statvolt", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq166", + "name": "electric potential", + "type": "derived" + }, + { + "id": "NISTq24", + "name": "electric potential difference", + "type": "derived" + }, + { + "id": "NISTq26", + "name": "electromotive force", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd18", + "name": "electric potential difference", + "expression": "L2Β·MΒ·T-3Β·I-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu269", + "unitsml_id": "u:stathenry", + "name": "stathenry", + "names": [ + { + "value": "stathenry", + "lang": "en" + }, + { + "value": "ESU of inductance", + "lang": "en" + } + ], + "symbols": { + "unicode": "statH", + "ascii": "statH", + "html": "statH", + "latex": "\\ensuremath{\\mathrm{statH}}", + "id": "statH", + "mathml": "statH" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu269" + }, + { + "type": "unitsml", + "id": "u:stathenry" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/H_Stat" + } + ], + "short": "stathenry", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq171", + "name": "electric inductance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd23", + "name": "inductance", + "expression": "L2Β·MΒ·T-2Β·I-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu27", + "unitsml_id": "u:gram", + "name": "gram", + "names": [ + { + "value": "gram", + "lang": "en" + }, + { + "value": "gramme", + "lang": "fr" + } + ], + "symbols": { + "unicode": "g", + "ascii": "g", + "html": "g", + "latex": "\\ensuremath{\\mathrm{g}}", + "id": "g", + "mathml": "g" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu27" + }, + { + "type": "unitsml", + "id": "u:gram" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/gram" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:base-unit:code:g" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/GM" + } + ], + "short": "gram", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_base", + "name": "SI base units", + "short": "si-base", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu270", + "unitsml_id": "u:statmho", + "name": "statmho", + "names": [ + { + "value": "statmho", + "lang": "en" + }, + { + "value": "ESU of conductance", + "lang": "en" + } + ], + "symbols": { + "unicode": "statmho", + "ascii": "statmho", + "html": "statmho", + "latex": "\\ensuremath{\\mathrm{statmho}}", + "id": "statmho", + "mathml": "statmho" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu270" + }, + { + "type": "unitsml", + "id": "u:statmho" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MHO_Stat" + } + ], + "short": "statmho", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq29", + "name": "electric conductance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd21", + "name": "electric conductance", + "expression": "L-2Β·M-1Β·T3Β·I2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu271", + "unitsml_id": "u:statcoulomb", + "name": "statcoulomb", + "names": [ + { + "value": "statcoulomb", + "lang": "en" + }, + { + "value": "ESU of charge", + "lang": "en" + } + ], + "symbols": { + "unicode": "statcoulomb", + "ascii": "statcoulomb", + "html": "statcoulomb", + "latex": "\\ensuremath{\\mathrm{statcoulomb}}", + "id": "statcoulomb", + "mathml": "statcoulomb" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu271" + }, + { + "type": "unitsml", + "id": "u:statcoulomb" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/C_Stat" + } + ], + "short": "statcoulomb", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq22", + "name": "electric charge", + "type": "derived" + }, + { + "id": "NISTq23", + "name": "amount of electricity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd17", + "name": "electric charge", + "expression": "TΒ·I", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu272", + "unitsml_id": "u:statweber", + "name": "statweber", + "names": [ + { + "value": "statweber", + "lang": "en" + } + ], + "symbols": { + "unicode": "statWb", + "ascii": "statWb", + "html": "statWb", + "latex": "\\ensuremath{\\mathrm{statWb}}", + "id": "statWb", + "mathml": "statWb" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu272" + }, + { + "type": "unitsml", + "id": "u:statweber" + } + ], + "references": [], + "short": "statweber", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq30", + "name": "magnetic flux", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd22", + "name": "magnetic flux", + "expression": "L2Β·MΒ·T-2Β·I-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu273", + "unitsml_id": "u:stattesla", + "name": "stattesla", + "names": [ + { + "value": "stattesla", + "lang": "en" + } + ], + "symbols": { + "unicode": "statT", + "ascii": "statT", + "html": "statT", + "latex": "\\ensuremath{\\mathrm{statT}}", + "id": "statT", + "mathml": "statT" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu273" + }, + { + "type": "unitsml", + "id": "u:stattesla" + } + ], + "references": [], + "short": "stattesla", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq14", + "name": "magnetic flux density", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd13", + "name": "magnetic flux density", + "expression": "MΒ·T-2Β·I-1", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu274", + "unitsml_id": "u:statwatt", + "name": "statwatt", + "names": [ + { + "value": "statwatt", + "lang": "en" + } + ], + "symbols": { + "unicode": "statwatt", + "ascii": "statwatt", + "html": "statwatt", + "latex": "\\ensuremath{\\mathrm{statwatt}}", + "id": "statwatt", + "mathml": "statwatt" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu274" + }, + { + "type": "unitsml", + "id": "u:statwatt" + } + ], + "references": [], + "short": "statwatt", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq20", + "name": "power", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu275", + "unitsml_id": "u:av_dram", + "name": "dram (avoirdupois)", + "names": [ + { + "value": "dram (avoirdupois)", + "lang": "en" + }, + { + "value": "dram", + "lang": "en" + } + ], + "symbols": { + "unicode": "dr (avdp)", + "ascii": "dr (avdp)", + "html": "dr (avdp)", + "latex": "\\ensuremath{\\mathrm{dr~(avdp)}}", + "id": "dr (avdp)", + "mathml": "dr (avdp)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu275" + }, + { + "type": "unitsml", + "id": "u:av_dram" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:avoirdupois:code:[dr_av]" + } + ], + "short": "av_dram", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu276", + "unitsml_id": "u:footcandle", + "name": "footcandle", + "names": [ + { + "value": "footcandle", + "lang": "en" + } + ], + "symbols": { + "unicode": "ft.c", + "ascii": "ft.c", + "html": "ft.c", + "latex": "\\ensuremath{\\mathrm{ft.c}}", + "id": "ft.c", + "mathml": "ft.c" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu276" + }, + { + "type": "unitsml", + "id": "u:footcandle" + } + ], + "references": [], + "short": "footcandle", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq47", + "name": "illuminance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd27", + "name": "illuminance", + "expression": "L-2Β·J", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "luminous_intensity", + "symbol": "J", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu277", + "unitsml_id": "u:footlambert", + "name": "footlambert", + "names": [ + { + "value": "footlambert", + "lang": "en" + } + ], + "symbols": { + "unicode": "ft.L", + "ascii": "ft.L", + "html": "ft.L", + "latex": "\\ensuremath{\\mathrm{ft.L}}", + "id": "ft.L", + "mathml": "ft.L" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu277" + }, + { + "type": "unitsml", + "id": "u:footlambert" + } + ], + "references": [], + "short": "footlambert", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq56", + "name": "luminance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd27", + "name": "illuminance", + "expression": "L-2Β·J", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "luminous_intensity", + "symbol": "J", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu278", + "unitsml_id": "u:computer_pica", + "name": "pica (computer)", + "names": [ + { + "value": "pica (computer)", + "lang": "en" + } + ], + "symbols": { + "unicode": "pc", + "ascii": "pc", + "html": "pc", + "latex": "\\ensuremath{\\mathrm{pc}}", + "id": "pica_computer", + "mathml": "pc" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu278" + }, + { + "type": "unitsml", + "id": "u:computer_pica" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:pc" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/PARSEC" + } + ], + "short": "computer_pica", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + }, + { + "id": "NISTq48", + "name": "distance", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu279", + "unitsml_id": "u:printers_pica", + "name": "pica (printer's)", + "names": [ + { + "value": "pica (printer's)", + "lang": "en" + } + ], + "symbols": { + "unicode": "pc", + "ascii": "pc", + "html": "pc", + "latex": "\\ensuremath{\\mathrm{pc}}", + "id": "pica_printer", + "mathml": "pc" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu279" + }, + { + "type": "unitsml", + "id": "u:printers_pica" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:pc" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/PARSEC" + } + ], + "short": "printers_pica", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu27p10'3.u1.u3e-1/1", + "unitsml_id": "u:kilogram_meter_per_second", + "name": "kilogram meter per second", + "names": [ + { + "value": "kilogram meter per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "NΒ·m/s", + "ascii": "kg*m*s^-1", + "html": "kg · m/s", + "latex": "\\ensuremath{\\mathrm{kg\\cdot m/s}}", + "id": "kg*m*s^-1", + "mathml": "kg·m/s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu27p10'3.u1.u3e-1/1" + }, + { + "type": "unitsml", + "id": "u:kilogram_meter_per_second" + } + ], + "references": [], + "short": "kilogram_meter_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq131", + "name": "momentum", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd61", + "name": "momentum", + "expression": "LΒ·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": 1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu27p10'3.u1e-1/1", + "unitsml_id": "u:kilogram_per_meter", + "name": "kilogram per meter", + "names": [ + { + "value": "kilogram per meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "kg/m", + "ascii": "kg*m^-1", + "html": "kg/m", + "latex": "\\ensuremath{\\mathrm{kg/m}}", + "id": "kg*m^-1", + "mathml": "kg/m" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu27p10'3.u1e-1/1" + }, + { + "type": "unitsml", + "id": "u:kilogram_per_meter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/KiloGM-PER-M" + } + ], + "short": "kilogram_per_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq126", + "name": "linear density", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd58", + "name": "linear density", + "expression": "L-1Β·M", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu27p10'3.u1e-2/1", + "unitsml_id": "u:kilogram_per_square_meter", + "name": "kilogram per square meter", + "names": [ + { + "value": "kilogram per square meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "kg/mΒ²", + "ascii": "kg*m^-2", + "html": "kg/m2", + "latex": "\\ensuremath{\\mathrm{kg/m^2}}", + "id": "kg*m^-2", + "mathml": "kg/m2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu27p10'3.u1e-2/1" + }, + { + "type": "unitsml", + "id": "u:kilogram_per_square_meter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/KiloGM-PER-M2" + } + ], + "short": "kilogram_per_square_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq31", + "name": "surface density", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd51", + "name": "surface density", + "expression": "L-2Β·M", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -2, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu27p10'3.u1e-3/1", + "unitsml_id": "u:kilogram_per_cubic_meter", + "name": "kilogram per cubic meter", + "names": [ + { + "value": "kilogram per cubic meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "kgΒ·m⁻³", + "ascii": "kg*m^-3", + "html": "kg/m3", + "latex": "\\ensuremath{\\mathrm{kg/m^3}}", + "id": "kg*m^-3", + "mathml": "kg/m3" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu27p10'3.u1e-3/1" + }, + { + "type": "unitsml", + "id": "u:kilogram_per_cubic_meter" + } + ], + "references": [], + "short": "kilogram_per_cubic_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq33", + "name": "mass concentration", + "type": "derived" + }, + { + "id": "NISTq51", + "name": "density", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd30", + "name": "mass density", + "expression": "L-3Β·M", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -3, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu27p10'3.u1e2/1", + "unitsml_id": "u:kilogram_meter_squared", + "name": "kilogram meter squared", + "names": [ + { + "value": "kilogram meter squared", + "lang": "en" + } + ], + "symbols": { + "unicode": "kgΒ·mΒ²", + "ascii": "kg*m^2", + "html": "kg · m2", + "latex": "\\ensuremath{\\mathrm{kg\\cdot m^2}}", + "id": "kg*m^2", + "mathml": "kg·m2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu27p10'3.u1e2/1" + }, + { + "type": "unitsml", + "id": "u:kilogram_meter_squared" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/KiloGM-M2" + } + ], + "short": "kilogram_meter_squared", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq127", + "name": "mass moment of inertia", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd59", + "name": "mass moment of inertia", + "expression": "L2Β·M", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -2, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu27p10'3.u1e2/1.u3e-1/1", + "unitsml_id": "u:kilogram_meter_squared_per_second", + "name": "kilogram meter squared per second", + "names": [ + { + "value": "kilogram meter squared per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "kgΒ·mΒ²/s", + "ascii": "kg*m^2*s^-1", + "html": "kg · m2/s", + "latex": "\\ensuremath{\\mathrm{kg\\cdot m^2/s}}", + "id": "kg*m^2*s^-1", + "mathml": "kg·m2/s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu27p10'3.u1e2/1.u3e-1/1" + }, + { + "type": "unitsml", + "id": "u:kilogram_meter_squared_per_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/KiloGM-M2-PER-SEC" + } + ], + "short": "kilogram_meter_squared_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq132", + "name": "moment of momentum", + "type": "derived" + }, + { + "id": "NISTq132", + "name": "moment of momentum", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd60", + "name": "action", + "expression": "L2Β·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": 2, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu27p10'3.u3e-1/1", + "unitsml_id": "u:kilogram_per_second", + "name": "kilogram per second", + "names": [ + { + "value": "kilogram per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "kg/s", + "ascii": "kg*s^-1", + "html": "kg/s", + "latex": "\\ensuremath{\\mathrm{kg/s}}", + "id": "kg*s^-1", + "mathml": "kg/s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu27p10'3.u3e-1/1" + }, + { + "type": "unitsml", + "id": "u:kilogram_per_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/KiloGM-PER-SEC" + } + ], + "short": "kilogram_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq150", + "name": "mass flow rate", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd65", + "name": "mass flow rate", + "expression": "MΒ·T-1", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu28", + "unitsml_id": "u:gray", + "name": "gray", + "names": [ + { + "value": "gray", + "lang": "en" + }, + { + "value": "gray", + "lang": "fr" + } + ], + "symbols": { + "unicode": "Gy", + "ascii": "Gy", + "html": "Gy", + "latex": "\\ensuremath{\\mathrm{Gy}}", + "id": "Gy", + "mathml": "Gy" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu28" + }, + { + "type": "unitsml", + "id": "u:gray" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/gray" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:Gy" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/GRAY" + } + ], + "short": "gray", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq36", + "name": "absorbed dose", + "type": "derived" + }, + { + "id": "NISTq37", + "name": "specific energy imparted", + "type": "derived" + }, + { + "id": "NISTq38", + "name": "kerma", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd25", + "name": "absorbed dose", + "expression": "L2Β·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu28.u3e-1/1", + "unitsml_id": "u:gray_per_second", + "name": "gray per second", + "names": [ + { + "value": "gray per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "Gy/s", + "ascii": "Gy*s^-1", + "html": "Gy/s", + "latex": "\\ensuremath{\\mathrm{Gy/s}}", + "id": "Gy*s^-1", + "mathml": "Gy/s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu28.u3e-1/1" + }, + { + "type": "unitsml", + "id": "u:gray_per_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/GRAY-PER-SEC" + } + ], + "short": "gray_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq194", + "name": "kerma rate", + "type": "derived" + }, + { + "id": "NISTq76", + "name": "absorbed dose rate", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd50", + "name": "absorbed dose rate", + "expression": "L2Β·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu28", + "name": "gray", + "symbol": "Gy" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu280", + "unitsml_id": "u:computer_point", + "name": "point (computer)", + "names": [ + { + "value": "point (computer)", + "lang": "en" + } + ], + "symbols": { + "unicode": "pt", + "ascii": "pt", + "html": "pt", + "latex": "\\ensuremath{\\mathrm{pt}}", + "id": "pt_computer", + "mathml": "pt" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu280" + }, + { + "type": "unitsml", + "id": "u:computer_point" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/PT" + } + ], + "short": "computer_point", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + }, + { + "id": "NISTq48", + "name": "distance", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu281", + "unitsml_id": "u:us_survey_rod", + "name": "rod (based on US survey foot)", + "names": [ + { + "value": "rod (based on US survey foot)", + "lang": "en" + }, + { + "value": "rod", + "lang": "en" + } + ], + "symbols": { + "unicode": "rd", + "ascii": "rd", + "html": "rd", + "latex": "rd", + "id": "rd", + "mathml": "rd" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu281" + }, + { + "type": "unitsml", + "id": "u:us_survey_rod" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-lengths:code:[rd_us]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/ROD" + } + ], + "short": "us_survey_rod", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu282", + "unitsml_id": "u:us_survey_fathom", + "name": "fathom (based on US survey foot)", + "names": [ + { + "value": "fathom (based on US survey foot)", + "lang": "en" + }, + { + "value": "fathom", + "lang": "en" + } + ], + "symbols": { + "unicode": "fath", + "ascii": "fath", + "html": "fath", + "latex": "\\ensuremath{\\mathrm{fath}}", + "id": "fath", + "mathml": "fath" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu282" + }, + { + "type": "unitsml", + "id": "u:us_survey_fathom" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[fth_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FATH" + } + ], + "short": "us_survey_fathom", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu283", + "unitsml_id": "u:circular_mil", + "name": "circular mil", + "names": [ + { + "value": "circular mil", + "lang": "en" + } + ], + "symbols": { + "unicode": "cmil", + "ascii": "cmil", + "html": "cmil", + "latex": "\\ensuremath{\\mathrm{cmil}}", + "id": "cmil", + "mathml": "cmil" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu283" + }, + { + "type": "unitsml", + "id": "u:circular_mil" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[cml_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MIL_Circ" + } + ], + "short": "circular_mil", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq8", + "name": "area", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd8", + "name": "area", + "expression": "L2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu284", + "unitsml_id": "u:horsepower", + "name": "horsepower", + "names": [ + { + "value": "horsepower", + "lang": "en" + } + ], + "symbols": { + "unicode": "hp", + "ascii": "hp", + "html": "hp", + "latex": "\\ensuremath{\\mathrm{hp}}", + "id": "hp", + "mathml": "hp" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu284" + }, + { + "type": "unitsml", + "id": "u:horsepower" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:heat:code:[HP]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/HP" + } + ], + "short": "horsepower", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq20", + "name": "power", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu285", + "unitsml_id": "u:boiler_horsepower", + "name": "horsepower, boiler", + "names": [ + { + "value": "horsepower, boiler", + "lang": "en" + }, + { + "value": "boiler horsepower", + "lang": "en" + } + ], + "symbols": { + "unicode": "hp", + "ascii": "hp", + "html": "hp", + "latex": "\\ensuremath{\\mathrm{hp}}", + "id": "hp_boiler", + "mathml": "hp" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu285" + }, + { + "type": "unitsml", + "id": "u:boiler_horsepower" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/HP_Boiler" + } + ], + "short": "boiler_horsepower", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq20", + "name": "power", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu286", + "unitsml_id": "u:water_horsepower", + "name": "horsepower, water", + "names": [ + { + "value": "horsepower, water", + "lang": "en" + }, + { + "value": "water horsepower", + "lang": "en" + } + ], + "symbols": { + "unicode": "hp", + "ascii": "hp", + "html": "hp", + "latex": "\\ensuremath{\\mathrm{hp}}", + "id": "hp_water", + "mathml": "hp" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu286" + }, + { + "type": "unitsml", + "id": "u:water_horsepower" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/HP_H2O" + } + ], + "short": "water_horsepower", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq20", + "name": "power", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu287", + "unitsml_id": "u:uk_horsepower", + "name": "horsepower (UK)", + "names": [ + { + "value": "horsepower (UK)", + "lang": "en" + } + ], + "symbols": { + "unicode": "hp", + "ascii": "hp", + "html": "hp", + "latex": "\\ensuremath{\\mathrm{hp}}", + "id": "hp_UK", + "mathml": "hp" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu287" + }, + { + "type": "unitsml", + "id": "u:uk_horsepower" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/HP" + } + ], + "short": "uk_horsepower", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq20", + "name": "power", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu288", + "unitsml_id": "u:degree_Rankine", + "name": "degree Rankine", + "names": [ + { + "value": "degree Rankine", + "lang": "en" + } + ], + "symbols": { + "unicode": "Β°R", + "ascii": "degR", + "html": "°R", + "latex": "\\ensuremath{mathrm{^{\\circ}R}}", + "id": "degR", + "mathml": "°R" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu288" + }, + { + "type": "unitsml", + "id": "u:degree_Rankine" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:heat:code:[degR]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/DEG_R" + } + ], + "short": "degree_Rankine", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq5", + "name": "thermodynamic temperature", + "type": "base" + } + ], + "dimension": { + "id": "NISTd5", + "name": "temperature", + "expression": "Theta", + "components": [ + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu289", + "unitsml_id": "u:dalton", + "name": "dalton", + "names": [ + { + "value": "dalton", + "lang": "en" + }, + { + "value": "dalton", + "lang": "fr" + } + ], + "symbols": { + "unicode": "Da", + "ascii": "Da", + "html": "Da", + "latex": "\\ensuremath{\\mathrm{Da}}", + "id": "Da", + "mathml": "Da" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu289" + }, + { + "type": "unitsml", + "id": "u:dalton" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/dalton" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/DA" + } + ], + "short": "dalton", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu241", + "name": "unified atomic mass unit", + "symbol": "u" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu29", + "unitsml_id": "u:sievert", + "name": "sievert", + "names": [ + { + "value": "sievert", + "lang": "en" + }, + { + "value": "sievert", + "lang": "fr" + } + ], + "symbols": { + "unicode": "Sv", + "ascii": "Sv", + "html": "Sv", + "latex": "\\ensuremath{\\mathrm{Sv}}", + "id": "Sv", + "mathml": "Sv" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu29" + }, + { + "type": "unitsml", + "id": "u:sievert" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/sievert" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:Sv" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/SV" + } + ], + "short": "sievert", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq39", + "name": "dose equivalent", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd25", + "name": "absorbed dose", + "expression": "L2Β·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu290", + "unitsml_id": "u:natural_unit_of_length", + "name": "natural unit of length", + "names": [ + { + "value": "natural unit of length", + "lang": "en" + } + ], + "symbols": { + "unicode": "Ζ›_C", + "ascii": "lambda-bar_C", + "html": "ƛC", + "latex": "\\ensuremath{\\lambdabar_C}", + "id": "lambda-bar_C", + "mathml": "ƛC" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu290" + }, + { + "type": "unitsml", + "id": "u:natural_unit_of_length" + } + ], + "references": [], + "short": "natural_unit_of_length", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu291", + "unitsml_id": "u:atomic_unit_of_1st_hyperpolarizability", + "name": "atomic unit of 1st hyperpolarizability", + "names": [ + { + "value": "atomic unit of 1st hyperpolarizability", + "lang": "en" + } + ], + "symbols": { + "unicode": "π‘’Β³π‘Žβ‚€Β³πΈβ‚•Β³", + "ascii": "e^3a_0^3*(E_h^3)", + "html": "e3a03Eh3", + "latex": "\\ensuremath{\\mathit{e}^3/\\mathit(a}_0^3\\mathit{E}_h^3}", + "id": "e^3a_0^3*(E_h^3)", + "mathml": "e3a03Eh3" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu291" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_1st_hyperpolarizability" + } + ], + "references": [], + "short": "atomic_unit_of_1st_hyperpolarizability", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq172", + "name": "1st hyperpolarizability", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd77", + "name": "hyperpolarizability 1st", + "expression": "L-1Β·M-2Β·T7Β·I3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": -2 + }, + { + "key": "time", + "symbol": "T", + "power": 7 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu292", + "unitsml_id": "u:atomic_unit_of_2nd_hyperpolarizability", + "name": "atomic unit of 2nd hyperpolarizability", + "names": [ + { + "value": "atomic unit of 2nd hyperpolarizability", + "lang": "en" + } + ], + "symbols": { + "unicode": "π‘’β΄π‘Žβ‚€β΄πΈβ‚•β΄", + "ascii": "e^4a_0^4*(E_h^3)", + "html": "e4a04Eh3", + "latex": "\\ensuremath{\\mathit{e}^4/\\mathit(a}_0^4\\mathit{E}_h^3}", + "id": "e^4a_0^4*(E_h^3)", + "mathml": "e4a04Eh3" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu292" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_2nd_hyperpolarizability" + } + ], + "references": [], + "short": "atomic_unit_of_2nd_hyperpolarizability", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq173", + "name": "2nd hyperpolarizability", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd78", + "name": "hyperpolarizability 2nd", + "expression": "L-2Β·M-3Β·T10Β·I4", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": -3 + }, + { + "key": "time", + "symbol": "T", + "power": 10 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 4 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu293", + "unitsml_id": "u:atomic_unit_of_permittivity", + "name": "atomic unit of permittivity", + "names": [ + { + "value": "atomic unit of permittivity", + "lang": "en" + } + ], + "symbols": { + "unicode": "𝑒²/π‘Žβ‚€πΈβ‚•", + "ascii": "e^2*(a_0*E_h)-1", + "html": "e2/a0Eh", + "latex": "\\ensuremath{\\mathit{e}^2/\\mathit(a}_0\\mathit{E}_h}", + "id": "e^2*(a_0*E_h)-1", + "mathml": "e2/a0Eh" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu293" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_permittivity" + } + ], + "references": [], + "short": "atomic_unit_of_permittivity", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq71", + "name": "permittivity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd45", + "name": "permittivity", + "expression": "L-3Β·M-1Β·T4Β·I2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 4 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu294", + "unitsml_id": "u:atomic_unit_of_velocity", + "name": "atomic unit of velocity", + "names": [ + { + "value": "atomic unit of velocity", + "lang": "en" + } + ], + "symbols": { + "unicode": "π‘Žβ‚€πΈβ‚•/ℏ", + "ascii": "a_0*E_h*h-bar-1", + "html": "a0Eh/ħ", + "latex": "\\ensuremath{\\mathit{a}_\\mathrm{0}\\mathit{E}_{h}/\\mathit{\\hbar}}", + "id": "a_0*E_h*h-bar-1", + "mathml": "a0Eh/ħ" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu294" + }, + { + "type": "unitsml", + "id": "u:atomic_unit_of_velocity" + } + ], + "references": [], + "short": "atomic_unit_of_velocity", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq12", + "name": "velocity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd11", + "name": "velocity", + "expression": "LΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu295", + "unitsml_id": "u:natural_unit_of_energy", + "name": "natural unit of energy", + "names": [ + { + "value": "natural unit of energy", + "lang": "en" + } + ], + "symbols": { + "unicode": "π‘šβ‚‘π‘Β²", + "ascii": "m_e*c^2", + "html": "mec2", + "latex": "\\ensuremath{\\mathit{m}_e\\mathit{c}^2}", + "id": "m_e*c^2", + "mathml": "mec2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu295" + }, + { + "type": "unitsml", + "id": "u:natural_unit_of_energy" + } + ], + "references": [], + "short": "natural_unit_of_energy", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq17", + "name": "energy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu296", + "unitsml_id": "u:natural_unit_of_momentum", + "name": "natural unit of momentum", + "names": [ + { + "value": "natural unit of momentum", + "lang": "en" + } + ], + "symbols": { + "unicode": "π‘šβ‚‘π‘", + "ascii": "m_e*c", + "html": "mec", + "latex": "\\ensuremath{\\mathit{m}_e\\mathit{c}}", + "id": "m_e*c", + "mathml": "mec" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu296" + }, + { + "type": "unitsml", + "id": "u:natural_unit_of_momentum" + } + ], + "references": [], + "short": "natural_unit_of_momentum", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq131", + "name": "momentum", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd61", + "name": "momentum", + "expression": "LΒ·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu297", + "unitsml_id": "u:natural_unit_of_action_in_eV_s", + "name": "natural unit of action in eV s", + "names": [ + { + "value": "natural unit of action in eV s", + "lang": "en" + } + ], + "symbols": { + "unicode": "ℏ", + "ascii": "h-bar", + "html": "ħ", + "latex": "\\ensuremath{mathrm{\\hbar}}", + "id": "h-bar_eV_s", + "mathml": "ħ" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu297" + }, + { + "type": "unitsml", + "id": "u:natural_unit_of_action_in_eV_s" + } + ], + "references": [], + "short": "natural_unit_of_action_in_eV_s", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq154", + "name": "action", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd60", + "name": "action", + "expression": "L2Β·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu298", + "unitsml_id": "u:natural_unit_of_energy_in_MeV", + "name": "natural unit of energy in MeV", + "names": [ + { + "value": "natural unit of energy in MeV", + "lang": "en" + } + ], + "symbols": { + "unicode": "π‘šβ‚‘π‘Β²", + "ascii": "m_e*c^2", + "html": "mec2", + "latex": "\\ensuremath{\\mathit{m}_e\\mathit{c}^2}", + "id": "m_e*c^2_MeV", + "mathml": "mec2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu298" + }, + { + "type": "unitsml", + "id": "u:natural_unit_of_energy_in_MeV" + } + ], + "references": [], + "short": "natural_unit_of_energy_in_MeV", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq17", + "name": "energy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu299", + "unitsml_id": "u:natural_unit_of_momentum_in_MeV_per_c", + "name": "natural unit of momentum in MeV/c", + "names": [ + { + "value": "natural unit of momentum in MeV/c", + "lang": "en" + } + ], + "symbols": { + "unicode": "π‘šβ‚‘π‘", + "ascii": "m_e*c", + "html": "mec", + "latex": "\\ensuremath{\\mathit{m}_e\\mathit{c}}", + "id": "m_e*c_MeV/C", + "mathml": "mec" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu299" + }, + { + "type": "unitsml", + "id": "u:natural_unit_of_momentum_in_MeV_per_c" + } + ], + "references": [], + "short": "natural_unit_of_momentum_in_MeV_per_c", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq131", + "name": "momentum", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd61", + "name": "momentum", + "expression": "LΒ·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu3", + "unitsml_id": "u:second", + "name": "second", + "names": [ + { + "value": "second", + "lang": "en" + }, + { + "value": "seconde", + "lang": "fr" + } + ], + "symbols": { + "unicode": "β€³", + "ascii": "\"", + "html": "″", + "latex": "\\ensuremath{\\mathrm{''}}", + "id": "dprime_s", + "mathml": "" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu3" + }, + { + "type": "unitsml", + "id": "u:second" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/second" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:base-unit:code:s" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/SEC" + } + ], + "short": "second", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq109", + "name": "period duration", + "type": "derived" + }, + { + "id": "NISTq110", + "name": "time constant", + "type": "derived" + }, + { + "id": "NISTq3", + "name": "time", + "type": "base" + } + ], + "dimension": { + "id": "NISTd3", + "name": "time", + "expression": "T", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_base", + "name": "SI base units", + "short": "si-base", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu30", + "unitsml_id": "u:katal", + "name": "katal", + "names": [ + { + "value": "katal", + "lang": "en" + }, + { + "value": "katal", + "lang": "fr" + } + ], + "symbols": { + "unicode": "kat", + "ascii": "kat", + "html": "kat", + "latex": "\\ensuremath{\\mathrm{kat}}", + "id": "kat", + "mathml": "kat" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu30" + }, + { + "type": "unitsml", + "id": "u:katal" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/katal" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:chemical:code:kat" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/KAT" + } + ], + "short": "katal", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq44", + "name": "catalytic activity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd26", + "name": "catalytic activity", + "expression": "T-1Β·N", + "components": [ + { + "key": "time", + "symbol": "T", + "power": -1 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu30.u1e-3/1", + "unitsml_id": "u:katal_per_cubic_meter", + "name": "katal per cubic meter", + "names": [ + { + "value": "katal per cubic meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "kat/mΒ³", + "ascii": "kat*m^-3", + "html": "kat/m3", + "latex": "\\ensuremath{\\mathrm{kat/m^3}}", + "id": "kat*m^-3", + "mathml": "kat/m3" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu30.u1e-3/1" + }, + { + "type": "unitsml", + "id": "u:katal_per_cubic_meter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/KAT-PER-M3" + } + ], + "short": "katal_per_cubic_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq84", + "name": "catalytic activity concentration", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd55", + "name": "catalytic activity concentration", + "expression": "M-3Β·T-1Β·N", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": -3 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu30", + "name": "katal", + "symbol": "kat" + }, + "prefix": null + }, + { + "power": -3, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu300", + "unitsml_id": "u:imperial_quart", + "name": "quart (UK)", + "names": [ + { + "value": "quart (UK)", + "lang": "en" + }, + { + "value": "quart", + "lang": "en" + } + ], + "symbols": { + "unicode": "qt (UK)", + "ascii": "qt (UK)", + "html": "qt (UK)", + "latex": "\\ensuremath{\\mathrm{qt (UK)}}", + "id": "qt (UK)", + "mathml": "qt (UK)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu300" + }, + { + "type": "unitsml", + "id": "u:imperial_quart" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[qt_us]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/QT_UK" + } + ], + "short": "imperial_quart", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu301", + "unitsml_id": "u:us_dry_quart", + "name": "dry quart (US)", + "names": [ + { + "value": "dry quart (US)", + "lang": "en" + }, + { + "value": "quart", + "lang": "en" + } + ], + "symbols": { + "unicode": "dry qt (US)", + "ascii": "dry qt (US)", + "html": "dry qt (US)", + "latex": "\\ensuremath{\\mathrm{dry qt (US)}}", + "id": "dry qt (US)", + "mathml": "dry qt (US)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu301" + }, + { + "type": "unitsml", + "id": "u:us_dry_quart" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[qt_us]" + } + ], + "short": "us_dry_quart", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu302", + "unitsml_id": "u:us_quart", + "name": "liquid quart (US)", + "names": [ + { + "value": "liquid quart (US)", + "lang": "en" + }, + { + "value": "quart", + "lang": "en" + } + ], + "symbols": { + "unicode": "liq qt (US)", + "ascii": "liq qt (US)", + "html": "liq qt (US)", + "latex": "\\ensuremath{\\mathrm{liq qt (US)}}", + "id": "liq qt (US)", + "mathml": "liq qt (US)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu302" + }, + { + "type": "unitsml", + "id": "u:us_quart" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[qt_us]" + } + ], + "short": "us_quart", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu303", + "unitsml_id": "u:us_teaspoon", + "name": "teaspoon", + "names": [ + { + "value": "teaspoon", + "lang": "en" + } + ], + "symbols": { + "unicode": "tsp", + "ascii": "tsp", + "html": "tsp", + "latex": "\\ensuremath{\\mathrm{tsp}}", + "id": "tsp", + "mathml": "tsp" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu303" + }, + { + "type": "unitsml", + "id": "u:us_teaspoon" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[tsp_us]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/TSP" + } + ], + "short": "us_teaspoon", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu304", + "unitsml_id": "u:us_tablespoon", + "name": "tablespoon", + "names": [ + { + "value": "tablespoon", + "lang": "en" + } + ], + "symbols": { + "unicode": "tbsp", + "ascii": "tbsp", + "html": "tbsp", + "latex": "\\ensuremath{\\mathrm{tbsp}}", + "id": "tbsp", + "mathml": "tbsp" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu304" + }, + { + "type": "unitsml", + "id": "u:us_tablespoon" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[tbs_us]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/TBSP" + } + ], + "short": "us_tablespoon", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu305", + "unitsml_id": "u:us_label_tablespoon", + "name": "tablespoon (FDA)", + "names": [ + { + "value": "tablespoon (FDA)", + "lang": "en" + }, + { + "value": "teaspoon", + "lang": "en" + } + ], + "symbols": { + "unicode": "tbsp", + "ascii": "tbsp", + "html": "tbsp", + "latex": "\\ensuremath{\\mathrm{tbsp}}", + "id": "tbsp_label", + "mathml": "tbsp" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu305" + }, + { + "type": "unitsml", + "id": "u:us_label_tablespoon" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[tsp_us]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/TBSP" + } + ], + "short": "us_label_tablespoon", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu306", + "unitsml_id": "u:us_label_teaspoon", + "name": "teaspoon (FDA)", + "names": [ + { + "value": "teaspoon (FDA)", + "lang": "en" + }, + { + "value": "teaspoon", + "lang": "en" + } + ], + "symbols": { + "unicode": "tsp", + "ascii": "tsp", + "html": "tsp", + "latex": "\\ensuremath{\\mathrm{tsp}}", + "id": "tsp_label", + "mathml": "tsp" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu306" + }, + { + "type": "unitsml", + "id": "u:us_label_teaspoon" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[tsp_us]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/TSP" + } + ], + "short": "us_label_teaspoon", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu307", + "unitsml_id": "u:us_label_cup", + "name": "cup (FDA)", + "names": [ + { + "value": "cup (FDA)", + "lang": "en" + }, + { + "value": "cup", + "lang": "en" + } + ], + "symbols": { + "unicode": "cup", + "ascii": "cup", + "html": "cup", + "latex": "\\ensuremath{\\mathrm{cup}}", + "id": "cup_label", + "mathml": "cup" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu307" + }, + { + "type": "unitsml", + "id": "u:us_label_cup" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[cup_us]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/CUP" + } + ], + "short": "us_label_cup", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu308", + "unitsml_id": "u:us_label_fluid_ounce", + "name": "fluid ounce (FDA)", + "names": [ + { + "value": "fluid ounce (FDA)", + "lang": "en" + }, + { + "value": "fluid ounce", + "lang": "en" + }, + { + "value": "ounce", + "lang": "en" + } + ], + "symbols": { + "unicode": "fl oz (US label)", + "ascii": "fl oz (US label)", + "html": "fl oz (US label)", + "latex": "\\ensuremath{\\mathrm{fl oz (US label)}}", + "id": "fl oz (US label)", + "mathml": "fl oz (US label)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu308" + }, + { + "type": "unitsml", + "id": "u:us_label_fluid_ounce" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[foz_us]" + } + ], + "short": "us_label_fluid_ounce", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu309", + "unitsml_id": "u:us_label_ounce", + "name": "ounce (FDA)", + "names": [ + { + "value": "ounce (FDA)", + "lang": "en" + }, + { + "value": "ounce", + "lang": "en" + } + ], + "symbols": { + "unicode": "oz (US label)", + "ascii": "oz (US label)", + "html": "oz (US label)", + "latex": "\\ensuremath{\\mathrm{oz (US label)}}", + "id": "oz (US label)", + "mathml": "oz (US label)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu309" + }, + { + "type": "unitsml", + "id": "u:us_label_ounce" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:avoirdupois:code:[oz_av]" + } + ], + "short": "us_label_ounce", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu31", + "unitsml_id": "u:hertz", + "name": "hertz", + "names": [ + { + "value": "hertz", + "lang": "en" + }, + { + "value": "hertz", + "lang": "fr" + } + ], + "symbols": { + "unicode": "Hz", + "ascii": "Hz", + "html": "Hz", + "latex": "\\ensuremath{\\mathrm{Hz}}", + "id": "Hz", + "mathml": "Hz" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu31" + }, + { + "type": "unitsml", + "id": "u:hertz" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/hertz" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:Hz" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/HZ" + } + ], + "short": "hertz", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq45", + "name": "frequency", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd24", + "name": "frequency", + "expression": "T-1", + "components": [ + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu310", + "unitsml_id": "u:us_survey_chain", + "name": "chain (based on US survey foot)", + "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": { + "unicode": "ch", + "ascii": "ch", + "html": "ch", + "latex": "\\ensuremath{\\mathrm{ch}}", + "id": "ch", + "mathml": "ch" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu310" + }, + { + "type": "unitsml", + "id": "u:us_survey_chain" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-lengths:code:[ch_us]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/CH" + } + ], + "short": "us_survey_chain", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu311", + "unitsml_id": "u:us_survey_link", + "name": "link (based on US survey foot)", + "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": { + "unicode": "lnk", + "ascii": "lnk", + "html": "lnk", + "latex": "\\ensuremath{\\mathrm{lnk}}", + "id": "lnk", + "mathml": "lnk" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu311" + }, + { + "type": "unitsml", + "id": "u:us_survey_link" + } + ], + "references": [], + "short": "us_survey_link", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu312", + "unitsml_id": "u:us_survey_furlong", + "name": "furlong (based on US survey foot)", + "names": [ + { + "value": "furlong (based on US survey foot)", + "lang": "en" + }, + { + "value": "furlong", + "lang": "en" + } + ], + "symbols": { + "unicode": "fur", + "ascii": "fur", + "html": "fur", + "latex": "\\ensuremath{\\mathrm{fur}}", + "id": "fur", + "mathml": "fur" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu312" + }, + { + "type": "unitsml", + "id": "u:us_survey_furlong" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-lengths:code:[fur_us]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FUR" + } + ], + "short": "us_survey_furlong", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu313", + "unitsml_id": "u:us_survey_mile", + "name": "mile (based on US survey foot)", + "names": [ + { + "value": "mile (based on US survey foot)", + "lang": "en" + }, + { + "value": "survey mile", + "lang": "en" + }, + { + "value": "mile", + "lang": "en" + } + ], + "symbols": { + "unicode": "mi", + "ascii": "mi", + "html": "mi", + "latex": "\\ensuremath{\\mathrm{mi}}", + "id": "mi_US_survey", + "mathml": "mi" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu313" + }, + { + "type": "unitsml", + "id": "u:us_survey_mile" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[mi_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MI_US" + } + ], + "short": "us_survey_mile", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu314", + "unitsml_id": "u:us_survey_yard", + "name": "yard (based on US survey foot)", + "names": [ + { + "value": "yard (based on US survey foot)", + "lang": "en" + }, + { + "value": "yard", + "lang": "en" + } + ], + "symbols": { + "unicode": "yd", + "ascii": "yd", + "html": "yd", + "latex": "\\ensuremath{\\mathrm{yd}}", + "id": "yd_US_survey", + "mathml": "yd" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu314" + }, + { + "type": "unitsml", + "id": "u:us_survey_yard" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[yd_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/YD" + } + ], + "short": "us_survey_yard", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu315", + "unitsml_id": "u:us_survey_foot", + "name": "foot (based on US survey foot)", + "names": [ + { + "value": "foot (based on US survey foot)", + "lang": "en" + }, + { + "value": "survey foot", + "lang": "en" + }, + { + "value": "foot", + "lang": "en" + } + ], + "symbols": { + "unicode": "ft", + "ascii": "ft", + "html": "ft", + "latex": "\\ensuremath{\\mathrm{ft}}", + "id": "ft_US_survey", + "mathml": "ft" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu315" + }, + { + "type": "unitsml", + "id": "u:us_survey_foot" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[ft_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FT_US" + } + ], + "short": "us_survey_foot", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu316", + "unitsml_id": "u:us_survey_inch", + "name": "inch (based on US survey foot)", + "names": [ + { + "value": "inch (based on US survey foot)", + "lang": "en" + }, + { + "value": "inch", + "lang": "en" + } + ], + "symbols": { + "unicode": "in", + "ascii": "in", + "html": "in", + "latex": "\\ensuremath{\\mathrm{in}}", + "id": "in_US_survey", + "mathml": "in" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu316" + }, + { + "type": "unitsml", + "id": "u:us_survey_inch" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[in_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/IN" + } + ], + "short": "us_survey_inch", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu317", + "unitsml_id": "u:us_acre", + "name": "acre (based on US survey foot)", + "names": [ + { + "value": "acre (based on US survey foot)", + "lang": "en" + }, + { + "value": "acre", + "lang": "en" + } + ], + "symbols": { + "unicode": "ac", + "ascii": "ac", + "html": "ac", + "latex": "\\ensuremath{\\mathrm{ac}}", + "id": "ac", + "mathml": "ac" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu317" + }, + { + "type": "unitsml", + "id": "u:us_acre" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-lengths:code:[acr_us]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/AC" + } + ], + "short": "us_acre", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq8", + "name": "area", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd8", + "name": "area", + "expression": "L2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu318", + "unitsml_id": "u:cm_Hg", + "name": "conventional centimeter of mercury", + "names": [ + { + "value": "conventional centimeter of mercury", + "lang": "en" + }, + { + "value": "centimeter of mercury, conventional", + "lang": "en" + }, + { + "value": "centimeter of mercury", + "lang": "en" + } + ], + "symbols": { + "unicode": "cmHg", + "ascii": "cmHg", + "html": "cmHg", + "latex": "\\ensuremath{\\mathrm{cmHg}}", + "id": "cmHg", + "mathml": "cmHg" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu318" + }, + { + "type": "unitsml", + "id": "u:cm_Hg" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/CentiM_HG" + } + ], + "short": "cm_Hg", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu319", + "unitsml_id": "u:0C_cm_Hg", + "name": "centimeter of mercury (0 degC)", + "names": [ + { + "value": "centimeter of mercury (0 degC)", + "lang": "en" + } + ], + "symbols": { + "unicode": "cmHg", + "ascii": "cmHg", + "html": "cmHg", + "latex": "\\ensuremath{\\mathrm{cmHg}}", + "id": "cmHg_0degC", + "mathml": "cmHg" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu319" + }, + { + "type": "unitsml", + "id": "u:0C_cm_Hg" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/CentiM_HG_0DEG_C" + } + ], + "short": "0C_cm_Hg", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu32", + "unitsml_id": "u:lumen", + "name": "lumen", + "names": [ + { + "value": "lumen", + "lang": "en" + }, + { + "value": "lumen", + "lang": "fr" + } + ], + "symbols": { + "unicode": "lm", + "ascii": "lm", + "html": "lm", + "latex": "\\ensuremath{\\mathrm{lm}}", + "id": "lm", + "mathml": "lm" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu32" + }, + { + "type": "unitsml", + "id": "u:lumen" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/lumen" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:lm" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/LM" + } + ], + "short": "lumen", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq46", + "name": "luminous flux", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd7", + "name": "luminous intensity", + "expression": "J", + "components": [ + { + "key": "luminous_intensity", + "symbol": "J", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu320", + "unitsml_id": "u:4C_cm_water", + "name": "centimeter of water (4 degC)", + "names": [ + { + "value": "centimeter of water (4 degC)", + "lang": "en" + } + ], + "symbols": { + "unicode": "cmHβ‚‚O", + "ascii": "cmH_2O", + "html": "cmH2O", + "latex": "\\ensuremath{\\mathrm{cmH_{2}O}}", + "id": "cmH_2O_4degC", + "mathml": "cmH2O" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu320" + }, + { + "type": "unitsml", + "id": "u:4C_cm_water" + } + ], + "references": [], + "short": "4C_cm_water", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu321", + "unitsml_id": "u:cm_water", + "name": "conventional centimeter of water", + "names": [ + { + "value": "conventional centimeter of water", + "lang": "en" + }, + { + "value": "centimeter of water, conventional", + "lang": "en" + }, + { + "value": "centimeter of water", + "lang": "en" + } + ], + "symbols": { + "unicode": "cmHβ‚‚O", + "ascii": "cmH_2O", + "html": "cmH2O", + "latex": "\\ensuremath{\\mathrm{cmH_{2}O}}", + "id": "cmH_2O", + "mathml": "cmH2O" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu321" + }, + { + "type": "unitsml", + "id": "u:cm_water" + } + ], + "references": [], + "short": "cm_water", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu322", + "unitsml_id": "u:in_water", + "name": "conventional inch of water", + "names": [ + { + "value": "conventional inch of water", + "lang": "en" + }, + { + "value": "inch of water, conventional", + "lang": "en" + }, + { + "value": "inch of water", + "lang": "en" + } + ], + "symbols": { + "unicode": "inHβ‚‚O", + "ascii": "inH_2O", + "html": "inH2O", + "latex": "\\ensuremath{\\mathrm{inH_{2}O}}", + "id": "inH_2O", + "mathml": "inH2O" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu322" + }, + { + "type": "unitsml", + "id": "u:in_water" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/IN_H2O" + } + ], + "short": "in_water", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu323", + "unitsml_id": "u:39F_in_water", + "name": "inch of water (39.2 degF)", + "names": [ + { + "value": "inch of water (39.2 degF)", + "lang": "en" + } + ], + "symbols": { + "unicode": "inHβ‚‚O", + "ascii": "inH_2O", + "html": "inH2O", + "latex": "\\ensuremath{\\mathrm{inH_{2}O}}", + "id": "inH_2O_39degF", + "mathml": "inH2O" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu323" + }, + { + "type": "unitsml", + "id": "u:39F_in_water" + } + ], + "references": [], + "short": "39F_in_water", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu324", + "unitsml_id": "u:60F_in_water", + "name": "inch of water (60 degF)", + "names": [ + { + "value": "inch of water (60 degF)", + "lang": "en" + } + ], + "symbols": { + "unicode": "inHβ‚‚O", + "ascii": "inH_2O", + "html": "inH2O", + "latex": "\\ensuremath{\\mathrm{inH_{2}O}}", + "id": "inH_2O_60degF", + "mathml": "inH2O" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu324" + }, + { + "type": "unitsml", + "id": "u:60F_in_water" + } + ], + "references": [], + "short": "60F_in_water", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu325", + "unitsml_id": "u:ft_water", + "name": "conventional foot of water", + "names": [ + { + "value": "conventional foot of water", + "lang": "en" + }, + { + "value": "foot of water, conventional", + "lang": "en" + }, + { + "value": "foot of water", + "lang": "en" + } + ], + "symbols": { + "unicode": "ftHβ‚‚O", + "ascii": "ftH_2O", + "html": "ftH2O", + "latex": "\\ensuremath{\\mathrm{ftH_{2}O}}", + "id": "ftH_2O", + "mathml": "ftH2O" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu325" + }, + { + "type": "unitsml", + "id": "u:ft_water" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FT_H2O" + } + ], + "short": "ft_water", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu326", + "unitsml_id": "u:39F_ft_water", + "name": "foot of water (39.2 degF)", + "names": [ + { + "value": "foot of water (39.2 degF)", + "lang": "en" + } + ], + "symbols": { + "unicode": "ftHβ‚‚O", + "ascii": "ftH_2O", + "html": "ftH2O", + "latex": "\\ensuremath{\\mathrm{ftH_{2}O}}", + "id": "ftH_2O_39degF", + "mathml": "ftH2O" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu326" + }, + { + "type": "unitsml", + "id": "u:39F_ft_water" + } + ], + "references": [], + "short": "39F_ft_water", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu327", + "unitsml_id": "u:32F_in_Hg", + "name": "inch of mercury (32 degF)", + "names": [ + { + "value": "inch of mercury (32 degF)", + "lang": "en" + } + ], + "symbols": { + "unicode": "β€³Hg", + "ascii": "\"Hg", + "html": "″Hg", + "latex": "\\ensuremath{\\mathrm{''Hg}}", + "id": "dprime_Hg_32degF", + "mathml": "″Hg" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu327" + }, + { + "type": "unitsml", + "id": "u:32F_in_Hg" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/IN_HG_32DEG_F" + } + ], + "short": "32F_in_Hg", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu328", + "unitsml_id": "u:60F_in_Hg", + "name": "inch of mercury (60 degF)", + "names": [ + { + "value": "inch of mercury (60 degF)", + "lang": "en" + } + ], + "symbols": { + "unicode": "β€³Hg", + "ascii": "\"Hg", + "html": "″Hg", + "latex": "\\ensuremath{\\mathrm{''Hg}}", + "id": "dprime_Hg_60degF", + "mathml": "″Hg" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu328" + }, + { + "type": "unitsml", + "id": "u:60F_in_Hg" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/IN_HG_60DEG_F" + } + ], + "short": "60F_in_Hg", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu329", + "unitsml_id": "u:in_Hg", + "name": "conventional inch of mercury", + "names": [ + { + "value": "conventional inch of mercury", + "lang": "en" + }, + { + "value": "inch of mercury, conventional", + "lang": "en" + }, + { + "value": "inch of mercury", + "lang": "en" + } + ], + "symbols": { + "unicode": "β€³Hg", + "ascii": "\"Hg", + "html": "″Hg", + "latex": "\\ensuremath{\\mathrm{''Hg}}", + "id": "dprime_Hg", + "mathml": "″Hg" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu329" + }, + { + "type": "unitsml", + "id": "u:in_Hg" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/IN_HG" + } + ], + "short": "in_Hg", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu33", + "unitsml_id": "u:lux", + "name": "lux", + "names": [ + { + "value": "lux", + "lang": "en" + }, + { + "value": "lux", + "lang": "fr" + } + ], + "symbols": { + "unicode": "lx", + "ascii": "lx", + "html": "lx", + "latex": "\\ensuremath{\\mathrm{lx}}", + "id": "lx", + "mathml": "lx" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu33" + }, + { + "type": "unitsml", + "id": "u:lux" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/lux" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:lx" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/LUX" + } + ], + "short": "lux", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq47", + "name": "illuminance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd27", + "name": "illuminance", + "expression": "L-2Β·J", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "luminous_intensity", + "symbol": "J", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu330", + "unitsml_id": "u:ft_Hg", + "name": "conventional foot of mercury", + "names": [ + { + "value": "conventional foot of mercury", + "lang": "en" + }, + { + "value": "foot of mercury, conventional", + "lang": "en" + }, + { + "value": "foot of mercury", + "lang": "en" + } + ], + "symbols": { + "unicode": "β€²Hg", + "ascii": "'Hg", + "html": "′Hg", + "latex": "\\ensuremath{\\mathrm{'Hg}}", + "id": "prime_Hg", + "mathml": "′Hg" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu330" + }, + { + "type": "unitsml", + "id": "u:ft_Hg" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FT_HG" + } + ], + "short": "ft_Hg", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu331", + "unitsml_id": "u:us_therm", + "name": "therm (US)", + "names": [ + { + "value": "therm (US)", + "lang": "en" + } + ], + "symbols": { + "unicode": "thm (US)", + "ascii": "thm (US)", + "html": "thm (US)", + "latex": "\\ensuremath{\\mathrm{thm (US)}}", + "id": "thm (US)", + "mathml": "thm (US)" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu331" + }, + { + "type": "unitsml", + "id": "u:us_therm" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/THM_US" + } + ], + "short": "us_therm", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq17", + "name": "energy", + "type": "derived" + }, + { + "id": "NISTq18", + "name": "work", + "type": "derived" + }, + { + "id": "NISTq182", + "name": "kinetic energy", + "type": "derived" + }, + { + "id": "NISTq183", + "name": "mechanical energy", + "type": "derived" + }, + { + "id": "NISTq19", + "name": "amount of heat", + "type": "derived" + }, + { + "id": "NISTq77", + "name": "potential energy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu332", + "unitsml_id": "u:pH", + "name": "pH", + "names": [ + { + "value": "pH", + "lang": "en" + } + ], + "symbols": { + "unicode": "pH", + "ascii": "pH", + "html": "pH", + "latex": "\\ensuremath{\\mathrm{pH}}", + "id": "pH", + "mathml": "pH" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu332" + }, + { + "type": "unitsml", + "id": "u:pH" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:chemical:code:[pH]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/PH" + } + ], + "short": "pH", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq174", + "name": "index of acidity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd94", + "name": "acidity index", + "expression": "1", + "components": [], + "dimensionless": true + }, + "scale": { + "id": "logarithmic_ratio", + "name": "logarithmic ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu333", + "unitsml_id": "u:table_btu", + "name": "British thermal unit_IT", + "names": [ + { + "value": "British thermal unit_IT", + "lang": "en" + }, + { + "value": "International Table Btu", + "lang": "en" + }, + { + "value": "British thermal unit", + "lang": "en" + } + ], + "symbols": { + "unicode": "Btu", + "ascii": "Btu", + "html": "Btu", + "latex": "\\ensuremath{\\mathrm{Btu}}", + "id": "Btu", + "mathml": "Btu" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu333" + }, + { + "type": "unitsml", + "id": "u:table_btu" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:heat:code:[Btu]" + } + ], + "short": "table_btu", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq19", + "name": "amount of heat", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu334", + "unitsml_id": "u:mean_btu", + "name": "British thermal unit (mean)", + "names": [ + { + "value": "British thermal unit (mean)", + "lang": "en" + } + ], + "symbols": { + "unicode": "Btu", + "ascii": "Btu", + "html": "Btu", + "latex": "\\ensuremath{\\mathrm{Btu}}", + "id": "Btu_mean", + "mathml": "Btu" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu334" + }, + { + "type": "unitsml", + "id": "u:mean_btu" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/BTU_MEAN" + } + ], + "short": "mean_btu", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq19", + "name": "amount of heat", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu335", + "unitsml_id": "u:39F_btu", + "name": "British thermal unit (39 degF)", + "names": [ + { + "value": "British thermal unit (39 degF)", + "lang": "en" + } + ], + "symbols": { + "unicode": "Btu", + "ascii": "Btu", + "html": "Btu", + "latex": "\\ensuremath{\\mathrm{Btu}}", + "id": "Btu_39degF", + "mathml": "Btu" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu335" + }, + { + "type": "unitsml", + "id": "u:39F_btu" + } + ], + "references": [], + "short": "39F_btu", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq19", + "name": "amount of heat", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu336", + "unitsml_id": "u:59F_btu", + "name": "British thermal unit (59 degF)", + "names": [ + { + "value": "British thermal unit (59 degF)", + "lang": "en" + } + ], + "symbols": { + "unicode": "Btu", + "ascii": "Btu", + "html": "Btu", + "latex": "\\ensuremath{\\mathrm{Btu}}", + "id": "Btu_59degF", + "mathml": "Btu" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu336" + }, + { + "type": "unitsml", + "id": "u:59F_btu" + } + ], + "references": [], + "short": "59F_btu", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq19", + "name": "amount of heat", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu337", + "unitsml_id": "u:60F_btu", + "name": "British thermal unit (60 degF)", + "names": [ + { + "value": "British thermal unit (60 degF)", + "lang": "en" + } + ], + "symbols": { + "unicode": "Btu", + "ascii": "Btu", + "html": "Btu", + "latex": "\\ensuremath{\\mathrm{Btu}}", + "id": "Btu_60degF", + "mathml": "Btu" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu337" + }, + { + "type": "unitsml", + "id": "u:60F_btu" + } + ], + "references": [], + "short": "60F_btu", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq19", + "name": "amount of heat", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu338", + "unitsml_id": "u:tropical_year", + "name": "year, tropical", + "names": [ + { + "value": "year, tropical", + "lang": "en" + }, + { + "value": "tropical year", + "lang": "en" + }, + { + "value": "year", + "lang": "en" + } + ], + "symbols": { + "unicode": "a", + "ascii": "a", + "html": "a", + "latex": "\\ensuremath{\\mathrm{a}}", + "id": "a_tropical_year", + "mathml": "a" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu338" + }, + { + "type": "unitsml", + "id": "u:tropical_year" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:a_t" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/YR_TROPICAL" + } + ], + "short": "tropical_year", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq3", + "name": "time", + "type": "base" + } + ], + "dimension": { + "id": "NISTd3", + "name": "time", + "expression": "T", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu339", + "unitsml_id": "u:sidereal_year", + "name": "year, sidereal", + "names": [ + { + "value": "year, sidereal", + "lang": "en" + }, + { + "value": "sidereal year", + "lang": "en" + }, + { + "value": "year", + "lang": "en" + } + ], + "symbols": { + "unicode": "a", + "ascii": "a", + "html": "a", + "latex": "\\ensuremath{\\mathrm{a}}", + "id": "a_sidereal_year", + "mathml": "a" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu339" + }, + { + "type": "unitsml", + "id": "u:sidereal_year" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:a" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/YR_Sidereal" + } + ], + "short": "sidereal_year", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq3", + "name": "time", + "type": "base" + } + ], + "dimension": { + "id": "NISTd3", + "name": "time", + "expression": "T", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu340", + "unitsml_id": "u:sidereal_day", + "name": "day, sidereal", + "names": [ + { + "value": "day, sidereal", + "lang": "en" + }, + { + "value": "sidereal day", + "lang": "en" + }, + { + "value": "day", + "lang": "en" + } + ], + "symbols": { + "unicode": "d", + "ascii": "d", + "html": "d", + "latex": "\\ensuremath{\\mathrm{d}}", + "id": "d_sidereal", + "mathml": "d" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu340" + }, + { + "type": "unitsml", + "id": "u:sidereal_day" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:d" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/DAY_Sidereal" + } + ], + "short": "sidereal_day", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq3", + "name": "time", + "type": "base" + } + ], + "dimension": { + "id": "NISTd3", + "name": "time", + "expression": "T", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu341", + "unitsml_id": "u:sidereal_hour", + "name": "hour, sidereal", + "names": [ + { + "value": "hour, sidereal", + "lang": "en" + }, + { + "value": "sidereal hour", + "lang": "en" + }, + { + "value": "hour", + "lang": "en" + } + ], + "symbols": { + "unicode": "h", + "ascii": "h", + "html": "h", + "latex": "\\ensuremath{\\mathrm{h}}", + "id": "h_sidereal", + "mathml": "h" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu341" + }, + { + "type": "unitsml", + "id": "u:sidereal_hour" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:h" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/HR_Sidereal" + } + ], + "short": "sidereal_hour", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq3", + "name": "time", + "type": "base" + } + ], + "dimension": { + "id": "NISTd3", + "name": "time", + "expression": "T", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu342", + "unitsml_id": "u:sidereal_minute", + "name": "minute, sidereal", + "names": [ + { + "value": "minute, sidereal", + "lang": "en" + }, + { + "value": "sidereal minute", + "lang": "en" + }, + { + "value": "minute", + "lang": "en" + } + ], + "symbols": { + "unicode": "min", + "ascii": "min", + "html": "min", + "latex": "\\ensuremath{\\mathrm{min}}", + "id": "min_sidereal", + "mathml": "min" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu342" + }, + { + "type": "unitsml", + "id": "u:sidereal_minute" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:'" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MIN_Sidereal" + } + ], + "short": "sidereal_minute", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq3", + "name": "time", + "type": "base" + } + ], + "dimension": { + "id": "NISTd3", + "name": "time", + "expression": "T", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu343", + "unitsml_id": "u:sidereal_second", + "name": "second, sidereal", + "names": [ + { + "value": "second, sidereal", + "lang": "en" + }, + { + "value": "sidereal second", + "lang": "en" + }, + { + "value": "second", + "lang": "en" + } + ], + "symbols": { + "unicode": "s", + "ascii": "s", + "html": "s", + "latex": "\\ensuremath{\\mathrm{s}}", + "id": "s_sidereal", + "mathml": "s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu343" + }, + { + "type": "unitsml", + "id": "u:sidereal_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/S" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:base-unit:code:s" + } + ], + "short": "sidereal_second", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq3", + "name": "time", + "type": "base" + } + ], + "dimension": { + "id": "NISTd3", + "name": "time", + "expression": "T", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu344", + "unitsml_id": "u:printers_point", + "name": "point (printer's)", + "names": [ + { + "value": "point (printer's)", + "lang": "en" + } + ], + "symbols": { + "unicode": "pt", + "ascii": "pt", + "html": "pt", + "latex": "\\ensuremath{\\mathrm{pt}}", + "id": "pt_printer", + "mathml": "pt" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu344" + }, + { + "type": "unitsml", + "id": "u:printers_point" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/PT_BIG" + } + ], + "short": "printers_point", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu345", + "unitsml_id": "u:shake", + "name": "shake", + "names": [ + { + "value": "shake", + "lang": "en" + } + ], + "symbols": { + "unicode": "shake", + "ascii": "shake", + "html": "shake", + "latex": "\\ensuremath{\\mathrm{shake}}", + "id": "shake", + "mathml": "shake" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu345" + }, + { + "type": "unitsml", + "id": "u:shake" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/SH" + } + ], + "short": "shake", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq3", + "name": "time", + "type": "base" + } + ], + "dimension": { + "id": "NISTd3", + "name": "time", + "expression": "T", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu346", + "unitsml_id": "u:denier", + "name": "denier", + "names": [ + { + "value": "denier", + "lang": "en" + } + ], + "symbols": { + "unicode": "den", + "ascii": "den", + "html": "den", + "latex": "\\ensuremath{\\mathrm{den}}", + "id": "den", + "mathml": "den" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu346" + }, + { + "type": "unitsml", + "id": "u:denier" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:heat:code:[den]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/DENIER" + } + ], + "short": "denier", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq176", + "name": "mass divided by length", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd58", + "name": "linear density", + "expression": "L-1Β·M", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu347", + "unitsml_id": "u:nato_mil", + "name": "angular mil (NATO)", + "names": [ + { + "value": "angular mil (NATO)", + "lang": "en" + }, + { + "value": "angular mil", + "lang": "en" + }, + { + "value": "mil", + "lang": "en" + } + ], + "symbols": { + "unicode": "mil", + "ascii": "mil", + "html": "mil", + "latex": "\\ensuremath{\\mathrm{mil}}", + "id": "mil_nato", + "mathml": "mil" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu347" + }, + { + "type": "unitsml", + "id": "u:nato_mil" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[mil_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MilLength" + } + ], + "short": "nato_mil", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq9", + "name": "plane angle", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd9", + "name": "plane angle", + "expression": "1", + "components": [ + { + "key": "plane_angle", + "symbol": "phi", + "power": 1 + } + ], + "dimensionless": true + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu348", + "unitsml_id": "u:pound_mole", + "name": "pound-mole", + "names": [ + { + "value": "pound-mole", + "lang": "en" + }, + { + "value": "pound mole", + "lang": "en" + } + ], + "symbols": { + "unicode": "lbmol", + "ascii": "lbmol", + "html": "lbmol", + "latex": "\\ensuremath{\\mathrm{lbmol}}", + "id": "lbmol", + "mathml": "lbmol" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu348" + }, + { + "type": "unitsml", + "id": "u:pound_mole" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MOL_LB" + } + ], + "short": "pound_mole", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq6", + "name": "amount of substance", + "type": "base" + } + ], + "dimension": { + "id": "NISTd6", + "name": "substance amount", + "expression": "N", + "components": [ + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu349", + "unitsml_id": "u:ton_refrigeration", + "name": "ton of refrigeration (12 000 Btu_IT/h)", + "names": [ + { + "value": "ton of refrigeration (12 000 Btu_IT/h)", + "lang": "en" + }, + { + "value": "ton of refrigeration", + "lang": "en" + }, + { + "value": "ton", + "lang": "en" + } + ], + "symbols": { + "unicode": "ton", + "ascii": "ton", + "html": "ton", + "latex": "\\ensuremath{\\mathrm{ton}}", + "id": "ton_refrigeration", + "mathml": "ton" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu349" + }, + { + "type": "unitsml", + "id": "u:ton_refrigeration" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/TON_FG" + } + ], + "short": "ton_refrigeration", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq20", + "name": "power", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu350", + "unitsml_id": "u:bit", + "name": "bit", + "names": [ + { + "value": "bit", + "lang": "en" + } + ], + "symbols": { + "unicode": "bit", + "ascii": "bit", + "html": "bit", + "latex": "\\ensuremath{\\mathrm{bit}}", + "id": "bit", + "mathml": "bit" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu350" + }, + { + "type": "unitsml", + "id": "u:bit" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:infotech:code:bit_s" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/BIT" + } + ], + "short": "bit", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq177", + "name": "storage capacity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd95", + "name": "storage capacity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "scale": { + "id": "discrete", + "name": "discrete scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu351", + "unitsml_id": "u:byte", + "name": "byte", + "names": [ + { + "value": "byte", + "lang": "en" + } + ], + "symbols": { + "unicode": "B", + "ascii": "B", + "html": "B", + "latex": "\\ensuremath{\\mathrm{B}}", + "id": "byte_B", + "mathml": "B" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu351" + }, + { + "type": "unitsml", + "id": "u:byte" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:infotech:code:By" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/BYTE" + } + ], + "short": "byte", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq177", + "name": "storage capacity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd95", + "name": "storage capacity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "scale": { + "id": "discrete", + "name": "discrete scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu352", + "unitsml_id": "u:us_peck", + "name": "peck", + "names": [ + { + "value": "peck", + "lang": "en" + } + ], + "symbols": { + "unicode": "pk", + "ascii": "pk", + "html": "pk", + "latex": "\\ensuremath{\\mathrm{pk}}", + "id": "pk", + "mathml": "pk" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu352" + }, + { + "type": "unitsml", + "id": "u:us_peck" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[pk_us]" + } + ], + "short": "us_peck", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu353", + "unitsml_id": "u:us_minim", + "name": "minim", + "names": [ + { + "value": "minim", + "lang": "en" + } + ], + "symbols": { + "unicode": "min", + "ascii": "min", + "html": "min", + "latex": "\\ensuremath{\\mathrm{min}}", + "id": "minim", + "mathml": "min" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu353" + }, + { + "type": "unitsml", + "id": "u:us_minim" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[min_us]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MIN" + } + ], + "short": "us_minim", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu354", + "unitsml_id": "u:us_cup", + "name": "cup (US)", + "names": [ + { + "value": "cup (US)", + "lang": "en" + }, + { + "value": "cup", + "lang": "en" + } + ], + "symbols": { + "unicode": "cup", + "ascii": "cup", + "html": "cup", + "latex": "\\ensuremath{\\mathrm{cup}}", + "id": "cup", + "mathml": "cup" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu354" + }, + { + "type": "unitsml", + "id": "u:us_cup" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[cup_us]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/CUP_US" + } + ], + "short": "us_cup", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu355", + "unitsml_id": "u:us_fluid_dram", + "name": "fluid dram", + "names": [ + { + "value": "fluid dram", + "lang": "en" + }, + { + "value": "dram, fluid", + "lang": "en" + }, + { + "value": "dram", + "lang": "en" + } + ], + "symbols": { + "unicode": "fl dr", + "ascii": "fl dr", + "html": "fl dr", + "latex": "\\ensuremath{\\mathrm{fl dr}}", + "id": "fl dr", + "mathml": "fl dr" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu355" + }, + { + "type": "unitsml", + "id": "u:us_fluid_dram" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[fdr_us]" + } + ], + "short": "us_fluid_dram", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu356", + "unitsml_id": "u:us_gill", + "name": "gill (US)", + "names": [ + { + "value": "gill (US)", + "lang": "en" + }, + { + "value": "gill", + "lang": "en" + } + ], + "symbols": { + "unicode": "gi", + "ascii": "gi", + "html": "gi", + "latex": "\\ensuremath{\\mathrm{gi}}", + "id": "gi", + "mathml": "gi" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu356" + }, + { + "type": "unitsml", + "id": "u:us_gill" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[gil_us]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/GI_US" + } + ], + "short": "us_gill", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu357", + "unitsml_id": "u:imperial_gill", + "name": "gill [Canadian and UK (Imperial)]", + "names": [ + { + "value": "gill [Canadian and UK (Imperial)]", + "lang": "en" + }, + { + "value": "imperial gill", + "lang": "en" + }, + { + "value": "gill", + "lang": "en" + } + ], + "symbols": { + "unicode": "gi", + "ascii": "gi", + "html": "gi", + "latex": "\\ensuremath{\\mathrm{gi}}", + "id": "gi_imperial", + "mathml": "gi" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu357" + }, + { + "type": "unitsml", + "id": "u:imperial_gill" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:us-volumes:code:[gil_us]" + } + ], + "short": "imperial_gill", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu358", + "unitsml_id": "u:cubic_foot_per_minute", + "name": "cubic foot per minute", + "names": [ + { + "value": "cubic foot per minute", + "lang": "en" + } + ], + "symbols": { + "unicode": "ftΒ³min", + "ascii": "ft^3*min^-1", + "html": "ft3/min", + "latex": "\\ensuremath{\\mathrm{ft^3/min}}", + "id": "ft^3*min^-1", + "mathml": "ft3/min" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu358" + }, + { + "type": "unitsml", + "id": "u:cubic_foot_per_minute" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FT3-PER-MIN" + } + ], + "short": "cubic_foot_per_minute", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq151", + "name": "volume flow rate", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd66", + "name": "volume flow rate", + "expression": "L3Β·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 3, + "unit": { + "id": "NISTu78", + "name": "foot", + "symbol": "β€²" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu36", + "name": "minute", + "symbol": "β€²" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu359", + "unitsml_id": "u:cubic_foot_per_second", + "name": "cubic foot per second", + "names": [ + { + "value": "cubic foot per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "ftΒ³sec", + "ascii": "ft^3*sec^-1", + "html": "ft3/sec", + "latex": "\\ensuremath{\\mathrm{ft^3/sec}}", + "id": "ft^3*sec^-1", + "mathml": "ft3/sec" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu359" + }, + { + "type": "unitsml", + "id": "u:cubic_foot_per_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FT3-PER-SEC" + } + ], + "short": "cubic_foot_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq151", + "name": "volume flow rate", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd66", + "name": "volume flow rate", + "expression": "L3Β·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 3, + "unit": { + "id": "NISTu78", + "name": "foot", + "symbol": "β€²" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu36", + "unitsml_id": "u:minute", + "name": "minute", + "names": [ + { + "value": "minute", + "lang": "en" + }, + { + "value": "minute", + "lang": "fr" + } + ], + "symbols": { + "unicode": "β€²", + "ascii": "'", + "html": "′", + "latex": "\\ensuremath{\\mathrm{'}}", + "id": "prime_min", + "mathml": "" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu36" + }, + { + "type": "unitsml", + "id": "u:minute" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/minute" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:'" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MIN" + } + ], + "short": "minute", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq3", + "name": "time", + "type": "base" + } + ], + "dimension": { + "id": "NISTd3", + "name": "time", + "expression": "T", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu360", + "unitsml_id": "u:cubic_inch_per_minute", + "name": "cubic inch per minute", + "names": [ + { + "value": "cubic inch per minute", + "lang": "en" + } + ], + "symbols": { + "unicode": "inΒ³min", + "ascii": "in^3*min^-1", + "html": "in3/min", + "latex": "\\ensuremath{\\mathrm{in^3/min}}", + "id": "in^3*min^-1", + "mathml": "in3/min" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu360" + }, + { + "type": "unitsml", + "id": "u:cubic_inch_per_minute" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/IN3-PER-MIN" + } + ], + "short": "cubic_inch_per_minute", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq151", + "name": "volume flow rate", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd66", + "name": "volume flow rate", + "expression": "L3Β·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 3, + "unit": { + "id": "NISTu8", + "name": "inch", + "symbol": "β€³" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu36", + "name": "minute", + "symbol": "β€²" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu361", + "unitsml_id": "u:microinch", + "name": "microinch", + "names": [ + { + "value": "microinch", + "lang": "en" + } + ], + "symbols": { + "unicode": "ΞΌin", + "ascii": "uin", + "html": "μin", + "latex": "\\ensuremath{\\mathrm{mu}in}", + "id": "uin", + "mathml": "μin" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu361" + }, + { + "type": "unitsml", + "id": "u:microinch" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MicroIN" + } + ], + "short": "microinch", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu8", + "name": "inch", + "symbol": "β€³" + }, + "prefix": { + "id": "NISTp10_-6", + "name": "micro", + "symbol": "ΞΌ" + } + } + ] + }, + { + "id": "NISTu362", + "unitsml_id": "u:millibar", + "name": "millibar", + "names": [ + { + "value": "millibar", + "lang": "en" + } + ], + "symbols": { + "unicode": "mbar", + "ascii": "mbar", + "html": "mbar", + "latex": "\\ensuremath{\\mathrm{mbar}}", + "id": "mbar", + "mathml": "mbar" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu362" + }, + { + "type": "unitsml", + "id": "u:millibar" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MilliBAR" + } + ], + "short": "millibar", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu91", + "name": "bar", + "symbol": "bar" + }, + "prefix": { + "id": "NISTp10_-3", + "name": "milli", + "symbol": "m" + } + } + ] + }, + { + "id": "NISTu363", + "unitsml_id": "u:mile_per_gallon", + "name": "mile per gallon (US)", + "names": [ + { + "value": "mile per gallon (US)", + "lang": "en" + }, + { + "value": "mile per gallon", + "lang": "en" + } + ], + "symbols": { + "unicode": "mi/gal", + "ascii": "mi/gal", + "html": "mi/gal", + "latex": "\\ensuremath{\\mathrm{mi/gal}}", + "id": "mi/gal", + "mathml": "mi/gal" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu363" + }, + { + "type": "unitsml", + "id": "u:mile_per_gallon" + } + ], + "references": [], + "short": "mile_per_gallon", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq198", + "name": "fuel efficiency", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd99", + "name": "fuel efficiency", + "expression": "L-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu83", + "name": "mile", + "symbol": "mi" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu175", + "name": "gallon (US)", + "symbol": "gal (US)" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu364", + "unitsml_id": "u:gallon_per_minute", + "name": "gallon (US) per minute", + "names": [ + { + "value": "gallon (US) per minute", + "lang": "en" + }, + { + "value": "gallon per minute", + "lang": "en" + } + ], + "symbols": { + "unicode": "gpm", + "ascii": "gal*min^-1", + "html": "gal/min", + "latex": "\\ensurement{\\mathrm{gal/min}}", + "id": "gal*min^-1", + "mathml": "gal/min" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu364" + }, + { + "type": "unitsml", + "id": "u:gallon_per_minute" + } + ], + "references": [], + "short": "gallon_per_minute", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq151", + "name": "volume flow rate", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd66", + "name": "volume flow rate", + "expression": "L3Β·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu175", + "name": "gallon (US)", + "symbol": "gal (US)" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu36", + "name": "minute", + "symbol": "β€²" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu365", + "unitsml_id": "u:milliliter", + "name": "milliliter", + "names": [ + { + "value": "milliliter", + "lang": "en" + } + ], + "symbols": { + "unicode": "ml", + "ascii": "ml", + "html": "ml", + "latex": "\\ensuremath{\\mathrm{ml}}", + "id": "ml", + "mathml": "ml" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu365" + }, + { + "type": "unitsml", + "id": "u:milliliter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MilliL" + } + ], + "short": "milliliter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu130", + "name": "litre", + "symbol": "L" + }, + "prefix": { + "id": "NISTp10_-3", + "name": "milli", + "symbol": "m" + } + } + ] + }, + { + "id": "NISTu366", + "unitsml_id": "u:mole_per_liter", + "name": "mole per liter", + "names": [ + { + "value": "mole per liter", + "lang": "en" + } + ], + "symbols": { + "unicode": "mol/L", + "ascii": "mol*L^-1", + "html": "mol/L", + "latex": "\\ensuremath{\\mathrm{mol/L}}", + "id": "mol*L^-1", + "mathml": "mol/L" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu366" + }, + { + "type": "unitsml", + "id": "u:mole_per_liter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MOL-PER-L" + } + ], + "short": "mole_per_liter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq55", + "name": "amount of substance concentration", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd34", + "name": "concentration", + "expression": "L-3Β·N", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu6", + "name": "mole", + "symbol": "mol" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu130", + "name": "litre", + "symbol": "L" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu37", + "unitsml_id": "u:hour", + "name": "hour", + "names": [ + { + "value": "hour", + "lang": "en" + }, + { + "value": "heure", + "lang": "fr" + } + ], + "symbols": { + "unicode": "h", + "ascii": "h", + "html": "h", + "latex": "\\ensuremath{\\mathrm{h}}", + "id": "h", + "mathml": "h" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu37" + }, + { + "type": "unitsml", + "id": "u:hour" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/hour" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:h" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/HR" + } + ], + "short": "hour", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq3", + "name": "time", + "type": "base" + } + ], + "dimension": { + "id": "NISTd3", + "name": "time", + "expression": "T", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu376", + "unitsml_id": "u:light_week", + "name": "light week", + "names": [ + { + "value": "light week", + "lang": "en" + } + ], + "symbols": { + "unicode": "l.w.", + "ascii": "l.w.", + "html": "l.w.", + "latex": "\\ensuremath{\\mathrm{l.w.}}", + "id": "l.w.", + "mathml": "l.w." + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu376" + }, + { + "type": "unitsml", + "id": "u:light_week" + } + ], + "references": [], + "short": "light_week", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu377", + "unitsml_id": "u:light_hour", + "name": "light hour", + "names": [ + { + "value": "light hour", + "lang": "en" + } + ], + "symbols": { + "unicode": "l.h.", + "ascii": "l.h.", + "html": "l.h.", + "latex": "\\ensuremath{\\mathrm{l.h.}}", + "id": "l.h.", + "mathml": "l.h." + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu377" + }, + { + "type": "unitsml", + "id": "u:light_hour" + } + ], + "references": [], + "short": "light_hour", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu378", + "unitsml_id": "u:light_minute", + "name": "light minute", + "names": [ + { + "value": "light minute", + "lang": "en" + } + ], + "symbols": { + "unicode": "l.m.", + "ascii": "l.m.", + "html": "l.m.", + "latex": "\\ensuremath{\\mathrm{l.m.}}", + "id": "l.m.", + "mathml": "l.m." + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu378" + }, + { + "type": "unitsml", + "id": "u:light_minute" + } + ], + "references": [], + "short": "light_minute", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu379", + "unitsml_id": "u:light_second", + "name": "light second", + "names": [ + { + "value": "light second", + "lang": "en" + } + ], + "symbols": { + "unicode": "l.s.", + "ascii": "l.s.", + "html": "l.s.", + "latex": "\\ensuremath{\\mathrm{l.s.}}", + "id": "l.s.", + "mathml": "l.s." + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu379" + }, + { + "type": "unitsml", + "id": "u:light_second" + } + ], + "references": [], + "short": "light_second", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu38", + "unitsml_id": "u:day", + "name": "day", + "names": [ + { + "value": "day", + "lang": "en" + }, + { + "value": "jour", + "lang": "fr" + } + ], + "symbols": { + "unicode": "d", + "ascii": "d", + "html": "d", + "latex": "\\ensuremath{\\mathrm{d}}", + "id": "d", + "mathml": "d" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu38" + }, + { + "type": "unitsml", + "id": "u:day" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/day" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:d" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/DAY" + } + ], + "short": "day", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq3", + "name": "time", + "type": "base" + } + ], + "dimension": { + "id": "NISTd3", + "name": "time", + "expression": "T", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu380", + "unitsml_id": "u:kilometer_per_liter", + "name": "kilometer per liter", + "names": [ + { + "value": "kilometer per liter", + "lang": "en" + } + ], + "symbols": { + "unicode": "km/L", + "ascii": "km/L", + "html": "km/L", + "latex": "\\ensuremath{\\mathrm{km/L}}", + "id": "km/L", + "mathml": "km/L" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu380" + }, + { + "type": "unitsml", + "id": "u:kilometer_per_liter" + } + ], + "references": [], + "short": "kilometer_per_liter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq198", + "name": "fuel efficiency", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd99", + "name": "fuel efficiency", + "expression": "L-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -1, + "unit": { + "id": "NISTu130", + "name": "litre", + "symbol": "L" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu381", + "unitsml_id": "u:decibel_milliwatt", + "name": "dBm", + "names": [ + { + "value": "dBm", + "lang": "en" + }, + { + "value": "decibel-milliwatt", + "lang": "en" + } + ], + "symbols": { + "unicode": "dB_mW", + "ascii": "dB_mW", + "html": "dBmW", + "latex": "\\ensuremath{\\mathrm{dB_{mW}}}", + "id": "dB_mW", + "mathml": "dBmW" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu381" + }, + { + "type": "unitsml", + "id": "u:decibel_milliwatt" + } + ], + "references": [], + "short": "decibel_milliwatt", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq90", + "name": "ratio logarithm (B)", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd67", + "name": "logarithmic ratio", + "expression": "1", + "components": [], + "dimensionless": true + }, + "scale": { + "id": "logarithmic_ratio", + "name": "logarithmic ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu382", + "unitsml_id": "u:relative_humidity", + "name": "relative humidity", + "names": [ + { + "value": "relative humidity", + "lang": "en" + }, + { + "value": "percent relative humidity", + "lang": "en" + } + ], + "symbols": { + "unicode": "%rh", + "ascii": "%rh", + "html": "%rh", + "latex": "\\ensuremath{\\mathrm{\\%rh}}", + "id": "rh_percent", + "mathml": "%rh" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu382" + }, + { + "type": "unitsml", + "id": "u:relative_humidity" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/PERCENT_RH" + } + ], + "short": "relative_humidity", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq199", + "name": "relative humidity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd80", + "name": "ratio quantity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu383", + "unitsml_id": "u:octave", + "name": "octave", + "names": [ + { + "value": "octave", + "lang": "en" + } + ], + "symbols": { + "unicode": "oct", + "ascii": "oct", + "html": "oct", + "latex": "\\ensuremath{\\mathrm{oct}}", + "id": "oct", + "mathml": "oct" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu383" + }, + { + "type": "unitsml", + "id": "u:octave" + } + ], + "references": [], + "short": "octave", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq200", + "name": "logarithmic frequency range", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd67", + "name": "logarithmic ratio", + "expression": "1", + "components": [], + "dimensionless": true + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu384", + "unitsml_id": "u:decade", + "name": "decade", + "names": [ + { + "value": "decade", + "lang": "en" + } + ], + "symbols": { + "unicode": "dec", + "ascii": "dec", + "html": "dec", + "latex": "\\ensuremath{\\mathrm{dec}}", + "id": "dec", + "mathml": "dec" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu384" + }, + { + "type": "unitsml", + "id": "u:decade" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/DECADE" + } + ], + "short": "decade", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq200", + "name": "logarithmic frequency range", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd67", + "name": "logarithmic ratio", + "expression": "1", + "components": [], + "dimensionless": true + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu385", + "unitsml_id": "u:erlang", + "name": "erlang", + "names": [ + { + "value": "erlang", + "lang": "en" + } + ], + "symbols": { + "unicode": "E", + "ascii": "E", + "html": "E", + "latex": "\\ensuremath{\\mathrm{E}}", + "id": "E_erlang", + "mathml": "E" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu385" + }, + { + "type": "unitsml", + "id": "u:erlang" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/ERLANG" + } + ], + "short": "erlang", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq201", + "name": "traffic intensity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd100", + "name": "traffic intensity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu386", + "unitsml_id": "u:baud", + "name": "baud", + "names": [ + { + "value": "baud", + "lang": "en" + } + ], + "symbols": { + "unicode": "Bd", + "ascii": "Bd", + "html": "Bd", + "latex": "\\ensuremath{\\mathrm{Bd}}", + "id": "Bd", + "mathml": "Bd" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu386" + }, + { + "type": "unitsml", + "id": "u:baud" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:infotech:code:Bd" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/BAUD" + } + ], + "short": "baud", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq202", + "name": "symbol rate", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd101", + "name": "symbol rate", + "expression": "T-1", + "components": [ + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "discrete", + "name": "discrete scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu387", + "unitsml_id": "u:shannon", + "name": "shannon", + "names": [ + { + "value": "shannon", + "lang": "en" + } + ], + "symbols": { + "unicode": "Sh", + "ascii": "Sh", + "html": "Sh", + "latex": "\\ensuremath{\\mathrm{Sh}}", + "id": "Sh", + "mathml": "Sh" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu387" + }, + { + "type": "unitsml", + "id": "u:shannon" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/SHANNON" + } + ], + "short": "shannon", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq203", + "name": "information content", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd102", + "name": "information content", + "expression": "1", + "components": [], + "dimensionless": true + }, + "scale": { + "id": "discrete", + "name": "discrete scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu388", + "unitsml_id": "u:hartley", + "name": "hartley", + "names": [ + { + "value": "hartley", + "lang": "en" + } + ], + "symbols": { + "unicode": "Hart", + "ascii": "Hart", + "html": "Hart", + "latex": "\\ensuremath{\\mathrm{Hart}}", + "id": "Hart", + "mathml": "Hart" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu388" + }, + { + "type": "unitsml", + "id": "u:hartley" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/HART" + } + ], + "short": "hartley", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq203", + "name": "information content", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd102", + "name": "information content", + "expression": "1", + "components": [], + "dimensionless": true + }, + "scale": { + "id": "discrete", + "name": "discrete scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu39", + "unitsml_id": "u:angstrom", + "name": "Γ₯ngstrΓΆm", + "names": [ + { + "value": "Γ₯ngstrΓΆm", + "lang": "en" + } + ], + "symbols": { + "unicode": "β„«", + "ascii": "Aring", + "html": "Å", + "latex": "\\ensuremath{\\mathrm{\\AA}}", + "id": "Aring", + "mathml": "Å" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu39" + }, + { + "type": "unitsml", + "id": "u:angstrom" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:misc:code:Ao" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/ANGSTROM" + } + ], + "short": "angstrom", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + }, + { + "id": "NISTq48", + "name": "distance", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu3e-1/1", + "unitsml_id": "u:second_to_the_power_minus_one", + "name": "second to the power minus one", + "names": [ + { + "value": "second to the power minus one", + "lang": "en" + } + ], + "symbols": { + "unicode": "s⁻¹", + "ascii": "s^-1", + "html": "s-1", + "latex": "\\ensuremath{\\mathrm{s^{-1}}}", + "id": "s^-1", + "mathml": "s1" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu3e-1/1" + }, + { + "type": "unitsml", + "id": "u:second_to_the_power_minus_one" + } + ], + "references": [], + "short": "second_to_the_power_minus_one", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq112", + "name": "rotational frequency", + "type": "derived" + }, + { + "id": "NISTq113", + "name": "angular frequency", + "type": "derived" + }, + { + "id": "NISTq120", + "name": "damping coefficient", + "type": "derived" + }, + { + "id": "NISTq189", + "name": "emission rate", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd24", + "name": "frequency", + "expression": "T-1", + "components": [ + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu4", + "unitsml_id": "u:ampere", + "name": "ampere", + "names": [ + { + "value": "ampere", + "lang": "en" + }, + { + "value": "ampΓ¨re", + "lang": "fr" + } + ], + "symbols": { + "unicode": "A", + "ascii": "A", + "html": "A", + "latex": "\\ensuremath{\\mathrm{A}}", + "id": "A", + "mathml": "A" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu4" + }, + { + "type": "unitsml", + "id": "u:ampere" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/ampere" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:A" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/A" + } + ], + "short": "ampere", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq4", + "name": "electric current", + "type": "base" + } + ], + "dimension": { + "id": "NISTd4", + "name": "electric current", + "expression": "I", + "components": [ + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_base", + "name": "SI base units", + "short": "si-base", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu4.u1e-1/1", + "unitsml_id": "u:ampere_per_meter", + "name": "ampere per meter", + "names": [ + { + "value": "ampere per meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "AΒ·m⁻¹", + "ascii": "A*m^-1", + "html": "A/m", + "latex": "\\ensuremath{\\mathrm{A/m}}", + "id": "A*m^-1", + "mathml": "A/m" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu4.u1e-1/1" + }, + { + "type": "unitsml", + "id": "u:ampere_per_meter" + } + ], + "references": [], + "short": "ampere_per_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq54", + "name": "magnetic field strength", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd33", + "name": "magnetic field strength", + "expression": "L-1Β·I", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu4", + "name": "ampere", + "symbol": "A" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu4.u1e-2/1", + "unitsml_id": "u:ampere_per_square_meter", + "name": "ampere per square meter", + "names": [ + { + "value": "ampere per square meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "AΒ·m⁻²", + "ascii": "A*m^-2", + "html": "A/m2", + "latex": "\\ensuremath{\\mathrm{A/m^2}}", + "id": "A*m^-2", + "mathml": "A/m2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu4.u1e-2/1" + }, + { + "type": "unitsml", + "id": "u:ampere_per_square_meter" + } + ], + "references": [], + "short": "ampere_per_square_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq53", + "name": "current density", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd32", + "name": "current density", + "expression": "L-2Β·I", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu4", + "name": "ampere", + "symbol": "A" + }, + "prefix": null + }, + { + "power": -2, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu400", + "unitsml_id": "u:parts_per_million", + "name": "parts per million", + "names": [ + { + "value": "parts per million", + "lang": "en" + } + ], + "symbols": { + "unicode": "ppm", + "ascii": "ppm", + "html": "ppm", + "latex": "\\ensuremath{\\mathrm{ppm}}", + "id": "ppm", + "mathml": "ppm" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu400" + }, + { + "type": "unitsml", + "id": "u:parts_per_million" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:dimless:code:[ppm]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/PPM" + } + ], + "short": "parts_per_million", + "root": false, + "composite": false, + "quantities": [ + { + "id": "NISTq186", + "name": "mass fraction", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd85", + "name": "mass mole fraction", + "expression": "1", + "components": [], + "dimensionless": true + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu401", + "unitsml_id": "u:var", + "name": "var", + "names": [ + { + "value": "var", + "lang": "en" + } + ], + "symbols": { + "unicode": "var", + "ascii": "var", + "html": "var", + "latex": "\\ensuremath{\\mathrm{var}}", + "id": "var", + "mathml": "var" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu401" + }, + { + "type": "unitsml", + "id": "u:var" + } + ], + "references": [], + "short": "var", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq187", + "name": "apparent power", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu16", + "name": "volt", + "symbol": "V" + }, + "prefix": null + }, + { + "power": 1, + "unit": { + "id": "NISTu4", + "name": "ampere", + "symbol": "A" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu42", + "unitsml_id": "u:are", + "name": "are", + "names": [ + { + "value": "are", + "lang": "en" + } + ], + "symbols": { + "unicode": "a", + "ascii": "a", + "html": "a", + "latex": "\\ensuremath{\\mathrm{a}}", + "id": "a", + "mathml": "a" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu42" + }, + { + "type": "unitsml", + "id": "u:are" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:ar" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/ARE" + } + ], + "short": "are", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq8", + "name": "area", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd8", + "name": "area", + "expression": "L2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_nist_acceptable", + "name": "non-SI but acceptable by NIST SP 811", + "short": "nonsi-nist-acceptable", + "acceptable": true + }, + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu43", + "unitsml_id": "u:barn", + "name": "barn", + "names": [ + { + "value": "barn", + "lang": "en" + } + ], + "symbols": { + "unicode": "b", + "ascii": "b", + "html": "b", + "latex": "\\ensuremath{\\mathrm{b}}", + "id": "barn", + "mathml": "b" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu43" + }, + { + "type": "unitsml", + "id": "u:barn" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:misc:code:b" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/BARN" + } + ], + "short": "barn", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq8", + "name": "area", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd8", + "name": "area", + "expression": "L2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu44", + "unitsml_id": "u:hectare", + "name": "hectare", + "names": [ + { + "value": "hectare", + "lang": "en" + }, + { + "value": "hectare", + "lang": "fr" + } + ], + "symbols": { + "unicode": "ha", + "ascii": "ha", + "html": "ha", + "latex": "\\ensuremath{\\mathrm{ha}}", + "id": "ha", + "mathml": "ha" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu44" + }, + { + "type": "unitsml", + "id": "u:hectare" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/hectare" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/HA" + } + ], + "short": "hectare", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq8", + "name": "area", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd8", + "name": "area", + "expression": "L2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu45", + "unitsml_id": "u:square_foot", + "name": "square foot", + "names": [ + { + "value": "square foot", + "lang": "en" + } + ], + "symbols": { + "unicode": "ftΒ²", + "ascii": "ft^2", + "html": "ft2", + "latex": "\\ensuremath{\\mathrm{ft^2}}", + "id": "ft^2", + "mathml": "ft2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu45" + }, + { + "type": "unitsml", + "id": "u:square_foot" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[sft_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FT2" + } + ], + "short": "square_foot", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq8", + "name": "area", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd8", + "name": "area", + "expression": "L2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 2, + "unit": { + "id": "NISTu78", + "name": "foot", + "symbol": "β€²" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu46", + "unitsml_id": "u:square_inch", + "name": "square inch", + "names": [ + { + "value": "square inch", + "lang": "en" + } + ], + "symbols": { + "unicode": "inΒ²", + "ascii": "in^2", + "html": "in2", + "latex": "\\ensuremath{\\mathrm{in^2}}", + "id": "in^2", + "mathml": "in2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu46" + }, + { + "type": "unitsml", + "id": "u:square_inch" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[sin_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/IN2" + } + ], + "short": "square_inch", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq8", + "name": "area", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd8", + "name": "area", + "expression": "L2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 2, + "unit": { + "id": "NISTu8", + "name": "inch", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu47", + "unitsml_id": "u:abampere", + "name": "abampere", + "names": [ + { + "value": "abampere", + "lang": "en" + }, + { + "value": "EMU of current", + "lang": "en" + } + ], + "symbols": { + "unicode": "abA", + "ascii": "abA", + "html": "abA", + "latex": "\\ensuremath{\\mathrm{abA}}", + "id": "abA", + "mathml": "abA" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu47" + }, + { + "type": "unitsml", + "id": "u:abampere" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/A_Ab" + } + ], + "short": "abampere", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq4", + "name": "electric current", + "type": "base" + } + ], + "dimension": { + "id": "NISTd4", + "name": "electric current", + "expression": "I", + "components": [ + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu48", + "unitsml_id": "u:abcoulomb", + "name": "abcoulomb", + "names": [ + { + "value": "abcoulomb", + "lang": "en" + } + ], + "symbols": { + "unicode": "abC", + "ascii": "abC", + "html": "abC", + "latex": "\\ensuremath{\\mathrm{abC}}", + "id": "abC", + "mathml": "abC" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu48" + }, + { + "type": "unitsml", + "id": "u:abcoulomb" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/C_Ab" + } + ], + "short": "abcoulomb", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq22", + "name": "electric charge", + "type": "derived" + }, + { + "id": "NISTq23", + "name": "amount of electricity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd17", + "name": "electric charge", + "expression": "TΒ·I", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu49", + "unitsml_id": "u:abfarad", + "name": "abfarad", + "names": [ + { + "value": "abfarad", + "lang": "en" + }, + { + "value": "EMU of capacitance", + "lang": "en" + } + ], + "symbols": { + "unicode": "abF", + "ascii": "abF", + "html": "abF", + "latex": "\\ensuremath{\\mathrm{abF}}", + "id": "abF", + "mathml": "abF" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu49" + }, + { + "type": "unitsml", + "id": "u:abfarad" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FARAD_Ab" + } + ], + "short": "abfarad", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq27", + "name": "capacitance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd19", + "name": "capacitance", + "expression": "L-2Β·M-1Β·T4Β·I2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 4 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu5", + "unitsml_id": "u:kelvin", + "name": "kelvin", + "names": [ + { + "value": "kelvin", + "lang": "en" + }, + { + "value": "kelvin", + "lang": "fr" + } + ], + "symbols": { + "unicode": "Β°K", + "ascii": "degK", + "html": "°K", + "latex": "\\ensuremath{\\mathrm{^{\\circ}K}}", + "id": "degK", + "mathml": "°K" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu5" + }, + { + "type": "unitsml", + "id": "u:kelvin" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/kelvin" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:base-unit:code:K" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/K" + } + ], + "short": "kelvin", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq193", + "name": "ITS-90 temperature (K)", + "type": "derived" + }, + { + "id": "NISTq196", + "name": "PLTS-2000 temperature (K)", + "type": "derived" + }, + { + "id": "NISTq5", + "name": "thermodynamic temperature", + "type": "base" + } + ], + "dimension": { + "id": "NISTd5", + "name": "temperature", + "expression": "Theta", + "components": [ + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_base", + "name": "SI base units", + "short": "si-base", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu50", + "unitsml_id": "u:abhenry", + "name": "abhenry", + "names": [ + { + "value": "abhenry", + "lang": "en" + }, + { + "value": "EMU of inductance", + "lang": "en" + } + ], + "symbols": { + "unicode": "abH", + "ascii": "abH", + "html": "abH", + "latex": "\\ensuremath{\\mathrm{abH}}", + "id": "abH", + "mathml": "abH" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu50" + }, + { + "type": "unitsml", + "id": "u:abhenry" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/H_Ab" + } + ], + "short": "abhenry", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq32", + "name": "inductance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd23", + "name": "inductance", + "expression": "L2Β·MΒ·T-2Β·I-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu51", + "unitsml_id": "u:abmho", + "name": "abmho", + "names": [ + { + "value": "abmho", + "lang": "en" + } + ], + "symbols": { + "unicode": "(abΞ©)⁻¹", + "ascii": "abS", + "html": "(abΩ)-1", + "latex": "\\ensuremath{\\mathrm{(ab\\Omega)^{-1}}", + "id": "abS", + "mathml": "(abΩ)-1" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu51" + }, + { + "type": "unitsml", + "id": "u:abmho" + } + ], + "references": [], + "short": "abmho", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq29", + "name": "electric conductance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd21", + "name": "electric conductance", + "expression": "L-2Β·M-1Β·T3Β·I2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu52", + "unitsml_id": "u:abohm", + "name": "abohm", + "names": [ + { + "value": "abohm", + "lang": "en" + }, + { + "value": "EMU of resistance", + "lang": "en" + } + ], + "symbols": { + "unicode": "abΞ©", + "ascii": "abohm", + "html": "abΩ", + "latex": "\\ensuremath{\\mathrm{ab\\Omega}}", + "id": "abohm", + "mathml": "abΩ" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu52" + }, + { + "type": "unitsml", + "id": "u:abohm" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/OHM_Ab" + } + ], + "short": "abohm", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq28", + "name": "electric resistance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd20", + "name": "electric resistance", + "expression": "L2Β·MΒ·T-3Β·I-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu53", + "unitsml_id": "u:abvolt", + "name": "abvolt", + "names": [ + { + "value": "abvolt", + "lang": "en" + }, + { + "value": "EMU of electric potential", + "lang": "en" + } + ], + "symbols": { + "unicode": "abV", + "ascii": "abV", + "html": "abV", + "latex": "\\ensuremath{\\mathrm{abV}}", + "id": "abV", + "mathml": "abV" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu53" + }, + { + "type": "unitsml", + "id": "u:abvolt" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/V_Ab" + } + ], + "short": "abvolt", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq24", + "name": "electric potential difference", + "type": "derived" + }, + { + "id": "NISTq25", + "name": "potential difference", + "type": "derived" + }, + { + "id": "NISTq26", + "name": "electromotive force", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd18", + "name": "electric potential difference", + "expression": "L2Β·MΒ·T-3Β·I-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu54", + "unitsml_id": "u:ampere_hour", + "name": "ampere hour", + "names": [ + { + "value": "ampere hour", + "lang": "en" + } + ], + "symbols": { + "unicode": "AΒ·h", + "ascii": "A*h", + "html": "A · h", + "latex": "\\ensuremath{\\mathrm{A\\cdot h}}", + "id": "A*h", + "mathml": "A·h" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu54" + }, + { + "type": "unitsml", + "id": "u:ampere_hour" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/A-HR" + } + ], + "short": "ampere_hour", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq22", + "name": "electric charge", + "type": "derived" + }, + { + "id": "NISTq23", + "name": "amount of electricity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd17", + "name": "electric charge", + "expression": "TΒ·I", + "components": [ + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu4", + "name": "ampere", + "symbol": "A" + }, + "prefix": null + }, + { + "power": 1, + "unit": { + "id": "NISTu37", + "name": "hour", + "symbol": "h" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu55", + "unitsml_id": "u:biot", + "name": "biot", + "names": [ + { + "value": "biot", + "lang": "en" + } + ], + "symbols": { + "unicode": "Bi", + "ascii": "Bi", + "html": "Bi", + "latex": "\\ensuremath{\\mathrm{Bi}}", + "id": "Bi", + "mathml": "Bi" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu55" + }, + { + "type": "unitsml", + "id": "u:biot" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:cgs:code:Bi" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/BIOT" + } + ], + "short": "biot", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq4", + "name": "electric current", + "type": "base" + } + ], + "dimension": { + "id": "NISTd4", + "name": "electric current", + "expression": "I", + "components": [ + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu47", + "name": "abampere", + "symbol": "abA" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu57", + "unitsml_id": "u:us_survey_acre_foot", + "name": "acre-foot (based on US survey foot)", + "names": [ + { + "value": "acre-foot (based on US survey foot)", + "lang": "en" + }, + { + "value": "acre-foot", + "lang": "en" + } + ], + "symbols": { + "unicode": "acΒ·ft", + "ascii": "ac*ft", + "html": "ac · ft", + "latex": "\\ensuremath{\\mathrm{ac\\cdot ft}}", + "id": "ac*ft", + "mathml": "ac·ft" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu57" + }, + { + "type": "unitsml", + "id": "u:us_survey_acre_foot" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/AC-FT" + } + ], + "short": "us_survey_acre_foot", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq10", + "name": "volume", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd10", + "name": "volume", + "expression": "L3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu317", + "name": "acre (based on US survey foot)", + "symbol": "ac" + }, + "prefix": null + }, + { + "power": 1, + "unit": { + "id": "NISTu78", + "name": "foot", + "symbol": "β€²" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu58", + "unitsml_id": "u:maxwell", + "name": "maxwell", + "names": [ + { + "value": "maxwell", + "lang": "en" + } + ], + "symbols": { + "unicode": "Mx", + "ascii": "Mx", + "html": "Mx", + "latex": "\\ensuremath{\\mathrm{Mx}}", + "id": "Mx", + "mathml": "Mx" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu58" + }, + { + "type": "unitsml", + "id": "u:maxwell" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:cgs:code:Mx" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MX" + } + ], + "short": "maxwell", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq30", + "name": "magnetic flux", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd22", + "name": "magnetic flux", + "expression": "L2Β·MΒ·T-2Β·I-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu5e-1/1", + "unitsml_id": "u:kelvin_to_the_power_minus_one", + "name": "kelvin to the power minus one", + "names": [ + { + "value": "kelvin to the power minus one", + "lang": "en" + } + ], + "symbols": { + "unicode": "K⁻¹", + "ascii": "K^-1", + "html": "K-1", + "latex": "\\ensuremath{\\mathrm{K^{-1}}}", + "id": "K^-1", + "mathml": "K1" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu5e-1/1" + }, + { + "type": "unitsml", + "id": "u:kelvin_to_the_power_minus_one" + } + ], + "references": [], + "short": "kelvin_to_the_power_minus_one", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq156", + "name": "linear expansion coefficient", + "type": "derived" + }, + { + "id": "NISTq157", + "name": "cubic expansion coefficient", + "type": "derived" + }, + { + "id": "NISTq158", + "name": "relative pressure coefficient", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd68", + "name": "linear expansion coefficient", + "expression": "Theta-1", + "components": [ + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": -1, + "unit": { + "id": "NISTu5", + "name": "kelvin", + "symbol": "Β°K" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu6", + "unitsml_id": "u:mole", + "name": "mole", + "names": [ + { + "value": "mole", + "lang": "en" + }, + { + "value": "mole", + "lang": "fr" + } + ], + "symbols": { + "unicode": "mol", + "ascii": "mol", + "html": "mol", + "latex": "\\ensuremath{\\mathrm{mol}}", + "id": "mol", + "mathml": "mol" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu6" + }, + { + "type": "unitsml", + "id": "u:mole" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/mole" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:si:code:mol" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MOL" + } + ], + "short": "mole", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq6", + "name": "amount of substance", + "type": "base" + } + ], + "dimension": { + "id": "NISTd6", + "name": "substance amount", + "expression": "N", + "components": [ + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_base", + "name": "SI base units", + "short": "si-base", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu6.u1e-3/1", + "unitsml_id": "u:mole_per_cubic_meter", + "name": "mole per cubic meter", + "names": [ + { + "value": "mole per cubic meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "molΒ·m⁻³", + "ascii": "mol*m^-3", + "html": "mol/m3", + "latex": "\\ensuremath{\\mathrm{mol/m^3}}", + "id": "mol*m^-3", + "mathml": "mol/m3" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu6.u1e-3/1" + }, + { + "type": "unitsml", + "id": "u:mole_per_cubic_meter" + } + ], + "references": [], + "short": "mole_per_cubic_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq55", + "name": "amount of substance concentration", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd34", + "name": "concentration", + "expression": "L-3Β·N", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu6", + "name": "mole", + "symbol": "mol" + }, + "prefix": null + }, + { + "power": -3, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu6.u27p10'3e-1/1", + "unitsml_id": "u:mole_per_kilogram", + "name": "mole per kilogram", + "names": [ + { + "value": "mole per kilogram", + "lang": "en" + } + ], + "symbols": { + "unicode": "mol/kg", + "ascii": "mol*kg^-1", + "html": "mol/kg", + "latex": "\\ensuremath{\\mathrm{mol/kg}}", + "id": "mol*kg^-1", + "mathml": "mol/kg" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu6.u27p10'3e-1/1" + }, + { + "type": "unitsml", + "id": "u:mole_per_kilogram" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MOL-PER-KiloGM" + } + ], + "short": "mole_per_kilogram", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq179", + "name": "molality of solute B", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd79", + "name": "molality", + "expression": "MΒ·N", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu6", + "name": "mole", + "symbol": "mol" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + } + ] + }, + { + "id": "NISTu60", + "unitsml_id": "u:table_calorie", + "name": "I.T. calorie", + "names": [ + { + "value": "I.T. calorie", + "lang": "en" + }, + { + "value": "calorie_IT", + "lang": "en" + }, + { + "value": "calorie", + "lang": "en" + } + ], + "symbols": { + "unicode": "cal_IT", + "ascii": "cal_IT", + "html": "calIT", + "latex": "\\ensuremath{\\mathrm{cal_{IT}}}", + "id": "cal_IT", + "mathml": "calIT" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu60" + }, + { + "type": "unitsml", + "id": "u:table_calorie" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:heat:code:cal" + } + ], + "short": "table_calorie", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq17", + "name": "energy", + "type": "derived" + }, + { + "id": "NISTq18", + "name": "work", + "type": "derived" + }, + { + "id": "NISTq182", + "name": "kinetic energy", + "type": "derived" + }, + { + "id": "NISTq183", + "name": "mechanical energy", + "type": "derived" + }, + { + "id": "NISTq19", + "name": "amount of heat", + "type": "derived" + }, + { + "id": "NISTq77", + "name": "potential energy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu61", + "unitsml_id": "u:one", + "name": "one", + "names": [ + { + "value": "one", + "lang": "en" + } + ], + "symbols": { + "unicode": "1", + "ascii": "1", + "html": "1", + "latex": "\\ensuremath{\\mathrm{1}}", + "id": "1", + "mathml": "1" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu61" + }, + { + "type": "unitsml", + "id": "u:one" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/ONE" + } + ], + "short": "one", + "root": false, + "composite": false, + "quantities": [ + { + "id": "NISTq111", + "name": "rotation", + "type": "derived" + }, + { + "id": "NISTq121", + "name": "ratio logarithm (Np)", + "type": "derived" + }, + { + "id": "NISTq125", + "name": "relative mass density", + "type": "derived" + }, + { + "id": "NISTq136", + "name": "linear strain", + "type": "derived" + }, + { + "id": "NISTq137", + "name": "shear strain", + "type": "derived" + }, + { + "id": "NISTq138", + "name": "volume strain", + "type": "derived" + }, + { + "id": "NISTq140", + "name": "Poisson number", + "type": "derived" + }, + { + "id": "NISTq147", + "name": "dynamic friction factor", + "type": "derived" + }, + { + "id": "NISTq188", + "name": "nil", + "type": "derived" + }, + { + "id": "NISTq93", + "name": "refractive index", + "type": "derived" + }, + { + "id": "NISTq94", + "name": "relative permeability", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd80", + "name": "ratio quantity", + "expression": "1", + "components": [], + "dimensionless": true + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu62", + "unitsml_id": "u:erg", + "name": "erg", + "names": [ + { + "value": "erg", + "lang": "en" + } + ], + "symbols": { + "unicode": "erg", + "ascii": "erg", + "html": "erg", + "latex": "\\ensuremath{\\mathrm{erg}}", + "id": "erg", + "mathml": "erg" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu62" + }, + { + "type": "unitsml", + "id": "u:erg" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:cgs:code:erg" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/ERG" + } + ], + "short": "erg", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq17", + "name": "energy", + "type": "derived" + }, + { + "id": "NISTq18", + "name": "work", + "type": "derived" + }, + { + "id": "NISTq182", + "name": "kinetic energy", + "type": "derived" + }, + { + "id": "NISTq183", + "name": "mechanical energy", + "type": "derived" + }, + { + "id": "NISTq19", + "name": "amount of heat", + "type": "derived" + }, + { + "id": "NISTq77", + "name": "potential energy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu63", + "unitsml_id": "u:table_kg_calorie", + "name": "kilocalorie_IT", + "names": [ + { + "value": "kilocalorie_IT", + "lang": "en" + } + ], + "symbols": { + "unicode": "kcal_IT", + "ascii": "kcal_IT", + "html": "kcalIT", + "latex": "\\ensuremath{\\mathrm{kcal_{IT}}}", + "id": "kcal_IT", + "mathml": "kcalIT" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu63" + }, + { + "type": "unitsml", + "id": "u:table_kg_calorie" + } + ], + "references": [], + "short": "table_kg_calorie", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq17", + "name": "energy", + "type": "derived" + }, + { + "id": "NISTq18", + "name": "work", + "type": "derived" + }, + { + "id": "NISTq182", + "name": "kinetic energy", + "type": "derived" + }, + { + "id": "NISTq183", + "name": "mechanical energy", + "type": "derived" + }, + { + "id": "NISTq19", + "name": "amount of heat", + "type": "derived" + }, + { + "id": "NISTq77", + "name": "potential energy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu64", + "unitsml_id": "u:thermo_kg_calorie", + "name": "kilocalorie_th", + "names": [ + { + "value": "kilocalorie_th", + "lang": "en" + } + ], + "symbols": { + "unicode": "kcal_th", + "ascii": "kcal_th", + "html": "kcalth", + "latex": "\\ensuremath{\\mathrm{kcal_{th}}}", + "id": "kcal_th", + "mathml": "kcalth" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu64" + }, + { + "type": "unitsml", + "id": "u:thermo_kg_calorie" + } + ], + "references": [], + "short": "thermo_kg_calorie", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq17", + "name": "energy", + "type": "derived" + }, + { + "id": "NISTq18", + "name": "work", + "type": "derived" + }, + { + "id": "NISTq182", + "name": "kinetic energy", + "type": "derived" + }, + { + "id": "NISTq183", + "name": "mechanical energy", + "type": "derived" + }, + { + "id": "NISTq19", + "name": "amount of heat", + "type": "derived" + }, + { + "id": "NISTq77", + "name": "potential energy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu65", + "unitsml_id": "u:kilowatt_hour", + "name": "kilowatt hour", + "names": [ + { + "value": "kilowatt hour", + "lang": "en" + } + ], + "symbols": { + "unicode": "kWΒ·h", + "ascii": "kW*h", + "html": "kW · h", + "latex": "\\ensuremath{\\mathrm{kW\\cdot h}}", + "id": "kW*h", + "mathml": "kW·h" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu65" + }, + { + "type": "unitsml", + "id": "u:kilowatt_hour" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/KiloW-HR" + } + ], + "short": "kilowatt_hour", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq17", + "name": "energy", + "type": "derived" + }, + { + "id": "NISTq18", + "name": "work", + "type": "derived" + }, + { + "id": "NISTq182", + "name": "kinetic energy", + "type": "derived" + }, + { + "id": "NISTq183", + "name": "mechanical energy", + "type": "derived" + }, + { + "id": "NISTq19", + "name": "amount of heat", + "type": "derived" + }, + { + "id": "NISTq77", + "name": "potential energy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu14", + "name": "watt", + "symbol": "W" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": 1, + "unit": { + "id": "NISTu37", + "name": "hour", + "symbol": "h" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu69", + "unitsml_id": "u:watt_hour", + "name": "watt hour", + "names": [ + { + "value": "watt hour", + "lang": "en" + } + ], + "symbols": { + "unicode": "WΒ·h", + "ascii": "W*h", + "html": "W · h", + "latex": "\\ensuremath{\\mathrm{W\\cdot h}}", + "id": "W*h", + "mathml": "W·h" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu69" + }, + { + "type": "unitsml", + "id": "u:watt_hour" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/W-HR" + } + ], + "short": "watt_hour", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq17", + "name": "energy", + "type": "derived" + }, + { + "id": "NISTq18", + "name": "work", + "type": "derived" + }, + { + "id": "NISTq182", + "name": "kinetic energy", + "type": "derived" + }, + { + "id": "NISTq183", + "name": "mechanical energy", + "type": "derived" + }, + { + "id": "NISTq19", + "name": "amount of heat", + "type": "derived" + }, + { + "id": "NISTq77", + "name": "potential energy", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd15", + "name": "energy", + "expression": "L2Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu14", + "name": "watt", + "symbol": "W" + }, + "prefix": null + }, + { + "power": 1, + "unit": { + "id": "NISTu37", + "name": "hour", + "symbol": "h" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu7", + "unitsml_id": "u:candela", + "name": "candela", + "names": [ + { + "value": "candela", + "lang": "en" + }, + { + "value": "candela", + "lang": "fr" + } + ], + "symbols": { + "unicode": "cd", + "ascii": "cd", + "html": "cd", + "latex": "\\ensuremath{\\mathrm{cd}}", + "id": "cd", + "mathml": "cd" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu7" + }, + { + "type": "unitsml", + "id": "u:candela" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/candela" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:base-unit:code:cd" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/CD" + } + ], + "short": "candela", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq7", + "name": "luminous intensity", + "type": "base" + } + ], + "dimension": { + "id": "NISTd7", + "name": "luminous intensity", + "expression": "J", + "components": [ + { + "key": "luminous_intensity", + "symbol": "J", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_base", + "name": "SI base units", + "short": "si-base", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu7.u1e-2/1", + "unitsml_id": "u:candela_per_square_meter", + "name": "candela per square meter", + "names": [ + { + "value": "candela per square meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "cdΒ·m⁻²", + "ascii": "cd*m^-2", + "html": "cd/m2", + "latex": "\\ensuremath{\\mathrm{cd/m^2}}", + "id": "cd*m^-2", + "mathml": "cd/m2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu7.u1e-2/1" + }, + { + "type": "unitsml", + "id": "u:candela_per_square_meter" + } + ], + "references": [], + "short": "candela_per_square_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq56", + "name": "luminance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd27", + "name": "illuminance", + "expression": "L-2Β·J", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "luminous_intensity", + "symbol": "J", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu7", + "name": "candela", + "symbol": "cd" + }, + "prefix": null + }, + { + "power": -2, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu71", + "unitsml_id": "u:dyne", + "name": "dyne", + "names": [ + { + "value": "dyne", + "lang": "en" + } + ], + "symbols": { + "unicode": "dyn", + "ascii": "dyn", + "html": "dyn", + "latex": "\\ensuremath{\\mathrm{dyn}}", + "id": "dyn", + "mathml": "dyn" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu71" + }, + { + "type": "unitsml", + "id": "u:dyne" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:cgs:code:dyn" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/DYN" + } + ], + "short": "dyne", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq13", + "name": "force", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd12", + "name": "force", + "expression": "LΒ·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu72", + "unitsml_id": "u:kilogram_force", + "name": "kilogram-force", + "names": [ + { + "value": "kilogram-force", + "lang": "en" + } + ], + "symbols": { + "unicode": "kgf", + "ascii": "kgf", + "html": "kgf", + "latex": "\\ensuremath{\\mathrm{kgf}}", + "id": "kgf", + "mathml": "kgf" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu72" + }, + { + "type": "unitsml", + "id": "u:kilogram_force" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/KiloGM_F" + } + ], + "short": "kilogram_force", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq13", + "name": "force", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd12", + "name": "force", + "expression": "LΒ·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + } + ] + }, + { + "id": "NISTu73", + "unitsml_id": "u:kilopond", + "name": "kilopond", + "names": [ + { + "value": "kilopond", + "lang": "en" + } + ], + "symbols": { + "unicode": "kp", + "ascii": "kp", + "html": "kp", + "latex": "\\ensuremath{\\mathrm{kp}}", + "id": "kp", + "mathml": "kp" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu73" + }, + { + "type": "unitsml", + "id": "u:kilopond" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/KiloPOND" + } + ], + "short": "kilopond", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq13", + "name": "force", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd12", + "name": "force", + "expression": "LΒ·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu74", + "unitsml_id": "u:calorie_th_per_second", + "name": "calorie_th per second", + "names": [ + { + "value": "calorie_th per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "cal_th/s", + "ascii": "cal_th*s^-1", + "html": "calth/s", + "latex": "\\ensuremath{\\mathrm{cal_{th}}}", + "id": "cal_th*s^-1", + "mathml": "calth/s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu74" + }, + { + "type": "unitsml", + "id": "u:calorie_th_per_second" + } + ], + "references": [], + "short": "calorie_th_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq20", + "name": "power", + "type": "derived" + }, + { + "id": "NISTq21", + "name": "radiant flux", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu227", + "name": "thermochemical calorie", + "symbol": "cal" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu75", + "unitsml_id": "u:kilocalorie_th_per_second", + "name": "kilocalorie_th per second", + "names": [ + { + "value": "kilocalorie_th per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "kcal_th/s", + "ascii": "kcal_th*s^-1", + "html": "kcalth/s", + "latex": "\\ensuremath{\\mathrm{kcal_{th}}}", + "id": "kcal_th*s^-1", + "mathml": "kcalth/s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu75" + }, + { + "type": "unitsml", + "id": "u:kilocalorie_th_per_second" + } + ], + "references": [], + "short": "kilocalorie_th_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq20", + "name": "power", + "type": "derived" + }, + { + "id": "NISTq21", + "name": "radiant flux", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu227", + "name": "thermochemical calorie", + "symbol": "cal" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu78", + "unitsml_id": "u:foot", + "name": "foot", + "names": [ + { + "value": "foot", + "lang": "en" + } + ], + "symbols": { + "unicode": "β€²", + "ascii": "'", + "html": "′", + "latex": "\\ensuremath{\\mathrm{'}}", + "id": "prime_ft", + "mathml": "" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu78" + }, + { + "type": "unitsml", + "id": "u:foot" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[ft_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/FT" + } + ], + "short": "foot", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + }, + { + "id": "NISTq48", + "name": "distance", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu8", + "unitsml_id": "u:inch", + "name": "inch", + "names": [ + { + "value": "inch", + "lang": "en" + } + ], + "symbols": { + "unicode": "β€³", + "ascii": "\"", + "html": "″", + "latex": "\\ensuremath{\\mathrm{''}}", + "id": "dprime_in", + "mathml": "" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu8" + }, + { + "type": "unitsml", + "id": "u:inch" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[in_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/IN" + } + ], + "short": "inch", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + }, + { + "id": "NISTq48", + "name": "distance", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu83", + "unitsml_id": "u:mile", + "name": "mile", + "names": [ + { + "value": "mile", + "lang": "en" + } + ], + "symbols": { + "unicode": "mi", + "ascii": "mi", + "html": "mi", + "latex": "\\ensuremath{\\mathrm{mi}}", + "id": "mi", + "mathml": "mi" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu83" + }, + { + "type": "unitsml", + "id": "u:mile" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[mi_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/MI" + } + ], + "short": "mile", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + }, + { + "id": "NISTq48", + "name": "distance", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu84", + "unitsml_id": "u:yard", + "name": "yard", + "names": [ + { + "value": "yard", + "lang": "en" + } + ], + "symbols": { + "unicode": "yd", + "ascii": "yd", + "html": "yd", + "latex": "\\ensuremath{\\mathrm{yd}}", + "id": "yd", + "mathml": "yd" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu84" + }, + { + "type": "unitsml", + "id": "u:yard" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:intcust:code:[yd_i]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/YD" + } + ], + "short": "yard", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq1", + "name": "length", + "type": "base" + }, + { + "id": "NISTq48", + "name": "distance", + "type": "base" + } + ], + "dimension": { + "id": "NISTd1", + "name": "length", + "expression": "L", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu85", + "unitsml_id": "u:phot", + "name": "phot", + "names": [ + { + "value": "phot", + "lang": "en" + } + ], + "symbols": { + "unicode": "ph", + "ascii": "ph", + "html": "ph", + "latex": "\\ensuremath{\\mathrm{ph}}", + "id": "ph", + "mathml": "ph" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu85" + }, + { + "type": "unitsml", + "id": "u:phot" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:cgs:code:ph" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/PHOT" + } + ], + "short": "phot", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq47", + "name": "illuminance", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd27", + "name": "illuminance", + "expression": "L-2Β·J", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "luminous_intensity", + "symbol": "J", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu86", + "unitsml_id": "u:grain", + "name": "grain (troy or apothecary)", + "names": [ + { + "value": "grain (troy or apothecary)", + "lang": "en" + }, + { + "value": "troy grain", + "lang": "en" + }, + { + "value": "apothecary grain", + "lang": "en" + }, + { + "value": "grain", + "lang": "en" + } + ], + "symbols": { + "unicode": "gr", + "ascii": "gr", + "html": "gr", + "latex": "\\ensuremath{\\mathrm{gr}}", + "id": "gr", + "mathml": "gr" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu86" + }, + { + "type": "unitsml", + "id": "u:grain" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:avoirdupois:code:[gr]" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/GRAIN" + } + ], + "short": "grain", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu88", + "unitsml_id": "u:metric_ton", + "name": "tonne", + "names": [ + { + "value": "tonne", + "lang": "en" + }, + { + "value": "metric ton", + "lang": "en" + }, + { + "value": "ton", + "lang": "en" + }, + { + "value": "tonne", + "lang": "fr" + } + ], + "symbols": { + "unicode": "t", + "ascii": "t", + "html": "t", + "latex": "\\ensuremath{\\mathrm{t}}", + "id": "t", + "mathml": "t" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu88" + }, + { + "type": "unitsml", + "id": "u:metric_ton" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/tonne" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:t" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/TON_Metric" + } + ], + "short": "metric_ton", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq2", + "name": "mass", + "type": "base" + } + ], + "dimension": { + "id": "NISTd2", + "name": "mass", + "expression": "M", + "components": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu89", + "unitsml_id": "u:erg_per_second", + "name": "erg per second", + "names": [ + { + "value": "erg per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "ergΒ·s⁻¹", + "ascii": "erg*s^-1", + "html": "erg/s", + "latex": "\\ensuremath{\\mathrm{erg/s}}", + "id": "erg*s^-1", + "mathml": "erg/s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu89" + }, + { + "type": "unitsml", + "id": "u:erg_per_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/ERG-PER-SEC" + } + ], + "short": "erg_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq20", + "name": "power", + "type": "derived" + }, + { + "id": "NISTq21", + "name": "radiant flux", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd16", + "name": "power", + "expression": "L2Β·MΒ·T-3", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu62", + "name": "erg", + "symbol": "erg" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu9", + "unitsml_id": "u:radian", + "name": "radian", + "names": [ + { + "value": "radian", + "lang": "en" + }, + { + "value": "radian", + "lang": "fr" + } + ], + "symbols": { + "unicode": "rad", + "ascii": "rad", + "html": "rad", + "latex": "\\ensuremath{\\mathrm{rad}}", + "id": "rad", + "mathml": "rad" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu9" + }, + { + "type": "unitsml", + "id": "u:radian" + } + ], + "references": [ + { + "type": "normative", + "authority": "si-digital-framework", + "uri": "http://si-digital-framework.org/SI/units/radian" + }, + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:base-unit:code:rad" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/RAD" + } + ], + "short": "radian", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq195", + "name": "phase", + "type": "derived" + }, + { + "id": "NISTq9", + "name": "plane angle", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd98", + "name": "phase", + "expression": "1", + "components": [ + { + "key": "plane_angle", + "symbol": "phi", + "power": 1 + } + ], + "dimensionless": true + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_special", + "name": "SI-derived units special", + "short": "si-derived-special", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu9.u1e-1/1", + "unitsml_id": "u:radian_per_meter", + "name": "radian per meter", + "names": [ + { + "value": "radian per meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "rad/m", + "ascii": "rad*m^-1", + "html": "rad/m", + "latex": "\\ensuremath{\\mathrm{rad/m}}", + "id": "rad*m^-1", + "mathml": "rad/m" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu9.u1e-1/1" + }, + { + "type": "unitsml", + "id": "u:radian_per_meter" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/RAD-PER-M" + } + ], + "short": "radian_per_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq115", + "name": "angular wavenumber", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd29", + "name": "wavenumber", + "expression": "L-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu9", + "name": "radian", + "symbol": "rad" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu9.u3e-1/1", + "unitsml_id": "u:radian_per_second", + "name": "radian per second", + "names": [ + { + "value": "radian per second", + "lang": "en" + } + ], + "symbols": { + "unicode": "rad/s", + "ascii": "rad*s^-1", + "html": "rad/s", + "latex": "\\ensuremath{\\mathrm{rad/s}}", + "id": "rad*s^-1", + "mathml": "rad/s" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu9.u3e-1/1" + }, + { + "type": "unitsml", + "id": "u:radian_per_second" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/RAD-PER-SEC" + } + ], + "short": "radian_per_second", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq113", + "name": "angular frequency", + "type": "derived" + }, + { + "id": "NISTq57", + "name": "angular velocity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd24", + "name": "frequency", + "expression": "T-1", + "components": [ + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu9", + "name": "radian", + "symbol": "rad" + }, + "prefix": null + }, + { + "power": -1, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu9.u3e-2/1", + "unitsml_id": "u:radian_per_second_squared", + "name": "radian per second squared", + "names": [ + { + "value": "radian per second squared", + "lang": "en" + } + ], + "symbols": { + "unicode": "rad/sΒ²", + "ascii": "rad*s^-2", + "html": "rad/s2", + "latex": "\\ensuremath{\\mathrm{rad/s^2}}", + "id": "rad*s^-2", + "mathml": "rad/s2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu9.u3e-2/1" + }, + { + "type": "unitsml", + "id": "u:radian_per_second_squared" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/RAD-PER-SEC2" + } + ], + "short": "radian_per_second_squared", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq58", + "name": "angular acceleration", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd35", + "name": "angular acceleration", + "expression": "T-2", + "components": [ + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "SI_derived_non-special", + "name": "SI-derived units non-special", + "short": "si-derived-nonspecial", + "acceptable": true + }, + { + "id": "SI_compatible", + "name": "Units compatible with SI", + "short": "si-compatible", + "acceptable": true + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu9", + "name": "radian", + "symbol": "rad" + }, + "prefix": null + }, + { + "power": -2, + "unit": { + "id": "NISTu3", + "name": "second", + "symbol": "β€³" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu91", + "unitsml_id": "u:bar", + "name": "bar", + "names": [ + { + "value": "bar", + "lang": "en" + } + ], + "symbols": { + "unicode": "bar", + "ascii": "bar", + "html": "bar", + "latex": "\\ensuremath{\\mathrm{bar}}", + "id": "bar", + "mathml": "bar" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu91" + }, + { + "type": "unitsml", + "id": "u:bar" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:iso1000:code:bar" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/BAR" + } + ], + "short": "bar", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_acceptable", + "name": "non-SI but acceptable", + "short": "nonsi-acceptable", + "acceptable": true + } + ], + "root_units": null + }, + { + "id": "NISTu92", + "unitsml_id": "u:dyne_per_square_centimeter", + "name": "dyne per square centimeter", + "names": [ + { + "value": "dyne per square centimeter", + "lang": "en" + } + ], + "symbols": { + "unicode": "dynΒ·cm⁻²", + "ascii": "dyn*cm^-2", + "html": "dyn/cm2", + "latex": "\\ensuremath{\\mathrm{dyn/cm^2}}", + "id": "dyn*cm^-2", + "mathml": "dyn/cm2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu92" + }, + { + "type": "unitsml", + "id": "u:dyne_per_square_centimeter" + } + ], + "references": [], + "short": "dyne_per_square_centimeter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu71", + "name": "dyne", + "symbol": "dyn" + }, + "prefix": null + }, + { + "power": -2, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": { + "id": "NISTp10_-2", + "name": "centi", + "symbol": "c" + } + } + ] + }, + { + "id": "NISTu93", + "unitsml_id": "u:gram_force_per_square_centimeter", + "name": "gram-force per square centimeter", + "names": [ + { + "value": "gram-force per square centimeter", + "lang": "en" + } + ], + "symbols": { + "unicode": "gfΒ·cm⁻²", + "ascii": "gf*cm^-2", + "html": "gf/cm2", + "latex": "\\ensuremath{\\mathrm{gf/cm^2}}", + "id": "gf*cm^-2", + "mathml": "gf/cm2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu93" + }, + { + "type": "unitsml", + "id": "u:gram_force_per_square_centimeter" + } + ], + "references": [], + "short": "gram_force_per_square_centimeter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + "prefix": null + }, + { + "power": -2, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": { + "id": "NISTp10_-2", + "name": "centi", + "symbol": "c" + } + } + ] + }, + { + "id": "NISTu94", + "unitsml_id": "u:kilogram_force_per_square_centimeter", + "name": "kilogram-force per square centimeter", + "names": [ + { + "value": "kilogram-force per square centimeter", + "lang": "en" + } + ], + "symbols": { + "unicode": "kgfΒ·cm⁻²", + "ascii": "kgf*cm^-2", + "html": "kgf/cm2", + "latex": "\\ensuremath{\\mathrm{kgf/cm^2}}", + "id": "kgf*cm^-2", + "mathml": "kgf/cm2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu94" + }, + { + "type": "unitsml", + "id": "u:kilogram_force_per_square_centimeter" + } + ], + "references": [], + "short": "kilogram_force_per_square_centimeter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -2, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": { + "id": "NISTp10_-2", + "name": "centi", + "symbol": "c" + } + } + ] + }, + { + "id": "NISTu95", + "unitsml_id": "u:kilogram_force_per_square_meter", + "name": "kilogram-force per square meter", + "names": [ + { + "value": "kilogram-force per square meter", + "lang": "en" + } + ], + "symbols": { + "unicode": "kgfΒ·m⁻²", + "ascii": "kgf*m^-2", + "html": "kgf/m2", + "latex": "\\ensuremath{\\mathrm{kgf/m^2}}", + "id": "kgf*m^-2", + "mathml": "kgf/m2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu95" + }, + { + "type": "unitsml", + "id": "u:kilogram_force_per_square_meter" + } + ], + "references": [], + "short": "kilogram_force_per_square_meter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -2, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": null + } + ] + }, + { + "id": "NISTu96", + "unitsml_id": "u:kilogram_force_per_square_millimeter", + "name": "kilogram-force per square millimeter", + "names": [ + { + "value": "kilogram-force per square millimeter", + "lang": "en" + } + ], + "symbols": { + "unicode": "kgfΒ·mm⁻²", + "ascii": "kgf*mm^-2", + "html": "kgf/mm2", + "latex": "\\ensuremath{\\mathrm{kgf/mm^2}}", + "id": "kgf*mm^-2", + "mathml": "kgf/mm2" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu96" + }, + { + "type": "unitsml", + "id": "u:kilogram_force_per_square_millimeter" + } + ], + "references": [], + "short": "kilogram_force_per_square_millimeter", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq15", + "name": "pressure", + "type": "derived" + }, + { + "id": "NISTq16", + "name": "stress", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd14", + "name": "pressure", + "expression": "L-1Β·MΒ·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + "prefix": { + "id": "NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -2, + "unit": { + "id": "NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefix": { + "id": "NISTp10_-3", + "name": "milli", + "symbol": "m" + } + } + ] + }, + { + "id": "NISTu97", + "unitsml_id": "u:centipoise", + "name": "centipoise", + "names": [ + { + "value": "centipoise", + "lang": "en" + } + ], + "symbols": { + "unicode": "cP", + "ascii": "cP", + "html": "cP", + "latex": "\\ensuremath{\\mathrm{cP}}", + "id": "cP", + "mathml": "cP" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu97" + }, + { + "type": "unitsml", + "id": "u:centipoise" + } + ], + "references": [ + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/CentiPOISE" + } + ], + "short": "centipoise", + "root": false, + "composite": true, + "quantities": [ + { + "id": "NISTq59", + "name": "dynamic viscosity", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd36", + "name": "dynamic viscosity", + "expression": "L-1Β·MΒ·T-1", + "components": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": [ + { + "power": 1, + "unit": { + "id": "NISTu128", + "name": "poise", + "symbol": "P" + }, + "prefix": { + "id": "NISTp10_-2", + "name": "centi", + "symbol": "c" + } + } + ] + }, + { + "id": "NISTu98", + "unitsml_id": "u:curie", + "name": "curie", + "names": [ + { + "value": "curie", + "lang": "en" + } + ], + "symbols": { + "unicode": "Ci", + "ascii": "Ci", + "html": "Ci", + "latex": "\\ensuremath{\\mathrm{Ci}}", + "id": "Ci", + "mathml": "Ci" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu98" + }, + { + "type": "unitsml", + "id": "u:curie" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:unit:cgs:code:Ci" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/CI" + } + ], + "short": "curie", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq35", + "name": "activity referred to a radionuclide", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd24", + "name": "frequency", + "expression": "T-1", + "components": [ + { + "key": "time", + "symbol": "T", + "power": -1 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_nist_acceptable", + "name": "non-SI but acceptable by NIST SP 811", + "short": "nonsi-nist-acceptable", + "acceptable": true + }, + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + }, + { + "id": "NISTu99", + "unitsml_id": "u:rad", + "name": "rad (absorbed dose)", + "names": [ + { + "value": "rad (absorbed dose)", + "lang": "en" + } + ], + "symbols": { + "unicode": "rad", + "ascii": "rad", + "html": "rad", + "latex": "\\ensuremath{\\mathrm{rad}}", + "id": "rad_radiation", + "mathml": "rad" + }, + "identifiers": [ + { + "type": "nist", + "id": "NISTu99" + }, + { + "type": "unitsml", + "id": "u:rad" + } + ], + "references": [ + { + "type": "informative", + "authority": "ucum", + "uri": "ucum:base-unit:code:rad" + }, + { + "type": "informative", + "authority": "qudt", + "uri": "http://qudt.org/vocab/unit/RAD_R" + } + ], + "short": "rad", + "root": true, + "composite": false, + "quantities": [ + { + "id": "NISTq36", + "name": "absorbed dose", + "type": "derived" + } + ], + "dimension": { + "id": "NISTd25", + "name": "absorbed dose", + "expression": "L2Β·T-2", + "components": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ], + "dimensionless": false + }, + "scale": { + "id": "continuous_ratio", + "name": "continuous ratio scale" + }, + "systems": [ + { + "id": "non-SI_nist_acceptable", + "name": "non-SI but acceptable by NIST SP 811", + "short": "nonsi-nist-acceptable", + "acceptable": true + }, + { + "id": "non-SI_not_acceptable", + "name": "non-SI and not acceptable", + "short": "nonsi-unacceptable", + "acceptable": false + } + ], + "root_units": null + } +] \ No newline at end of file diff --git a/public/unitsdb/units.jsonld b/public/unitsdb/units.jsonld new file mode 100644 index 0000000..b7316c3 --- /dev/null +++ b/public/unitsdb/units.jsonld @@ -0,0 +1,14334 @@ +{ + "@context": { + "@vocab": "https://unitsml.org/ontology/", + "schema": "http://schema.org/", + "name": "schema:name", + "identifier": "schema:identifier", + "description": "schema:description", + "symbol": "https://unitsml.org/ontology/symbol", + "rootUnit": "https://unitsml.org/ontology/rootUnit", + "quantityReference": "https://unitsml.org/ontology/quantityReference", + "dimensionReference": "https://unitsml.org/ontology/dimensionReference", + "scaleReference": "https://unitsml.org/ontology/scaleReference", + "unitSystemReference": "https://unitsml.org/ontology/unitSystemReference", + "prefixReference": "https://unitsml.org/ontology/prefixReference", + "power": "https://unitsml.org/ontology/power", + "base": "https://unitsml.org/ontology/base" + }, + "@graph": [ + { + "@id": "https://unitsml.org/unit/u:meter", + "@type": "Unit", + "name": "metre", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:meter" + } + ], + "symbol": "m", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/si-base" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1" + }, + { + "@id": "https://unitsml.org/quantity/NISTq100" + }, + { + "@id": "https://unitsml.org/quantity/NISTq101" + }, + { + "@id": "https://unitsml.org/quantity/NISTq102" + }, + { + "@id": "https://unitsml.org/quantity/NISTq103" + }, + { + "@id": "https://unitsml.org/quantity/NISTq104" + }, + { + "@id": "https://unitsml.org/quantity/NISTq105" + }, + { + "@id": "https://unitsml.org/quantity/NISTq114" + }, + { + "@id": "https://unitsml.org/quantity/NISTq48" + }, + { + "@id": "https://unitsml.org/quantity/NISTq95" + }, + { + "@id": "https://unitsml.org/quantity/NISTq96" + }, + { + "@id": "https://unitsml.org/quantity/NISTq97" + }, + { + "@id": "https://unitsml.org/quantity/NISTq98" + }, + { + "@id": "https://unitsml.org/quantity/NISTq99" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:meter_per_second", + "@type": "Unit", + "name": "meter per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu1.u3e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:meter_per_second" + } + ], + "symbol": "mΒ·s⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq107" + }, + { + "@id": "https://unitsml.org/quantity/NISTq116" + }, + { + "@id": "https://unitsml.org/quantity/NISTq117" + }, + { + "@id": "https://unitsml.org/quantity/NISTq12" + } + ], + "rootUnits": [ + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:meter_per_second_squared", + "@type": "Unit", + "name": "meter per second squared", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu1.u3e-2/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:meter_per_second_squared" + } + ], + "symbol": "mΒ·s⁻²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq108" + }, + { + "@id": "https://unitsml.org/quantity/NISTq49" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:steradian", + "@type": "Unit", + "name": "steradian", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu10" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:steradian" + } + ], + "symbol": "sr", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq11" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:rem", + "@type": "Unit", + "name": "rem", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu100" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:rem" + } + ], + "symbol": "rem", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_nist_acceptable" + }, + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq39" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:year_365", + "@type": "Unit", + "name": "year (365 days)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu106" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:year_365" + } + ], + "symbol": "a", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq3" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:foot_per_minute", + "@type": "Unit", + "name": "foot per minute", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu107" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:foot_per_minute" + } + ], + "symbol": "ftΒ·min⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq12" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu78" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu36" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:foot_per_second", + "@type": "Unit", + "name": "foot per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu108" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:foot_per_second" + } + ], + "symbol": "ftΒ·s⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq12" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu78" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:inch_per_second", + "@type": "Unit", + "name": "inch per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu109" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:inch_per_second" + } + ], + "symbol": "inΒ·s⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq12" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu8" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:newton", + "@type": "Unit", + "name": "newton", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu11" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:newton" + } + ], + "symbol": "N", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq13" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:newton_meter", + "@type": "Unit", + "name": "newton meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu11.u1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:newton_meter" + } + ], + "symbol": "NΒ·m", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq184" + }, + { + "@id": "https://unitsml.org/quantity/NISTq185" + }, + { + "@id": "https://unitsml.org/quantity/NISTq60" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu11" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:newton_meter_second", + "@type": "Unit", + "name": "newton meter second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu11.u1.u3" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:newton_meter_second" + } + ], + "symbol": "NΒ·mΒ·s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq133" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu11" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:newton_per_meter", + "@type": "Unit", + "name": "newton per meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu11.u1e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:newton_per_meter" + } + ], + "symbol": "N/m", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq61" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu11" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:newton_meter_squared_per_kilogram_squared", + "@type": "Unit", + "name": "newton meter squared per kilogram squared", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu11.u1e2/1.u27p10'3e-2/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:newton_meter_squared_per_kilogram_squared" + } + ], + "symbol": "NΒ·mΒ²/kgΒ²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq130" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu11" + } + }, + { + "power": 2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:newton_second", + "@type": "Unit", + "name": "newton second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu11.u3" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:newton_second" + } + ], + "symbol": "NΒ·s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq129" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu11" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:mile_per_hour", + "@type": "Unit", + "name": "mile per hour", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu110" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:mile_per_hour" + } + ], + "symbol": "miΒ·h⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq12" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu83" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu37" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:mile_per_minute", + "@type": "Unit", + "name": "mile per minute", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu111" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:mile_per_minute" + } + ], + "symbol": "miΒ·min⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq12" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu83" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu36" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:mile_per_second", + "@type": "Unit", + "name": "mile per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu112" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:mile_per_second" + } + ], + "symbol": "miΒ·s⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq12" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu83" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:stere", + "@type": "Unit", + "name": "stere", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu115" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:stere" + } + ], + "symbol": "st", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10" + } + ], + "rootUnits": [ + { + "power": 3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:gamma", + "@type": "Unit", + "name": "gamma", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu116" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:gamma" + } + ], + "symbol": "Ξ³", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq14" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu21" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:ec_therm", + "@type": "Unit", + "name": "therm (EC)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu117" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:ec_therm" + } + ], + "symbol": "thm (EC)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17" + }, + { + "@id": "https://unitsml.org/quantity/NISTq18" + }, + { + "@id": "https://unitsml.org/quantity/NISTq182" + }, + { + "@id": "https://unitsml.org/quantity/NISTq183" + }, + { + "@id": "https://unitsml.org/quantity/NISTq19" + }, + { + "@id": "https://unitsml.org/quantity/NISTq77" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:roentgen", + "@type": "Unit", + "name": "roentgen", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu118" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:roentgen" + } + ], + "symbol": "R", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_nist_acceptable" + }, + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq75" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:gauss", + "@type": "Unit", + "name": "gauss", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu119" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:gauss" + } + ], + "symbol": "Gs", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq14" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:pascal", + "@type": "Unit", + "name": "pascal", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu12" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:pascal" + } + ], + "symbol": "Pa", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq134" + }, + { + "@id": "https://unitsml.org/quantity/NISTq135" + }, + { + "@id": "https://unitsml.org/quantity/NISTq141" + }, + { + "@id": "https://unitsml.org/quantity/NISTq142" + }, + { + "@id": "https://unitsml.org/quantity/NISTq143" + }, + { + "@id": "https://unitsml.org/quantity/NISTq15" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:pascal_second", + "@type": "Unit", + "name": "pascal second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu12.u3" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:pascal_second" + } + ], + "symbol": "PaΒ·s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq59" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu12" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:pascal_per_kelvin", + "@type": "Unit", + "name": "pascal per kelvin", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu12.u5e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:pascal_per_kelvin" + } + ], + "symbol": "Pa/K", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq159" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu12" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu5" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:kayser", + "@type": "Unit", + "name": "kayser", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu120" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kayser" + } + ], + "symbol": "K", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq50" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:centistokes", + "@type": "Unit", + "name": "centistokes", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu121" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:centistokes" + } + ], + "symbol": "cSt", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq85" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu142" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:micron", + "@type": "Unit", + "name": "micron", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu122" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:micron" + } + ], + "symbol": "ΞΌ", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1" + }, + { + "@id": "https://unitsml.org/quantity/NISTq48" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:mil (length)", + "@type": "Unit", + "name": "mil (length)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu123" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:mil (length)" + } + ], + "symbol": "mil", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1" + }, + { + "@id": "https://unitsml.org/quantity/NISTq48" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu8" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:stilb", + "@type": "Unit", + "name": "stilb", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu124" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:stilb" + } + ], + "symbol": "sb", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq56" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:kilogram_force_second_squared_per_meter", + "@type": "Unit", + "name": "kilogram-force second squared per meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu125" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_force_second_squared_per_meter" + } + ], + "symbol": "kgfΒ·sΒ²m⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu196" + } + }, + { + "power": 2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:kilogram_force_meter", + "@type": "Unit", + "name": "kilogram-force meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu126" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_force_meter" + } + ], + "symbol": "kgfΒ·m", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17" + }, + { + "@id": "https://unitsml.org/quantity/NISTq18" + }, + { + "@id": "https://unitsml.org/quantity/NISTq184" + }, + { + "@id": "https://unitsml.org/quantity/NISTq185" + }, + { + "@id": "https://unitsml.org/quantity/NISTq60" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu196" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:electric_horsepower", + "@type": "Unit", + "name": "horsepower, electric", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu127" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:electric_horsepower" + } + ], + "symbol": "hp", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20" + }, + { + "@id": "https://unitsml.org/quantity/NISTq21" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:poise", + "@type": "Unit", + "name": "poise", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu128" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:poise" + } + ], + "symbol": "P", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq59" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:rhe", + "@type": "Unit", + "name": "rhe", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu129" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:rhe" + } + ], + "symbol": "rhe", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq91" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:pascal_to_the_power_minus_one", + "@type": "Unit", + "name": "pascal to the power minus one", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu12e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:pascal_to_the_power_minus_one" + } + ], + "symbol": "Pa⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq139" + }, + { + "@id": "https://unitsml.org/quantity/NISTq160" + } + ], + "rootUnits": [ + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu12" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:joule", + "@type": "Unit", + "name": "joule", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu13" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:joule" + } + ], + "symbol": "J", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq152" + }, + { + "@id": "https://unitsml.org/quantity/NISTq153" + }, + { + "@id": "https://unitsml.org/quantity/NISTq17" + }, + { + "@id": "https://unitsml.org/quantity/NISTq18" + }, + { + "@id": "https://unitsml.org/quantity/NISTq182" + }, + { + "@id": "https://unitsml.org/quantity/NISTq183" + }, + { + "@id": "https://unitsml.org/quantity/NISTq19" + }, + { + "@id": "https://unitsml.org/quantity/NISTq77" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:joule_per_cubic_meter", + "@type": "Unit", + "name": "joule per cubic meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu13.u1e-3/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:joule_per_cubic_meter" + } + ], + "symbol": "J/mΒ³", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq67" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu13" + } + }, + { + "power": -3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:joule_per_kilogram", + "@type": "Unit", + "name": "joule per kilogram", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu13.u27p10'3e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:joule_per_kilogram" + } + ], + "symbol": "J/kg", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq65" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu13" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:joule_per_kilogram_kelvin", + "@type": "Unit", + "name": "joule per kilogram kelvin", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu13.u27p10'3e-1/1.u5e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:joule_per_kilogram_kelvin" + } + ], + "symbol": "J/(kgΒ·K)", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq64" + }, + { + "@id": "https://unitsml.org/quantity/NISTq80" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu13" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu5" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:joule_second", + "@type": "Unit", + "name": "joule second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu13.u3" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:joule_second" + } + ], + "symbol": "JΒ·s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq154" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu13" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:joule_per_kelvin", + "@type": "Unit", + "name": "joule per kelvin", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu13.u5e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:joule_per_kelvin" + } + ], + "symbol": "J/K", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq63" + }, + { + "@id": "https://unitsml.org/quantity/NISTq79" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu13" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu5" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:joule_per_mole", + "@type": "Unit", + "name": "joule per mole", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu13.u6e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:joule_per_mole" + } + ], + "symbol": "J/mol", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq73" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu13" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu6" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:joule_per_mole_kelvin", + "@type": "Unit", + "name": "joule per mole kelvin", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu13.u6e-1/1.u5e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:joule_per_mole_kelvin" + } + ], + "symbol": "J/(molΒ·K)", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq74" + }, + { + "@id": "https://unitsml.org/quantity/NISTq83" + } + ], + "rootUnits": [ + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu5" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:liter", + "@type": "Unit", + "name": "litre", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu130" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:liter" + } + ], + "symbol": "l", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:nautical_mile", + "@type": "Unit", + "name": "nautical mile", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu131" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:nautical_mile" + } + ], + "symbol": "M", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1" + }, + { + "@id": "https://unitsml.org/quantity/NISTq48" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:degree_Fahrenheit", + "@type": "Unit", + "name": "degree Fahrenheit", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu133" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:degree_Fahrenheit" + } + ], + "symbol": "Β°F", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_interval" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq175" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:standard_atmosphere", + "@type": "Unit", + "name": "standard atmosphere", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu134" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:standard_atmosphere" + } + ], + "symbol": "atm", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:technical_atmosphere", + "@type": "Unit", + "name": "technical atmosphere", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu135" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:technical_atmosphere" + } + ], + "symbol": "at", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:watt", + "@type": "Unit", + "name": "watt", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu14" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:watt" + } + ], + "symbol": "W", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20" + }, + { + "@id": "https://unitsml.org/quantity/NISTq21" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:watt_per_steradian", + "@type": "Unit", + "name": "watt per steradian", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu14.u10e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:watt_per_steradian" + } + ], + "symbol": "W/sr", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq88" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu14" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu10" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:watt_per_meter_kelvin", + "@type": "Unit", + "name": "watt per meter kelvin", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu14.u1e-1/1.u5e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:watt_per_meter_kelvin" + } + ], + "symbol": "W/(mΒ·K)", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq66" + } + ], + "rootUnits": [ + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu5" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:watt_per_square_meter", + "@type": "Unit", + "name": "watt per square meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu14.u1e-2/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:watt_per_square_meter" + } + ], + "symbol": "W/mΒ²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq62" + }, + { + "@id": "https://unitsml.org/quantity/NISTq78" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu14" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:watt_per_square_meter_steradian", + "@type": "Unit", + "name": "watt per square meter steradian", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu14.u1e-2/1.u10e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:watt_per_square_meter_steradian" + } + ], + "symbol": "W/(mΒ²Β·sr)", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq89" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu14" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu10" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:watt_second", + "@type": "Unit", + "name": "watt second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu14.u3" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:watt_second" + } + ], + "symbol": "WΒ·s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17" + }, + { + "@id": "https://unitsml.org/quantity/NISTq18" + }, + { + "@id": "https://unitsml.org/quantity/NISTq182" + }, + { + "@id": "https://unitsml.org/quantity/NISTq183" + }, + { + "@id": "https://unitsml.org/quantity/NISTq19" + }, + { + "@id": "https://unitsml.org/quantity/NISTq77" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu14" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:stokes", + "@type": "Unit", + "name": "stokes", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu142" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:stokes" + } + ], + "symbol": "St", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq85" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:gal", + "@type": "Unit", + "name": "gal", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu143" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:gal" + } + ], + "symbol": "Gal", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq49" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:oersted", + "@type": "Unit", + "name": "oersted", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu144" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:oersted" + } + ], + "symbol": "Oe", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq87" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:arc_minute", + "@type": "Unit", + "name": "arcminute", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu147" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:arc_minute" + } + ], + "symbol": "β€²", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq9" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:arc_second", + "@type": "Unit", + "name": "arcsecond", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu148" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:arc_second" + } + ], + "symbol": "β€³", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq9" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:arc_degree", + "@type": "Unit", + "name": "degree (degree of arc)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu149" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:arc_degree" + } + ], + "symbol": "ΒΊ", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq9" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:coulomb", + "@type": "Unit", + "name": "coulomb", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu15" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:coulomb" + } + ], + "symbol": "C", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq22" + }, + { + "@id": "https://unitsml.org/quantity/NISTq23" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:coulomb_per_square_meter", + "@type": "Unit", + "name": "coulomb per square meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu15.u1e-2/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:coulomb_per_square_meter" + } + ], + "symbol": "C/mΒ²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq81" + }, + { + "@id": "https://unitsml.org/quantity/NISTq82" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu15" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:coulomb_per_cubic_meter", + "@type": "Unit", + "name": "coulomb per cubic meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu15.u1e-3/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:coulomb_per_cubic_meter" + } + ], + "symbol": "C/mΒ³", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq69" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu15" + } + }, + { + "power": -3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:coulomb_per_kilogram", + "@type": "Unit", + "name": "coulomb per kilogram", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu15.u27p10'3e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:coulomb_per_kilogram" + } + ], + "symbol": "C/kg", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq197" + }, + { + "@id": "https://unitsml.org/quantity/NISTq75" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu15" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:knot", + "@type": "Unit", + "name": "nautical mile per hour", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu152" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:knot" + } + ], + "symbol": "kn", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq12" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:neper", + "@type": "Unit", + "name": "neper", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu153" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:neper" + } + ], + "symbol": "Np", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/logarithmic_field" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq118" + }, + { + "@id": "https://unitsml.org/quantity/NISTq119" + }, + { + "@id": "https://unitsml.org/quantity/NISTq121" + }, + { + "@id": "https://unitsml.org/quantity/NISTq90" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:bel", + "@type": "Unit", + "name": "bel", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu154" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:bel" + } + ], + "symbol": "B", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/logarithmic_field" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq118" + }, + { + "@id": "https://unitsml.org/quantity/NISTq119" + }, + { + "@id": "https://unitsml.org/quantity/NISTq90" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:decibel", + "@type": "Unit", + "name": "decibel", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu155" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:decibel" + } + ], + "symbol": "dB", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/logarithmic_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq90" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu154" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:mm_Hg", + "@type": "Unit", + "name": "conventional millimeter of mercury", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu156" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:mm_Hg" + } + ], + "symbol": "mmHg", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:darcy", + "@type": "Unit", + "name": "darcy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu157" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:darcy" + } + ], + "symbol": "d", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq72" + }, + { + "@id": "https://unitsml.org/quantity/NISTq92" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:gon", + "@type": "Unit", + "name": "gon", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu159" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:gon" + } + ], + "symbol": "gon", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq9" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:volt", + "@type": "Unit", + "name": "volt", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu16" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:volt" + } + ], + "symbol": "V", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq24" + }, + { + "@id": "https://unitsml.org/quantity/NISTq25" + }, + { + "@id": "https://unitsml.org/quantity/NISTq26" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:volt_per_meter", + "@type": "Unit", + "name": "volt per meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu16.u1e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:volt_per_meter" + } + ], + "symbol": "V/m", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq68" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu16" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:kilometer_per_hour", + "@type": "Unit", + "name": "kilometer per hour", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu160" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilometer_per_hour" + } + ], + "symbol": "km/h", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq107" + }, + { + "@id": "https://unitsml.org/quantity/NISTq12" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu37" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:neper_per_second", + "@type": "Unit", + "name": "neper per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu163" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:neper_per_second" + } + ], + "symbol": "Np/s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq120" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu153" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:square_yard", + "@type": "Unit", + "name": "square yard", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu164" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:square_yard" + } + ], + "symbol": "ydΒ²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq8" + } + ], + "rootUnits": [ + { + "power": 2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu84" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:square_mile", + "@type": "Unit", + "name": "square mile", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu165" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:square_mile" + } + ], + "symbol": "miΒ²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq8" + } + ], + "rootUnits": [ + { + "power": 2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu83" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:tons_of_tnt", + "@type": "Unit", + "name": "ton of TNT (energy equivalent)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu166" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:tons_of_tnt" + } + ], + "symbol": "ton", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:foot_per_second_squared", + "@type": "Unit", + "name": "foot per second squared", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu167" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:foot_per_second_squared" + } + ], + "symbol": "ft/sΒ²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq49" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu78" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:cubic_inch", + "@type": "Unit", + "name": "cubic inch", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu168" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:cubic_inch" + } + ], + "symbol": "inΒ³", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10" + } + ], + "rootUnits": [ + { + "power": 3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu8" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:cubic_foot", + "@type": "Unit", + "name": "cubic foot", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu169" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:cubic_foot" + } + ], + "symbol": "ftΒ³", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10" + } + ], + "rootUnits": [ + { + "power": 3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu78" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:farad", + "@type": "Unit", + "name": "farad", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu17" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:farad" + } + ], + "symbol": "F", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq27" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:farad_per_meter", + "@type": "Unit", + "name": "farad per meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu17.u1e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:farad_per_meter" + } + ], + "symbol": "F/m", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq71" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu17" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:cubic_yard", + "@type": "Unit", + "name": "cubic yard", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu170" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:cubic_yard" + } + ], + "symbol": "ydΒ³", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10" + } + ], + "rootUnits": [ + { + "power": 3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu84" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:imperial_gallon", + "@type": "Unit", + "name": "gallon (UK)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu171" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:imperial_gallon" + } + ], + "symbol": "gal (UK)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:imperial_pint", + "@type": "Unit", + "name": "pint (UK)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu172" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:imperial_pint" + } + ], + "symbol": "pt (UK)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:imperial_ounce", + "@type": "Unit", + "name": "fluid ounce (UK)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu173" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:imperial_ounce" + } + ], + "symbol": "fl oz (UK)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:us_gallon", + "@type": "Unit", + "name": "gallon (US)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu175" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_gallon" + } + ], + "symbol": "gal (US)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_interval" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:us_pint", + "@type": "Unit", + "name": "liquid pint (US)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu176" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_pint" + } + ], + "symbol": "liq pint (US)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:us_fluid_ounce", + "@type": "Unit", + "name": "fluid ounce (US)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu177" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_fluid_ounce" + } + ], + "symbol": "fl oz (US)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:petro_barrel", + "@type": "Unit", + "name": "barrel (US) for petroleum", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu178" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:petro_barrel" + } + ], + "symbol": "bbl (US)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:us_bushel", + "@type": "Unit", + "name": "bushel (US)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu179" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_bushel" + } + ], + "symbol": "bu (US)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:ohm", + "@type": "Unit", + "name": "ohm", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu18" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:ohm" + } + ], + "symbol": "Ω", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq28" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:us_dry_pint", + "@type": "Unit", + "name": "dry pint (US)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu180" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_dry_pint" + } + ], + "symbol": "dry pt (US)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:light_year", + "@type": "Unit", + "name": "light year", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu182" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:light_year" + } + ], + "symbol": "l.y.", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:astronomical_unit", + "@type": "Unit", + "name": "astronomical unit", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu183" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:astronomical_unit" + } + ], + "symbol": "ua", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:parsec", + "@type": "Unit", + "name": "parsec", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu184" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:parsec" + } + ], + "symbol": "pc", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:meter_to_the_power_four", + "@type": "Unit", + "name": "meter to the power four", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu185" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:meter_to_the_power_four" + } + ], + "symbol": "m⁴", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq144" + }, + { + "@id": "https://unitsml.org/quantity/NISTq145" + } + ], + "rootUnits": [ + { + "power": 4, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:kilogram_per_liter", + "@type": "Unit", + "name": "kilogram per liter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu188" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_per_liter" + } + ], + "symbol": "kg/l", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq51" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu130" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:metric_ton_per_cubic_meter", + "@type": "Unit", + "name": "metric ton per cubic meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu189" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:metric_ton_per_cubic_meter" + } + ], + "symbol": "t/mΒ³", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq51" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu88" + } + }, + { + "power": -3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:siemens", + "@type": "Unit", + "name": "siemens", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu19" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:siemens" + } + ], + "symbol": "S", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq29" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:gram_force", + "@type": "Unit", + "name": "gram-force", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu196" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:gram_force" + } + ], + "symbol": "gf", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq13" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu196" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:meter_to_the_power_minus_one", + "@type": "Unit", + "name": "meter to the power minus one", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu1e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:meter_to_the_power_minus_one" + } + ], + "symbol": "m⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq106" + }, + { + "@id": "https://unitsml.org/quantity/NISTq115" + }, + { + "@id": "https://unitsml.org/quantity/NISTq122" + }, + { + "@id": "https://unitsml.org/quantity/NISTq123" + }, + { + "@id": "https://unitsml.org/quantity/NISTq124" + }, + { + "@id": "https://unitsml.org/quantity/NISTq50" + } + ], + "rootUnits": [ + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:meter_to_the_power_minus_two", + "@type": "Unit", + "name": "meter to the power minus two", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu1e-2/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:meter_to_the_power_minus_two" + } + ], + "symbol": "m⁻²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq190" + } + ], + "rootUnits": [ + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:meter_to_the_power_minus_two_per_second", + "@type": "Unit", + "name": "meter to the power minus two per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu1e-2/1.u3e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:meter_to_the_power_minus_two_per_second" + } + ], + "symbol": "m⁻²·s⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq191" + } + ], + "rootUnits": [ + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:square_meter", + "@type": "Unit", + "name": "square meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu1e2/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:square_meter" + } + ], + "symbol": "mΒ²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq8" + } + ], + "rootUnits": [ + { + "power": 2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:meter_squared_per_second", + "@type": "Unit", + "name": "meter squared per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu1e2/1.u3e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:meter_squared_per_second" + } + ], + "symbol": "mΒ²/s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq85" + } + ], + "rootUnits": [ + { + "power": 2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:cubic_meter", + "@type": "Unit", + "name": "cubic meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu1e3/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:cubic_meter" + } + ], + "symbol": "mΒ³", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10" + }, + { + "@id": "https://unitsml.org/quantity/NISTq146" + } + ], + "rootUnits": [ + { + "power": 3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:cubic_meter_per_kilogram", + "@type": "Unit", + "name": "cubic meter per kilogram", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu1e3/1.u27p10'3" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:cubic_meter_per_kilogram" + } + ], + "symbol": "mΒ³Β·kg", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq52" + } + ], + "rootUnits": [ + { + "power": 3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:cubic_meter_per_second", + "@type": "Unit", + "name": "cubic meter per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu1e3/1.u3e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:cubic_meter_per_second" + } + ], + "symbol": "mΒ³/s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq151" + } + ], + "rootUnits": [ + { + "power": 3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:kilogram", + "@type": "Unit", + "name": "kilogram", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu2" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram" + } + ], + "symbol": "kg", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/si-base" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:weber", + "@type": "Unit", + "name": "weber", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu20" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:weber" + } + ], + "symbol": "Wb", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq30" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:av_pound", + "@type": "Unit", + "name": "pound (avoirdupois)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu201" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:av_pound" + } + ], + "symbol": "lb", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:av_ounce", + "@type": "Unit", + "name": "ounce (avoirdupois)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu202" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:av_ounce" + } + ], + "symbol": "oz", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:gross_hundredweight", + "@type": "Unit", + "name": "hundredweight (long, 112 lb)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu203" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:gross_hundredweight" + } + ], + "symbol": "cwt (UK)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:pound_per_cubic_foot", + "@type": "Unit", + "name": "pound per cubic foot", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu204" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:pound_per_cubic_foot" + } + ], + "symbol": "lb/ftΒ³", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq51" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu201" + } + }, + { + "power": -3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu78" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:pound_force", + "@type": "Unit", + "name": "pound-force", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu205" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:pound_force" + } + ], + "symbol": "lbf", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq128" + }, + { + "@id": "https://unitsml.org/quantity/NISTq13" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:foot_pound_force", + "@type": "Unit", + "name": "foot pound-force", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu206" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:foot_pound_force" + } + ], + "symbol": "ftΒ·lbf", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17" + }, + { + "@id": "https://unitsml.org/quantity/NISTq18" + }, + { + "@id": "https://unitsml.org/quantity/NISTq182" + }, + { + "@id": "https://unitsml.org/quantity/NISTq183" + }, + { + "@id": "https://unitsml.org/quantity/NISTq184" + }, + { + "@id": "https://unitsml.org/quantity/NISTq185" + }, + { + "@id": "https://unitsml.org/quantity/NISTq60" + }, + { + "@id": "https://unitsml.org/quantity/NISTq77" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu78" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu205" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:pound_force_per_square_inch", + "@type": "Unit", + "name": "pound-force per square inch", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu207" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:pound_force_per_square_inch" + } + ], + "symbol": "psi", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu205" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu8" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:inch_to_the_fourth_power", + "@type": "Unit", + "name": "inch to the fourth power", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu208" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:inch_to_the_fourth_power" + } + ], + "symbol": "in⁴", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq155" + } + ], + "rootUnits": [ + { + "power": 4, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu8" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:inch_cubed", + "@type": "Unit", + "name": "inch cubed", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu209" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:inch_cubed" + } + ], + "symbol": "inΒ³", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq146" + } + ], + "rootUnits": [ + { + "power": 3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu8" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:tesla", + "@type": "Unit", + "name": "tesla", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu21" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:tesla" + } + ], + "symbol": "T", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq14" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:foot_squared_per_second", + "@type": "Unit", + "name": "foot squared per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu210" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:foot_squared_per_second" + } + ], + "symbol": "ftΒ²/s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq85" + } + ], + "rootUnits": [ + { + "power": 2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu78" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:foot_pound_force_per_second", + "@type": "Unit", + "name": "foot pound-force per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu211" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:foot_pound_force_per_second" + } + ], + "symbol": "ftΒ·lbf/2", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu78" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu205" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:carat", + "@type": "Unit", + "name": "carat", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu212" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:carat" + } + ], + "symbol": "ct", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:tex", + "@type": "Unit", + "name": "tex", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu213" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:tex" + } + ], + "symbol": "tex", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq126" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:torr", + "@type": "Unit", + "name": "torr", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu214" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:torr" + } + ], + "symbol": "torr", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:mm_water", + "@type": "Unit", + "name": "conventional millimeter of water", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu215" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:mm_water" + } + ], + "symbol": "mmHβ‚‚O", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:thermo_btu", + "@type": "Unit", + "name": "British thermal unit_th", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu216" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:thermo_btu" + } + ], + "symbol": "Btu_th", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq19" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:kilogram_force_meter_per_second", + "@type": "Unit", + "name": "kilogram-force meter per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu217" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_force_meter_per_second" + } + ], + "symbol": "kgfΒ·m/s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu196" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:metric_horsepower", + "@type": "Unit", + "name": "horsepower, metric", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu218" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:metric_horsepower" + } + ], + "symbol": "hp", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:henry", + "@type": "Unit", + "name": "henry", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu22" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:henry" + } + ], + "symbol": "H", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq32" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:henry_per_meter", + "@type": "Unit", + "name": "henry per meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu22.u1e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:henry_per_meter" + } + ], + "symbol": "H/m", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq72" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu22" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:watt_per_square_meter_kelvin", + "@type": "Unit", + "name": "watt per square meter kelvin", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu221" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:watt_per_square_meter_kelvin" + } + ], + "symbol": "W/(mΒ²Β·K)", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq180" + }, + { + "@id": "https://unitsml.org/quantity/NISTq181" + } + ], + "rootUnits": [ + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu5" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:lambert", + "@type": "Unit", + "name": "lambert", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu222" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:lambert" + } + ], + "symbol": "L", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq56" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:gilbert", + "@type": "Unit", + "name": "gilbert", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu223" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:gilbert" + } + ], + "symbol": "Gi", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq161" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:debye", + "@type": "Unit", + "name": "debye", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu224" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:debye" + } + ], + "symbol": "D", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq162" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:abwatt", + "@type": "Unit", + "name": "abwatt", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu225" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:abwatt" + } + ], + "symbol": "aW", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:slug", + "@type": "Unit", + "name": "slug", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu226" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:slug" + } + ], + "symbol": "slug", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:thermo_calorie", + "@type": "Unit", + "name": "thermochemical calorie", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu227" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:thermo_calorie" + } + ], + "symbol": "cal_th", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17" + }, + { + "@id": "https://unitsml.org/quantity/NISTq18" + }, + { + "@id": "https://unitsml.org/quantity/NISTq182" + }, + { + "@id": "https://unitsml.org/quantity/NISTq183" + }, + { + "@id": "https://unitsml.org/quantity/NISTq19" + }, + { + "@id": "https://unitsml.org/quantity/NISTq77" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:short_ton", + "@type": "Unit", + "name": "short ton", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu228" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:short_ton" + } + ], + "symbol": "t", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:long_ton", + "@type": "Unit", + "name": "long ton", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu229" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:long_ton" + } + ], + "symbol": "t", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:degree_Celsius", + "@type": "Unit", + "name": "degree Celsius", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu23" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:degree_Celsius" + } + ], + "symbol": "Β°C", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_interval" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq192" + }, + { + "@id": "https://unitsml.org/quantity/NISTq34" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:hundredweight", + "@type": "Unit", + "name": "hundredweight (short, 100 lb)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu230" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:hundredweight" + } + ], + "symbol": "cwt (US)", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu203" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:troy_ounce", + "@type": "Unit", + "name": "ounce (troy or apothecary)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu231" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:troy_ounce" + } + ], + "symbol": "oz", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:troy_pound", + "@type": "Unit", + "name": "pound (troy or apothecary)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu232" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:troy_pound" + } + ], + "symbol": "lb", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:pennyweight", + "@type": "Unit", + "name": "pennyweight", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu233" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:pennyweight" + } + ], + "symbol": "dwt (troy)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:apothecaries_dram", + "@type": "Unit", + "name": "dram (apothecary)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu234" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:apothecaries_dram" + } + ], + "symbol": "dr", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:scruple", + "@type": "Unit", + "name": "scruple", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu235" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:scruple" + } + ], + "symbol": "scr (ap.)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:poundal", + "@type": "Unit", + "name": "poundal", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu236" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:poundal" + } + ], + "symbol": "pdl", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq128" + }, + { + "@id": "https://unitsml.org/quantity/NISTq13" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:kip", + "@type": "Unit", + "name": "kip", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu237" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kip" + } + ], + "symbol": "kip", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:ton_force", + "@type": "Unit", + "name": "ton-force (2000 lb)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu238" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:ton_force" + } + ], + "symbol": "ton-force (2000 lb)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq128" + }, + { + "@id": "https://unitsml.org/quantity/NISTq13" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:barye", + "@type": "Unit", + "name": "barye", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu239" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:barye" + } + ], + "symbol": "barye", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:electronvolt", + "@type": "Unit", + "name": "electronvolt", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu240" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:electronvolt" + } + ], + "symbol": "eV", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:unified_atomic_mass_unit", + "@type": "Unit", + "name": "unified atomic mass unit", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu241" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:unified_atomic_mass_unit" + } + ], + "symbol": "u", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:natural_unit_of_velocity", + "@type": "Unit", + "name": "natural unit of velocity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu242" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:natural_unit_of_velocity" + } + ], + "symbol": "𝑐₀", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq12" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:natural_unit_of_action", + "@type": "Unit", + "name": "natural unit of action", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu243" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:natural_unit_of_action" + } + ], + "symbol": "ℏ", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq154" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:natural_unit_of_mass", + "@type": "Unit", + "name": "natural unit of mass", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu244" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:natural_unit_of_mass" + } + ], + "symbol": "π‘šβ‚‘", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:natural_unit_of_time", + "@type": "Unit", + "name": "natural unit of time", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu245" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:natural_unit_of_time" + } + ], + "symbol": "ℏ/π‘šβ‚‘π‘Β²", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq3" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:atomic_unit_of_charge", + "@type": "Unit", + "name": "atomic unit of charge", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu246" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_charge" + } + ], + "symbol": "𝑒", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq22" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:atomic_unit_of_mass", + "@type": "Unit", + "name": "atomic unit of mass", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu247" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_mass" + } + ], + "symbol": "π‘šβ‚‘", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:atomic_unit_of_action", + "@type": "Unit", + "name": "atomic unit of action", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu248" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_action" + } + ], + "symbol": "ℏ", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq154" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:atomic_unit_of_length", + "@type": "Unit", + "name": "atomic unit of length", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu249" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_length" + } + ], + "symbol": "π‘Žβ‚€", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:becquerel", + "@type": "Unit", + "name": "becquerel", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu25" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:becquerel" + } + ], + "symbol": "Bq", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq35" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:atomic_unit_of_energy", + "@type": "Unit", + "name": "atomic unit of energy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu250" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_energy" + } + ], + "symbol": "𝐸ₕ", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:atomic_unit_of_time", + "@type": "Unit", + "name": "atomic unit of time", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu251" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_time" + } + ], + "symbol": "ℏ/𝐸ₕ", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq3" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:atomic_unit_of_magnetizability", + "@type": "Unit", + "name": "atomic unit of magnetizability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu252" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_magnetizability" + } + ], + "symbol": "π‘’Β²π‘Žβ‚€Β²/π‘šβ‚‘", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq163" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:atomic_unit_of_magnetic_flux_density", + "@type": "Unit", + "name": "atomic unit of magnetic flux density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu253" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_magnetic_flux_density" + } + ], + "symbol": "ℏ/π‘’π‘Žβ‚€Β²", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq14" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:atomic_unit_of_magnetic_dipole_moment", + "@type": "Unit", + "name": "atomic unit of magnetic dipole moment", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu254" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_magnetic_dipole_moment" + } + ], + "symbol": "ℏ𝑒/π‘šβ‚‘", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq164" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:atomic_unit_of_momentum", + "@type": "Unit", + "name": "atomic unit of momentum", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu255" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_momentum" + } + ], + "symbol": "ℏ/π‘Žβ‚€", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq131" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:atomic_unit_of_charge_density", + "@type": "Unit", + "name": "atomic unit of charge density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu256" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_charge_density" + } + ], + "symbol": "π‘’π‘Žβ‚€Β³", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq69" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:atomic_unit_of_current", + "@type": "Unit", + "name": "atomic unit of current", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu257" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_current" + } + ], + "symbol": "𝑒𝐸ₕ/ℏ", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq4" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:atomic_unit_of_electric_dipole_moment", + "@type": "Unit", + "name": "atomic unit of electric dipole moment", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu258" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_electric_dipole_moment" + } + ], + "symbol": "π‘’π‘Žβ‚€", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq162" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:atomic_unit_of_electric_field", + "@type": "Unit", + "name": "atomic unit of electric field", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu259" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_electric_field" + } + ], + "symbol": "𝐸ₕ/π‘’π‘Žβ‚€", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq68" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:fermi", + "@type": "Unit", + "name": "fermi", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu26" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:fermi" + } + ], + "symbol": "fermi", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1" + }, + { + "@id": "https://unitsml.org/quantity/NISTq48" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:atomic_unit_of_electric_field_gradient", + "@type": "Unit", + "name": "atomic unit of electric field gradient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu260" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_electric_field_gradient" + } + ], + "symbol": "𝐸ₕ/π‘’π‘Žβ‚€Β²", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq165" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:atomic_unit_of_electric_potential", + "@type": "Unit", + "name": "atomic unit of electric potential", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu261" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_electric_potential" + } + ], + "symbol": "𝐸ₕ/𝑒", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq166" + }, + { + "@id": "https://unitsml.org/quantity/NISTq24" + }, + { + "@id": "https://unitsml.org/quantity/NISTq26" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:atomic_unit_of_force", + "@type": "Unit", + "name": "atomic unit of force", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu262" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_force" + } + ], + "symbol": "𝐸ₕ/π‘Žβ‚€", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq128" + }, + { + "@id": "https://unitsml.org/quantity/NISTq13" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:atomic_unit_of_electric_quadrupole_moment", + "@type": "Unit", + "name": "atomic unit of electric quadrupole moment", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu263" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_electric_quadrupole_moment" + } + ], + "symbol": "π‘’π‘Žβ‚€Β²", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq167" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:atomic_unit_of_electric_polarizability", + "@type": "Unit", + "name": "atomic unit of electric polarizability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu264" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_electric_polarizability" + } + ], + "symbol": "π‘’Β²π‘Žβ‚€Β²/𝐸ₕ", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq168" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:statohm", + "@type": "Unit", + "name": "statohm", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu265" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:statohm" + } + ], + "symbol": "statohm", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq28" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:statfarad", + "@type": "Unit", + "name": "statfarad", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu266" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:statfarad" + } + ], + "symbol": "statF", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq169" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:statampere", + "@type": "Unit", + "name": "statampere", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu267" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:statampere" + } + ], + "symbol": "statA", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq170" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:statvolt", + "@type": "Unit", + "name": "statvolt", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu268" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:statvolt" + } + ], + "symbol": "statV", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq166" + }, + { + "@id": "https://unitsml.org/quantity/NISTq24" + }, + { + "@id": "https://unitsml.org/quantity/NISTq26" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:stathenry", + "@type": "Unit", + "name": "stathenry", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu269" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:stathenry" + } + ], + "symbol": "statH", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq171" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:gram", + "@type": "Unit", + "name": "gram", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu27" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:gram" + } + ], + "symbol": "g", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/si-base" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:statmho", + "@type": "Unit", + "name": "statmho", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu270" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:statmho" + } + ], + "symbol": "statmho", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq29" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:statcoulomb", + "@type": "Unit", + "name": "statcoulomb", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu271" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:statcoulomb" + } + ], + "symbol": "statcoulomb", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq22" + }, + { + "@id": "https://unitsml.org/quantity/NISTq23" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:statweber", + "@type": "Unit", + "name": "statweber", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu272" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:statweber" + } + ], + "symbol": "statWb", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq30" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:stattesla", + "@type": "Unit", + "name": "stattesla", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu273" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:stattesla" + } + ], + "symbol": "statT", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq14" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:statwatt", + "@type": "Unit", + "name": "statwatt", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu274" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:statwatt" + } + ], + "symbol": "statwatt", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:av_dram", + "@type": "Unit", + "name": "dram (avoirdupois)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu275" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:av_dram" + } + ], + "symbol": "dr (avdp)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:footcandle", + "@type": "Unit", + "name": "footcandle", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu276" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:footcandle" + } + ], + "symbol": "ft.c", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq47" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:footlambert", + "@type": "Unit", + "name": "footlambert", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu277" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:footlambert" + } + ], + "symbol": "ft.L", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq56" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:computer_pica", + "@type": "Unit", + "name": "pica (computer)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu278" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:computer_pica" + } + ], + "symbol": "pc", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1" + }, + { + "@id": "https://unitsml.org/quantity/NISTq48" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:printers_pica", + "@type": "Unit", + "name": "pica (printer's)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu279" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:printers_pica" + } + ], + "symbol": "pc", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:kilogram_meter_per_second", + "@type": "Unit", + "name": "kilogram meter per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu27p10'3.u1.u3e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_meter_per_second" + } + ], + "symbol": "NΒ·m/s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq131" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:kilogram_per_meter", + "@type": "Unit", + "name": "kilogram per meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu27p10'3.u1e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_per_meter" + } + ], + "symbol": "kg/m", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq126" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:kilogram_per_square_meter", + "@type": "Unit", + "name": "kilogram per square meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu27p10'3.u1e-2/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_per_square_meter" + } + ], + "symbol": "kg/mΒ²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq31" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:kilogram_per_cubic_meter", + "@type": "Unit", + "name": "kilogram per cubic meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu27p10'3.u1e-3/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_per_cubic_meter" + } + ], + "symbol": "kgΒ·m⁻³", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq33" + }, + { + "@id": "https://unitsml.org/quantity/NISTq51" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27" + } + }, + { + "power": -3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:kilogram_meter_squared", + "@type": "Unit", + "name": "kilogram meter squared", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu27p10'3.u1e2/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_meter_squared" + } + ], + "symbol": "kgΒ·mΒ²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq127" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:kilogram_meter_squared_per_second", + "@type": "Unit", + "name": "kilogram meter squared per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu27p10'3.u1e2/1.u3e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_meter_squared_per_second" + } + ], + "symbol": "kgΒ·mΒ²/s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq132" + }, + { + "@id": "https://unitsml.org/quantity/NISTq132" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27" + } + }, + { + "power": 2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:kilogram_per_second", + "@type": "Unit", + "name": "kilogram per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu27p10'3.u3e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_per_second" + } + ], + "symbol": "kg/s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq150" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:gray", + "@type": "Unit", + "name": "gray", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu28" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:gray" + } + ], + "symbol": "Gy", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq36" + }, + { + "@id": "https://unitsml.org/quantity/NISTq37" + }, + { + "@id": "https://unitsml.org/quantity/NISTq38" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:gray_per_second", + "@type": "Unit", + "name": "gray per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu28.u3e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:gray_per_second" + } + ], + "symbol": "Gy/s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq194" + }, + { + "@id": "https://unitsml.org/quantity/NISTq76" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu28" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:computer_point", + "@type": "Unit", + "name": "point (computer)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu280" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:computer_point" + } + ], + "symbol": "pt", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1" + }, + { + "@id": "https://unitsml.org/quantity/NISTq48" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:us_survey_rod", + "@type": "Unit", + "name": "rod (based on US survey foot)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu281" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_survey_rod" + } + ], + "symbol": "rd", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:us_survey_fathom", + "@type": "Unit", + "name": "fathom (based on US survey foot)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu282" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_survey_fathom" + } + ], + "symbol": "fath", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:circular_mil", + "@type": "Unit", + "name": "circular mil", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu283" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:circular_mil" + } + ], + "symbol": "cmil", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq8" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:horsepower", + "@type": "Unit", + "name": "horsepower", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu284" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:horsepower" + } + ], + "symbol": "hp", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:boiler_horsepower", + "@type": "Unit", + "name": "horsepower, boiler", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu285" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:boiler_horsepower" + } + ], + "symbol": "hp", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:water_horsepower", + "@type": "Unit", + "name": "horsepower, water", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu286" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:water_horsepower" + } + ], + "symbol": "hp", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:uk_horsepower", + "@type": "Unit", + "name": "horsepower (UK)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu287" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:uk_horsepower" + } + ], + "symbol": "hp", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:degree_Rankine", + "@type": "Unit", + "name": "degree Rankine", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu288" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:degree_Rankine" + } + ], + "symbol": "Β°R", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq5" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:dalton", + "@type": "Unit", + "name": "dalton", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu289" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:dalton" + } + ], + "symbol": "Da", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu241" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:sievert", + "@type": "Unit", + "name": "sievert", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu29" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:sievert" + } + ], + "symbol": "Sv", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq39" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:natural_unit_of_length", + "@type": "Unit", + "name": "natural unit of length", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu290" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:natural_unit_of_length" + } + ], + "symbol": "Ζ›_C", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:atomic_unit_of_1st_hyperpolarizability", + "@type": "Unit", + "name": "atomic unit of 1st hyperpolarizability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu291" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_1st_hyperpolarizability" + } + ], + "symbol": "π‘’Β³π‘Žβ‚€Β³πΈβ‚•Β³", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq172" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:atomic_unit_of_2nd_hyperpolarizability", + "@type": "Unit", + "name": "atomic unit of 2nd hyperpolarizability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu292" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_2nd_hyperpolarizability" + } + ], + "symbol": "π‘’β΄π‘Žβ‚€β΄πΈβ‚•β΄", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq173" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:atomic_unit_of_permittivity", + "@type": "Unit", + "name": "atomic unit of permittivity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu293" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_permittivity" + } + ], + "symbol": "𝑒²/π‘Žβ‚€πΈβ‚•", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq71" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:atomic_unit_of_velocity", + "@type": "Unit", + "name": "atomic unit of velocity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu294" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_velocity" + } + ], + "symbol": "π‘Žβ‚€πΈβ‚•/ℏ", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq12" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:natural_unit_of_energy", + "@type": "Unit", + "name": "natural unit of energy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu295" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:natural_unit_of_energy" + } + ], + "symbol": "π‘šβ‚‘π‘Β²", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:natural_unit_of_momentum", + "@type": "Unit", + "name": "natural unit of momentum", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu296" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:natural_unit_of_momentum" + } + ], + "symbol": "π‘šβ‚‘π‘", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq131" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:natural_unit_of_action_in_eV_s", + "@type": "Unit", + "name": "natural unit of action in eV s", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu297" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:natural_unit_of_action_in_eV_s" + } + ], + "symbol": "ℏ", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq154" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:natural_unit_of_energy_in_MeV", + "@type": "Unit", + "name": "natural unit of energy in MeV", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu298" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:natural_unit_of_energy_in_MeV" + } + ], + "symbol": "π‘šβ‚‘π‘Β²", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:natural_unit_of_momentum_in_MeV_per_c", + "@type": "Unit", + "name": "natural unit of momentum in MeV/c", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu299" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:natural_unit_of_momentum_in_MeV_per_c" + } + ], + "symbol": "π‘šβ‚‘π‘", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq131" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:second", + "@type": "Unit", + "name": "second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu3" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:second" + } + ], + "symbol": "s", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/si-base" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq109" + }, + { + "@id": "https://unitsml.org/quantity/NISTq110" + }, + { + "@id": "https://unitsml.org/quantity/NISTq3" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:katal", + "@type": "Unit", + "name": "katal", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu30" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:katal" + } + ], + "symbol": "kat", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq44" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:katal_per_cubic_meter", + "@type": "Unit", + "name": "katal per cubic meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu30.u1e-3/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:katal_per_cubic_meter" + } + ], + "symbol": "kat/mΒ³", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq84" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu30" + } + }, + { + "power": -3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:imperial_quart", + "@type": "Unit", + "name": "quart (UK)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu300" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:imperial_quart" + } + ], + "symbol": "qt (UK)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:us_dry_quart", + "@type": "Unit", + "name": "dry quart (US)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu301" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_dry_quart" + } + ], + "symbol": "dry qt (US)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:us_quart", + "@type": "Unit", + "name": "liquid quart (US)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu302" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_quart" + } + ], + "symbol": "liq qt (US)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:us_teaspoon", + "@type": "Unit", + "name": "teaspoon", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu303" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_teaspoon" + } + ], + "symbol": "tsp", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:us_tablespoon", + "@type": "Unit", + "name": "tablespoon", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu304" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_tablespoon" + } + ], + "symbol": "tbsp", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:us_label_tablespoon", + "@type": "Unit", + "name": "tablespoon (FDA)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu305" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_label_tablespoon" + } + ], + "symbol": "tbsp", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:us_label_teaspoon", + "@type": "Unit", + "name": "teaspoon (FDA)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu306" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_label_teaspoon" + } + ], + "symbol": "tsp", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:us_label_cup", + "@type": "Unit", + "name": "cup (FDA)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu307" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_label_cup" + } + ], + "symbol": "cup", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:us_label_fluid_ounce", + "@type": "Unit", + "name": "fluid ounce (FDA)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu308" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_label_fluid_ounce" + } + ], + "symbol": "fl oz (US label)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:us_label_ounce", + "@type": "Unit", + "name": "ounce (FDA)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu309" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_label_ounce" + } + ], + "symbol": "oz (US label)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:hertz", + "@type": "Unit", + "name": "hertz", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu31" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:hertz" + } + ], + "symbol": "Hz", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq45" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:us_survey_chain", + "@type": "Unit", + "name": "chain (based on US survey foot)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu310" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_survey_chain" + } + ], + "symbol": "ch", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:us_survey_link", + "@type": "Unit", + "name": "link (based on US survey foot)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu311" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_survey_link" + } + ], + "symbol": "lnk", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:us_survey_furlong", + "@type": "Unit", + "name": "furlong (based on US survey foot)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu312" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_survey_furlong" + } + ], + "symbol": "fur", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:us_survey_mile", + "@type": "Unit", + "name": "mile (based on US survey foot)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu313" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_survey_mile" + } + ], + "symbol": "mi", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:us_survey_yard", + "@type": "Unit", + "name": "yard (based on US survey foot)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu314" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_survey_yard" + } + ], + "symbol": "yd", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:us_survey_foot", + "@type": "Unit", + "name": "foot (based on US survey foot)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu315" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_survey_foot" + } + ], + "symbol": "ft", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:us_survey_inch", + "@type": "Unit", + "name": "inch (based on US survey foot)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu316" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_survey_inch" + } + ], + "symbol": "in", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:us_acre", + "@type": "Unit", + "name": "acre (based on US survey foot)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu317" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_acre" + } + ], + "symbol": "ac", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq8" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:cm_Hg", + "@type": "Unit", + "name": "conventional centimeter of mercury", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu318" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:cm_Hg" + } + ], + "symbol": "cmHg", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:0C_cm_Hg", + "@type": "Unit", + "name": "centimeter of mercury (0 degC)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu319" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:0C_cm_Hg" + } + ], + "symbol": "cmHg", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:lumen", + "@type": "Unit", + "name": "lumen", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu32" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:lumen" + } + ], + "symbol": "lm", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq46" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:4C_cm_water", + "@type": "Unit", + "name": "centimeter of water (4 degC)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu320" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:4C_cm_water" + } + ], + "symbol": "cmHβ‚‚O", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:cm_water", + "@type": "Unit", + "name": "conventional centimeter of water", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu321" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:cm_water" + } + ], + "symbol": "cmHβ‚‚O", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:in_water", + "@type": "Unit", + "name": "conventional inch of water", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu322" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:in_water" + } + ], + "symbol": "inHβ‚‚O", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:39F_in_water", + "@type": "Unit", + "name": "inch of water (39.2 degF)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu323" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:39F_in_water" + } + ], + "symbol": "inHβ‚‚O", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:60F_in_water", + "@type": "Unit", + "name": "inch of water (60 degF)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu324" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:60F_in_water" + } + ], + "symbol": "inHβ‚‚O", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:ft_water", + "@type": "Unit", + "name": "conventional foot of water", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu325" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:ft_water" + } + ], + "symbol": "ftHβ‚‚O", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:39F_ft_water", + "@type": "Unit", + "name": "foot of water (39.2 degF)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu326" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:39F_ft_water" + } + ], + "symbol": "ftHβ‚‚O", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:32F_in_Hg", + "@type": "Unit", + "name": "inch of mercury (32 degF)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu327" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:32F_in_Hg" + } + ], + "symbol": "inHg", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:60F_in_Hg", + "@type": "Unit", + "name": "inch of mercury (60 degF)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu328" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:60F_in_Hg" + } + ], + "symbol": "inHg", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:in_Hg", + "@type": "Unit", + "name": "conventional inch of mercury", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu329" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:in_Hg" + } + ], + "symbol": "inHg", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:lux", + "@type": "Unit", + "name": "lux", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu33" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:lux" + } + ], + "symbol": "lx", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq47" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:ft_Hg", + "@type": "Unit", + "name": "conventional foot of mercury", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu330" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:ft_Hg" + } + ], + "symbol": "ftHg", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:us_therm", + "@type": "Unit", + "name": "therm (US)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu331" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_therm" + } + ], + "symbol": "thm (US)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17" + }, + { + "@id": "https://unitsml.org/quantity/NISTq18" + }, + { + "@id": "https://unitsml.org/quantity/NISTq182" + }, + { + "@id": "https://unitsml.org/quantity/NISTq183" + }, + { + "@id": "https://unitsml.org/quantity/NISTq19" + }, + { + "@id": "https://unitsml.org/quantity/NISTq77" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:pH", + "@type": "Unit", + "name": "pH", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu332" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:pH" + } + ], + "symbol": "pH", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/logarithmic_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq174" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:table_btu", + "@type": "Unit", + "name": "British thermal unit_IT", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu333" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:table_btu" + } + ], + "symbol": "Btu", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq19" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:mean_btu", + "@type": "Unit", + "name": "British thermal unit (mean)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu334" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:mean_btu" + } + ], + "symbol": "Btu", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq19" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:39F_btu", + "@type": "Unit", + "name": "British thermal unit (39 degF)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu335" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:39F_btu" + } + ], + "symbol": "Btu", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq19" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:59F_btu", + "@type": "Unit", + "name": "British thermal unit (59 degF)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu336" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:59F_btu" + } + ], + "symbol": "Btu", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq19" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:60F_btu", + "@type": "Unit", + "name": "British thermal unit (60 degF)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu337" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:60F_btu" + } + ], + "symbol": "Btu", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq19" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:tropical_year", + "@type": "Unit", + "name": "year, tropical", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu338" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:tropical_year" + } + ], + "symbol": "a", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq3" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:sidereal_year", + "@type": "Unit", + "name": "year, sidereal", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu339" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:sidereal_year" + } + ], + "symbol": "a", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq3" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:sidereal_day", + "@type": "Unit", + "name": "day, sidereal", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu340" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:sidereal_day" + } + ], + "symbol": "d", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq3" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:sidereal_hour", + "@type": "Unit", + "name": "hour, sidereal", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu341" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:sidereal_hour" + } + ], + "symbol": "h", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq3" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:sidereal_minute", + "@type": "Unit", + "name": "minute, sidereal", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu342" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:sidereal_minute" + } + ], + "symbol": "min", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq3" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:sidereal_second", + "@type": "Unit", + "name": "second, sidereal", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu343" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:sidereal_second" + } + ], + "symbol": "s", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq3" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:printers_point", + "@type": "Unit", + "name": "point (printer's)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu344" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:printers_point" + } + ], + "symbol": "pt", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:shake", + "@type": "Unit", + "name": "shake", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu345" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:shake" + } + ], + "symbol": "shake", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq3" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:denier", + "@type": "Unit", + "name": "denier", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu346" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:denier" + } + ], + "symbol": "den", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq176" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:nato_mil", + "@type": "Unit", + "name": "angular mil (NATO)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu347" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:nato_mil" + } + ], + "symbol": "mil", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq9" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:pound_mole", + "@type": "Unit", + "name": "pound-mole", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu348" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:pound_mole" + } + ], + "symbol": "lbmol", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq6" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:ton_refrigeration", + "@type": "Unit", + "name": "ton of refrigeration (12 000 Btu_IT/h)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu349" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:ton_refrigeration" + } + ], + "symbol": "ton", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:bit", + "@type": "Unit", + "name": "bit", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu350" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:bit" + } + ], + "symbol": "bit", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/discrete" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq177" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:byte", + "@type": "Unit", + "name": "byte", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu351" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:byte" + } + ], + "symbol": "B", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/discrete" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq177" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:us_peck", + "@type": "Unit", + "name": "peck", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu352" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_peck" + } + ], + "symbol": "pk", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:us_minim", + "@type": "Unit", + "name": "minim", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu353" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_minim" + } + ], + "symbol": "min", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:us_cup", + "@type": "Unit", + "name": "cup (US)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu354" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_cup" + } + ], + "symbol": "cup", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:us_fluid_dram", + "@type": "Unit", + "name": "fluid dram", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu355" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_fluid_dram" + } + ], + "symbol": "fl dr", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:us_gill", + "@type": "Unit", + "name": "gill (US)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu356" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_gill" + } + ], + "symbol": "gi", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:imperial_gill", + "@type": "Unit", + "name": "gill [Canadian and UK (Imperial)]", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu357" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:imperial_gill" + } + ], + "symbol": "gi", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:cubic_foot_per_minute", + "@type": "Unit", + "name": "cubic foot per minute", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu358" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:cubic_foot_per_minute" + } + ], + "symbol": "ftΒ³min", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq151" + } + ], + "rootUnits": [ + { + "power": 3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu78" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu36" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:cubic_foot_per_second", + "@type": "Unit", + "name": "cubic foot per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu359" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:cubic_foot_per_second" + } + ], + "symbol": "ftΒ³sec", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq151" + } + ], + "rootUnits": [ + { + "power": 3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu78" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:minute", + "@type": "Unit", + "name": "minute", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu36" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:minute" + } + ], + "symbol": "min", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq3" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:cubic_inch_per_minute", + "@type": "Unit", + "name": "cubic inch per minute", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu360" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:cubic_inch_per_minute" + } + ], + "symbol": "inΒ³min", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq151" + } + ], + "rootUnits": [ + { + "power": 3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu8" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu36" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:microinch", + "@type": "Unit", + "name": "microinch", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu361" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:microinch" + } + ], + "symbol": "ΞΌin", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu8" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:millibar", + "@type": "Unit", + "name": "millibar", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu362" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:millibar" + } + ], + "symbol": "mbar", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu91" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:mile_per_gallon", + "@type": "Unit", + "name": "mile per gallon (US)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu363" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:mile_per_gallon" + } + ], + "symbol": "mpg", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq198" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu83" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu175" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:gallon_per_minute", + "@type": "Unit", + "name": "gallon (US) per minute", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu364" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:gallon_per_minute" + } + ], + "symbol": "gal/min", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq151" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu175" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu36" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:milliliter", + "@type": "Unit", + "name": "milliliter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu365" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:milliliter" + } + ], + "symbol": "mL", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu130" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:mole_per_liter", + "@type": "Unit", + "name": "mole per liter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu366" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:mole_per_liter" + } + ], + "symbol": "mol/l", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq55" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu6" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu130" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:hour", + "@type": "Unit", + "name": "hour", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu37" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:hour" + } + ], + "symbol": "h", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq3" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:light_week", + "@type": "Unit", + "name": "light week", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu376" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:light_week" + } + ], + "symbol": "l.w.", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:light_hour", + "@type": "Unit", + "name": "light hour", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu377" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:light_hour" + } + ], + "symbol": "l.h.", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:light_minute", + "@type": "Unit", + "name": "light minute", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu378" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:light_minute" + } + ], + "symbol": "l.m.", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:light_second", + "@type": "Unit", + "name": "light second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu379" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:light_second" + } + ], + "symbol": "l.s.", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:day", + "@type": "Unit", + "name": "day", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu38" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:day" + } + ], + "symbol": "d", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq3" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:kilometer_per_liter", + "@type": "Unit", + "name": "kilometer per liter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu380" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilometer_per_liter" + } + ], + "symbol": "km/l", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq198" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu130" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:decibel_milliwatt", + "@type": "Unit", + "name": "dBm", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu381" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:decibel_milliwatt" + } + ], + "symbol": "dBm", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/logarithmic_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq90" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:relative_humidity", + "@type": "Unit", + "name": "relative humidity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu382" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:relative_humidity" + } + ], + "symbol": "RH", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq199" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:octave", + "@type": "Unit", + "name": "octave", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu383" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:octave" + } + ], + "symbol": "oct", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq200" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:decade", + "@type": "Unit", + "name": "decade", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu384" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:decade" + } + ], + "symbol": "dec", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq200" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:erlang", + "@type": "Unit", + "name": "erlang", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu385" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:erlang" + } + ], + "symbol": "E", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq201" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:baud", + "@type": "Unit", + "name": "baud", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu386" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:baud" + } + ], + "symbol": "Bd", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/discrete" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq202" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:shannon", + "@type": "Unit", + "name": "shannon", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu387" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:shannon" + } + ], + "symbol": "Sh", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/discrete" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq203" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:hartley", + "@type": "Unit", + "name": "hartley", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu388" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:hartley" + } + ], + "symbol": "Hart", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/discrete" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq203" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:angstrom", + "@type": "Unit", + "name": "Γ₯ngstrΓΆm", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu39" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:angstrom" + } + ], + "symbol": "β„«", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1" + }, + { + "@id": "https://unitsml.org/quantity/NISTq48" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:second_to_the_power_minus_one", + "@type": "Unit", + "name": "second to the power minus one", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu3e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:second_to_the_power_minus_one" + } + ], + "symbol": "s⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq112" + }, + { + "@id": "https://unitsml.org/quantity/NISTq113" + }, + { + "@id": "https://unitsml.org/quantity/NISTq120" + }, + { + "@id": "https://unitsml.org/quantity/NISTq189" + } + ], + "rootUnits": [ + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:ampere", + "@type": "Unit", + "name": "ampere", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu4" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:ampere" + } + ], + "symbol": "A", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/si-base" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq4" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:ampere_per_meter", + "@type": "Unit", + "name": "ampere per meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu4.u1e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:ampere_per_meter" + } + ], + "symbol": "AΒ·m⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq54" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu4" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:ampere_per_square_meter", + "@type": "Unit", + "name": "ampere per square meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu4.u1e-2/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:ampere_per_square_meter" + } + ], + "symbol": "AΒ·m⁻²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq53" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu4" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:parts_per_million", + "@type": "Unit", + "name": "parts per million", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu400" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:parts_per_million" + } + ], + "symbol": "ppm", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq186" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:var", + "@type": "Unit", + "name": "var", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu401" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:var" + } + ], + "symbol": "var", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq187" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu16" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu4" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:are", + "@type": "Unit", + "name": "are", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu42" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:are" + } + ], + "symbol": "a", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_nist_acceptable" + }, + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq8" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:barn", + "@type": "Unit", + "name": "barn", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu43" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:barn" + } + ], + "symbol": "b", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq8" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:hectare", + "@type": "Unit", + "name": "hectare", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu44" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:hectare" + } + ], + "symbol": "ha", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq8" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:square_foot", + "@type": "Unit", + "name": "square foot", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu45" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:square_foot" + } + ], + "symbol": "ftΒ²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq8" + } + ], + "rootUnits": [ + { + "power": 2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu78" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:square_inch", + "@type": "Unit", + "name": "square inch", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu46" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:square_inch" + } + ], + "symbol": "inΒ²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq8" + } + ], + "rootUnits": [ + { + "power": 2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu8" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:abampere", + "@type": "Unit", + "name": "abampere", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu47" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:abampere" + } + ], + "symbol": "abA", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq4" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:abcoulomb", + "@type": "Unit", + "name": "abcoulomb", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu48" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:abcoulomb" + } + ], + "symbol": "abC", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq22" + }, + { + "@id": "https://unitsml.org/quantity/NISTq23" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:abfarad", + "@type": "Unit", + "name": "abfarad", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu49" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:abfarad" + } + ], + "symbol": "abF", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq27" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:kelvin", + "@type": "Unit", + "name": "kelvin", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu5" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kelvin" + } + ], + "symbol": "K", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/si-base" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq193" + }, + { + "@id": "https://unitsml.org/quantity/NISTq196" + }, + { + "@id": "https://unitsml.org/quantity/NISTq5" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:abhenry", + "@type": "Unit", + "name": "abhenry", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu50" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:abhenry" + } + ], + "symbol": "abH", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq32" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:abmho", + "@type": "Unit", + "name": "abmho", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu51" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:abmho" + } + ], + "symbol": "(abΞ©)⁻¹", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq29" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:abohm", + "@type": "Unit", + "name": "abohm", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu52" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:abohm" + } + ], + "symbol": "abΞ©", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq28" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:abvolt", + "@type": "Unit", + "name": "abvolt", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu53" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:abvolt" + } + ], + "symbol": "abV", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq24" + }, + { + "@id": "https://unitsml.org/quantity/NISTq25" + }, + { + "@id": "https://unitsml.org/quantity/NISTq26" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:ampere_hour", + "@type": "Unit", + "name": "ampere hour", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu54" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:ampere_hour" + } + ], + "symbol": "AΒ·h", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq22" + }, + { + "@id": "https://unitsml.org/quantity/NISTq23" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu4" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu37" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:biot", + "@type": "Unit", + "name": "biot", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu55" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:biot" + } + ], + "symbol": "Bi", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq4" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu47" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:us_survey_acre_foot", + "@type": "Unit", + "name": "acre-foot (based on US survey foot)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu57" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_survey_acre_foot" + } + ], + "symbol": "acΒ·ft", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu317" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu78" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:maxwell", + "@type": "Unit", + "name": "maxwell", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu58" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:maxwell" + } + ], + "symbol": "Mx", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq30" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:kelvin_to_the_power_minus_one", + "@type": "Unit", + "name": "kelvin to the power minus one", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu5e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kelvin_to_the_power_minus_one" + } + ], + "symbol": "K⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq156" + }, + { + "@id": "https://unitsml.org/quantity/NISTq157" + }, + { + "@id": "https://unitsml.org/quantity/NISTq158" + } + ], + "rootUnits": [ + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu5" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:mole", + "@type": "Unit", + "name": "mole", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu6" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:mole" + } + ], + "symbol": "mol", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/si-base" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq6" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:mole_per_cubic_meter", + "@type": "Unit", + "name": "mole per cubic meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu6.u1e-3/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:mole_per_cubic_meter" + } + ], + "symbol": "molΒ·m⁻³", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq55" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu6" + } + }, + { + "power": -3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:mole_per_kilogram", + "@type": "Unit", + "name": "mole per kilogram", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu6.u27p10'3e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:mole_per_kilogram" + } + ], + "symbol": "mol/kg", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq179" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu6" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:table_calorie", + "@type": "Unit", + "name": "I.T. calorie", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu60" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:table_calorie" + } + ], + "symbol": "cal_IT", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17" + }, + { + "@id": "https://unitsml.org/quantity/NISTq18" + }, + { + "@id": "https://unitsml.org/quantity/NISTq182" + }, + { + "@id": "https://unitsml.org/quantity/NISTq183" + }, + { + "@id": "https://unitsml.org/quantity/NISTq19" + }, + { + "@id": "https://unitsml.org/quantity/NISTq77" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:one", + "@type": "Unit", + "name": "one", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu61" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:one" + } + ], + "symbol": "1", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq111" + }, + { + "@id": "https://unitsml.org/quantity/NISTq121" + }, + { + "@id": "https://unitsml.org/quantity/NISTq125" + }, + { + "@id": "https://unitsml.org/quantity/NISTq136" + }, + { + "@id": "https://unitsml.org/quantity/NISTq137" + }, + { + "@id": "https://unitsml.org/quantity/NISTq138" + }, + { + "@id": "https://unitsml.org/quantity/NISTq140" + }, + { + "@id": "https://unitsml.org/quantity/NISTq147" + }, + { + "@id": "https://unitsml.org/quantity/NISTq188" + }, + { + "@id": "https://unitsml.org/quantity/NISTq93" + }, + { + "@id": "https://unitsml.org/quantity/NISTq94" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:erg", + "@type": "Unit", + "name": "erg", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu62" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:erg" + } + ], + "symbol": "erg", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17" + }, + { + "@id": "https://unitsml.org/quantity/NISTq18" + }, + { + "@id": "https://unitsml.org/quantity/NISTq182" + }, + { + "@id": "https://unitsml.org/quantity/NISTq183" + }, + { + "@id": "https://unitsml.org/quantity/NISTq19" + }, + { + "@id": "https://unitsml.org/quantity/NISTq77" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:table_kg_calorie", + "@type": "Unit", + "name": "kilocalorie_IT", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu63" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:table_kg_calorie" + } + ], + "symbol": "kcal_IT", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17" + }, + { + "@id": "https://unitsml.org/quantity/NISTq18" + }, + { + "@id": "https://unitsml.org/quantity/NISTq182" + }, + { + "@id": "https://unitsml.org/quantity/NISTq183" + }, + { + "@id": "https://unitsml.org/quantity/NISTq19" + }, + { + "@id": "https://unitsml.org/quantity/NISTq77" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:thermo_kg_calorie", + "@type": "Unit", + "name": "kilocalorie_th", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu64" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:thermo_kg_calorie" + } + ], + "symbol": "kcal_th", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17" + }, + { + "@id": "https://unitsml.org/quantity/NISTq18" + }, + { + "@id": "https://unitsml.org/quantity/NISTq182" + }, + { + "@id": "https://unitsml.org/quantity/NISTq183" + }, + { + "@id": "https://unitsml.org/quantity/NISTq19" + }, + { + "@id": "https://unitsml.org/quantity/NISTq77" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:kilowatt_hour", + "@type": "Unit", + "name": "kilowatt hour", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu65" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilowatt_hour" + } + ], + "symbol": "kWΒ·h", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17" + }, + { + "@id": "https://unitsml.org/quantity/NISTq18" + }, + { + "@id": "https://unitsml.org/quantity/NISTq182" + }, + { + "@id": "https://unitsml.org/quantity/NISTq183" + }, + { + "@id": "https://unitsml.org/quantity/NISTq19" + }, + { + "@id": "https://unitsml.org/quantity/NISTq77" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu14" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu37" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:watt_hour", + "@type": "Unit", + "name": "watt hour", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu69" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:watt_hour" + } + ], + "symbol": "WΒ·h", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17" + }, + { + "@id": "https://unitsml.org/quantity/NISTq18" + }, + { + "@id": "https://unitsml.org/quantity/NISTq182" + }, + { + "@id": "https://unitsml.org/quantity/NISTq183" + }, + { + "@id": "https://unitsml.org/quantity/NISTq19" + }, + { + "@id": "https://unitsml.org/quantity/NISTq77" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu14" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu37" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:candela", + "@type": "Unit", + "name": "candela", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu7" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:candela" + } + ], + "symbol": "cd", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/si-base" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq7" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:candela_per_square_meter", + "@type": "Unit", + "name": "candela per square meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu7.u1e-2/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:candela_per_square_meter" + } + ], + "symbol": "cdΒ·m⁻²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq56" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu7" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:dyne", + "@type": "Unit", + "name": "dyne", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu71" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:dyne" + } + ], + "symbol": "dyn", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq13" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:kilogram_force", + "@type": "Unit", + "name": "kilogram-force", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu72" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_force" + } + ], + "symbol": "kgf", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq13" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu196" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:kilopond", + "@type": "Unit", + "name": "kilopond", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu73" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilopond" + } + ], + "symbol": "kp", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq13" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu196" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:calorie_th_per_second", + "@type": "Unit", + "name": "calorie_th per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu74" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:calorie_th_per_second" + } + ], + "symbol": "cal_th/s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20" + }, + { + "@id": "https://unitsml.org/quantity/NISTq21" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu227" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:kilocalorie_th_per_second", + "@type": "Unit", + "name": "kilocalorie_th per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu75" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilocalorie_th_per_second" + } + ], + "symbol": "kcal_th/s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20" + }, + { + "@id": "https://unitsml.org/quantity/NISTq21" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu227" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:foot", + "@type": "Unit", + "name": "foot", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu78" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:foot" + } + ], + "symbol": "ft", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1" + }, + { + "@id": "https://unitsml.org/quantity/NISTq48" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:inch", + "@type": "Unit", + "name": "inch", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu8" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:inch" + } + ], + "symbol": "in", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1" + }, + { + "@id": "https://unitsml.org/quantity/NISTq48" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:mile", + "@type": "Unit", + "name": "mile", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu83" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:mile" + } + ], + "symbol": "mi", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1" + }, + { + "@id": "https://unitsml.org/quantity/NISTq48" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:yard", + "@type": "Unit", + "name": "yard", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu84" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:yard" + } + ], + "symbol": "yd", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1" + }, + { + "@id": "https://unitsml.org/quantity/NISTq48" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:phot", + "@type": "Unit", + "name": "phot", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu85" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:phot" + } + ], + "symbol": "ph", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq47" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:grain", + "@type": "Unit", + "name": "grain (troy or apothecary)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu86" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:grain" + } + ], + "symbol": "gr", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:metric_ton", + "@type": "Unit", + "name": "tonne", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu88" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:metric_ton" + } + ], + "symbol": "t", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:erg_per_second", + "@type": "Unit", + "name": "erg per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu89" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:erg_per_second" + } + ], + "symbol": "ergΒ·s⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20" + }, + { + "@id": "https://unitsml.org/quantity/NISTq21" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu62" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:radian", + "@type": "Unit", + "name": "radian", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu9" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:radian" + } + ], + "symbol": "rad", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq195" + }, + { + "@id": "https://unitsml.org/quantity/NISTq9" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:radian_per_meter", + "@type": "Unit", + "name": "radian per meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu9.u1e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:radian_per_meter" + } + ], + "symbol": "rad/m", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq115" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu9" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:radian_per_second", + "@type": "Unit", + "name": "radian per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu9.u3e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:radian_per_second" + } + ], + "symbol": "rad/s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq113" + }, + { + "@id": "https://unitsml.org/quantity/NISTq57" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu9" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:radian_per_second_squared", + "@type": "Unit", + "name": "radian per second squared", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu9.u3e-2/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:radian_per_second_squared" + } + ], + "symbol": "rad/sΒ²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq58" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu9" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:bar", + "@type": "Unit", + "name": "bar", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu91" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:bar" + } + ], + "symbol": "bar", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:dyne_per_square_centimeter", + "@type": "Unit", + "name": "dyne per square centimeter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu92" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:dyne_per_square_centimeter" + } + ], + "symbol": "dynΒ·cm⁻²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu71" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:gram_force_per_square_centimeter", + "@type": "Unit", + "name": "gram-force per square centimeter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu93" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:gram_force_per_square_centimeter" + } + ], + "symbol": "gfΒ·cm⁻²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu196" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:kilogram_force_per_square_centimeter", + "@type": "Unit", + "name": "kilogram-force per square centimeter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu94" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_force_per_square_centimeter" + } + ], + "symbol": "kgfΒ·cm⁻²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu196" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:kilogram_force_per_square_meter", + "@type": "Unit", + "name": "kilogram-force per square meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu95" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_force_per_square_meter" + } + ], + "symbol": "kgfΒ·m⁻²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu196" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:kilogram_force_per_square_millimeter", + "@type": "Unit", + "name": "kilogram-force per square millimeter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu96" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_force_per_square_millimeter" + } + ], + "symbol": "kgfΒ·mm⁻²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu196" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:centipoise", + "@type": "Unit", + "name": "centipoise", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu97" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:centipoise" + } + ], + "symbol": "cP", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq59" + } + ], + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu128" + } + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:curie", + "@type": "Unit", + "name": "curie", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu98" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:curie" + } + ], + "symbol": "Ci", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_nist_acceptable" + }, + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq35" + } + ] + }, + { + "@id": "https://unitsml.org/unit/u:rad", + "@type": "Unit", + "name": "rad (absorbed dose)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu99" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:rad" + } + ], + "symbol": "rad", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_nist_acceptable" + }, + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq36" + } + ] + } + ] +} \ No newline at end of file diff --git a/public/unitsdb/unitsdb.jsonld b/public/unitsdb/unitsdb.jsonld new file mode 100644 index 0000000..d4ebce1 --- /dev/null +++ b/public/unitsdb/unitsdb.jsonld @@ -0,0 +1,29371 @@ +{ + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@graph": [ + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:meter", + "@type": "Unit", + "name": "metre", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:meter" + } + ], + "symbol": "m", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_base", + "name": "SI base units" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + }, + { + "@id": "https://unitsml.org/quantity/NISTq100", + "name": "diameter" + }, + { + "@id": "https://unitsml.org/quantity/NISTq101", + "name": "length of path" + }, + { + "@id": "https://unitsml.org/quantity/NISTq102", + "name": "cartesian coordinates" + }, + { + "@id": "https://unitsml.org/quantity/NISTq103", + "name": "position vector" + }, + { + "@id": "https://unitsml.org/quantity/NISTq104", + "name": "displacement" + }, + { + "@id": "https://unitsml.org/quantity/NISTq105", + "name": "radius of curvature" + }, + { + "@id": "https://unitsml.org/quantity/NISTq114", + "name": "wavelength" + }, + { + "@id": "https://unitsml.org/quantity/NISTq48", + "name": "distance" + }, + { + "@id": "https://unitsml.org/quantity/NISTq95", + "name": "breadth" + }, + { + "@id": "https://unitsml.org/quantity/NISTq96", + "name": "height" + }, + { + "@id": "https://unitsml.org/quantity/NISTq97", + "name": "thickness" + }, + { + "@id": "https://unitsml.org/quantity/NISTq98", + "name": "radius" + }, + { + "@id": "https://unitsml.org/quantity/NISTq99", + "name": "radial distance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:meter_per_second", + "@type": "Unit", + "name": "meter per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu1.u3e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:meter_per_second" + } + ], + "symbol": "mΒ·s⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq107", + "name": "speed of propagation of waves" + }, + { + "@id": "https://unitsml.org/quantity/NISTq116", + "name": "phase velocity" + }, + { + "@id": "https://unitsml.org/quantity/NISTq117", + "name": "group velocity" + }, + { + "@id": "https://unitsml.org/quantity/NISTq12", + "name": "velocity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd11", + "expression": "LΒ·T-1" + }, + "rootUnits": [ + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:meter_per_second_squared", + "@type": "Unit", + "name": "meter per second squared", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu1.u3e-2/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:meter_per_second_squared" + } + ], + "symbol": "mΒ·s⁻²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq108", + "name": "acceleration of free fall" + }, + { + "@id": "https://unitsml.org/quantity/NISTq49", + "name": "acceleration" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd28", + "expression": "LΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:steradian", + "@type": "Unit", + "name": "steradian", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu10" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:steradian" + } + ], + "symbol": "sr", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq11", + "name": "solid angle" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd64", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:rem", + "@type": "Unit", + "name": "rem", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu100" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:rem" + } + ], + "symbol": "rem", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_nist_acceptable", + "name": "non-SI but acceptable by NIST SP 811" + }, + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq39", + "name": "dose equivalent" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd25", + "expression": "L2Β·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:year_365", + "@type": "Unit", + "name": "year (365 days)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu106" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:year_365" + } + ], + "symbol": "a", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq3", + "name": "time" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd3", + "expression": "T" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:foot_per_minute", + "@type": "Unit", + "name": "foot per minute", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu107" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:foot_per_minute" + } + ], + "symbol": "ftΒ·min⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq12", + "name": "velocity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd11", + "expression": "LΒ·T-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu78", + "name": "foot", + "symbol": "β€²" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu36", + "name": "minute", + "symbol": "β€²" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:foot_per_second", + "@type": "Unit", + "name": "foot per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu108" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:foot_per_second" + } + ], + "symbol": "ftΒ·s⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq12", + "name": "velocity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd11", + "expression": "LΒ·T-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu78", + "name": "foot", + "symbol": "β€²" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:inch_per_second", + "@type": "Unit", + "name": "inch per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu109" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:inch_per_second" + } + ], + "symbol": "inΒ·s⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq12", + "name": "velocity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd11", + "expression": "LΒ·T-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu8", + "name": "inch", + "symbol": "β€³" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:newton", + "@type": "Unit", + "name": "newton", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu11" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:newton" + } + ], + "symbol": "N", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq13", + "name": "force" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd12", + "expression": "LΒ·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:newton_meter", + "@type": "Unit", + "name": "newton meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu11.u1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:newton_meter" + } + ], + "symbol": "NΒ·m", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq184", + "name": "torque" + }, + { + "@id": "https://unitsml.org/quantity/NISTq185", + "name": "bending moment of force" + }, + { + "@id": "https://unitsml.org/quantity/NISTq60", + "name": "moment of force" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu11", + "name": "newton", + "symbol": "N" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:newton_meter_second", + "@type": "Unit", + "name": "newton meter second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu11.u1.u3" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:newton_meter_second" + } + ], + "symbol": "NΒ·mΒ·s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq133", + "name": "angular impulse" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd60", + "expression": "L2Β·MΒ·T-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu11", + "name": "newton", + "symbol": "N" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:newton_per_meter", + "@type": "Unit", + "name": "newton per meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu11.u1e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:newton_per_meter" + } + ], + "symbol": "N/m", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq61", + "name": "surface tension" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd37", + "expression": "MΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu11", + "name": "newton", + "symbol": "N" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:newton_meter_squared_per_kilogram_squared", + "@type": "Unit", + "name": "newton meter squared per kilogram squared", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu11.u1e2/1.u27p10'3e-2/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:newton_meter_squared_per_kilogram_squared" + } + ], + "symbol": "NΒ·mΒ²/kgΒ²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq130", + "name": "gravitational constant" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd62", + "expression": "L3Β·M-1Β·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu11", + "name": "newton", + "symbol": "N" + } + }, + { + "power": 2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:newton_second", + "@type": "Unit", + "name": "newton second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu11.u3" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:newton_second" + } + ], + "symbol": "NΒ·s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq129", + "name": "impulse" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd61", + "expression": "LΒ·MΒ·T-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu11", + "name": "newton", + "symbol": "N" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:mile_per_hour", + "@type": "Unit", + "name": "mile per hour", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu110" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:mile_per_hour" + } + ], + "symbol": "miΒ·h⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq12", + "name": "velocity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd11", + "expression": "LΒ·T-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu83", + "name": "mile", + "symbol": "mi" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu37", + "name": "hour", + "symbol": "h" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:mile_per_minute", + "@type": "Unit", + "name": "mile per minute", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu111" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:mile_per_minute" + } + ], + "symbol": "miΒ·min⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq12", + "name": "velocity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd11", + "expression": "LΒ·T-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu83", + "name": "mile", + "symbol": "mi" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu36", + "name": "minute", + "symbol": "β€²" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:mile_per_second", + "@type": "Unit", + "name": "mile per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu112" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:mile_per_second" + } + ], + "symbol": "miΒ·s⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq12", + "name": "velocity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd11", + "expression": "LΒ·T-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu83", + "name": "mile", + "symbol": "mi" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:stere", + "@type": "Unit", + "name": "stere", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu115" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:stere" + } + ], + "symbol": "st", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + }, + "rootUnits": [ + { + "power": 3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:gamma", + "@type": "Unit", + "name": "gamma", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu116" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:gamma" + } + ], + "symbol": "Ξ³", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq14", + "name": "magnetic flux density" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd13", + "expression": "MΒ·T-2Β·I-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu21", + "name": "tesla", + "symbol": "T" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_-9", + "name": "nano", + "symbol": "n" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:ec_therm", + "@type": "Unit", + "name": "therm (EC)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu117" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:ec_therm" + } + ], + "symbol": "thm (EC)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17", + "name": "energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq18", + "name": "work" + }, + { + "@id": "https://unitsml.org/quantity/NISTq182", + "name": "kinetic energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq183", + "name": "mechanical energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq19", + "name": "amount of heat" + }, + { + "@id": "https://unitsml.org/quantity/NISTq77", + "name": "potential energy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:roentgen", + "@type": "Unit", + "name": "roentgen", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu118" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:roentgen" + } + ], + "symbol": "R", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_nist_acceptable", + "name": "non-SI but acceptable by NIST SP 811" + }, + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq75", + "name": "exposure (x and gamma rays)" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd49", + "expression": "M-1Β·TΒ·I" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:gauss", + "@type": "Unit", + "name": "gauss", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu119" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:gauss" + } + ], + "symbol": "G", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq14", + "name": "magnetic flux density" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd13", + "expression": "MΒ·T-2Β·I-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:pascal", + "@type": "Unit", + "name": "pascal", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu12" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:pascal" + } + ], + "symbol": "Pa", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq134", + "name": "normal stress" + }, + { + "@id": "https://unitsml.org/quantity/NISTq135", + "name": "shear stress" + }, + { + "@id": "https://unitsml.org/quantity/NISTq141", + "name": "modulus of elasticity" + }, + { + "@id": "https://unitsml.org/quantity/NISTq142", + "name": "modulus of rigidity" + }, + { + "@id": "https://unitsml.org/quantity/NISTq143", + "name": "modulus of compression" + }, + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:pascal_second", + "@type": "Unit", + "name": "pascal second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu12.u3" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:pascal_second" + } + ], + "symbol": "PaΒ·s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq59", + "name": "dynamic viscosity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd36", + "expression": "L-1Β·MΒ·T-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu12", + "name": "pascal", + "symbol": "Pa" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:pascal_per_kelvin", + "@type": "Unit", + "name": "pascal per kelvin", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu12.u5e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:pascal_per_kelvin" + } + ], + "symbol": "Pa/K", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq159", + "name": "pressure coefficient" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd69", + "expression": "L-1Β·MΒ·T-2Β·Theta-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu12", + "name": "pascal", + "symbol": "Pa" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu5", + "name": "kelvin", + "symbol": "Β°K" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kayser", + "@type": "Unit", + "name": "kayser", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu120" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kayser" + } + ], + "symbol": "K", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq50", + "name": "wavenumber" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd29", + "expression": "L-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:centistokes", + "@type": "Unit", + "name": "centistokes", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu121" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:centistokes" + } + ], + "symbol": "cSt", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq85", + "name": "kinematic viscosity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd56", + "expression": "L2Β·T-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu142", + "name": "stokes", + "symbol": "St" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_-2", + "name": "centi", + "symbol": "c" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:micron", + "@type": "Unit", + "name": "micron", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu122" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:micron" + } + ], + "symbol": "ΞΌ", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + }, + { + "@id": "https://unitsml.org/quantity/NISTq48", + "name": "distance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_-6", + "name": "micro", + "symbol": "ΞΌ" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:mil (length)", + "@type": "Unit", + "name": "mil (length)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu123" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:mil (length)" + } + ], + "symbol": "thou", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + }, + { + "@id": "https://unitsml.org/quantity/NISTq48", + "name": "distance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu8", + "name": "inch", + "symbol": "β€³" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_-3", + "name": "milli", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:stilb", + "@type": "Unit", + "name": "stilb", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu124" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:stilb" + } + ], + "symbol": "sb", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq56", + "name": "luminance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd27", + "expression": "L-2Β·J" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilogram_force_second_squared_per_meter", + "@type": "Unit", + "name": "kilogram-force second squared per meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu125" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_force_second_squared_per_meter" + } + ], + "symbol": "kgfΒ·sΒ²m⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": 2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilogram_force_meter", + "@type": "Unit", + "name": "kilogram-force meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu126" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_force_meter" + } + ], + "symbol": "kgfΒ·m", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17", + "name": "energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq18", + "name": "work" + }, + { + "@id": "https://unitsml.org/quantity/NISTq184", + "name": "torque" + }, + { + "@id": "https://unitsml.org/quantity/NISTq185", + "name": "bending moment of force" + }, + { + "@id": "https://unitsml.org/quantity/NISTq60", + "name": "moment of force" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:electric_horsepower", + "@type": "Unit", + "name": "horsepower, electric", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu127" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:electric_horsepower" + } + ], + "symbol": "hp", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20", + "name": "power" + }, + { + "@id": "https://unitsml.org/quantity/NISTq21", + "name": "radiant flux" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:poise", + "@type": "Unit", + "name": "poise", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu128" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:poise" + } + ], + "symbol": "P", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq59", + "name": "dynamic viscosity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd36", + "expression": "L-1Β·MΒ·T-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:rhe", + "@type": "Unit", + "name": "rhe", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu129" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:rhe" + } + ], + "symbol": "rhe", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq91", + "name": "fluidity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd52", + "expression": "LΒ·M-1Β·T" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:pascal_to_the_power_minus_one", + "@type": "Unit", + "name": "pascal to the power minus one", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu12e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:pascal_to_the_power_minus_one" + } + ], + "symbol": "Pa⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq139", + "name": "compressibility" + }, + { + "@id": "https://unitsml.org/quantity/NISTq160", + "name": "isothermal compressibility" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd63", + "expression": "LΒ·M-1Β·T2" + }, + "rootUnits": [ + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu12", + "name": "pascal", + "symbol": "Pa" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:joule", + "@type": "Unit", + "name": "joule", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu13" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:joule" + } + ], + "symbol": "J", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq152", + "name": "Lagrange function" + }, + { + "@id": "https://unitsml.org/quantity/NISTq153", + "name": "Hamilton function" + }, + { + "@id": "https://unitsml.org/quantity/NISTq17", + "name": "energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq18", + "name": "work" + }, + { + "@id": "https://unitsml.org/quantity/NISTq182", + "name": "kinetic energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq183", + "name": "mechanical energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq19", + "name": "amount of heat" + }, + { + "@id": "https://unitsml.org/quantity/NISTq77", + "name": "potential energy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:joule_per_cubic_meter", + "@type": "Unit", + "name": "joule per cubic meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu13.u1e-3/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:joule_per_cubic_meter" + } + ], + "symbol": "J/mΒ³", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq67", + "name": "energy density" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu13", + "name": "joule", + "symbol": "J" + } + }, + { + "power": -3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:joule_per_kilogram", + "@type": "Unit", + "name": "joule per kilogram", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu13.u27p10'3e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:joule_per_kilogram" + } + ], + "symbol": "J/kg", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq65", + "name": "specific energy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd25", + "expression": "L2Β·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu13", + "name": "joule", + "symbol": "J" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:joule_per_kilogram_kelvin", + "@type": "Unit", + "name": "joule per kilogram kelvin", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu13.u27p10'3e-1/1.u5e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:joule_per_kilogram_kelvin" + } + ], + "symbol": "J/(kgΒ·K)", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq64", + "name": "specific heat capacity" + }, + { + "@id": "https://unitsml.org/quantity/NISTq80", + "name": "specific entropy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd40", + "expression": "L2Β·T-2Β·Theta-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu13", + "name": "joule", + "symbol": "J" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu5", + "name": "kelvin", + "symbol": "Β°K" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:joule_second", + "@type": "Unit", + "name": "joule second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu13.u3" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:joule_second" + } + ], + "symbol": "JΒ·s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq154", + "name": "action" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd60", + "expression": "L2Β·MΒ·T-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu13", + "name": "joule", + "symbol": "J" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:joule_per_kelvin", + "@type": "Unit", + "name": "joule per kelvin", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu13.u5e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:joule_per_kelvin" + } + ], + "symbol": "J/K", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq63", + "name": "heat capacity" + }, + { + "@id": "https://unitsml.org/quantity/NISTq79", + "name": "entropy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd39", + "expression": "L2Β·MΒ·T-2Β·Theta-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu13", + "name": "joule", + "symbol": "J" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu5", + "name": "kelvin", + "symbol": "Β°K" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:joule_per_mole", + "@type": "Unit", + "name": "joule per mole", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu13.u6e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:joule_per_mole" + } + ], + "symbol": "J/mol", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq73", + "name": "molar energy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd47", + "expression": "L2Β·MΒ·T-2Β·N-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu13", + "name": "joule", + "symbol": "J" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu6", + "name": "mole", + "symbol": "mol" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:joule_per_mole_kelvin", + "@type": "Unit", + "name": "joule per mole kelvin", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu13.u6e-1/1.u5e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:joule_per_mole_kelvin" + } + ], + "symbol": "J/(molΒ·K)", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq74", + "name": "molar entropy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq83", + "name": "molar heat capacity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd48", + "expression": "L2Β·MΒ·T-2Β·Theta-1Β·N-1" + }, + "rootUnits": [ + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu5", + "name": "kelvin", + "symbol": "Β°K" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:liter", + "@type": "Unit", + "name": "litre", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu130" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:liter" + } + ], + "symbol": "L", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:nautical_mile", + "@type": "Unit", + "name": "nautical mile", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu131" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:nautical_mile" + } + ], + "symbol": "M", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + }, + { + "@id": "https://unitsml.org/quantity/NISTq48", + "name": "distance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:degree_Fahrenheit", + "@type": "Unit", + "name": "degree Fahrenheit", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu133" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:degree_Fahrenheit" + } + ], + "symbol": "Β°F", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_interval" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq175", + "name": "Fahrenheit temperature" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd5", + "expression": "Theta" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:standard_atmosphere", + "@type": "Unit", + "name": "standard atmosphere", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu134" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:standard_atmosphere" + } + ], + "symbol": "atm", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:technical_atmosphere", + "@type": "Unit", + "name": "technical atmosphere", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu135" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:technical_atmosphere" + } + ], + "symbol": "at", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:watt", + "@type": "Unit", + "name": "watt", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu14" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:watt" + } + ], + "symbol": "W", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20", + "name": "power" + }, + { + "@id": "https://unitsml.org/quantity/NISTq21", + "name": "radiant flux" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:watt_per_steradian", + "@type": "Unit", + "name": "watt per steradian", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu14.u10e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:watt_per_steradian" + } + ], + "symbol": "W/sr", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq88", + "name": "radiant intensity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu14", + "name": "watt", + "symbol": "W" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu10", + "name": "steradian", + "symbol": "sr" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:watt_per_meter_kelvin", + "@type": "Unit", + "name": "watt per meter kelvin", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu14.u1e-1/1.u5e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:watt_per_meter_kelvin" + } + ], + "symbol": "W/(mΒ·K)", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq66", + "name": "thermal conductivity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd41", + "expression": "LΒ·MΒ·T-3Β·Theta-1" + }, + "rootUnits": [ + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu5", + "name": "kelvin", + "symbol": "Β°K" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:watt_per_square_meter", + "@type": "Unit", + "name": "watt per square meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu14.u1e-2/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:watt_per_square_meter" + } + ], + "symbol": "W/mΒ²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq62", + "name": "heat flux density" + }, + { + "@id": "https://unitsml.org/quantity/NISTq78", + "name": "irradiance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd38", + "expression": "MΒ·T-3" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu14", + "name": "watt", + "symbol": "W" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:watt_per_square_meter_steradian", + "@type": "Unit", + "name": "watt per square meter steradian", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu14.u1e-2/1.u10e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:watt_per_square_meter_steradian" + } + ], + "symbol": "W/(mΒ²Β·sr)", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq89", + "name": "radiance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd38", + "expression": "MΒ·T-3" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu14", + "name": "watt", + "symbol": "W" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu10", + "name": "steradian", + "symbol": "sr" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:watt_second", + "@type": "Unit", + "name": "watt second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu14.u3" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:watt_second" + } + ], + "symbol": "WΒ·s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17", + "name": "energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq18", + "name": "work" + }, + { + "@id": "https://unitsml.org/quantity/NISTq182", + "name": "kinetic energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq183", + "name": "mechanical energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq19", + "name": "amount of heat" + }, + { + "@id": "https://unitsml.org/quantity/NISTq77", + "name": "potential energy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu14", + "name": "watt", + "symbol": "W" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:stokes", + "@type": "Unit", + "name": "stokes", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu142" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:stokes" + } + ], + "symbol": "St", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq85", + "name": "kinematic viscosity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd56", + "expression": "L2Β·T-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:gal", + "@type": "Unit", + "name": "gal", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu143" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:gal" + } + ], + "symbol": "Gal", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq49", + "name": "acceleration" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd28", + "expression": "LΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:oersted", + "@type": "Unit", + "name": "oersted", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu144" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:oersted" + } + ], + "symbol": "Oe", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq87", + "name": "magnetic field" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd33", + "expression": "L-1Β·I" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:arc_minute", + "@type": "Unit", + "name": "arcminute", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu147" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:arc_minute" + } + ], + "symbol": "β€²", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq9", + "name": "plane angle" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd9", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:arc_second", + "@type": "Unit", + "name": "arcsecond", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu148" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:arc_second" + } + ], + "symbol": "as", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq9", + "name": "plane angle" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd9", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:arc_degree", + "@type": "Unit", + "name": "degree (degree of arc)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu149" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:arc_degree" + } + ], + "symbol": "ΒΊ", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq9", + "name": "plane angle" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd9", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:coulomb", + "@type": "Unit", + "name": "coulomb", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu15" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:coulomb" + } + ], + "symbol": "C", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq22", + "name": "electric charge" + }, + { + "@id": "https://unitsml.org/quantity/NISTq23", + "name": "amount of electricity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd17", + "expression": "TΒ·I" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:coulomb_per_square_meter", + "@type": "Unit", + "name": "coulomb per square meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu15.u1e-2/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:coulomb_per_square_meter" + } + ], + "symbol": "C/mΒ²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq81", + "name": "surface charge density" + }, + { + "@id": "https://unitsml.org/quantity/NISTq82", + "name": "electric displacement" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd53", + "expression": "M-2Β·TΒ·I" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu15", + "name": "coulomb", + "symbol": "C" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:coulomb_per_cubic_meter", + "@type": "Unit", + "name": "coulomb per cubic meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu15.u1e-3/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:coulomb_per_cubic_meter" + } + ], + "symbol": "C/mΒ³", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq69", + "name": "electric charge density" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd43", + "expression": "L-3Β·TΒ·I" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu15", + "name": "coulomb", + "symbol": "C" + } + }, + { + "power": -3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:coulomb_per_kilogram", + "@type": "Unit", + "name": "coulomb per kilogram", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu15.u27p10'3e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:coulomb_per_kilogram" + } + ], + "symbol": "C/kg", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq197", + "name": "exposure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq75", + "name": "exposure (x and gamma rays)" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd49", + "expression": "M-1Β·TΒ·I" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu15", + "name": "coulomb", + "symbol": "C" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:knot", + "@type": "Unit", + "name": "nautical mile per hour", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu152" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:knot" + } + ], + "symbol": "kn", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq12", + "name": "velocity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd11", + "expression": "LΒ·T-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:neper", + "@type": "Unit", + "name": "neper", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu153" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:neper" + } + ], + "symbol": "Np", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/logarithmic_field" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq118", + "name": "level of a field quantity" + }, + { + "@id": "https://unitsml.org/quantity/NISTq119", + "name": "level of a power quantity" + }, + { + "@id": "https://unitsml.org/quantity/NISTq121", + "name": "ratio logarithm (Np)" + }, + { + "@id": "https://unitsml.org/quantity/NISTq90", + "name": "ratio logarithm (B)" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd83", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:bel", + "@type": "Unit", + "name": "bel", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu154" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:bel" + } + ], + "symbol": "B", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/logarithmic_field" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq118", + "name": "level of a field quantity" + }, + { + "@id": "https://unitsml.org/quantity/NISTq119", + "name": "level of a power quantity" + }, + { + "@id": "https://unitsml.org/quantity/NISTq90", + "name": "ratio logarithm (B)" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd83", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:decibel", + "@type": "Unit", + "name": "decibel", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu155" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:decibel" + } + ], + "symbol": "dB", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/logarithmic_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq90", + "name": "ratio logarithm (B)" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd67", + "expression": "1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu154", + "name": "bel", + "symbol": "B" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_-1", + "name": "deci", + "symbol": "d" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:mm_Hg", + "@type": "Unit", + "name": "conventional millimeter of mercury", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu156" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:mm_Hg" + } + ], + "symbol": "mmHg", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:darcy", + "@type": "Unit", + "name": "darcy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu157" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:darcy" + } + ], + "symbol": "D", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq72", + "name": "permeability" + }, + { + "@id": "https://unitsml.org/quantity/NISTq92", + "name": "hydrodynamic permeability" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd46", + "expression": "LΒ·MΒ·T-2Β·I-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:gon", + "@type": "Unit", + "name": "gon", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu159" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:gon" + } + ], + "symbol": "gon", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq9", + "name": "plane angle" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd9", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:volt", + "@type": "Unit", + "name": "volt", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu16" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:volt" + } + ], + "symbol": "V", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq24", + "name": "electric potential difference" + }, + { + "@id": "https://unitsml.org/quantity/NISTq25", + "name": "potential difference" + }, + { + "@id": "https://unitsml.org/quantity/NISTq26", + "name": "electromotive force" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd18", + "expression": "L2Β·MΒ·T-3Β·I-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:volt_per_meter", + "@type": "Unit", + "name": "volt per meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu16.u1e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:volt_per_meter" + } + ], + "symbol": "V/m", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq68", + "name": "electric field strength" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd42", + "expression": "LΒ·MΒ·T-3Β·I-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu16", + "name": "volt", + "symbol": "V" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilometer_per_hour", + "@type": "Unit", + "name": "kilometer per hour", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu160" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilometer_per_hour" + } + ], + "symbol": "km/h", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq107", + "name": "speed of propagation of waves" + }, + { + "@id": "https://unitsml.org/quantity/NISTq12", + "name": "velocity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd11", + "expression": "LΒ·T-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu37", + "name": "hour", + "symbol": "h" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:neper_per_second", + "@type": "Unit", + "name": "neper per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu163" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:neper_per_second" + } + ], + "symbol": "Np/s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq120", + "name": "damping coefficient" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd24", + "expression": "T-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu153", + "name": "neper", + "symbol": "Np" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:square_yard", + "@type": "Unit", + "name": "square yard", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu164" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:square_yard" + } + ], + "symbol": "ydΒ²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq8", + "name": "area" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd8", + "expression": "L2" + }, + "rootUnits": [ + { + "power": 2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu84", + "name": "yard", + "symbol": "yd" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:square_mile", + "@type": "Unit", + "name": "square mile", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu165" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:square_mile" + } + ], + "symbol": "miΒ²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq8", + "name": "area" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd8", + "expression": "L2" + }, + "rootUnits": [ + { + "power": 2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu83", + "name": "mile", + "symbol": "mi" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:tons_of_tnt", + "@type": "Unit", + "name": "ton of TNT (energy equivalent)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu166" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:tons_of_tnt" + } + ], + "symbol": "ton", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17", + "name": "energy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:foot_per_second_squared", + "@type": "Unit", + "name": "foot per second squared", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu167" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:foot_per_second_squared" + } + ], + "symbol": "ft/sΒ²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq49", + "name": "acceleration" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd28", + "expression": "LΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu78", + "name": "foot", + "symbol": "β€²" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:cubic_inch", + "@type": "Unit", + "name": "cubic inch", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu168" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:cubic_inch" + } + ], + "symbol": "inΒ³", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + }, + "rootUnits": [ + { + "power": 3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu8", + "name": "inch", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:cubic_foot", + "@type": "Unit", + "name": "cubic foot", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu169" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:cubic_foot" + } + ], + "symbol": "ftΒ³", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + }, + "rootUnits": [ + { + "power": 3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu78", + "name": "foot", + "symbol": "β€²" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:farad", + "@type": "Unit", + "name": "farad", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu17" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:farad" + } + ], + "symbol": "F", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq27", + "name": "capacitance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd19", + "expression": "L-2Β·M-1Β·T4Β·I2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:farad_per_meter", + "@type": "Unit", + "name": "farad per meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu17.u1e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:farad_per_meter" + } + ], + "symbol": "F/m", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq71", + "name": "permittivity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd45", + "expression": "L-3Β·M-1Β·T4Β·I2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu17", + "name": "farad", + "symbol": "F" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:cubic_yard", + "@type": "Unit", + "name": "cubic yard", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu170" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:cubic_yard" + } + ], + "symbol": "ydΒ³", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + }, + "rootUnits": [ + { + "power": 3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu84", + "name": "yard", + "symbol": "yd" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:imperial_gallon", + "@type": "Unit", + "name": "gallon (UK)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu171" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:imperial_gallon" + } + ], + "symbol": "gal (UK)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:imperial_pint", + "@type": "Unit", + "name": "pint (UK)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu172" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:imperial_pint" + } + ], + "symbol": "pt (UK)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:imperial_ounce", + "@type": "Unit", + "name": "fluid ounce (UK)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu173" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:imperial_ounce" + } + ], + "symbol": "fl oz (UK)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_gallon", + "@type": "Unit", + "name": "gallon (US)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu175" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_gallon" + } + ], + "symbol": "gal (US)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_interval" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_pint", + "@type": "Unit", + "name": "liquid pint (US)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu176" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_pint" + } + ], + "symbol": "liq pint (US)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_fluid_ounce", + "@type": "Unit", + "name": "fluid ounce (US)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu177" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_fluid_ounce" + } + ], + "symbol": "fl oz (US)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:petro_barrel", + "@type": "Unit", + "name": "barrel (US) for petroleum", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu178" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:petro_barrel" + } + ], + "symbol": "bbl (US)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_bushel", + "@type": "Unit", + "name": "bushel (US)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu179" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_bushel" + } + ], + "symbol": "bu (US)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:ohm", + "@type": "Unit", + "name": "ohm", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu18" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:ohm" + } + ], + "symbol": "Ω", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq28", + "name": "electric resistance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd20", + "expression": "L2Β·MΒ·T-3Β·I-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_dry_pint", + "@type": "Unit", + "name": "dry pint (US)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu180" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_dry_pint" + } + ], + "symbol": "dry pt (US)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:light_year", + "@type": "Unit", + "name": "light year", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu182" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:light_year" + } + ], + "symbol": "l.y.", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:astronomical_unit", + "@type": "Unit", + "name": "astronomical unit", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu183" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:astronomical_unit" + } + ], + "symbol": "ua", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:parsec", + "@type": "Unit", + "name": "parsec", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu184" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:parsec" + } + ], + "symbol": "pc", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:meter_to_the_power_four", + "@type": "Unit", + "name": "meter to the power four", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu185" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:meter_to_the_power_four" + } + ], + "symbol": "m⁴", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq144", + "name": "second axial moment of area" + }, + { + "@id": "https://unitsml.org/quantity/NISTq145", + "name": "second polar moment of area" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd57", + "expression": "L4" + }, + "rootUnits": [ + { + "power": 4, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilogram_per_liter", + "@type": "Unit", + "name": "kilogram per liter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu188" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_per_liter" + } + ], + "symbol": "kg/l", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq51", + "name": "density" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd30", + "expression": "L-3Β·M" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu130", + "name": "litre", + "symbol": "L" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:metric_ton_per_cubic_meter", + "@type": "Unit", + "name": "metric ton per cubic meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu189" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:metric_ton_per_cubic_meter" + } + ], + "symbol": "t/mΒ³", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq51", + "name": "density" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd30", + "expression": "L-3Β·M" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu88", + "name": "tonne", + "symbol": "t" + } + }, + { + "power": -3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:siemens", + "@type": "Unit", + "name": "siemens", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu19" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:siemens" + } + ], + "symbol": "S", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq29", + "name": "electric conductance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd21", + "expression": "L-2Β·M-1Β·T3Β·I2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:gram_force", + "@type": "Unit", + "name": "gram-force", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu196" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:gram_force" + } + ], + "symbol": "gf", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq13", + "name": "force" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd12", + "expression": "LΒ·MΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:meter_to_the_power_minus_one", + "@type": "Unit", + "name": "meter to the power minus one", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu1e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:meter_to_the_power_minus_one" + } + ], + "symbol": "m⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq106", + "name": "curvature" + }, + { + "@id": "https://unitsml.org/quantity/NISTq115", + "name": "angular wavenumber" + }, + { + "@id": "https://unitsml.org/quantity/NISTq122", + "name": "attenuation coefficient" + }, + { + "@id": "https://unitsml.org/quantity/NISTq123", + "name": "phase coefficient" + }, + { + "@id": "https://unitsml.org/quantity/NISTq124", + "name": "propagation coefficient" + }, + { + "@id": "https://unitsml.org/quantity/NISTq50", + "name": "wavenumber" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd29", + "expression": "L-1" + }, + "rootUnits": [ + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:meter_to_the_power_minus_two", + "@type": "Unit", + "name": "meter to the power minus two", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu1e-2/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:meter_to_the_power_minus_two" + } + ], + "symbol": "m⁻²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq190", + "name": "fluence" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd96", + "expression": "L-2" + }, + "rootUnits": [ + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:meter_to_the_power_minus_two_per_second", + "@type": "Unit", + "name": "meter to the power minus two per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu1e-2/1.u3e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:meter_to_the_power_minus_two_per_second" + } + ], + "symbol": "m⁻²·s⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq191", + "name": "fluence rate" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd97", + "expression": "L-2Β·T-1" + }, + "rootUnits": [ + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:square_meter", + "@type": "Unit", + "name": "square meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu1e2/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:square_meter" + } + ], + "symbol": "mΒ²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq8", + "name": "area" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd8", + "expression": "L2" + }, + "rootUnits": [ + { + "power": 2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:meter_squared_per_second", + "@type": "Unit", + "name": "meter squared per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu1e2/1.u3e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:meter_squared_per_second" + } + ], + "symbol": "mΒ²/s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq85", + "name": "kinematic viscosity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd56", + "expression": "L2Β·T-1" + }, + "rootUnits": [ + { + "power": 2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:cubic_meter", + "@type": "Unit", + "name": "cubic meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu1e3/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:cubic_meter" + } + ], + "symbol": "mΒ³", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + }, + { + "@id": "https://unitsml.org/quantity/NISTq146", + "name": "section modulus" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + }, + "rootUnits": [ + { + "power": 3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:cubic_meter_per_kilogram", + "@type": "Unit", + "name": "cubic meter per kilogram", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu1e3/1.u27p10'3" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:cubic_meter_per_kilogram" + } + ], + "symbol": "mΒ³Β·kg", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq52", + "name": "specific volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd31", + "expression": "L3Β·M-1" + }, + "rootUnits": [ + { + "power": 3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:cubic_meter_per_second", + "@type": "Unit", + "name": "cubic meter per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu1e3/1.u3e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:cubic_meter_per_second" + } + ], + "symbol": "mΒ³/s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq151", + "name": "volume flow rate" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd66", + "expression": "L3Β·T-1" + }, + "rootUnits": [ + { + "power": 3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilogram", + "@type": "Unit", + "name": "kilogram", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu2" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram" + } + ], + "symbol": "kg", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_base", + "name": "SI base units" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:weber", + "@type": "Unit", + "name": "weber", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu20" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:weber" + } + ], + "symbol": "Wb", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq30", + "name": "magnetic flux" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd22", + "expression": "L2Β·MΒ·T-2Β·I-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:av_pound", + "@type": "Unit", + "name": "pound (avoirdupois)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu201" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:av_pound" + } + ], + "symbol": "lb", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:av_ounce", + "@type": "Unit", + "name": "ounce (avoirdupois)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu202" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:av_ounce" + } + ], + "symbol": "oz", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:gross_hundredweight", + "@type": "Unit", + "name": "hundredweight (long, 112 lb)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu203" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:gross_hundredweight" + } + ], + "symbol": "cwt (UK)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:pound_per_cubic_foot", + "@type": "Unit", + "name": "pound per cubic foot", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu204" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:pound_per_cubic_foot" + } + ], + "symbol": "lb/ftΒ³", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq51", + "name": "density" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd30", + "expression": "L-3Β·M" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu201", + "name": "pound (avoirdupois)", + "symbol": "lb" + } + }, + { + "power": -3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu78", + "name": "foot", + "symbol": "β€²" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:pound_force", + "@type": "Unit", + "name": "pound-force", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu205" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:pound_force" + } + ], + "symbol": "lbf", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq128", + "name": "weight" + }, + { + "@id": "https://unitsml.org/quantity/NISTq13", + "name": "force" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd12", + "expression": "LΒ·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:foot_pound_force", + "@type": "Unit", + "name": "foot pound-force", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu206" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:foot_pound_force" + } + ], + "symbol": "ftΒ·lbf", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17", + "name": "energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq18", + "name": "work" + }, + { + "@id": "https://unitsml.org/quantity/NISTq182", + "name": "kinetic energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq183", + "name": "mechanical energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq184", + "name": "torque" + }, + { + "@id": "https://unitsml.org/quantity/NISTq185", + "name": "bending moment of force" + }, + { + "@id": "https://unitsml.org/quantity/NISTq60", + "name": "moment of force" + }, + { + "@id": "https://unitsml.org/quantity/NISTq77", + "name": "potential energy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu78", + "name": "foot", + "symbol": "β€²" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu205", + "name": "pound-force", + "symbol": "lbf" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:pound_force_per_square_inch", + "@type": "Unit", + "name": "pound-force per square inch", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu207" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:pound_force_per_square_inch" + } + ], + "symbol": "lbf/inΒ²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu205", + "name": "pound-force", + "symbol": "lbf" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu8", + "name": "inch", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:inch_to_the_fourth_power", + "@type": "Unit", + "name": "inch to the fourth power", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu208" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:inch_to_the_fourth_power" + } + ], + "symbol": "in⁴", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq155", + "name": "area moment of inertia" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd57", + "expression": "L4" + }, + "rootUnits": [ + { + "power": 4, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu8", + "name": "inch", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:inch_cubed", + "@type": "Unit", + "name": "inch cubed", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu209" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:inch_cubed" + } + ], + "symbol": "inΒ³", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq146", + "name": "section modulus" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + }, + "rootUnits": [ + { + "power": 3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu8", + "name": "inch", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:tesla", + "@type": "Unit", + "name": "tesla", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu21" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:tesla" + } + ], + "symbol": "T", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq14", + "name": "magnetic flux density" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd13", + "expression": "MΒ·T-2Β·I-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:foot_squared_per_second", + "@type": "Unit", + "name": "foot squared per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu210" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:foot_squared_per_second" + } + ], + "symbol": "ftΒ²/s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq85", + "name": "kinematic viscosity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd56", + "expression": "L2Β·T-1" + }, + "rootUnits": [ + { + "power": 2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu78", + "name": "foot", + "symbol": "β€²" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:foot_pound_force_per_second", + "@type": "Unit", + "name": "foot pound-force per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu211" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:foot_pound_force_per_second" + } + ], + "symbol": "ftΒ·lbf/2", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20", + "name": "power" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu78", + "name": "foot", + "symbol": "β€²" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu205", + "name": "pound-force", + "symbol": "lbf" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:carat", + "@type": "Unit", + "name": "carat", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu212" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:carat" + } + ], + "symbol": "ct", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:tex", + "@type": "Unit", + "name": "tex", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu213" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:tex" + } + ], + "symbol": "tex", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq126", + "name": "linear density" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd58", + "expression": "L-1Β·M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:torr", + "@type": "Unit", + "name": "torr", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu214" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:torr" + } + ], + "symbol": "torr", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:mm_water", + "@type": "Unit", + "name": "conventional millimeter of water", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu215" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:mm_water" + } + ], + "symbol": "mmHβ‚‚O", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:thermo_btu", + "@type": "Unit", + "name": "British thermal unit_th", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu216" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:thermo_btu" + } + ], + "symbol": "Btu_th", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq19", + "name": "amount of heat" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilogram_force_meter_per_second", + "@type": "Unit", + "name": "kilogram-force meter per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu217" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_force_meter_per_second" + } + ], + "symbol": "kgfΒ·m/s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20", + "name": "power" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:metric_horsepower", + "@type": "Unit", + "name": "horsepower, metric", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu218" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:metric_horsepower" + } + ], + "symbol": "hp", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20", + "name": "power" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:henry", + "@type": "Unit", + "name": "henry", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu22" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:henry" + } + ], + "symbol": "H", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq32", + "name": "inductance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd23", + "expression": "L2Β·MΒ·T-2Β·I-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:henry_per_meter", + "@type": "Unit", + "name": "henry per meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu22.u1e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:henry_per_meter" + } + ], + "symbol": "H/m", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq72", + "name": "permeability" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd46", + "expression": "LΒ·MΒ·T-2Β·I-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu22", + "name": "henry", + "symbol": "H" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:watt_per_square_meter_kelvin", + "@type": "Unit", + "name": "watt per square meter kelvin", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu221" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:watt_per_square_meter_kelvin" + } + ], + "symbol": "W/(mΒ²Β·K)", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq180", + "name": "coefficient of heat transfer" + }, + { + "@id": "https://unitsml.org/quantity/NISTq181", + "name": "surface coefficient of heat transfer" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd71", + "expression": "MΒ·T-3Β·Theta-1" + }, + "rootUnits": [ + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu5", + "name": "kelvin", + "symbol": "Β°K" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:lambert", + "@type": "Unit", + "name": "lambert", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu222" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:lambert" + } + ], + "symbol": "L", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq56", + "name": "luminance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd27", + "expression": "L-2Β·J" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:gilbert", + "@type": "Unit", + "name": "gilbert", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu223" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:gilbert" + } + ], + "symbol": "Gi", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq161", + "name": "magnetomotive force (Cardelli) (-SP811)" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd4", + "expression": "I" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:debye", + "@type": "Unit", + "name": "debye", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu224" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:debye" + } + ], + "symbol": "D", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq162", + "name": "electric dipole moment" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd72", + "expression": "LΒ·TΒ·I" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:abwatt", + "@type": "Unit", + "name": "abwatt", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu225" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:abwatt" + } + ], + "symbol": "aW", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20", + "name": "power" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:slug", + "@type": "Unit", + "name": "slug", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu226" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:slug" + } + ], + "symbol": "slug", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:thermo_calorie", + "@type": "Unit", + "name": "thermochemical calorie", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu227" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:thermo_calorie" + } + ], + "symbol": "cal", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17", + "name": "energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq18", + "name": "work" + }, + { + "@id": "https://unitsml.org/quantity/NISTq182", + "name": "kinetic energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq183", + "name": "mechanical energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq19", + "name": "amount of heat" + }, + { + "@id": "https://unitsml.org/quantity/NISTq77", + "name": "potential energy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:short_ton", + "@type": "Unit", + "name": "short ton", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu228" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:short_ton" + } + ], + "symbol": "t", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:long_ton", + "@type": "Unit", + "name": "long ton", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu229" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:long_ton" + } + ], + "symbol": "t", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:degree_Celsius", + "@type": "Unit", + "name": "degree Celsius", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu23" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:degree_Celsius" + } + ], + "symbol": "Β°C", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_interval" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq192", + "name": "ITS-90 temperature (Β°C)" + }, + { + "@id": "https://unitsml.org/quantity/NISTq34", + "name": "Celsius temperature" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd5", + "expression": "Theta" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:hundredweight", + "@type": "Unit", + "name": "hundredweight (short, 100 lb)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu230" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:hundredweight" + } + ], + "symbol": "cwt (US)", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu203", + "name": "hundredweight (long, 112 lb)", + "symbol": "cwt (UK)" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:troy_ounce", + "@type": "Unit", + "name": "ounce (troy or apothecary)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu231" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:troy_ounce" + } + ], + "symbol": "oz", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:troy_pound", + "@type": "Unit", + "name": "pound (troy or apothecary)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu232" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:troy_pound" + } + ], + "symbol": "lb", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:pennyweight", + "@type": "Unit", + "name": "pennyweight", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu233" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:pennyweight" + } + ], + "symbol": "dwt (troy)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:apothecaries_dram", + "@type": "Unit", + "name": "dram (apothecary)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu234" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:apothecaries_dram" + } + ], + "symbol": "dr", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:scruple", + "@type": "Unit", + "name": "scruple", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu235" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:scruple" + } + ], + "symbol": "scr (ap.)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:poundal", + "@type": "Unit", + "name": "poundal", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu236" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:poundal" + } + ], + "symbol": "pdl", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq128", + "name": "weight" + }, + { + "@id": "https://unitsml.org/quantity/NISTq13", + "name": "force" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd12", + "expression": "LΒ·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kip", + "@type": "Unit", + "name": "kip", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu237" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kip" + } + ], + "symbol": "kip", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:ton_force", + "@type": "Unit", + "name": "ton-force (2000 lb)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu238" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:ton_force" + } + ], + "symbol": "ton-force (2000 lb)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq128", + "name": "weight" + }, + { + "@id": "https://unitsml.org/quantity/NISTq13", + "name": "force" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd12", + "expression": "LΒ·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:barye", + "@type": "Unit", + "name": "barye", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu239" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:barye" + } + ], + "symbol": "barye", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:electronvolt", + "@type": "Unit", + "name": "electronvolt", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu240" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:electronvolt" + } + ], + "symbol": "eV", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17", + "name": "energy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:unified_atomic_mass_unit", + "@type": "Unit", + "name": "unified atomic mass unit", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu241" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:unified_atomic_mass_unit" + } + ], + "symbol": "u", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:natural_unit_of_velocity", + "@type": "Unit", + "name": "natural unit of velocity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu242" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:natural_unit_of_velocity" + } + ], + "symbol": "𝑐", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq12", + "name": "velocity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd11", + "expression": "LΒ·T-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:natural_unit_of_action", + "@type": "Unit", + "name": "natural unit of action", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu243" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:natural_unit_of_action" + } + ], + "symbol": "ℏ", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq154", + "name": "action" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd60", + "expression": "L2Β·MΒ·T-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:natural_unit_of_mass", + "@type": "Unit", + "name": "natural unit of mass", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu244" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:natural_unit_of_mass" + } + ], + "symbol": "π‘šβ‚‘", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:natural_unit_of_time", + "@type": "Unit", + "name": "natural unit of time", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu245" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:natural_unit_of_time" + } + ], + "symbol": "ℏ/π‘šβ‚‘π‘Β²", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq3", + "name": "time" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd3", + "expression": "T" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_charge", + "@type": "Unit", + "name": "atomic unit of charge", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu246" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_charge" + } + ], + "symbol": "𝑒", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq22", + "name": "electric charge" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd17", + "expression": "TΒ·I" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_mass", + "@type": "Unit", + "name": "atomic unit of mass", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu247" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_mass" + } + ], + "symbol": "π‘šβ‚‘", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_action", + "@type": "Unit", + "name": "atomic unit of action", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu248" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_action" + } + ], + "symbol": "ℏ", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq154", + "name": "action" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd60", + "expression": "L2Β·MΒ·T-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_length", + "@type": "Unit", + "name": "atomic unit of length", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu249" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_length" + } + ], + "symbol": "π‘Žβ‚€", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:becquerel", + "@type": "Unit", + "name": "becquerel", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu25" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:becquerel" + } + ], + "symbol": "Bq", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq35", + "name": "activity referred to a radionuclide" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd24", + "expression": "T-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_energy", + "@type": "Unit", + "name": "atomic unit of energy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu250" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_energy" + } + ], + "symbol": "𝐸ₕ", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17", + "name": "energy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_time", + "@type": "Unit", + "name": "atomic unit of time", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu251" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_time" + } + ], + "symbol": "ℏ/𝐸ₕ", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq3", + "name": "time" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd3", + "expression": "T" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_magnetizability", + "@type": "Unit", + "name": "atomic unit of magnetizability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu252" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_magnetizability" + } + ], + "symbol": "π‘’Β²π‘Žβ‚€Β²/π‘šβ‚‘", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq163", + "name": "magnetizability" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd54", + "expression": "L2Β·MΒ·T2Β·I2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_magnetic_flux_density", + "@type": "Unit", + "name": "atomic unit of magnetic flux density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu253" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_magnetic_flux_density" + } + ], + "symbol": "ℏ/π‘’π‘Žβ‚€Β²", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq14", + "name": "magnetic flux density" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd13", + "expression": "MΒ·T-2Β·I-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_magnetic_dipole_moment", + "@type": "Unit", + "name": "atomic unit of magnetic dipole moment", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu254" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_magnetic_dipole_moment" + } + ], + "symbol": "ℏ𝑒/π‘šβ‚‘", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq164", + "name": "magnetic dipole moment" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd73", + "expression": "L2Β·I" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_momentum", + "@type": "Unit", + "name": "atomic unit of momentum", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu255" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_momentum" + } + ], + "symbol": "ℏ/π‘Žβ‚€", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq131", + "name": "momentum" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd61", + "expression": "LΒ·MΒ·T-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_charge_density", + "@type": "Unit", + "name": "atomic unit of charge density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu256" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_charge_density" + } + ], + "symbol": "π‘’π‘Žβ‚€Β³", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq69", + "name": "electric charge density" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd43", + "expression": "L-3Β·TΒ·I" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_current", + "@type": "Unit", + "name": "atomic unit of current", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu257" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_current" + } + ], + "symbol": "𝑒𝐸ₕ/ℏ", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq4", + "name": "electric current" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd4", + "expression": "I" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_electric_dipole_moment", + "@type": "Unit", + "name": "atomic unit of electric dipole moment", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu258" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_electric_dipole_moment" + } + ], + "symbol": "π‘’π‘Žβ‚€", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq162", + "name": "electric dipole moment" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd72", + "expression": "LΒ·TΒ·I" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_electric_field", + "@type": "Unit", + "name": "atomic unit of electric field", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu259" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_electric_field" + } + ], + "symbol": "𝐸ₕ/π‘’π‘Žβ‚€", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq68", + "name": "electric field strength" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd42", + "expression": "LΒ·MΒ·T-3Β·I-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:fermi", + "@type": "Unit", + "name": "fermi", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu26" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:fermi" + } + ], + "symbol": "fermi", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + }, + { + "@id": "https://unitsml.org/quantity/NISTq48", + "name": "distance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_-15", + "name": "femto", + "symbol": "f" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_electric_field_gradient", + "@type": "Unit", + "name": "atomic unit of electric field gradient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu260" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_electric_field_gradient" + } + ], + "symbol": "𝐸ₕ/π‘’π‘Žβ‚€Β²", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq165", + "name": "electric field gradient" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd74", + "expression": "MΒ·T-3Β·I-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_electric_potential", + "@type": "Unit", + "name": "atomic unit of electric potential", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu261" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_electric_potential" + } + ], + "symbol": "𝐸ₕ/𝑒", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq166", + "name": "electric potential" + }, + { + "@id": "https://unitsml.org/quantity/NISTq24", + "name": "electric potential difference" + }, + { + "@id": "https://unitsml.org/quantity/NISTq26", + "name": "electromotive force" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd18", + "expression": "L2Β·MΒ·T-3Β·I-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_force", + "@type": "Unit", + "name": "atomic unit of force", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu262" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_force" + } + ], + "symbol": "𝐸ₕ/π‘Žβ‚€", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq128", + "name": "weight" + }, + { + "@id": "https://unitsml.org/quantity/NISTq13", + "name": "force" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd12", + "expression": "LΒ·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_electric_quadrupole_moment", + "@type": "Unit", + "name": "atomic unit of electric quadrupole moment", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu263" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_electric_quadrupole_moment" + } + ], + "symbol": "π‘’π‘Žβ‚€Β²", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq167", + "name": "electric quadrupole moment" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd75", + "expression": "L2Β·TΒ·I" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_electric_polarizability", + "@type": "Unit", + "name": "atomic unit of electric polarizability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu264" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_electric_polarizability" + } + ], + "symbol": "π‘’Β²π‘Žβ‚€Β²/𝐸ₕ", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq168", + "name": "polarizability" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd76", + "expression": "MΒ·T4Β·I2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:statohm", + "@type": "Unit", + "name": "statohm", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu265" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:statohm" + } + ], + "symbol": "statohm", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq28", + "name": "electric resistance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd20", + "expression": "L2Β·MΒ·T-3Β·I-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:statfarad", + "@type": "Unit", + "name": "statfarad", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu266" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:statfarad" + } + ], + "symbol": "statF", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq169", + "name": "electric capacitance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd19", + "expression": "L-2Β·M-1Β·T4Β·I2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:statampere", + "@type": "Unit", + "name": "statampere", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu267" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:statampere" + } + ], + "symbol": "statA", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq170", + "name": "electric current intensity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd4", + "expression": "I" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:statvolt", + "@type": "Unit", + "name": "statvolt", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu268" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:statvolt" + } + ], + "symbol": "statV", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq166", + "name": "electric potential" + }, + { + "@id": "https://unitsml.org/quantity/NISTq24", + "name": "electric potential difference" + }, + { + "@id": "https://unitsml.org/quantity/NISTq26", + "name": "electromotive force" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd18", + "expression": "L2Β·MΒ·T-3Β·I-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:stathenry", + "@type": "Unit", + "name": "stathenry", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu269" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:stathenry" + } + ], + "symbol": "statH", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq171", + "name": "electric inductance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd23", + "expression": "L2Β·MΒ·T-2Β·I-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:gram", + "@type": "Unit", + "name": "gram", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu27" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:gram" + } + ], + "symbol": "g", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_base", + "name": "SI base units" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:statmho", + "@type": "Unit", + "name": "statmho", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu270" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:statmho" + } + ], + "symbol": "statmho", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq29", + "name": "electric conductance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd21", + "expression": "L-2Β·M-1Β·T3Β·I2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:statcoulomb", + "@type": "Unit", + "name": "statcoulomb", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu271" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:statcoulomb" + } + ], + "symbol": "statcoulomb", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq22", + "name": "electric charge" + }, + { + "@id": "https://unitsml.org/quantity/NISTq23", + "name": "amount of electricity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd17", + "expression": "TΒ·I" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:statweber", + "@type": "Unit", + "name": "statweber", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu272" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:statweber" + } + ], + "symbol": "statWb", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq30", + "name": "magnetic flux" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd22", + "expression": "L2Β·MΒ·T-2Β·I-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:stattesla", + "@type": "Unit", + "name": "stattesla", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu273" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:stattesla" + } + ], + "symbol": "statT", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq14", + "name": "magnetic flux density" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd13", + "expression": "MΒ·T-2Β·I-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:statwatt", + "@type": "Unit", + "name": "statwatt", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu274" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:statwatt" + } + ], + "symbol": "statwatt", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20", + "name": "power" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:av_dram", + "@type": "Unit", + "name": "dram (avoirdupois)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu275" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:av_dram" + } + ], + "symbol": "dr (avdp)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:footcandle", + "@type": "Unit", + "name": "footcandle", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu276" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:footcandle" + } + ], + "symbol": "ft.c", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq47", + "name": "illuminance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd27", + "expression": "L-2Β·J" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:footlambert", + "@type": "Unit", + "name": "footlambert", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu277" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:footlambert" + } + ], + "symbol": "ft.L", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq56", + "name": "luminance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd27", + "expression": "L-2Β·J" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:computer_pica", + "@type": "Unit", + "name": "pica (computer)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu278" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:computer_pica" + } + ], + "symbol": "pc", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + }, + { + "@id": "https://unitsml.org/quantity/NISTq48", + "name": "distance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:printers_pica", + "@type": "Unit", + "name": "pica (printer's)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu279" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:printers_pica" + } + ], + "symbol": "pc", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilogram_meter_per_second", + "@type": "Unit", + "name": "kilogram meter per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu27p10'3.u1.u3e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_meter_per_second" + } + ], + "symbol": "NΒ·m/s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq131", + "name": "momentum" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd61", + "expression": "LΒ·MΒ·T-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilogram_per_meter", + "@type": "Unit", + "name": "kilogram per meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu27p10'3.u1e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_per_meter" + } + ], + "symbol": "kg/m", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq126", + "name": "linear density" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd58", + "expression": "L-1Β·M" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilogram_per_square_meter", + "@type": "Unit", + "name": "kilogram per square meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu27p10'3.u1e-2/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_per_square_meter" + } + ], + "symbol": "kg/mΒ²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq31", + "name": "surface density" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd51", + "expression": "L-2Β·M" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilogram_per_cubic_meter", + "@type": "Unit", + "name": "kilogram per cubic meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu27p10'3.u1e-3/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_per_cubic_meter" + } + ], + "symbol": "kgΒ·m⁻³", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq33", + "name": "mass concentration" + }, + { + "@id": "https://unitsml.org/quantity/NISTq51", + "name": "density" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd30", + "expression": "L-3Β·M" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilogram_meter_squared", + "@type": "Unit", + "name": "kilogram meter squared", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu27p10'3.u1e2/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_meter_squared" + } + ], + "symbol": "kgΒ·mΒ²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq127", + "name": "mass moment of inertia" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd59", + "expression": "L2Β·M" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilogram_meter_squared_per_second", + "@type": "Unit", + "name": "kilogram meter squared per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu27p10'3.u1e2/1.u3e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_meter_squared_per_second" + } + ], + "symbol": "kgΒ·mΒ²/s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq132", + "name": "moment of momentum" + }, + { + "@id": "https://unitsml.org/quantity/NISTq132", + "name": "moment of momentum" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd60", + "expression": "L2Β·MΒ·T-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": 2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilogram_per_second", + "@type": "Unit", + "name": "kilogram per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu27p10'3.u3e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_per_second" + } + ], + "symbol": "kg/s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq150", + "name": "mass flow rate" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd65", + "expression": "MΒ·T-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:gray", + "@type": "Unit", + "name": "gray", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu28" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:gray" + } + ], + "symbol": "Gy", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq36", + "name": "absorbed dose" + }, + { + "@id": "https://unitsml.org/quantity/NISTq37", + "name": "specific energy imparted" + }, + { + "@id": "https://unitsml.org/quantity/NISTq38", + "name": "kerma" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd25", + "expression": "L2Β·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:gray_per_second", + "@type": "Unit", + "name": "gray per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu28.u3e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:gray_per_second" + } + ], + "symbol": "Gy/s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq194", + "name": "kerma rate" + }, + { + "@id": "https://unitsml.org/quantity/NISTq76", + "name": "absorbed dose rate" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd50", + "expression": "L2Β·T-3" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu28", + "name": "gray", + "symbol": "Gy" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:computer_point", + "@type": "Unit", + "name": "point (computer)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu280" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:computer_point" + } + ], + "symbol": "pt", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + }, + { + "@id": "https://unitsml.org/quantity/NISTq48", + "name": "distance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_survey_rod", + "@type": "Unit", + "name": "rod (based on US survey foot)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu281" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_survey_rod" + } + ], + "symbol": "rd", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_survey_fathom", + "@type": "Unit", + "name": "fathom (based on US survey foot)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu282" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_survey_fathom" + } + ], + "symbol": "fath", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:circular_mil", + "@type": "Unit", + "name": "circular mil", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu283" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:circular_mil" + } + ], + "symbol": "cmil", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq8", + "name": "area" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd8", + "expression": "L2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:horsepower", + "@type": "Unit", + "name": "horsepower", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu284" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:horsepower" + } + ], + "symbol": "hp", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20", + "name": "power" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:boiler_horsepower", + "@type": "Unit", + "name": "horsepower, boiler", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu285" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:boiler_horsepower" + } + ], + "symbol": "hp", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20", + "name": "power" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:water_horsepower", + "@type": "Unit", + "name": "horsepower, water", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu286" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:water_horsepower" + } + ], + "symbol": "hp", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20", + "name": "power" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:uk_horsepower", + "@type": "Unit", + "name": "horsepower (UK)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu287" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:uk_horsepower" + } + ], + "symbol": "hp", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20", + "name": "power" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:degree_Rankine", + "@type": "Unit", + "name": "degree Rankine", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu288" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:degree_Rankine" + } + ], + "symbol": "Β°R", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq5", + "name": "thermodynamic temperature" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd5", + "expression": "Theta" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:dalton", + "@type": "Unit", + "name": "dalton", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu289" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:dalton" + } + ], + "symbol": "Da", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu241", + "name": "unified atomic mass unit", + "symbol": "u" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:sievert", + "@type": "Unit", + "name": "sievert", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu29" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:sievert" + } + ], + "symbol": "Sv", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq39", + "name": "dose equivalent" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd25", + "expression": "L2Β·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:natural_unit_of_length", + "@type": "Unit", + "name": "natural unit of length", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu290" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:natural_unit_of_length" + } + ], + "symbol": "Ζ›_C", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_1st_hyperpolarizability", + "@type": "Unit", + "name": "atomic unit of 1st hyperpolarizability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu291" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_1st_hyperpolarizability" + } + ], + "symbol": "π‘’Β³π‘Žβ‚€Β³πΈβ‚•Β³", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq172", + "name": "1st hyperpolarizability" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd77", + "expression": "L-1Β·M-2Β·T7Β·I3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_2nd_hyperpolarizability", + "@type": "Unit", + "name": "atomic unit of 2nd hyperpolarizability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu292" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_2nd_hyperpolarizability" + } + ], + "symbol": "π‘’β΄π‘Žβ‚€β΄πΈβ‚•β΄", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq173", + "name": "2nd hyperpolarizability" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd78", + "expression": "L-2Β·M-3Β·T10Β·I4" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_permittivity", + "@type": "Unit", + "name": "atomic unit of permittivity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu293" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_permittivity" + } + ], + "symbol": "𝑒²/π‘Žβ‚€πΈβ‚•", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq71", + "name": "permittivity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd45", + "expression": "L-3Β·M-1Β·T4Β·I2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:atomic_unit_of_velocity", + "@type": "Unit", + "name": "atomic unit of velocity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu294" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:atomic_unit_of_velocity" + } + ], + "symbol": "π‘Žβ‚€πΈβ‚•/ℏ", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq12", + "name": "velocity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd11", + "expression": "LΒ·T-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:natural_unit_of_energy", + "@type": "Unit", + "name": "natural unit of energy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu295" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:natural_unit_of_energy" + } + ], + "symbol": "π‘šβ‚‘π‘Β²", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17", + "name": "energy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:natural_unit_of_momentum", + "@type": "Unit", + "name": "natural unit of momentum", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu296" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:natural_unit_of_momentum" + } + ], + "symbol": "π‘šβ‚‘π‘", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq131", + "name": "momentum" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd61", + "expression": "LΒ·MΒ·T-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:natural_unit_of_action_in_eV_s", + "@type": "Unit", + "name": "natural unit of action in eV s", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu297" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:natural_unit_of_action_in_eV_s" + } + ], + "symbol": "ℏ", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq154", + "name": "action" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd60", + "expression": "L2Β·MΒ·T-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:natural_unit_of_energy_in_MeV", + "@type": "Unit", + "name": "natural unit of energy in MeV", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu298" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:natural_unit_of_energy_in_MeV" + } + ], + "symbol": "π‘šβ‚‘π‘Β²", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17", + "name": "energy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:natural_unit_of_momentum_in_MeV_per_c", + "@type": "Unit", + "name": "natural unit of momentum in MeV/c", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu299" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:natural_unit_of_momentum_in_MeV_per_c" + } + ], + "symbol": "π‘šβ‚‘π‘", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq131", + "name": "momentum" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd61", + "expression": "LΒ·MΒ·T-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:second", + "@type": "Unit", + "name": "second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu3" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:second" + } + ], + "symbol": "β€³", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_base", + "name": "SI base units" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq109", + "name": "period duration" + }, + { + "@id": "https://unitsml.org/quantity/NISTq110", + "name": "time constant" + }, + { + "@id": "https://unitsml.org/quantity/NISTq3", + "name": "time" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd3", + "expression": "T" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:katal", + "@type": "Unit", + "name": "katal", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu30" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:katal" + } + ], + "symbol": "kat", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq44", + "name": "catalytic activity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd26", + "expression": "T-1Β·N" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:katal_per_cubic_meter", + "@type": "Unit", + "name": "katal per cubic meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu30.u1e-3/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:katal_per_cubic_meter" + } + ], + "symbol": "kat/mΒ³", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq84", + "name": "catalytic activity concentration" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd55", + "expression": "M-3Β·T-1Β·N" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu30", + "name": "katal", + "symbol": "kat" + } + }, + { + "power": -3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:imperial_quart", + "@type": "Unit", + "name": "quart (UK)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu300" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:imperial_quart" + } + ], + "symbol": "qt (UK)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_dry_quart", + "@type": "Unit", + "name": "dry quart (US)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu301" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_dry_quart" + } + ], + "symbol": "dry qt (US)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_quart", + "@type": "Unit", + "name": "liquid quart (US)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu302" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_quart" + } + ], + "symbol": "liq qt (US)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_teaspoon", + "@type": "Unit", + "name": "teaspoon", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu303" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_teaspoon" + } + ], + "symbol": "tsp", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_tablespoon", + "@type": "Unit", + "name": "tablespoon", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu304" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_tablespoon" + } + ], + "symbol": "tbsp", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_label_tablespoon", + "@type": "Unit", + "name": "tablespoon (FDA)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu305" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_label_tablespoon" + } + ], + "symbol": "tbsp", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_label_teaspoon", + "@type": "Unit", + "name": "teaspoon (FDA)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu306" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_label_teaspoon" + } + ], + "symbol": "tsp", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_label_cup", + "@type": "Unit", + "name": "cup (FDA)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu307" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_label_cup" + } + ], + "symbol": "cup", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_label_fluid_ounce", + "@type": "Unit", + "name": "fluid ounce (FDA)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu308" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_label_fluid_ounce" + } + ], + "symbol": "fl oz (US label)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_label_ounce", + "@type": "Unit", + "name": "ounce (FDA)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu309" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_label_ounce" + } + ], + "symbol": "oz (US label)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:hertz", + "@type": "Unit", + "name": "hertz", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu31" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:hertz" + } + ], + "symbol": "Hz", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq45", + "name": "frequency" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd24", + "expression": "T-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_survey_chain", + "@type": "Unit", + "name": "chain (based on US survey foot)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu310" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_survey_chain" + } + ], + "symbol": "ch", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_survey_link", + "@type": "Unit", + "name": "link (based on US survey foot)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu311" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_survey_link" + } + ], + "symbol": "lnk", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_survey_furlong", + "@type": "Unit", + "name": "furlong (based on US survey foot)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu312" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_survey_furlong" + } + ], + "symbol": "fur", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_survey_mile", + "@type": "Unit", + "name": "mile (based on US survey foot)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu313" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_survey_mile" + } + ], + "symbol": "mi", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_survey_yard", + "@type": "Unit", + "name": "yard (based on US survey foot)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu314" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_survey_yard" + } + ], + "symbol": "yd", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_survey_foot", + "@type": "Unit", + "name": "foot (based on US survey foot)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu315" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_survey_foot" + } + ], + "symbol": "ft", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_survey_inch", + "@type": "Unit", + "name": "inch (based on US survey foot)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu316" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_survey_inch" + } + ], + "symbol": "in", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_acre", + "@type": "Unit", + "name": "acre (based on US survey foot)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu317" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_acre" + } + ], + "symbol": "ac", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq8", + "name": "area" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd8", + "expression": "L2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:cm_Hg", + "@type": "Unit", + "name": "conventional centimeter of mercury", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu318" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:cm_Hg" + } + ], + "symbol": "cmHg", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:0C_cm_Hg", + "@type": "Unit", + "name": "centimeter of mercury (0 degC)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu319" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:0C_cm_Hg" + } + ], + "symbol": "cmHg", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:lumen", + "@type": "Unit", + "name": "lumen", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu32" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:lumen" + } + ], + "symbol": "lm", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq46", + "name": "luminous flux" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd7", + "expression": "J" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:4C_cm_water", + "@type": "Unit", + "name": "centimeter of water (4 degC)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu320" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:4C_cm_water" + } + ], + "symbol": "cmHβ‚‚O", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:cm_water", + "@type": "Unit", + "name": "conventional centimeter of water", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu321" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:cm_water" + } + ], + "symbol": "cmHβ‚‚O", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:in_water", + "@type": "Unit", + "name": "conventional inch of water", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu322" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:in_water" + } + ], + "symbol": "inHβ‚‚O", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:39F_in_water", + "@type": "Unit", + "name": "inch of water (39.2 degF)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu323" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:39F_in_water" + } + ], + "symbol": "inHβ‚‚O", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:60F_in_water", + "@type": "Unit", + "name": "inch of water (60 degF)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu324" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:60F_in_water" + } + ], + "symbol": "inHβ‚‚O", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:ft_water", + "@type": "Unit", + "name": "conventional foot of water", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu325" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:ft_water" + } + ], + "symbol": "ftHβ‚‚O", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:39F_ft_water", + "@type": "Unit", + "name": "foot of water (39.2 degF)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu326" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:39F_ft_water" + } + ], + "symbol": "ftHβ‚‚O", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:32F_in_Hg", + "@type": "Unit", + "name": "inch of mercury (32 degF)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu327" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:32F_in_Hg" + } + ], + "symbol": "β€³Hg", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:60F_in_Hg", + "@type": "Unit", + "name": "inch of mercury (60 degF)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu328" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:60F_in_Hg" + } + ], + "symbol": "β€³Hg", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:in_Hg", + "@type": "Unit", + "name": "conventional inch of mercury", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu329" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:in_Hg" + } + ], + "symbol": "β€³Hg", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:lux", + "@type": "Unit", + "name": "lux", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu33" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:lux" + } + ], + "symbol": "lx", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq47", + "name": "illuminance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd27", + "expression": "L-2Β·J" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:ft_Hg", + "@type": "Unit", + "name": "conventional foot of mercury", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu330" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:ft_Hg" + } + ], + "symbol": "β€²Hg", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_therm", + "@type": "Unit", + "name": "therm (US)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu331" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_therm" + } + ], + "symbol": "thm (US)", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17", + "name": "energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq18", + "name": "work" + }, + { + "@id": "https://unitsml.org/quantity/NISTq182", + "name": "kinetic energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq183", + "name": "mechanical energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq19", + "name": "amount of heat" + }, + { + "@id": "https://unitsml.org/quantity/NISTq77", + "name": "potential energy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:pH", + "@type": "Unit", + "name": "pH", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu332" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:pH" + } + ], + "symbol": "pH", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/logarithmic_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq174", + "name": "index of acidity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd94", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:table_btu", + "@type": "Unit", + "name": "British thermal unit_IT", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu333" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:table_btu" + } + ], + "symbol": "Btu", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq19", + "name": "amount of heat" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:mean_btu", + "@type": "Unit", + "name": "British thermal unit (mean)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu334" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:mean_btu" + } + ], + "symbol": "Btu", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq19", + "name": "amount of heat" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:39F_btu", + "@type": "Unit", + "name": "British thermal unit (39 degF)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu335" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:39F_btu" + } + ], + "symbol": "Btu", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq19", + "name": "amount of heat" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:59F_btu", + "@type": "Unit", + "name": "British thermal unit (59 degF)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu336" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:59F_btu" + } + ], + "symbol": "Btu", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq19", + "name": "amount of heat" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:60F_btu", + "@type": "Unit", + "name": "British thermal unit (60 degF)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu337" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:60F_btu" + } + ], + "symbol": "Btu", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq19", + "name": "amount of heat" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:tropical_year", + "@type": "Unit", + "name": "year, tropical", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu338" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:tropical_year" + } + ], + "symbol": "a", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq3", + "name": "time" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd3", + "expression": "T" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:sidereal_year", + "@type": "Unit", + "name": "year, sidereal", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu339" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:sidereal_year" + } + ], + "symbol": "a", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq3", + "name": "time" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd3", + "expression": "T" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:sidereal_day", + "@type": "Unit", + "name": "day, sidereal", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu340" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:sidereal_day" + } + ], + "symbol": "d", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq3", + "name": "time" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd3", + "expression": "T" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:sidereal_hour", + "@type": "Unit", + "name": "hour, sidereal", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu341" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:sidereal_hour" + } + ], + "symbol": "h", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq3", + "name": "time" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd3", + "expression": "T" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:sidereal_minute", + "@type": "Unit", + "name": "minute, sidereal", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu342" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:sidereal_minute" + } + ], + "symbol": "min", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq3", + "name": "time" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd3", + "expression": "T" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:sidereal_second", + "@type": "Unit", + "name": "second, sidereal", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu343" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:sidereal_second" + } + ], + "symbol": "s", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq3", + "name": "time" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd3", + "expression": "T" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:printers_point", + "@type": "Unit", + "name": "point (printer's)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu344" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:printers_point" + } + ], + "symbol": "pt", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:shake", + "@type": "Unit", + "name": "shake", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu345" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:shake" + } + ], + "symbol": "shake", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq3", + "name": "time" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd3", + "expression": "T" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:denier", + "@type": "Unit", + "name": "denier", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu346" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:denier" + } + ], + "symbol": "den", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq176", + "name": "mass divided by length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd58", + "expression": "L-1Β·M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:nato_mil", + "@type": "Unit", + "name": "angular mil (NATO)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu347" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:nato_mil" + } + ], + "symbol": "mil", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq9", + "name": "plane angle" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd9", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:pound_mole", + "@type": "Unit", + "name": "pound-mole", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu348" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:pound_mole" + } + ], + "symbol": "lbmol", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq6", + "name": "amount of substance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd6", + "expression": "N" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:ton_refrigeration", + "@type": "Unit", + "name": "ton of refrigeration (12 000 Btu_IT/h)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu349" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:ton_refrigeration" + } + ], + "symbol": "ton", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20", + "name": "power" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:bit", + "@type": "Unit", + "name": "bit", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu350" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:bit" + } + ], + "symbol": "bit", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/discrete" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq177", + "name": "storage capacity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd95", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:byte", + "@type": "Unit", + "name": "byte", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu351" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:byte" + } + ], + "symbol": "B", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/discrete" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq177", + "name": "storage capacity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd95", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_peck", + "@type": "Unit", + "name": "peck", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu352" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_peck" + } + ], + "symbol": "pk", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_minim", + "@type": "Unit", + "name": "minim", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu353" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_minim" + } + ], + "symbol": "min", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_cup", + "@type": "Unit", + "name": "cup (US)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu354" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_cup" + } + ], + "symbol": "cup", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_fluid_dram", + "@type": "Unit", + "name": "fluid dram", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu355" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_fluid_dram" + } + ], + "symbol": "fl dr", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_gill", + "@type": "Unit", + "name": "gill (US)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu356" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_gill" + } + ], + "symbol": "gi", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:imperial_gill", + "@type": "Unit", + "name": "gill [Canadian and UK (Imperial)]", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu357" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:imperial_gill" + } + ], + "symbol": "gi", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:cubic_foot_per_minute", + "@type": "Unit", + "name": "cubic foot per minute", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu358" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:cubic_foot_per_minute" + } + ], + "symbol": "ftΒ³min", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq151", + "name": "volume flow rate" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd66", + "expression": "L3Β·T-1" + }, + "rootUnits": [ + { + "power": 3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu78", + "name": "foot", + "symbol": "β€²" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu36", + "name": "minute", + "symbol": "β€²" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:cubic_foot_per_second", + "@type": "Unit", + "name": "cubic foot per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu359" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:cubic_foot_per_second" + } + ], + "symbol": "ftΒ³sec", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq151", + "name": "volume flow rate" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd66", + "expression": "L3Β·T-1" + }, + "rootUnits": [ + { + "power": 3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu78", + "name": "foot", + "symbol": "β€²" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:minute", + "@type": "Unit", + "name": "minute", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu36" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:minute" + } + ], + "symbol": "β€²", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq3", + "name": "time" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd3", + "expression": "T" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:cubic_inch_per_minute", + "@type": "Unit", + "name": "cubic inch per minute", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu360" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:cubic_inch_per_minute" + } + ], + "symbol": "inΒ³min", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq151", + "name": "volume flow rate" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd66", + "expression": "L3Β·T-1" + }, + "rootUnits": [ + { + "power": 3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu8", + "name": "inch", + "symbol": "β€³" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu36", + "name": "minute", + "symbol": "β€²" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:microinch", + "@type": "Unit", + "name": "microinch", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu361" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:microinch" + } + ], + "symbol": "ΞΌin", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu8", + "name": "inch", + "symbol": "β€³" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_-6", + "name": "micro", + "symbol": "ΞΌ" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:millibar", + "@type": "Unit", + "name": "millibar", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu362" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:millibar" + } + ], + "symbol": "mbar", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu91", + "name": "bar", + "symbol": "bar" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_-3", + "name": "milli", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:mile_per_gallon", + "@type": "Unit", + "name": "mile per gallon (US)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu363" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:mile_per_gallon" + } + ], + "symbol": "mi/gal", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq198", + "name": "fuel efficiency" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd99", + "expression": "L-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu83", + "name": "mile", + "symbol": "mi" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu175", + "name": "gallon (US)", + "symbol": "gal (US)" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:gallon_per_minute", + "@type": "Unit", + "name": "gallon (US) per minute", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu364" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:gallon_per_minute" + } + ], + "symbol": "gpm", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq151", + "name": "volume flow rate" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd66", + "expression": "L3Β·T-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu175", + "name": "gallon (US)", + "symbol": "gal (US)" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu36", + "name": "minute", + "symbol": "β€²" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:milliliter", + "@type": "Unit", + "name": "milliliter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu365" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:milliliter" + } + ], + "symbol": "ml", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu130", + "name": "litre", + "symbol": "L" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_-3", + "name": "milli", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:mole_per_liter", + "@type": "Unit", + "name": "mole per liter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu366" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:mole_per_liter" + } + ], + "symbol": "mol/L", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq55", + "name": "amount of substance concentration" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd34", + "expression": "L-3Β·N" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu6", + "name": "mole", + "symbol": "mol" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu130", + "name": "litre", + "symbol": "L" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:hour", + "@type": "Unit", + "name": "hour", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu37" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:hour" + } + ], + "symbol": "h", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq3", + "name": "time" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd3", + "expression": "T" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:light_week", + "@type": "Unit", + "name": "light week", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu376" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:light_week" + } + ], + "symbol": "l.w.", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:light_hour", + "@type": "Unit", + "name": "light hour", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu377" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:light_hour" + } + ], + "symbol": "l.h.", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:light_minute", + "@type": "Unit", + "name": "light minute", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu378" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:light_minute" + } + ], + "symbol": "l.m.", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:light_second", + "@type": "Unit", + "name": "light second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu379" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:light_second" + } + ], + "symbol": "l.s.", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:day", + "@type": "Unit", + "name": "day", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu38" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:day" + } + ], + "symbol": "d", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq3", + "name": "time" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd3", + "expression": "T" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilometer_per_liter", + "@type": "Unit", + "name": "kilometer per liter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu380" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilometer_per_liter" + } + ], + "symbol": "km/L", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq198", + "name": "fuel efficiency" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd99", + "expression": "L-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu130", + "name": "litre", + "symbol": "L" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:decibel_milliwatt", + "@type": "Unit", + "name": "dBm", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu381" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:decibel_milliwatt" + } + ], + "symbol": "dB_mW", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/logarithmic_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq90", + "name": "ratio logarithm (B)" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd67", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:relative_humidity", + "@type": "Unit", + "name": "relative humidity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu382" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:relative_humidity" + } + ], + "symbol": "%rh", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq199", + "name": "relative humidity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd80", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:octave", + "@type": "Unit", + "name": "octave", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu383" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:octave" + } + ], + "symbol": "oct", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq200", + "name": "logarithmic frequency range" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd67", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:decade", + "@type": "Unit", + "name": "decade", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu384" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:decade" + } + ], + "symbol": "dec", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq200", + "name": "logarithmic frequency range" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd67", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:erlang", + "@type": "Unit", + "name": "erlang", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu385" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:erlang" + } + ], + "symbol": "E", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq201", + "name": "traffic intensity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd100", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:baud", + "@type": "Unit", + "name": "baud", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu386" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:baud" + } + ], + "symbol": "Bd", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/discrete" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq202", + "name": "symbol rate" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd101", + "expression": "T-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:shannon", + "@type": "Unit", + "name": "shannon", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu387" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:shannon" + } + ], + "symbol": "Sh", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/discrete" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq203", + "name": "information content" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd102", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:hartley", + "@type": "Unit", + "name": "hartley", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu388" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:hartley" + } + ], + "symbol": "Hart", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/discrete" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq203", + "name": "information content" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd102", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:angstrom", + "@type": "Unit", + "name": "Γ₯ngstrΓΆm", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu39" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:angstrom" + } + ], + "symbol": "β„«", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + }, + { + "@id": "https://unitsml.org/quantity/NISTq48", + "name": "distance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:second_to_the_power_minus_one", + "@type": "Unit", + "name": "second to the power minus one", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu3e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:second_to_the_power_minus_one" + } + ], + "symbol": "s⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq112", + "name": "rotational frequency" + }, + { + "@id": "https://unitsml.org/quantity/NISTq113", + "name": "angular frequency" + }, + { + "@id": "https://unitsml.org/quantity/NISTq120", + "name": "damping coefficient" + }, + { + "@id": "https://unitsml.org/quantity/NISTq189", + "name": "emission rate" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd24", + "expression": "T-1" + }, + "rootUnits": [ + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:ampere", + "@type": "Unit", + "name": "ampere", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu4" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:ampere" + } + ], + "symbol": "A", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_base", + "name": "SI base units" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq4", + "name": "electric current" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd4", + "expression": "I" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:ampere_per_meter", + "@type": "Unit", + "name": "ampere per meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu4.u1e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:ampere_per_meter" + } + ], + "symbol": "AΒ·m⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq54", + "name": "magnetic field strength" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd33", + "expression": "L-1Β·I" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu4", + "name": "ampere", + "symbol": "A" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:ampere_per_square_meter", + "@type": "Unit", + "name": "ampere per square meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu4.u1e-2/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:ampere_per_square_meter" + } + ], + "symbol": "AΒ·m⁻²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq53", + "name": "current density" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd32", + "expression": "L-2Β·I" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu4", + "name": "ampere", + "symbol": "A" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:parts_per_million", + "@type": "Unit", + "name": "parts per million", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu400" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:parts_per_million" + } + ], + "symbol": "ppm", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq186", + "name": "mass fraction" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd85", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:var", + "@type": "Unit", + "name": "var", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu401" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:var" + } + ], + "symbol": "var", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq187", + "name": "apparent power" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu16", + "name": "volt", + "symbol": "V" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu4", + "name": "ampere", + "symbol": "A" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:are", + "@type": "Unit", + "name": "are", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu42" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:are" + } + ], + "symbol": "a", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_nist_acceptable", + "name": "non-SI but acceptable by NIST SP 811" + }, + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq8", + "name": "area" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd8", + "expression": "L2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:barn", + "@type": "Unit", + "name": "barn", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu43" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:barn" + } + ], + "symbol": "b", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq8", + "name": "area" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd8", + "expression": "L2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:hectare", + "@type": "Unit", + "name": "hectare", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu44" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:hectare" + } + ], + "symbol": "ha", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq8", + "name": "area" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd8", + "expression": "L2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:square_foot", + "@type": "Unit", + "name": "square foot", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu45" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:square_foot" + } + ], + "symbol": "ftΒ²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq8", + "name": "area" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd8", + "expression": "L2" + }, + "rootUnits": [ + { + "power": 2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu78", + "name": "foot", + "symbol": "β€²" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:square_inch", + "@type": "Unit", + "name": "square inch", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu46" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:square_inch" + } + ], + "symbol": "inΒ²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq8", + "name": "area" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd8", + "expression": "L2" + }, + "rootUnits": [ + { + "power": 2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu8", + "name": "inch", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:abampere", + "@type": "Unit", + "name": "abampere", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu47" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:abampere" + } + ], + "symbol": "abA", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq4", + "name": "electric current" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd4", + "expression": "I" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:abcoulomb", + "@type": "Unit", + "name": "abcoulomb", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu48" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:abcoulomb" + } + ], + "symbol": "abC", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq22", + "name": "electric charge" + }, + { + "@id": "https://unitsml.org/quantity/NISTq23", + "name": "amount of electricity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd17", + "expression": "TΒ·I" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:abfarad", + "@type": "Unit", + "name": "abfarad", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu49" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:abfarad" + } + ], + "symbol": "abF", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq27", + "name": "capacitance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd19", + "expression": "L-2Β·M-1Β·T4Β·I2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kelvin", + "@type": "Unit", + "name": "kelvin", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu5" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kelvin" + } + ], + "symbol": "Β°K", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_base", + "name": "SI base units" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq193", + "name": "ITS-90 temperature (K)" + }, + { + "@id": "https://unitsml.org/quantity/NISTq196", + "name": "PLTS-2000 temperature (K)" + }, + { + "@id": "https://unitsml.org/quantity/NISTq5", + "name": "thermodynamic temperature" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd5", + "expression": "Theta" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:abhenry", + "@type": "Unit", + "name": "abhenry", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu50" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:abhenry" + } + ], + "symbol": "abH", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq32", + "name": "inductance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd23", + "expression": "L2Β·MΒ·T-2Β·I-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:abmho", + "@type": "Unit", + "name": "abmho", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu51" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:abmho" + } + ], + "symbol": "(abΞ©)⁻¹", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq29", + "name": "electric conductance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd21", + "expression": "L-2Β·M-1Β·T3Β·I2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:abohm", + "@type": "Unit", + "name": "abohm", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu52" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:abohm" + } + ], + "symbol": "abΞ©", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq28", + "name": "electric resistance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd20", + "expression": "L2Β·MΒ·T-3Β·I-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:abvolt", + "@type": "Unit", + "name": "abvolt", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu53" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:abvolt" + } + ], + "symbol": "abV", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq24", + "name": "electric potential difference" + }, + { + "@id": "https://unitsml.org/quantity/NISTq25", + "name": "potential difference" + }, + { + "@id": "https://unitsml.org/quantity/NISTq26", + "name": "electromotive force" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd18", + "expression": "L2Β·MΒ·T-3Β·I-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:ampere_hour", + "@type": "Unit", + "name": "ampere hour", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu54" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:ampere_hour" + } + ], + "symbol": "AΒ·h", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq22", + "name": "electric charge" + }, + { + "@id": "https://unitsml.org/quantity/NISTq23", + "name": "amount of electricity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd17", + "expression": "TΒ·I" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu4", + "name": "ampere", + "symbol": "A" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu37", + "name": "hour", + "symbol": "h" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:biot", + "@type": "Unit", + "name": "biot", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu55" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:biot" + } + ], + "symbol": "Bi", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq4", + "name": "electric current" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd4", + "expression": "I" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu47", + "name": "abampere", + "symbol": "abA" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:us_survey_acre_foot", + "@type": "Unit", + "name": "acre-foot (based on US survey foot)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu57" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:us_survey_acre_foot" + } + ], + "symbol": "acΒ·ft", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq10", + "name": "volume" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu317", + "name": "acre (based on US survey foot)", + "symbol": "ac" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu78", + "name": "foot", + "symbol": "β€²" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:maxwell", + "@type": "Unit", + "name": "maxwell", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu58" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:maxwell" + } + ], + "symbol": "Mx", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq30", + "name": "magnetic flux" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd22", + "expression": "L2Β·MΒ·T-2Β·I-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kelvin_to_the_power_minus_one", + "@type": "Unit", + "name": "kelvin to the power minus one", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu5e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kelvin_to_the_power_minus_one" + } + ], + "symbol": "K⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq156", + "name": "linear expansion coefficient" + }, + { + "@id": "https://unitsml.org/quantity/NISTq157", + "name": "cubic expansion coefficient" + }, + { + "@id": "https://unitsml.org/quantity/NISTq158", + "name": "relative pressure coefficient" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd68", + "expression": "Theta-1" + }, + "rootUnits": [ + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu5", + "name": "kelvin", + "symbol": "Β°K" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:mole", + "@type": "Unit", + "name": "mole", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu6" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:mole" + } + ], + "symbol": "mol", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_base", + "name": "SI base units" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq6", + "name": "amount of substance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd6", + "expression": "N" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:mole_per_cubic_meter", + "@type": "Unit", + "name": "mole per cubic meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu6.u1e-3/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:mole_per_cubic_meter" + } + ], + "symbol": "molΒ·m⁻³", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq55", + "name": "amount of substance concentration" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd34", + "expression": "L-3Β·N" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu6", + "name": "mole", + "symbol": "mol" + } + }, + { + "power": -3, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:mole_per_kilogram", + "@type": "Unit", + "name": "mole per kilogram", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu6.u27p10'3e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:mole_per_kilogram" + } + ], + "symbol": "mol/kg", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq179", + "name": "molality of solute B" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd79", + "expression": "MΒ·N" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu6", + "name": "mole", + "symbol": "mol" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu27", + "name": "gram", + "symbol": "g" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:table_calorie", + "@type": "Unit", + "name": "I.T. calorie", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu60" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:table_calorie" + } + ], + "symbol": "cal_IT", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17", + "name": "energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq18", + "name": "work" + }, + { + "@id": "https://unitsml.org/quantity/NISTq182", + "name": "kinetic energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq183", + "name": "mechanical energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq19", + "name": "amount of heat" + }, + { + "@id": "https://unitsml.org/quantity/NISTq77", + "name": "potential energy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:one", + "@type": "Unit", + "name": "one", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu61" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:one" + } + ], + "symbol": "1", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq111", + "name": "rotation" + }, + { + "@id": "https://unitsml.org/quantity/NISTq121", + "name": "ratio logarithm (Np)" + }, + { + "@id": "https://unitsml.org/quantity/NISTq125", + "name": "relative mass density" + }, + { + "@id": "https://unitsml.org/quantity/NISTq136", + "name": "linear strain" + }, + { + "@id": "https://unitsml.org/quantity/NISTq137", + "name": "shear strain" + }, + { + "@id": "https://unitsml.org/quantity/NISTq138", + "name": "volume strain" + }, + { + "@id": "https://unitsml.org/quantity/NISTq140", + "name": "Poisson number" + }, + { + "@id": "https://unitsml.org/quantity/NISTq147", + "name": "dynamic friction factor" + }, + { + "@id": "https://unitsml.org/quantity/NISTq188", + "name": "nil" + }, + { + "@id": "https://unitsml.org/quantity/NISTq93", + "name": "refractive index" + }, + { + "@id": "https://unitsml.org/quantity/NISTq94", + "name": "relative permeability" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd80", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:erg", + "@type": "Unit", + "name": "erg", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu62" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:erg" + } + ], + "symbol": "erg", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17", + "name": "energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq18", + "name": "work" + }, + { + "@id": "https://unitsml.org/quantity/NISTq182", + "name": "kinetic energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq183", + "name": "mechanical energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq19", + "name": "amount of heat" + }, + { + "@id": "https://unitsml.org/quantity/NISTq77", + "name": "potential energy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:table_kg_calorie", + "@type": "Unit", + "name": "kilocalorie_IT", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu63" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:table_kg_calorie" + } + ], + "symbol": "kcal_IT", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17", + "name": "energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq18", + "name": "work" + }, + { + "@id": "https://unitsml.org/quantity/NISTq182", + "name": "kinetic energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq183", + "name": "mechanical energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq19", + "name": "amount of heat" + }, + { + "@id": "https://unitsml.org/quantity/NISTq77", + "name": "potential energy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:thermo_kg_calorie", + "@type": "Unit", + "name": "kilocalorie_th", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu64" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:thermo_kg_calorie" + } + ], + "symbol": "kcal_th", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17", + "name": "energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq18", + "name": "work" + }, + { + "@id": "https://unitsml.org/quantity/NISTq182", + "name": "kinetic energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq183", + "name": "mechanical energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq19", + "name": "amount of heat" + }, + { + "@id": "https://unitsml.org/quantity/NISTq77", + "name": "potential energy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilowatt_hour", + "@type": "Unit", + "name": "kilowatt hour", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu65" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilowatt_hour" + } + ], + "symbol": "kWΒ·h", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17", + "name": "energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq18", + "name": "work" + }, + { + "@id": "https://unitsml.org/quantity/NISTq182", + "name": "kinetic energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq183", + "name": "mechanical energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq19", + "name": "amount of heat" + }, + { + "@id": "https://unitsml.org/quantity/NISTq77", + "name": "potential energy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu14", + "name": "watt", + "symbol": "W" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu37", + "name": "hour", + "symbol": "h" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:watt_hour", + "@type": "Unit", + "name": "watt hour", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu69" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:watt_hour" + } + ], + "symbol": "WΒ·h", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq17", + "name": "energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq18", + "name": "work" + }, + { + "@id": "https://unitsml.org/quantity/NISTq182", + "name": "kinetic energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq183", + "name": "mechanical energy" + }, + { + "@id": "https://unitsml.org/quantity/NISTq19", + "name": "amount of heat" + }, + { + "@id": "https://unitsml.org/quantity/NISTq77", + "name": "potential energy" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu14", + "name": "watt", + "symbol": "W" + } + }, + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu37", + "name": "hour", + "symbol": "h" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:candela", + "@type": "Unit", + "name": "candela", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu7" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:candela" + } + ], + "symbol": "cd", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_base", + "name": "SI base units" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq7", + "name": "luminous intensity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd7", + "expression": "J" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:candela_per_square_meter", + "@type": "Unit", + "name": "candela per square meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu7.u1e-2/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:candela_per_square_meter" + } + ], + "symbol": "cdΒ·m⁻²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq56", + "name": "luminance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd27", + "expression": "L-2Β·J" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu7", + "name": "candela", + "symbol": "cd" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:dyne", + "@type": "Unit", + "name": "dyne", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu71" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:dyne" + } + ], + "symbol": "dyn", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq13", + "name": "force" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd12", + "expression": "LΒ·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilogram_force", + "@type": "Unit", + "name": "kilogram-force", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu72" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_force" + } + ], + "symbol": "kgf", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq13", + "name": "force" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd12", + "expression": "LΒ·MΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilopond", + "@type": "Unit", + "name": "kilopond", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu73" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilopond" + } + ], + "symbol": "kp", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq13", + "name": "force" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd12", + "expression": "LΒ·MΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu196", + "name": "gram-force", + "symbol": "gf" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:calorie_th_per_second", + "@type": "Unit", + "name": "calorie_th per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu74" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:calorie_th_per_second" + } + ], + "symbol": "cal_th/s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20", + "name": "power" + }, + { + "@id": "https://unitsml.org/quantity/NISTq21", + "name": "radiant flux" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu227", + "name": "thermochemical calorie", + "symbol": "cal" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilocalorie_th_per_second", + "@type": "Unit", + "name": "kilocalorie_th per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu75" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilocalorie_th_per_second" + } + ], + "symbol": "kcal_th/s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20", + "name": "power" + }, + { + "@id": "https://unitsml.org/quantity/NISTq21", + "name": "radiant flux" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu227", + "name": "thermochemical calorie", + "symbol": "cal" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:foot", + "@type": "Unit", + "name": "foot", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu78" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:foot" + } + ], + "symbol": "β€²", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + }, + { + "@id": "https://unitsml.org/quantity/NISTq48", + "name": "distance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:inch", + "@type": "Unit", + "name": "inch", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu8" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:inch" + } + ], + "symbol": "β€³", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + }, + { + "@id": "https://unitsml.org/quantity/NISTq48", + "name": "distance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:mile", + "@type": "Unit", + "name": "mile", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu83" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:mile" + } + ], + "symbol": "mi", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + }, + { + "@id": "https://unitsml.org/quantity/NISTq48", + "name": "distance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:yard", + "@type": "Unit", + "name": "yard", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu84" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:yard" + } + ], + "symbol": "yd", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq1", + "name": "length" + }, + { + "@id": "https://unitsml.org/quantity/NISTq48", + "name": "distance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:phot", + "@type": "Unit", + "name": "phot", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu85" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:phot" + } + ], + "symbol": "ph", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq47", + "name": "illuminance" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd27", + "expression": "L-2Β·J" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:grain", + "@type": "Unit", + "name": "grain (troy or apothecary)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu86" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:grain" + } + ], + "symbol": "gr", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:metric_ton", + "@type": "Unit", + "name": "tonne", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu88" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:metric_ton" + } + ], + "symbol": "t", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq2", + "name": "mass" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:erg_per_second", + "@type": "Unit", + "name": "erg per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu89" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:erg_per_second" + } + ], + "symbol": "ergΒ·s⁻¹", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq20", + "name": "power" + }, + { + "@id": "https://unitsml.org/quantity/NISTq21", + "name": "radiant flux" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu62", + "name": "erg", + "symbol": "erg" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:radian", + "@type": "Unit", + "name": "radian", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu9" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:radian" + } + ], + "symbol": "rad", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_special", + "name": "SI-derived units special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq195", + "name": "phase" + }, + { + "@id": "https://unitsml.org/quantity/NISTq9", + "name": "plane angle" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd98", + "expression": "1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:radian_per_meter", + "@type": "Unit", + "name": "radian per meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu9.u1e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:radian_per_meter" + } + ], + "symbol": "rad/m", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq115", + "name": "angular wavenumber" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd29", + "expression": "L-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu9", + "name": "radian", + "symbol": "rad" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:radian_per_second", + "@type": "Unit", + "name": "radian per second", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu9.u3e-1/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:radian_per_second" + } + ], + "symbol": "rad/s", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq113", + "name": "angular frequency" + }, + { + "@id": "https://unitsml.org/quantity/NISTq57", + "name": "angular velocity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd24", + "expression": "T-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu9", + "name": "radian", + "symbol": "rad" + } + }, + { + "power": -1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:radian_per_second_squared", + "@type": "Unit", + "name": "radian per second squared", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu9.u3e-2/1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:radian_per_second_squared" + } + ], + "symbol": "rad/sΒ²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/SI_derived_non-special", + "name": "SI-derived units non-special" + }, + { + "@id": "https://unitsml.org/unit-system/SI_compatible", + "name": "Units compatible with SI" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq58", + "name": "angular acceleration" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd35", + "expression": "T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu9", + "name": "radian", + "symbol": "rad" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second", + "symbol": "β€³" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:bar", + "@type": "Unit", + "name": "bar", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu91" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:bar" + } + ], + "symbol": "bar", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_acceptable", + "name": "non-SI but acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:dyne_per_square_centimeter", + "@type": "Unit", + "name": "dyne per square centimeter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu92" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:dyne_per_square_centimeter" + } + ], + "symbol": "dynΒ·cm⁻²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu71", + "name": "dyne", + "symbol": "dyn" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_-2", + "name": "centi", + "symbol": "c" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:gram_force_per_square_centimeter", + "@type": "Unit", + "name": "gram-force per square centimeter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu93" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:gram_force_per_square_centimeter" + } + ], + "symbol": "gfΒ·cm⁻²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu196", + "name": "gram-force", + "symbol": "gf" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_-2", + "name": "centi", + "symbol": "c" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilogram_force_per_square_centimeter", + "@type": "Unit", + "name": "kilogram-force per square centimeter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu94" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_force_per_square_centimeter" + } + ], + "symbol": "kgfΒ·cm⁻²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_-2", + "name": "centi", + "symbol": "c" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilogram_force_per_square_meter", + "@type": "Unit", + "name": "kilogram-force per square meter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu95" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_force_per_square_meter" + } + ], + "symbol": "kgfΒ·m⁻²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:kilogram_force_per_square_millimeter", + "@type": "Unit", + "name": "kilogram-force per square millimeter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu96" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:kilogram_force_per_square_millimeter" + } + ], + "symbol": "kgfΒ·mm⁻²", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq15", + "name": "pressure" + }, + { + "@id": "https://unitsml.org/quantity/NISTq16", + "name": "stress" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu196", + "name": "gram-force", + "symbol": "gf" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_3", + "name": "kilo", + "symbol": "k" + } + }, + { + "power": -2, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre", + "symbol": "m" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_-3", + "name": "milli", + "symbol": "m" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:centipoise", + "@type": "Unit", + "name": "centipoise", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu97" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:centipoise" + } + ], + "symbol": "cP", + "rootUnit": false, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq59", + "name": "dynamic viscosity" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd36", + "expression": "L-1Β·MΒ·T-1" + }, + "rootUnits": [ + { + "power": 1, + "unitReference": { + "@id": "https://unitsml.org/unit/NISTu128", + "name": "poise", + "symbol": "P" + }, + "prefixReference": { + "@id": "https://unitsml.org/prefix/NISTp10_-2", + "name": "centi", + "symbol": "c" + } + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:curie", + "@type": "Unit", + "name": "curie", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu98" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:curie" + } + ], + "symbol": "Ci", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_nist_acceptable", + "name": "non-SI but acceptable by NIST SP 811" + }, + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq35", + "name": "activity referred to a radionuclide" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd24", + "expression": "T-1" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit/u:rad", + "@type": "Unit", + "name": "rad (absorbed dose)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTu99" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "u:rad" + } + ], + "symbol": "rad", + "rootUnit": true, + "scaleReference": { + "@id": "https://unitsml.org/scale/continuous_ratio" + }, + "unitSystemReference": [ + { + "@id": "https://unitsml.org/unit-system/non-SI_nist_acceptable", + "name": "non-SI but acceptable by NIST SP 811" + }, + { + "@id": "https://unitsml.org/unit-system/non-SI_not_acceptable", + "name": "non-SI and not acceptable" + } + ], + "quantityReference": [ + { + "@id": "https://unitsml.org/quantity/NISTq36", + "name": "absorbed dose" + } + ], + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd25", + "expression": "L2Β·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:length", + "@type": "Quantity", + "name": "length", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:length" + } + ], + "quantityType": "base", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre" + }, + { + "@id": "https://unitsml.org/unit/NISTu122", + "name": "micron" + }, + { + "@id": "https://unitsml.org/unit/NISTu123", + "name": "mil (length)" + }, + { + "@id": "https://unitsml.org/unit/NISTu131", + "name": "nautical mile" + }, + { + "@id": "https://unitsml.org/unit/NISTu182", + "name": "light year" + }, + { + "@id": "https://unitsml.org/unit/NISTu183", + "name": "astronomical unit" + }, + { + "@id": "https://unitsml.org/unit/NISTu184", + "name": "parsec" + }, + { + "@id": "https://unitsml.org/unit/NISTu249", + "name": "atomic unit of length" + }, + { + "@id": "https://unitsml.org/unit/NISTu26", + "name": "fermi" + }, + { + "@id": "https://unitsml.org/unit/NISTu278", + "name": "pica (computer)" + }, + { + "@id": "https://unitsml.org/unit/NISTu279", + "name": "pica (printer's)" + }, + { + "@id": "https://unitsml.org/unit/NISTu280", + "name": "point (computer)" + }, + { + "@id": "https://unitsml.org/unit/NISTu281", + "name": "rod (based on US survey foot)" + }, + { + "@id": "https://unitsml.org/unit/NISTu282", + "name": "fathom (based on US survey foot)" + }, + { + "@id": "https://unitsml.org/unit/NISTu290", + "name": "natural unit of length" + }, + { + "@id": "https://unitsml.org/unit/NISTu310", + "name": "chain (based on US survey foot)" + }, + { + "@id": "https://unitsml.org/unit/NISTu311", + "name": "link (based on US survey foot)" + }, + { + "@id": "https://unitsml.org/unit/NISTu312", + "name": "furlong (based on US survey foot)" + }, + { + "@id": "https://unitsml.org/unit/NISTu313", + "name": "mile (based on US survey foot)" + }, + { + "@id": "https://unitsml.org/unit/NISTu314", + "name": "yard (based on US survey foot)" + }, + { + "@id": "https://unitsml.org/unit/NISTu315", + "name": "foot (based on US survey foot)" + }, + { + "@id": "https://unitsml.org/unit/NISTu316", + "name": "inch (based on US survey foot)" + }, + { + "@id": "https://unitsml.org/unit/NISTu344", + "name": "point (printer's)" + }, + { + "@id": "https://unitsml.org/unit/NISTu361", + "name": "microinch" + }, + { + "@id": "https://unitsml.org/unit/NISTu376", + "name": "light week" + }, + { + "@id": "https://unitsml.org/unit/NISTu377", + "name": "light hour" + }, + { + "@id": "https://unitsml.org/unit/NISTu378", + "name": "light minute" + }, + { + "@id": "https://unitsml.org/unit/NISTu379", + "name": "light second" + }, + { + "@id": "https://unitsml.org/unit/NISTu39", + "name": "Γ₯ngstrΓΆm" + }, + { + "@id": "https://unitsml.org/unit/NISTu78", + "name": "foot" + }, + { + "@id": "https://unitsml.org/unit/NISTu8", + "name": "inch" + }, + { + "@id": "https://unitsml.org/unit/NISTu83", + "name": "mile" + }, + { + "@id": "https://unitsml.org/unit/NISTu84", + "name": "yard" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:volume", + "@type": "Quantity", + "name": "volume", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq10" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:volume" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu115", + "name": "stere" + }, + { + "@id": "https://unitsml.org/unit/NISTu130", + "name": "litre" + }, + { + "@id": "https://unitsml.org/unit/NISTu168", + "name": "cubic inch" + }, + { + "@id": "https://unitsml.org/unit/NISTu169", + "name": "cubic foot" + }, + { + "@id": "https://unitsml.org/unit/NISTu170", + "name": "cubic yard" + }, + { + "@id": "https://unitsml.org/unit/NISTu171", + "name": "gallon (UK)" + }, + { + "@id": "https://unitsml.org/unit/NISTu172", + "name": "pint (UK)" + }, + { + "@id": "https://unitsml.org/unit/NISTu173", + "name": "fluid ounce (UK)" + }, + { + "@id": "https://unitsml.org/unit/NISTu175", + "name": "gallon (US)" + }, + { + "@id": "https://unitsml.org/unit/NISTu176", + "name": "liquid pint (US)" + }, + { + "@id": "https://unitsml.org/unit/NISTu177", + "name": "fluid ounce (US)" + }, + { + "@id": "https://unitsml.org/unit/NISTu178", + "name": "barrel (US) for petroleum" + }, + { + "@id": "https://unitsml.org/unit/NISTu179", + "name": "bushel (US)" + }, + { + "@id": "https://unitsml.org/unit/NISTu180", + "name": "dry pint (US)" + }, + { + "@id": "https://unitsml.org/unit/NISTu1e3/1", + "name": "cubic meter" + }, + { + "@id": "https://unitsml.org/unit/NISTu300", + "name": "quart (UK)" + }, + { + "@id": "https://unitsml.org/unit/NISTu301", + "name": "dry quart (US)" + }, + { + "@id": "https://unitsml.org/unit/NISTu302", + "name": "liquid quart (US)" + }, + { + "@id": "https://unitsml.org/unit/NISTu303", + "name": "teaspoon" + }, + { + "@id": "https://unitsml.org/unit/NISTu304", + "name": "tablespoon" + }, + { + "@id": "https://unitsml.org/unit/NISTu305", + "name": "tablespoon (FDA)" + }, + { + "@id": "https://unitsml.org/unit/NISTu306", + "name": "teaspoon (FDA)" + }, + { + "@id": "https://unitsml.org/unit/NISTu307", + "name": "cup (FDA)" + }, + { + "@id": "https://unitsml.org/unit/NISTu308", + "name": "fluid ounce (FDA)" + }, + { + "@id": "https://unitsml.org/unit/NISTu352", + "name": "peck" + }, + { + "@id": "https://unitsml.org/unit/NISTu353", + "name": "minim" + }, + { + "@id": "https://unitsml.org/unit/NISTu354", + "name": "cup (US)" + }, + { + "@id": "https://unitsml.org/unit/NISTu355", + "name": "fluid dram" + }, + { + "@id": "https://unitsml.org/unit/NISTu356", + "name": "gill (US)" + }, + { + "@id": "https://unitsml.org/unit/NISTu357", + "name": "gill [Canadian and UK (Imperial)]" + }, + { + "@id": "https://unitsml.org/unit/NISTu365", + "name": "milliliter" + }, + { + "@id": "https://unitsml.org/unit/NISTu57", + "name": "acre-foot (based on US survey foot)" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:diameter", + "@type": "Quantity", + "name": "diameter", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq100" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:diameter" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:length_of_path", + "@type": "Quantity", + "name": "length of path", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq101" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:length_of_path" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:cartesian_coordinates", + "@type": "Quantity", + "name": "cartesian coordinates", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq102" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:cartesian_coordinates" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:position_vector", + "@type": "Quantity", + "name": "position vector", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq103" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:position_vector" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:displacement", + "@type": "Quantity", + "name": "displacement", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq104" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:displacement" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:radius_of_curvature", + "@type": "Quantity", + "name": "radius of curvature", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq105" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:radius_of_curvature" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:curvature", + "@type": "Quantity", + "name": "curvature", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq106" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:curvature" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd29", + "expression": "L-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1e-1/1", + "name": "meter to the power minus one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:speed_of_propagation_of_waves", + "@type": "Quantity", + "name": "speed of propagation of waves", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq107" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:speed_of_propagation_of_waves" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd11", + "expression": "LΒ·T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1.u3e-1/1", + "name": "meter per second" + }, + { + "@id": "https://unitsml.org/unit/NISTu160", + "name": "kilometer per hour" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:acceleration_of_free_fall", + "@type": "Quantity", + "name": "acceleration of free fall", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq108" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:acceleration_of_free_fall" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd28", + "expression": "LΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1.u3e-2/1", + "name": "meter per second squared" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:period_duration", + "@type": "Quantity", + "name": "period duration", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq109" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:period_duration" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd3", + "expression": "T" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:solid_angle", + "@type": "Quantity", + "name": "solid angle", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq11" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:solid_angle" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd64", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu10", + "name": "steradian" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:time_constant", + "@type": "Quantity", + "name": "time constant", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq110" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:time_constant" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd3", + "expression": "T" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:rotation", + "@type": "Quantity", + "name": "rotation", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq111" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:rotation" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd80", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu61", + "name": "one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:rotational_frequency", + "@type": "Quantity", + "name": "rotational frequency", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq112" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:rotational_frequency" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd24", + "expression": "T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu3e-1/1", + "name": "second to the power minus one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:angular_frequency", + "@type": "Quantity", + "name": "angular frequency", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq113" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:angular_frequency" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd24", + "expression": "T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu3e-1/1", + "name": "second to the power minus one" + }, + { + "@id": "https://unitsml.org/unit/NISTu9.u3e-1/1", + "name": "radian per second" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:wavelength", + "@type": "Quantity", + "name": "wavelength", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq114" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:wavelength" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:angular_wavenumber", + "@type": "Quantity", + "name": "angular wavenumber", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq115" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:angular_wavenumber" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd29", + "expression": "L-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1e-1/1", + "name": "meter to the power minus one" + }, + { + "@id": "https://unitsml.org/unit/NISTu9.u1e-1/1", + "name": "radian per meter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:phase_velocity", + "@type": "Quantity", + "name": "phase velocity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq116" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:phase_velocity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd11", + "expression": "LΒ·T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1.u3e-1/1", + "name": "meter per second" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:group_velocity", + "@type": "Quantity", + "name": "group velocity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq117" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:group_velocity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd11", + "expression": "LΒ·T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1.u3e-1/1", + "name": "meter per second" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:level_of_a_field_quantity", + "@type": "Quantity", + "name": "level of a field quantity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq118" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:level_of_a_field_quantity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd83", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu153", + "name": "neper" + }, + { + "@id": "https://unitsml.org/unit/NISTu154", + "name": "bel" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:level_of_a_power_quantity", + "@type": "Quantity", + "name": "level of a power quantity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq119" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:level_of_a_power_quantity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd84", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu153", + "name": "neper" + }, + { + "@id": "https://unitsml.org/unit/NISTu154", + "name": "bel" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:velocity", + "@type": "Quantity", + "name": "velocity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq12" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:velocity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd11", + "expression": "LΒ·T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1.u3e-1/1", + "name": "meter per second" + }, + { + "@id": "https://unitsml.org/unit/NISTu107", + "name": "foot per minute" + }, + { + "@id": "https://unitsml.org/unit/NISTu108", + "name": "foot per second" + }, + { + "@id": "https://unitsml.org/unit/NISTu109", + "name": "inch per second" + }, + { + "@id": "https://unitsml.org/unit/NISTu110", + "name": "mile per hour" + }, + { + "@id": "https://unitsml.org/unit/NISTu111", + "name": "mile per minute" + }, + { + "@id": "https://unitsml.org/unit/NISTu112", + "name": "mile per second" + }, + { + "@id": "https://unitsml.org/unit/NISTu152", + "name": "nautical mile per hour" + }, + { + "@id": "https://unitsml.org/unit/NISTu160", + "name": "kilometer per hour" + }, + { + "@id": "https://unitsml.org/unit/NISTu242", + "name": "natural unit of velocity" + }, + { + "@id": "https://unitsml.org/unit/NISTu294", + "name": "atomic unit of velocity" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:damping_coefficient", + "@type": "Quantity", + "name": "damping coefficient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq120" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:damping_coefficient" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd24", + "expression": "T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu163", + "name": "neper per second" + }, + { + "@id": "https://unitsml.org/unit/NISTu3e-1/1", + "name": "second to the power minus one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:logarithmic_decrement", + "@type": "Quantity", + "name": "ratio logarithm (Np)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq121" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:logarithmic_decrement" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd67", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu153", + "name": "neper" + }, + { + "@id": "https://unitsml.org/unit/NISTu61", + "name": "one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:attenuation_coefficient", + "@type": "Quantity", + "name": "attenuation coefficient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq122" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:attenuation_coefficient" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd29", + "expression": "L-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1e-1/1", + "name": "meter to the power minus one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:phase_coefficient", + "@type": "Quantity", + "name": "phase coefficient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq123" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:phase_coefficient" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd29", + "expression": "L-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1e-1/1", + "name": "meter to the power minus one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:propagation_coefficient", + "@type": "Quantity", + "name": "propagation coefficient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq124" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:propagation_coefficient" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd29", + "expression": "L-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1e-1/1", + "name": "meter to the power minus one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:relative_mass_density", + "@type": "Quantity", + "name": "relative mass density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq125" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:relative_mass_density" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd80", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu61", + "name": "one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:linear_density", + "@type": "Quantity", + "name": "linear density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq126" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:linear_density" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd58", + "expression": "L-1Β·M" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu213", + "name": "tex" + }, + { + "@id": "https://unitsml.org/unit/NISTu27p10'3.u1e-1/1", + "name": "kilogram per meter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:mass_moment_of_inertia", + "@type": "Quantity", + "name": "mass moment of inertia", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq127" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:mass_moment_of_inertia" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd59", + "expression": "L2Β·M" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu27p10'3.u1e2/1", + "name": "kilogram meter squared" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:weight", + "@type": "Quantity", + "name": "weight", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq128" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:weight" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd12", + "expression": "LΒ·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu205", + "name": "pound-force" + }, + { + "@id": "https://unitsml.org/unit/NISTu236", + "name": "poundal" + }, + { + "@id": "https://unitsml.org/unit/NISTu238", + "name": "ton-force (2000 lb)" + }, + { + "@id": "https://unitsml.org/unit/NISTu262", + "name": "atomic unit of force" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:impulse", + "@type": "Quantity", + "name": "impulse", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq129" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:impulse" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd61", + "expression": "LΒ·MΒ·T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu11.u3", + "name": "newton second" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:force", + "@type": "Quantity", + "name": "force", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq13" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:force" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd12", + "expression": "LΒ·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu11", + "name": "newton" + }, + { + "@id": "https://unitsml.org/unit/NISTu196", + "name": "gram-force" + }, + { + "@id": "https://unitsml.org/unit/NISTu205", + "name": "pound-force" + }, + { + "@id": "https://unitsml.org/unit/NISTu236", + "name": "poundal" + }, + { + "@id": "https://unitsml.org/unit/NISTu238", + "name": "ton-force (2000 lb)" + }, + { + "@id": "https://unitsml.org/unit/NISTu262", + "name": "atomic unit of force" + }, + { + "@id": "https://unitsml.org/unit/NISTu71", + "name": "dyne" + }, + { + "@id": "https://unitsml.org/unit/NISTu72", + "name": "kilogram-force" + }, + { + "@id": "https://unitsml.org/unit/NISTu73", + "name": "kilopond" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:gravitational_constant", + "@type": "Quantity", + "name": "gravitational constant", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq130" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:gravitational_constant" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd62", + "expression": "L3Β·M-1Β·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu11.u1e2/1.u27p10'3e-2/1", + "name": "newton meter squared per kilogram squared" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:momentum", + "@type": "Quantity", + "name": "momentum", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq131" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:momentum" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd61", + "expression": "LΒ·MΒ·T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu255", + "name": "atomic unit of momentum" + }, + { + "@id": "https://unitsml.org/unit/NISTu27p10'3.u1.u3e-1/1", + "name": "kilogram meter per second" + }, + { + "@id": "https://unitsml.org/unit/NISTu296", + "name": "natural unit of momentum" + }, + { + "@id": "https://unitsml.org/unit/NISTu299", + "name": "natural unit of momentum in MeV/c" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:moment_of_momentum", + "@type": "Quantity", + "name": "moment of momentum", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq132" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:moment_of_momentum" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd60", + "expression": "L2Β·MΒ·T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu27p10'3.u1e2/1.u3e-1/1", + "name": "kilogram meter squared per second" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:angular_impulse", + "@type": "Quantity", + "name": "angular impulse", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq133" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:angular_impulse" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd60", + "expression": "L2Β·MΒ·T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu11.u1.u3", + "name": "newton meter second" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:normal_stress", + "@type": "Quantity", + "name": "normal stress", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq134" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:normal_stress" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu12", + "name": "pascal" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:shear_stress", + "@type": "Quantity", + "name": "shear stress", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq135" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:shear_stress" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu12", + "name": "pascal" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:linear_strain", + "@type": "Quantity", + "name": "linear strain", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq136" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:linear_strain" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd80", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu61", + "name": "one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:shear_strain", + "@type": "Quantity", + "name": "shear strain", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq137" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:shear_strain" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd80", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu61", + "name": "one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:volume_strain", + "@type": "Quantity", + "name": "volume strain", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq138" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:volume_strain" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd80", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu61", + "name": "one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:compressibility", + "@type": "Quantity", + "name": "compressibility", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq139" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:compressibility" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd63", + "expression": "LΒ·M-1Β·T2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu12e-1/1", + "name": "pascal to the power minus one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:magnetic_flux_density", + "@type": "Quantity", + "name": "magnetic flux density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq14" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:magnetic_flux_density" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd13", + "expression": "MΒ·T-2Β·I-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu116", + "name": "gamma" + }, + { + "@id": "https://unitsml.org/unit/NISTu119", + "name": "gauss" + }, + { + "@id": "https://unitsml.org/unit/NISTu21", + "name": "tesla" + }, + { + "@id": "https://unitsml.org/unit/NISTu253", + "name": "atomic unit of magnetic flux density" + }, + { + "@id": "https://unitsml.org/unit/NISTu273", + "name": "stattesla" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:poisson_number", + "@type": "Quantity", + "name": "Poisson number", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq140" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:poisson_number" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd80", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu61", + "name": "one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:modulus_of_elasticity", + "@type": "Quantity", + "name": "modulus of elasticity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq141" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:modulus_of_elasticity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu12", + "name": "pascal" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:modulus_of_rigidity", + "@type": "Quantity", + "name": "modulus of rigidity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq142" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:modulus_of_rigidity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu12", + "name": "pascal" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:modulus_of_compression", + "@type": "Quantity", + "name": "modulus of compression", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq143" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:modulus_of_compression" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu12", + "name": "pascal" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:second_axial_moment_of_area", + "@type": "Quantity", + "name": "second axial moment of area", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq144" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:second_axial_moment_of_area" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd57", + "expression": "L4" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu185", + "name": "meter to the power four" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:second_polar_moment_of_area", + "@type": "Quantity", + "name": "second polar moment of area", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq145" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:second_polar_moment_of_area" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd57", + "expression": "L4" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu185", + "name": "meter to the power four" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:section_modulus", + "@type": "Quantity", + "name": "section modulus", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq146" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:section_modulus" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd10", + "expression": "L3" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1e3/1", + "name": "cubic meter" + }, + { + "@id": "https://unitsml.org/unit/NISTu209", + "name": "inch cubed" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:dynamic_friction_factor", + "@type": "Quantity", + "name": "dynamic friction factor", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq147" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:dynamic_friction_factor" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd80", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu61", + "name": "one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:pressure", + "@type": "Quantity", + "name": "pressure", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq15" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:pressure" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu12", + "name": "pascal" + }, + { + "@id": "https://unitsml.org/unit/NISTu134", + "name": "standard atmosphere" + }, + { + "@id": "https://unitsml.org/unit/NISTu135", + "name": "technical atmosphere" + }, + { + "@id": "https://unitsml.org/unit/NISTu156", + "name": "conventional millimeter of mercury" + }, + { + "@id": "https://unitsml.org/unit/NISTu207", + "name": "pound-force per square inch" + }, + { + "@id": "https://unitsml.org/unit/NISTu214", + "name": "torr" + }, + { + "@id": "https://unitsml.org/unit/NISTu215", + "name": "conventional millimeter of water" + }, + { + "@id": "https://unitsml.org/unit/NISTu239", + "name": "barye" + }, + { + "@id": "https://unitsml.org/unit/NISTu318", + "name": "conventional centimeter of mercury" + }, + { + "@id": "https://unitsml.org/unit/NISTu319", + "name": "centimeter of mercury (0 degC)" + }, + { + "@id": "https://unitsml.org/unit/NISTu320", + "name": "centimeter of water (4 degC)" + }, + { + "@id": "https://unitsml.org/unit/NISTu321", + "name": "conventional centimeter of water" + }, + { + "@id": "https://unitsml.org/unit/NISTu322", + "name": "conventional inch of water" + }, + { + "@id": "https://unitsml.org/unit/NISTu323", + "name": "inch of water (39.2 degF)" + }, + { + "@id": "https://unitsml.org/unit/NISTu324", + "name": "inch of water (60 degF)" + }, + { + "@id": "https://unitsml.org/unit/NISTu325", + "name": "conventional foot of water" + }, + { + "@id": "https://unitsml.org/unit/NISTu326", + "name": "foot of water (39.2 degF)" + }, + { + "@id": "https://unitsml.org/unit/NISTu327", + "name": "inch of mercury (32 degF)" + }, + { + "@id": "https://unitsml.org/unit/NISTu328", + "name": "inch of mercury (60 degF)" + }, + { + "@id": "https://unitsml.org/unit/NISTu329", + "name": "conventional inch of mercury" + }, + { + "@id": "https://unitsml.org/unit/NISTu330", + "name": "conventional foot of mercury" + }, + { + "@id": "https://unitsml.org/unit/NISTu362", + "name": "millibar" + }, + { + "@id": "https://unitsml.org/unit/NISTu91", + "name": "bar" + }, + { + "@id": "https://unitsml.org/unit/NISTu92", + "name": "dyne per square centimeter" + }, + { + "@id": "https://unitsml.org/unit/NISTu93", + "name": "gram-force per square centimeter" + }, + { + "@id": "https://unitsml.org/unit/NISTu94", + "name": "kilogram-force per square centimeter" + }, + { + "@id": "https://unitsml.org/unit/NISTu95", + "name": "kilogram-force per square meter" + }, + { + "@id": "https://unitsml.org/unit/NISTu96", + "name": "kilogram-force per square millimeter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:mass_flow_rate", + "@type": "Quantity", + "name": "mass flow rate", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq150" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:mass_flow_rate" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd65", + "expression": "MΒ·T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu27p10'3.u3e-1/1", + "name": "kilogram per second" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:volume_flow_rate", + "@type": "Quantity", + "name": "volume flow rate", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq151" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:volume_flow_rate" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd66", + "expression": "L3Β·T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1e3/1.u3e-1/1", + "name": "cubic meter per second" + }, + { + "@id": "https://unitsml.org/unit/NISTu358", + "name": "cubic foot per minute" + }, + { + "@id": "https://unitsml.org/unit/NISTu359", + "name": "cubic foot per second" + }, + { + "@id": "https://unitsml.org/unit/NISTu360", + "name": "cubic inch per minute" + }, + { + "@id": "https://unitsml.org/unit/NISTu364", + "name": "gallon (US) per minute" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:lagrange_function", + "@type": "Quantity", + "name": "Lagrange function", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq152" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:lagrange_function" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu13", + "name": "joule" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:hamilton_function", + "@type": "Quantity", + "name": "Hamilton function", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq153" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:hamilton_function" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu13", + "name": "joule" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:action", + "@type": "Quantity", + "name": "action", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq154" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:action" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd60", + "expression": "L2Β·MΒ·T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu13.u3", + "name": "joule second" + }, + { + "@id": "https://unitsml.org/unit/NISTu243", + "name": "natural unit of action" + }, + { + "@id": "https://unitsml.org/unit/NISTu248", + "name": "atomic unit of action" + }, + { + "@id": "https://unitsml.org/unit/NISTu297", + "name": "natural unit of action in eV s" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:area_moment_of_inertia", + "@type": "Quantity", + "name": "area moment of inertia", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq155" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:area_moment_of_inertia" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd57", + "expression": "L4" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu208", + "name": "inch to the fourth power" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:linear_expansion_coefficient", + "@type": "Quantity", + "name": "linear expansion coefficient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq156" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:linear_expansion_coefficient" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd68", + "expression": "Theta-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu5e-1/1", + "name": "kelvin to the power minus one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:cubic_expansion_coefficient", + "@type": "Quantity", + "name": "cubic expansion coefficient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq157" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:cubic_expansion_coefficient" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd68", + "expression": "Theta-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu5e-1/1", + "name": "kelvin to the power minus one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:relative_pressure_coefficient", + "@type": "Quantity", + "name": "relative pressure coefficient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq158" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:relative_pressure_coefficient" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd68", + "expression": "Theta-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu5e-1/1", + "name": "kelvin to the power minus one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:pressure_coefficient", + "@type": "Quantity", + "name": "pressure coefficient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq159" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:pressure_coefficient" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd69", + "expression": "L-1Β·MΒ·T-2Β·Theta-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu12.u5e-1/1", + "name": "pascal per kelvin" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:stress", + "@type": "Quantity", + "name": "stress", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq16" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:stress" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu12", + "name": "pascal" + }, + { + "@id": "https://unitsml.org/unit/NISTu134", + "name": "standard atmosphere" + }, + { + "@id": "https://unitsml.org/unit/NISTu135", + "name": "technical atmosphere" + }, + { + "@id": "https://unitsml.org/unit/NISTu156", + "name": "conventional millimeter of mercury" + }, + { + "@id": "https://unitsml.org/unit/NISTu318", + "name": "conventional centimeter of mercury" + }, + { + "@id": "https://unitsml.org/unit/NISTu319", + "name": "centimeter of mercury (0 degC)" + }, + { + "@id": "https://unitsml.org/unit/NISTu320", + "name": "centimeter of water (4 degC)" + }, + { + "@id": "https://unitsml.org/unit/NISTu321", + "name": "conventional centimeter of water" + }, + { + "@id": "https://unitsml.org/unit/NISTu322", + "name": "conventional inch of water" + }, + { + "@id": "https://unitsml.org/unit/NISTu323", + "name": "inch of water (39.2 degF)" + }, + { + "@id": "https://unitsml.org/unit/NISTu324", + "name": "inch of water (60 degF)" + }, + { + "@id": "https://unitsml.org/unit/NISTu325", + "name": "conventional foot of water" + }, + { + "@id": "https://unitsml.org/unit/NISTu326", + "name": "foot of water (39.2 degF)" + }, + { + "@id": "https://unitsml.org/unit/NISTu327", + "name": "inch of mercury (32 degF)" + }, + { + "@id": "https://unitsml.org/unit/NISTu328", + "name": "inch of mercury (60 degF)" + }, + { + "@id": "https://unitsml.org/unit/NISTu329", + "name": "conventional inch of mercury" + }, + { + "@id": "https://unitsml.org/unit/NISTu330", + "name": "conventional foot of mercury" + }, + { + "@id": "https://unitsml.org/unit/NISTu362", + "name": "millibar" + }, + { + "@id": "https://unitsml.org/unit/NISTu91", + "name": "bar" + }, + { + "@id": "https://unitsml.org/unit/NISTu92", + "name": "dyne per square centimeter" + }, + { + "@id": "https://unitsml.org/unit/NISTu93", + "name": "gram-force per square centimeter" + }, + { + "@id": "https://unitsml.org/unit/NISTu94", + "name": "kilogram-force per square centimeter" + }, + { + "@id": "https://unitsml.org/unit/NISTu95", + "name": "kilogram-force per square meter" + }, + { + "@id": "https://unitsml.org/unit/NISTu96", + "name": "kilogram-force per square millimeter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:isothermal_compressibility", + "@type": "Quantity", + "name": "isothermal compressibility", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq160" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:isothermal_compressibility" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd70", + "expression": "LΒ·M-1Β·T2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu12e-1/1", + "name": "pascal to the power minus one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:magnetomotive_force", + "@type": "Quantity", + "name": "magnetomotive force (Cardelli) (-SP811)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq161" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:magnetomotive_force" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd4", + "expression": "I" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu223", + "name": "gilbert" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:electric_dipole_moment", + "@type": "Quantity", + "name": "electric dipole moment", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq162" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_dipole_moment" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd72", + "expression": "LΒ·TΒ·I" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu224", + "name": "debye" + }, + { + "@id": "https://unitsml.org/unit/NISTu258", + "name": "atomic unit of electric dipole moment" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:magnetizability", + "@type": "Quantity", + "name": "magnetizability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq163" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:magnetizability" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd54", + "expression": "L2Β·MΒ·T2Β·I2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu252", + "name": "atomic unit of magnetizability" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:magnetic_dipole_moment", + "@type": "Quantity", + "name": "magnetic dipole moment", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq164" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:magnetic_dipole_moment" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd73", + "expression": "L2Β·I" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu254", + "name": "atomic unit of magnetic dipole moment" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:electric_field_gradient", + "@type": "Quantity", + "name": "electric field gradient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq165" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_field_gradient" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd74", + "expression": "MΒ·T-3Β·I-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu260", + "name": "atomic unit of electric field gradient" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:electric_potential", + "@type": "Quantity", + "name": "electric potential", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq166" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_potential" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd18", + "expression": "L2Β·MΒ·T-3Β·I-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu261", + "name": "atomic unit of electric potential" + }, + { + "@id": "https://unitsml.org/unit/NISTu268", + "name": "statvolt" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:electric_quadrupole_moment", + "@type": "Quantity", + "name": "electric quadrupole moment", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq167" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_quadrupole_moment" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd75", + "expression": "L2Β·TΒ·I" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu263", + "name": "atomic unit of electric quadrupole moment" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:polarizability", + "@type": "Quantity", + "name": "polarizability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq168" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:polarizability" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd76", + "expression": "MΒ·T4Β·I2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu264", + "name": "atomic unit of electric polarizability" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:electric_capacitance", + "@type": "Quantity", + "name": "electric capacitance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq169" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_capacitance" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd19", + "expression": "L-2Β·M-1Β·T4Β·I2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu266", + "name": "statfarad" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:energy", + "@type": "Quantity", + "name": "energy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq17" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:energy" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu117", + "name": "therm (EC)" + }, + { + "@id": "https://unitsml.org/unit/NISTu126", + "name": "kilogram-force meter" + }, + { + "@id": "https://unitsml.org/unit/NISTu13", + "name": "joule" + }, + { + "@id": "https://unitsml.org/unit/NISTu14.u3", + "name": "watt second" + }, + { + "@id": "https://unitsml.org/unit/NISTu166", + "name": "ton of TNT (energy equivalent)" + }, + { + "@id": "https://unitsml.org/unit/NISTu206", + "name": "foot pound-force" + }, + { + "@id": "https://unitsml.org/unit/NISTu227", + "name": "thermochemical calorie" + }, + { + "@id": "https://unitsml.org/unit/NISTu240", + "name": "electronvolt" + }, + { + "@id": "https://unitsml.org/unit/NISTu250", + "name": "atomic unit of energy" + }, + { + "@id": "https://unitsml.org/unit/NISTu295", + "name": "natural unit of energy" + }, + { + "@id": "https://unitsml.org/unit/NISTu298", + "name": "natural unit of energy in MeV" + }, + { + "@id": "https://unitsml.org/unit/NISTu331", + "name": "therm (US)" + }, + { + "@id": "https://unitsml.org/unit/NISTu60", + "name": "I.T. calorie" + }, + { + "@id": "https://unitsml.org/unit/NISTu62", + "name": "erg" + }, + { + "@id": "https://unitsml.org/unit/NISTu63", + "name": "kilocalorie_IT" + }, + { + "@id": "https://unitsml.org/unit/NISTu64", + "name": "kilocalorie_th" + }, + { + "@id": "https://unitsml.org/unit/NISTu65", + "name": "kilowatt hour" + }, + { + "@id": "https://unitsml.org/unit/NISTu69", + "name": "watt hour" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:electric_current_intensity", + "@type": "Quantity", + "name": "electric current intensity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq170" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_current_intensity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd4", + "expression": "I" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu267", + "name": "statampere" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:electric_inductance", + "@type": "Quantity", + "name": "electric inductance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq171" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_inductance" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd23", + "expression": "L2Β·MΒ·T-2Β·I-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu269", + "name": "stathenry" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:first_hyperpolarizability", + "@type": "Quantity", + "name": "1st hyperpolarizability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq172" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:first_hyperpolarizability" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd77", + "expression": "L-1Β·M-2Β·T7Β·I3" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu291", + "name": "atomic unit of 1st hyperpolarizability" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:second_hyperpolarizability", + "@type": "Quantity", + "name": "2nd hyperpolarizability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq173" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:second_hyperpolarizability" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd78", + "expression": "L-2Β·M-3Β·T10Β·I4" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu292", + "name": "atomic unit of 2nd hyperpolarizability" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:index_of_acidity", + "@type": "Quantity", + "name": "index of acidity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq174" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:index_of_acidity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd94", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu332", + "name": "pH" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:fahrenheit_temperature", + "@type": "Quantity", + "name": "Fahrenheit temperature", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq175" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:fahrenheit_temperature" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd5", + "expression": "Theta" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu133", + "name": "degree Fahrenheit" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:mass_divided_by_length", + "@type": "Quantity", + "name": "mass divided by length", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq176" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:mass_divided_by_length" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd58", + "expression": "L-1Β·M" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu346", + "name": "denier" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:storage_capacity", + "@type": "Quantity", + "name": "storage capacity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq177" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:storage_capacity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd95", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu350", + "name": "bit" + }, + { + "@id": "https://unitsml.org/unit/NISTu351", + "name": "byte" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:molality_of_solute_B", + "@type": "Quantity", + "name": "molality of solute B", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq179" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:molality_of_solute_B" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd79", + "expression": "MΒ·N" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu6.u27p10'3e-1/1", + "name": "mole per kilogram" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:work", + "@type": "Quantity", + "name": "work", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq18" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:work" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu117", + "name": "therm (EC)" + }, + { + "@id": "https://unitsml.org/unit/NISTu126", + "name": "kilogram-force meter" + }, + { + "@id": "https://unitsml.org/unit/NISTu13", + "name": "joule" + }, + { + "@id": "https://unitsml.org/unit/NISTu14.u3", + "name": "watt second" + }, + { + "@id": "https://unitsml.org/unit/NISTu206", + "name": "foot pound-force" + }, + { + "@id": "https://unitsml.org/unit/NISTu227", + "name": "thermochemical calorie" + }, + { + "@id": "https://unitsml.org/unit/NISTu331", + "name": "therm (US)" + }, + { + "@id": "https://unitsml.org/unit/NISTu60", + "name": "I.T. calorie" + }, + { + "@id": "https://unitsml.org/unit/NISTu62", + "name": "erg" + }, + { + "@id": "https://unitsml.org/unit/NISTu63", + "name": "kilocalorie_IT" + }, + { + "@id": "https://unitsml.org/unit/NISTu64", + "name": "kilocalorie_th" + }, + { + "@id": "https://unitsml.org/unit/NISTu65", + "name": "kilowatt hour" + }, + { + "@id": "https://unitsml.org/unit/NISTu69", + "name": "watt hour" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:coefficient_of_heat_transfer", + "@type": "Quantity", + "name": "coefficient of heat transfer", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq180" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:coefficient_of_heat_transfer" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd71", + "expression": "MΒ·T-3Β·Theta-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu221", + "name": "watt per square meter kelvin" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:surface_coefficient_of_heat_transfer", + "@type": "Quantity", + "name": "surface coefficient of heat transfer", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq181" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:surface_coefficient_of_heat_transfer" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd71", + "expression": "MΒ·T-3Β·Theta-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu221", + "name": "watt per square meter kelvin" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:kinetic_energy", + "@type": "Quantity", + "name": "kinetic energy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq182" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:kinetic_energy" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu117", + "name": "therm (EC)" + }, + { + "@id": "https://unitsml.org/unit/NISTu13", + "name": "joule" + }, + { + "@id": "https://unitsml.org/unit/NISTu14.u3", + "name": "watt second" + }, + { + "@id": "https://unitsml.org/unit/NISTu206", + "name": "foot pound-force" + }, + { + "@id": "https://unitsml.org/unit/NISTu227", + "name": "thermochemical calorie" + }, + { + "@id": "https://unitsml.org/unit/NISTu331", + "name": "therm (US)" + }, + { + "@id": "https://unitsml.org/unit/NISTu60", + "name": "I.T. calorie" + }, + { + "@id": "https://unitsml.org/unit/NISTu62", + "name": "erg" + }, + { + "@id": "https://unitsml.org/unit/NISTu63", + "name": "kilocalorie_IT" + }, + { + "@id": "https://unitsml.org/unit/NISTu64", + "name": "kilocalorie_th" + }, + { + "@id": "https://unitsml.org/unit/NISTu65", + "name": "kilowatt hour" + }, + { + "@id": "https://unitsml.org/unit/NISTu69", + "name": "watt hour" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:mechanical_energy", + "@type": "Quantity", + "name": "mechanical energy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq183" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:mechanical_energy" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu117", + "name": "therm (EC)" + }, + { + "@id": "https://unitsml.org/unit/NISTu13", + "name": "joule" + }, + { + "@id": "https://unitsml.org/unit/NISTu14.u3", + "name": "watt second" + }, + { + "@id": "https://unitsml.org/unit/NISTu206", + "name": "foot pound-force" + }, + { + "@id": "https://unitsml.org/unit/NISTu227", + "name": "thermochemical calorie" + }, + { + "@id": "https://unitsml.org/unit/NISTu331", + "name": "therm (US)" + }, + { + "@id": "https://unitsml.org/unit/NISTu60", + "name": "I.T. calorie" + }, + { + "@id": "https://unitsml.org/unit/NISTu62", + "name": "erg" + }, + { + "@id": "https://unitsml.org/unit/NISTu63", + "name": "kilocalorie_IT" + }, + { + "@id": "https://unitsml.org/unit/NISTu64", + "name": "kilocalorie_th" + }, + { + "@id": "https://unitsml.org/unit/NISTu65", + "name": "kilowatt hour" + }, + { + "@id": "https://unitsml.org/unit/NISTu69", + "name": "watt hour" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:torque", + "@type": "Quantity", + "name": "torque", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq184" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:torque" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu11.u1", + "name": "newton meter" + }, + { + "@id": "https://unitsml.org/unit/NISTu126", + "name": "kilogram-force meter" + }, + { + "@id": "https://unitsml.org/unit/NISTu206", + "name": "foot pound-force" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:bending_moment_of_force", + "@type": "Quantity", + "name": "bending moment of force", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq185" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:bending_moment_of_force" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu11.u1", + "name": "newton meter" + }, + { + "@id": "https://unitsml.org/unit/NISTu126", + "name": "kilogram-force meter" + }, + { + "@id": "https://unitsml.org/unit/NISTu206", + "name": "foot pound-force" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:mass_fraction", + "@type": "Quantity", + "name": "mass fraction", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq186" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:mass_fraction" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd85", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu400", + "name": "parts per million" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:apparent_power", + "@type": "Quantity", + "name": "apparent power", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq187" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:apparent_power" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu401", + "name": "var" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:nil", + "@type": "Quantity", + "name": "nil", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq188" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:nil" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd80", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu61", + "name": "one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:emission_rate", + "@type": "Quantity", + "name": "emission rate", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq189" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:emission_rate" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd24", + "expression": "T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu3e-1/1", + "name": "second to the power minus one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:amount_of_heat", + "@type": "Quantity", + "name": "amount of heat", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq19" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:amount_of_heat" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu117", + "name": "therm (EC)" + }, + { + "@id": "https://unitsml.org/unit/NISTu13", + "name": "joule" + }, + { + "@id": "https://unitsml.org/unit/NISTu14.u3", + "name": "watt second" + }, + { + "@id": "https://unitsml.org/unit/NISTu216", + "name": "British thermal unit_th" + }, + { + "@id": "https://unitsml.org/unit/NISTu227", + "name": "thermochemical calorie" + }, + { + "@id": "https://unitsml.org/unit/NISTu331", + "name": "therm (US)" + }, + { + "@id": "https://unitsml.org/unit/NISTu333", + "name": "British thermal unit_IT" + }, + { + "@id": "https://unitsml.org/unit/NISTu334", + "name": "British thermal unit (mean)" + }, + { + "@id": "https://unitsml.org/unit/NISTu335", + "name": "British thermal unit (39 degF)" + }, + { + "@id": "https://unitsml.org/unit/NISTu336", + "name": "British thermal unit (59 degF)" + }, + { + "@id": "https://unitsml.org/unit/NISTu337", + "name": "British thermal unit (60 degF)" + }, + { + "@id": "https://unitsml.org/unit/NISTu60", + "name": "I.T. calorie" + }, + { + "@id": "https://unitsml.org/unit/NISTu62", + "name": "erg" + }, + { + "@id": "https://unitsml.org/unit/NISTu63", + "name": "kilocalorie_IT" + }, + { + "@id": "https://unitsml.org/unit/NISTu64", + "name": "kilocalorie_th" + }, + { + "@id": "https://unitsml.org/unit/NISTu65", + "name": "kilowatt hour" + }, + { + "@id": "https://unitsml.org/unit/NISTu69", + "name": "watt hour" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:fluence", + "@type": "Quantity", + "name": "fluence", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq190" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:fluence" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd96", + "expression": "L-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1e-2/1", + "name": "meter to the power minus two" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:fluence_rate", + "@type": "Quantity", + "name": "fluence rate", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq191" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:fluence_rate" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd97", + "expression": "L-2Β·T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1e-2/1.u3e-1/1", + "name": "meter to the power minus two per second" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:ITS-90_temperature_celsius", + "@type": "Quantity", + "name": "ITS-90 temperature (Β°C)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq192" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:ITS-90_temperature_celsius" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd5", + "expression": "Theta" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu23", + "name": "degree Celsius" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:ITS-90_temperature_kelvin", + "@type": "Quantity", + "name": "ITS-90 temperature (K)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq193" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:ITS-90_temperature_kelvin" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd5", + "expression": "Theta" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu5", + "name": "kelvin" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:kerma_rate", + "@type": "Quantity", + "name": "kerma rate", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq194" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:kerma_rate" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd50", + "expression": "L2Β·T-3" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu28.u3e-1/1", + "name": "gray per second" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:phase", + "@type": "Quantity", + "name": "phase", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq195" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:phase" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd98", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu9", + "name": "radian" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:PLTS-2000_temperature", + "@type": "Quantity", + "name": "PLTS-2000 temperature (K)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq196" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:PLTS-2000_temperature" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd5", + "expression": "Theta" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu5", + "name": "kelvin" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:exposure", + "@type": "Quantity", + "name": "exposure", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq197" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:exposure" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd49", + "expression": "M-1Β·TΒ·I" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu15.u27p10'3e-1/1", + "name": "coulomb per kilogram" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:fuel_efficiency", + "@type": "Quantity", + "name": "fuel efficiency", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq198" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:fuel_efficiency" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd99", + "expression": "L-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu363", + "name": "mile per gallon (US)" + }, + { + "@id": "https://unitsml.org/unit/NISTu380", + "name": "kilometer per liter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:relative_humidity", + "@type": "Quantity", + "name": "relative humidity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq199" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:relative_humidity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd80", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu382", + "name": "relative humidity" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:mass", + "@type": "Quantity", + "name": "mass", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq2" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:mass" + } + ], + "quantityType": "base", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd2", + "expression": "M" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu125", + "name": "kilogram-force second squared per meter" + }, + { + "@id": "https://unitsml.org/unit/NISTu2", + "name": "kilogram" + }, + { + "@id": "https://unitsml.org/unit/NISTu201", + "name": "pound (avoirdupois)" + }, + { + "@id": "https://unitsml.org/unit/NISTu202", + "name": "ounce (avoirdupois)" + }, + { + "@id": "https://unitsml.org/unit/NISTu203", + "name": "hundredweight (long, 112 lb)" + }, + { + "@id": "https://unitsml.org/unit/NISTu212", + "name": "carat" + }, + { + "@id": "https://unitsml.org/unit/NISTu226", + "name": "slug" + }, + { + "@id": "https://unitsml.org/unit/NISTu228", + "name": "short ton" + }, + { + "@id": "https://unitsml.org/unit/NISTu229", + "name": "long ton" + }, + { + "@id": "https://unitsml.org/unit/NISTu230", + "name": "hundredweight (short, 100 lb)" + }, + { + "@id": "https://unitsml.org/unit/NISTu231", + "name": "ounce (troy or apothecary)" + }, + { + "@id": "https://unitsml.org/unit/NISTu232", + "name": "pound (troy or apothecary)" + }, + { + "@id": "https://unitsml.org/unit/NISTu233", + "name": "pennyweight" + }, + { + "@id": "https://unitsml.org/unit/NISTu234", + "name": "dram (apothecary)" + }, + { + "@id": "https://unitsml.org/unit/NISTu235", + "name": "scruple" + }, + { + "@id": "https://unitsml.org/unit/NISTu237", + "name": "kip" + }, + { + "@id": "https://unitsml.org/unit/NISTu241", + "name": "unified atomic mass unit" + }, + { + "@id": "https://unitsml.org/unit/NISTu244", + "name": "natural unit of mass" + }, + { + "@id": "https://unitsml.org/unit/NISTu247", + "name": "atomic unit of mass" + }, + { + "@id": "https://unitsml.org/unit/NISTu27", + "name": "gram" + }, + { + "@id": "https://unitsml.org/unit/NISTu275", + "name": "dram (avoirdupois)" + }, + { + "@id": "https://unitsml.org/unit/NISTu289", + "name": "dalton" + }, + { + "@id": "https://unitsml.org/unit/NISTu309", + "name": "ounce (FDA)" + }, + { + "@id": "https://unitsml.org/unit/NISTu86", + "name": "grain (troy or apothecary)" + }, + { + "@id": "https://unitsml.org/unit/NISTu88", + "name": "tonne" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:power", + "@type": "Quantity", + "name": "power", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq20" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:power" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu127", + "name": "horsepower, electric" + }, + { + "@id": "https://unitsml.org/unit/NISTu14", + "name": "watt" + }, + { + "@id": "https://unitsml.org/unit/NISTu211", + "name": "foot pound-force per second" + }, + { + "@id": "https://unitsml.org/unit/NISTu217", + "name": "kilogram-force meter per second" + }, + { + "@id": "https://unitsml.org/unit/NISTu218", + "name": "horsepower, metric" + }, + { + "@id": "https://unitsml.org/unit/NISTu225", + "name": "abwatt" + }, + { + "@id": "https://unitsml.org/unit/NISTu274", + "name": "statwatt" + }, + { + "@id": "https://unitsml.org/unit/NISTu284", + "name": "horsepower" + }, + { + "@id": "https://unitsml.org/unit/NISTu285", + "name": "horsepower, boiler" + }, + { + "@id": "https://unitsml.org/unit/NISTu286", + "name": "horsepower, water" + }, + { + "@id": "https://unitsml.org/unit/NISTu287", + "name": "horsepower (UK)" + }, + { + "@id": "https://unitsml.org/unit/NISTu349", + "name": "ton of refrigeration (12 000 Btu_IT/h)" + }, + { + "@id": "https://unitsml.org/unit/NISTu74", + "name": "calorie_th per second" + }, + { + "@id": "https://unitsml.org/unit/NISTu75", + "name": "kilocalorie_th per second" + }, + { + "@id": "https://unitsml.org/unit/NISTu89", + "name": "erg per second" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:logarithmic_frequency_range", + "@type": "Quantity", + "name": "logarithmic frequency range", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq200" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:logarithmic_frequency_range" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd67", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu383", + "name": "octave" + }, + { + "@id": "https://unitsml.org/unit/NISTu384", + "name": "decade" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:traffic_intensity", + "@type": "Quantity", + "name": "traffic intensity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq201" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:traffic_intensity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd100", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu385", + "name": "erlang" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:symbol_rate", + "@type": "Quantity", + "name": "symbol rate", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq202" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:symbol_rate" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd101", + "expression": "T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu386", + "name": "baud" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:information_content", + "@type": "Quantity", + "name": "information content", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq203" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:information_content" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd102", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu387", + "name": "shannon" + }, + { + "@id": "https://unitsml.org/unit/NISTu388", + "name": "hartley" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:radiant_flux", + "@type": "Quantity", + "name": "radiant flux", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq21" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:radiant_flux" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu127", + "name": "horsepower, electric" + }, + { + "@id": "https://unitsml.org/unit/NISTu14", + "name": "watt" + }, + { + "@id": "https://unitsml.org/unit/NISTu74", + "name": "calorie_th per second" + }, + { + "@id": "https://unitsml.org/unit/NISTu75", + "name": "kilocalorie_th per second" + }, + { + "@id": "https://unitsml.org/unit/NISTu89", + "name": "erg per second" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:electric_charge", + "@type": "Quantity", + "name": "electric charge", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq22" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_charge" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd17", + "expression": "TΒ·I" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu15", + "name": "coulomb" + }, + { + "@id": "https://unitsml.org/unit/NISTu246", + "name": "atomic unit of charge" + }, + { + "@id": "https://unitsml.org/unit/NISTu271", + "name": "statcoulomb" + }, + { + "@id": "https://unitsml.org/unit/NISTu48", + "name": "abcoulomb" + }, + { + "@id": "https://unitsml.org/unit/NISTu54", + "name": "ampere hour" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:amount_of_electricity", + "@type": "Quantity", + "name": "amount of electricity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq23" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:amount_of_electricity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd17", + "expression": "TΒ·I" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu15", + "name": "coulomb" + }, + { + "@id": "https://unitsml.org/unit/NISTu271", + "name": "statcoulomb" + }, + { + "@id": "https://unitsml.org/unit/NISTu48", + "name": "abcoulomb" + }, + { + "@id": "https://unitsml.org/unit/NISTu54", + "name": "ampere hour" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:electric_potential_difference", + "@type": "Quantity", + "name": "electric potential difference", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq24" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_potential_difference" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd18", + "expression": "L2Β·MΒ·T-3Β·I-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu16", + "name": "volt" + }, + { + "@id": "https://unitsml.org/unit/NISTu261", + "name": "atomic unit of electric potential" + }, + { + "@id": "https://unitsml.org/unit/NISTu268", + "name": "statvolt" + }, + { + "@id": "https://unitsml.org/unit/NISTu53", + "name": "abvolt" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:potential_difference", + "@type": "Quantity", + "name": "potential difference", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq25" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:potential_difference" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd18", + "expression": "L2Β·MΒ·T-3Β·I-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu16", + "name": "volt" + }, + { + "@id": "https://unitsml.org/unit/NISTu53", + "name": "abvolt" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:electromotive_force", + "@type": "Quantity", + "name": "electromotive force", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq26" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electromotive_force" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd18", + "expression": "L2Β·MΒ·T-3Β·I-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu16", + "name": "volt" + }, + { + "@id": "https://unitsml.org/unit/NISTu261", + "name": "atomic unit of electric potential" + }, + { + "@id": "https://unitsml.org/unit/NISTu268", + "name": "statvolt" + }, + { + "@id": "https://unitsml.org/unit/NISTu53", + "name": "abvolt" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:capacitance", + "@type": "Quantity", + "name": "capacitance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq27" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:capacitance" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd19", + "expression": "L-2Β·M-1Β·T4Β·I2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu17", + "name": "farad" + }, + { + "@id": "https://unitsml.org/unit/NISTu49", + "name": "abfarad" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:electric_resistance", + "@type": "Quantity", + "name": "electric resistance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq28" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_resistance" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd20", + "expression": "L2Β·MΒ·T-3Β·I-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu18", + "name": "ohm" + }, + { + "@id": "https://unitsml.org/unit/NISTu265", + "name": "statohm" + }, + { + "@id": "https://unitsml.org/unit/NISTu52", + "name": "abohm" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:electric_conductance", + "@type": "Quantity", + "name": "electric conductance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq29" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_conductance" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd21", + "expression": "L-2Β·M-1Β·T3Β·I2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu19", + "name": "siemens" + }, + { + "@id": "https://unitsml.org/unit/NISTu270", + "name": "statmho" + }, + { + "@id": "https://unitsml.org/unit/NISTu51", + "name": "abmho" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:time", + "@type": "Quantity", + "name": "time", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq3" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:time" + } + ], + "quantityType": "base", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd3", + "expression": "T" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu106", + "name": "year (365 days)" + }, + { + "@id": "https://unitsml.org/unit/NISTu245", + "name": "natural unit of time" + }, + { + "@id": "https://unitsml.org/unit/NISTu251", + "name": "atomic unit of time" + }, + { + "@id": "https://unitsml.org/unit/NISTu3", + "name": "second" + }, + { + "@id": "https://unitsml.org/unit/NISTu338", + "name": "year, tropical" + }, + { + "@id": "https://unitsml.org/unit/NISTu339", + "name": "year, sidereal" + }, + { + "@id": "https://unitsml.org/unit/NISTu340", + "name": "day, sidereal" + }, + { + "@id": "https://unitsml.org/unit/NISTu341", + "name": "hour, sidereal" + }, + { + "@id": "https://unitsml.org/unit/NISTu342", + "name": "minute, sidereal" + }, + { + "@id": "https://unitsml.org/unit/NISTu343", + "name": "second, sidereal" + }, + { + "@id": "https://unitsml.org/unit/NISTu345", + "name": "shake" + }, + { + "@id": "https://unitsml.org/unit/NISTu36", + "name": "minute" + }, + { + "@id": "https://unitsml.org/unit/NISTu37", + "name": "hour" + }, + { + "@id": "https://unitsml.org/unit/NISTu38", + "name": "day" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:magnetic_flux", + "@type": "Quantity", + "name": "magnetic flux", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq30" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:magnetic_flux" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd22", + "expression": "L2Β·MΒ·T-2Β·I-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu20", + "name": "weber" + }, + { + "@id": "https://unitsml.org/unit/NISTu272", + "name": "statweber" + }, + { + "@id": "https://unitsml.org/unit/NISTu58", + "name": "maxwell" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:surface_density", + "@type": "Quantity", + "name": "surface density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq31" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:surface_density" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd51", + "expression": "L-2Β·M" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu27p10'3.u1e-2/1", + "name": "kilogram per square meter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:inductance", + "@type": "Quantity", + "name": "inductance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq32" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:inductance" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd23", + "expression": "L2Β·MΒ·T-2Β·I-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu22", + "name": "henry" + }, + { + "@id": "https://unitsml.org/unit/NISTu50", + "name": "abhenry" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:mass_concentration", + "@type": "Quantity", + "name": "mass concentration", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq33" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:mass_concentration" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd30", + "expression": "L-3Β·M" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu27p10'3.u1e-3/1", + "name": "kilogram per cubic meter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:celsius_temperature", + "@type": "Quantity", + "name": "Celsius temperature", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq34" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:celsius_temperature" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd5", + "expression": "Theta" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu23", + "name": "degree Celsius" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:activity_referred_to_a_radionuclide", + "@type": "Quantity", + "name": "activity referred to a radionuclide", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq35" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:activity_referred_to_a_radionuclide" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd24", + "expression": "T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu25", + "name": "becquerel" + }, + { + "@id": "https://unitsml.org/unit/NISTu98", + "name": "curie" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:absorbed_dose", + "@type": "Quantity", + "name": "absorbed dose", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq36" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:absorbed_dose" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd25", + "expression": "L2Β·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu28", + "name": "gray" + }, + { + "@id": "https://unitsml.org/unit/NISTu99", + "name": "rad (absorbed dose)" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:specific_energy_imparted", + "@type": "Quantity", + "name": "specific energy imparted", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq37" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:specific_energy_imparted" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd25", + "expression": "L2Β·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu28", + "name": "gray" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:kerma", + "@type": "Quantity", + "name": "kerma", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq38" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:kerma" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd25", + "expression": "L2Β·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu28", + "name": "gray" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:dose_equivalent", + "@type": "Quantity", + "name": "dose equivalent", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq39" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:dose_equivalent" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd25", + "expression": "L2Β·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu100", + "name": "rem" + }, + { + "@id": "https://unitsml.org/unit/NISTu29", + "name": "sievert" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:electric_current", + "@type": "Quantity", + "name": "electric current", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq4" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_current" + } + ], + "quantityType": "base", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd4", + "expression": "I" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu257", + "name": "atomic unit of current" + }, + { + "@id": "https://unitsml.org/unit/NISTu4", + "name": "ampere" + }, + { + "@id": "https://unitsml.org/unit/NISTu47", + "name": "abampere" + }, + { + "@id": "https://unitsml.org/unit/NISTu55", + "name": "biot" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:ambient_dose_equivalent", + "@type": "Quantity", + "name": "ambient dose equivalent", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq40" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:ambient_dose_equivalent" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd25", + "expression": "L2Β·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:directional_dose_equivalent", + "@type": "Quantity", + "name": "directional dose equivalent", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq41" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:directional_dose_equivalent" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd25", + "expression": "L2Β·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:personal_dose_equivalent", + "@type": "Quantity", + "name": "personal dose equivalent", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq42" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:personal_dose_equivalent" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd25", + "expression": "L2Β·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:organ_dose_equivalent", + "@type": "Quantity", + "name": "organ dose equivalent", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq43" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:organ_dose_equivalent" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd25", + "expression": "L2Β·T-2" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:catalytic_activity", + "@type": "Quantity", + "name": "catalytic activity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq44" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:catalytic_activity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd26", + "expression": "T-1Β·N" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu30", + "name": "katal" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:frequency", + "@type": "Quantity", + "name": "frequency", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq45" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:frequency" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd24", + "expression": "T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu31", + "name": "hertz" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:luminous_flux", + "@type": "Quantity", + "name": "luminous flux", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq46" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:luminous_flux" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd7", + "expression": "J" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu32", + "name": "lumen" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:illuminance", + "@type": "Quantity", + "name": "illuminance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq47" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:illuminance" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd27", + "expression": "L-2Β·J" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu276", + "name": "footcandle" + }, + { + "@id": "https://unitsml.org/unit/NISTu33", + "name": "lux" + }, + { + "@id": "https://unitsml.org/unit/NISTu85", + "name": "phot" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:distance", + "@type": "Quantity", + "name": "distance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq48" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:distance" + } + ], + "quantityType": "base", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre" + }, + { + "@id": "https://unitsml.org/unit/NISTu122", + "name": "micron" + }, + { + "@id": "https://unitsml.org/unit/NISTu123", + "name": "mil (length)" + }, + { + "@id": "https://unitsml.org/unit/NISTu131", + "name": "nautical mile" + }, + { + "@id": "https://unitsml.org/unit/NISTu26", + "name": "fermi" + }, + { + "@id": "https://unitsml.org/unit/NISTu278", + "name": "pica (computer)" + }, + { + "@id": "https://unitsml.org/unit/NISTu280", + "name": "point (computer)" + }, + { + "@id": "https://unitsml.org/unit/NISTu39", + "name": "Γ₯ngstrΓΆm" + }, + { + "@id": "https://unitsml.org/unit/NISTu78", + "name": "foot" + }, + { + "@id": "https://unitsml.org/unit/NISTu8", + "name": "inch" + }, + { + "@id": "https://unitsml.org/unit/NISTu83", + "name": "mile" + }, + { + "@id": "https://unitsml.org/unit/NISTu84", + "name": "yard" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:acceleration", + "@type": "Quantity", + "name": "acceleration", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq49" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:acceleration" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd28", + "expression": "LΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1.u3e-2/1", + "name": "meter per second squared" + }, + { + "@id": "https://unitsml.org/unit/NISTu143", + "name": "gal" + }, + { + "@id": "https://unitsml.org/unit/NISTu167", + "name": "foot per second squared" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:temperature", + "@type": "Quantity", + "name": "thermodynamic temperature", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq5" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:temperature" + } + ], + "quantityType": "base", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd5", + "expression": "Theta" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu288", + "name": "degree Rankine" + }, + { + "@id": "https://unitsml.org/unit/NISTu5", + "name": "kelvin" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:wavenumber", + "@type": "Quantity", + "name": "wavenumber", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq50" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:wavenumber" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd29", + "expression": "L-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu120", + "name": "kayser" + }, + { + "@id": "https://unitsml.org/unit/NISTu1e-1/1", + "name": "meter to the power minus one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:density", + "@type": "Quantity", + "name": "density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq51" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:density" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd30", + "expression": "L-3Β·M" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu188", + "name": "kilogram per liter" + }, + { + "@id": "https://unitsml.org/unit/NISTu189", + "name": "metric ton per cubic meter" + }, + { + "@id": "https://unitsml.org/unit/NISTu204", + "name": "pound per cubic foot" + }, + { + "@id": "https://unitsml.org/unit/NISTu27p10'3.u1e-3/1", + "name": "kilogram per cubic meter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:specific_volume", + "@type": "Quantity", + "name": "specific volume", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq52" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:specific_volume" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd31", + "expression": "L3Β·M-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1e3/1.u27p10'3", + "name": "cubic meter per kilogram" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:current_density", + "@type": "Quantity", + "name": "current density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq53" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:current_density" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd32", + "expression": "L-2Β·I" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu4.u1e-2/1", + "name": "ampere per square meter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:magnetic_field_strength", + "@type": "Quantity", + "name": "magnetic field strength", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq54" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:magnetic_field_strength" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd33", + "expression": "L-1Β·I" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu4.u1e-1/1", + "name": "ampere per meter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:amount_concentration", + "@type": "Quantity", + "name": "amount of substance concentration", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq55" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:amount_concentration" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd34", + "expression": "L-3Β·N" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu366", + "name": "mole per liter" + }, + { + "@id": "https://unitsml.org/unit/NISTu6.u1e-3/1", + "name": "mole per cubic meter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:luminance", + "@type": "Quantity", + "name": "luminance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq56" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:luminance" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd27", + "expression": "L-2Β·J" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu124", + "name": "stilb" + }, + { + "@id": "https://unitsml.org/unit/NISTu222", + "name": "lambert" + }, + { + "@id": "https://unitsml.org/unit/NISTu277", + "name": "footlambert" + }, + { + "@id": "https://unitsml.org/unit/NISTu7.u1e-2/1", + "name": "candela per square meter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:angular_velocity", + "@type": "Quantity", + "name": "angular velocity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq57" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:angular_velocity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd11", + "expression": "LΒ·T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu9.u3e-1/1", + "name": "radian per second" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:angular_acceleration", + "@type": "Quantity", + "name": "angular acceleration", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq58" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:angular_acceleration" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd35", + "expression": "T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu9.u3e-2/1", + "name": "radian per second squared" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:dynamic_viscosity", + "@type": "Quantity", + "name": "dynamic viscosity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq59" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:dynamic_viscosity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd36", + "expression": "L-1Β·MΒ·T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu12.u3", + "name": "pascal second" + }, + { + "@id": "https://unitsml.org/unit/NISTu128", + "name": "poise" + }, + { + "@id": "https://unitsml.org/unit/NISTu97", + "name": "centipoise" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:substance_amount", + "@type": "Quantity", + "name": "amount of substance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq6" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:substance_amount" + } + ], + "quantityType": "base", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd6", + "expression": "N" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu348", + "name": "pound-mole" + }, + { + "@id": "https://unitsml.org/unit/NISTu6", + "name": "mole" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:moment_of_force", + "@type": "Quantity", + "name": "moment of force", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq60" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:moment_of_force" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu11.u1", + "name": "newton meter" + }, + { + "@id": "https://unitsml.org/unit/NISTu126", + "name": "kilogram-force meter" + }, + { + "@id": "https://unitsml.org/unit/NISTu206", + "name": "foot pound-force" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:surface_tension", + "@type": "Quantity", + "name": "surface tension", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq61" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:surface_tension" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd37", + "expression": "MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu11.u1e-1/1", + "name": "newton per meter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:heat_flux_density", + "@type": "Quantity", + "name": "heat flux density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq62" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:heat_flux_density" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd38", + "expression": "MΒ·T-3" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu14.u1e-2/1", + "name": "watt per square meter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:heat_capacity", + "@type": "Quantity", + "name": "heat capacity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq63" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:heat_capacity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd39", + "expression": "L2Β·MΒ·T-2Β·Theta-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu13.u5e-1/1", + "name": "joule per kelvin" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:specific_heat_capacity", + "@type": "Quantity", + "name": "specific heat capacity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq64" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:specific_heat_capacity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd40", + "expression": "L2Β·T-2Β·Theta-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu13.u27p10'3e-1/1.u5e-1/1", + "name": "joule per kilogram kelvin" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:specific_energy", + "@type": "Quantity", + "name": "specific energy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq65" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:specific_energy" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd25", + "expression": "L2Β·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu13.u27p10'3e-1/1", + "name": "joule per kilogram" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:thermal_conductivity", + "@type": "Quantity", + "name": "thermal conductivity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq66" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:thermal_conductivity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd41", + "expression": "LΒ·MΒ·T-3Β·Theta-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu14.u1e-1/1.u5e-1/1", + "name": "watt per meter kelvin" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:energy_density", + "@type": "Quantity", + "name": "energy density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq67" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:energy_density" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd14", + "expression": "L-1Β·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu13.u1e-3/1", + "name": "joule per cubic meter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:electric_field_strength", + "@type": "Quantity", + "name": "electric field strength", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq68" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_field_strength" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd42", + "expression": "LΒ·MΒ·T-3Β·I-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu16.u1e-1/1", + "name": "volt per meter" + }, + { + "@id": "https://unitsml.org/unit/NISTu259", + "name": "atomic unit of electric field" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:electric_charge_density", + "@type": "Quantity", + "name": "electric charge density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq69" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_charge_density" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd43", + "expression": "L-3Β·TΒ·I" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu15.u1e-3/1", + "name": "coulomb per cubic meter" + }, + { + "@id": "https://unitsml.org/unit/NISTu256", + "name": "atomic unit of charge density" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:luminous_intensity", + "@type": "Quantity", + "name": "luminous intensity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq7" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:luminous_intensity" + } + ], + "quantityType": "base", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd7", + "expression": "J" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu7", + "name": "candela" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:electric_flux_density", + "@type": "Quantity", + "name": "electric flux density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq70" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_flux_density" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd44", + "expression": "L-2Β·TΒ·I" + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:permittivity", + "@type": "Quantity", + "name": "permittivity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq71" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:permittivity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd45", + "expression": "L-3Β·M-1Β·T4Β·I2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu17.u1e-1/1", + "name": "farad per meter" + }, + { + "@id": "https://unitsml.org/unit/NISTu293", + "name": "atomic unit of permittivity" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:permeability", + "@type": "Quantity", + "name": "permeability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq72" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:permeability" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd46", + "expression": "LΒ·MΒ·T-2Β·I-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu157", + "name": "darcy" + }, + { + "@id": "https://unitsml.org/unit/NISTu22.u1e-1/1", + "name": "henry per meter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:molar_energy", + "@type": "Quantity", + "name": "molar energy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq73" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:molar_energy" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd47", + "expression": "L2Β·MΒ·T-2Β·N-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu13.u6e-1/1", + "name": "joule per mole" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:molar_entropy", + "@type": "Quantity", + "name": "molar entropy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq74" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:molar_entropy" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd48", + "expression": "L2Β·MΒ·T-2Β·Theta-1Β·N-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu13.u6e-1/1.u5e-1/1", + "name": "joule per mole kelvin" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:exposure_x_and_gamma_rays", + "@type": "Quantity", + "name": "exposure (x and gamma rays)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq75" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:exposure_x_and_gamma_rays" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd49", + "expression": "M-1Β·TΒ·I" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu118", + "name": "roentgen" + }, + { + "@id": "https://unitsml.org/unit/NISTu15.u27p10'3e-1/1", + "name": "coulomb per kilogram" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:absorbed_dose_rate", + "@type": "Quantity", + "name": "absorbed dose rate", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq76" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:absorbed_dose_rate" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd50", + "expression": "L2Β·T-3" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu28.u3e-1/1", + "name": "gray per second" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:potential_energy", + "@type": "Quantity", + "name": "potential energy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq77" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:potential_energy" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd15", + "expression": "L2Β·MΒ·T-2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu117", + "name": "therm (EC)" + }, + { + "@id": "https://unitsml.org/unit/NISTu13", + "name": "joule" + }, + { + "@id": "https://unitsml.org/unit/NISTu14.u3", + "name": "watt second" + }, + { + "@id": "https://unitsml.org/unit/NISTu206", + "name": "foot pound-force" + }, + { + "@id": "https://unitsml.org/unit/NISTu227", + "name": "thermochemical calorie" + }, + { + "@id": "https://unitsml.org/unit/NISTu331", + "name": "therm (US)" + }, + { + "@id": "https://unitsml.org/unit/NISTu60", + "name": "I.T. calorie" + }, + { + "@id": "https://unitsml.org/unit/NISTu62", + "name": "erg" + }, + { + "@id": "https://unitsml.org/unit/NISTu63", + "name": "kilocalorie_IT" + }, + { + "@id": "https://unitsml.org/unit/NISTu64", + "name": "kilocalorie_th" + }, + { + "@id": "https://unitsml.org/unit/NISTu65", + "name": "kilowatt hour" + }, + { + "@id": "https://unitsml.org/unit/NISTu69", + "name": "watt hour" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:irradiance", + "@type": "Quantity", + "name": "irradiance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq78" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:irradiance" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd38", + "expression": "MΒ·T-3" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu14.u1e-2/1", + "name": "watt per square meter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:entropy", + "@type": "Quantity", + "name": "entropy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq79" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:entropy" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd39", + "expression": "L2Β·MΒ·T-2Β·Theta-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu13.u5e-1/1", + "name": "joule per kelvin" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:area", + "@type": "Quantity", + "name": "area", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq8" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:area" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd8", + "expression": "L2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu164", + "name": "square yard" + }, + { + "@id": "https://unitsml.org/unit/NISTu165", + "name": "square mile" + }, + { + "@id": "https://unitsml.org/unit/NISTu1e2/1", + "name": "square meter" + }, + { + "@id": "https://unitsml.org/unit/NISTu283", + "name": "circular mil" + }, + { + "@id": "https://unitsml.org/unit/NISTu317", + "name": "acre (based on US survey foot)" + }, + { + "@id": "https://unitsml.org/unit/NISTu42", + "name": "are" + }, + { + "@id": "https://unitsml.org/unit/NISTu43", + "name": "barn" + }, + { + "@id": "https://unitsml.org/unit/NISTu44", + "name": "hectare" + }, + { + "@id": "https://unitsml.org/unit/NISTu45", + "name": "square foot" + }, + { + "@id": "https://unitsml.org/unit/NISTu46", + "name": "square inch" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:specific_entropy", + "@type": "Quantity", + "name": "specific entropy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq80" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:specific_entropy" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd40", + "expression": "L2Β·T-2Β·Theta-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu13.u27p10'3e-1/1.u5e-1/1", + "name": "joule per kilogram kelvin" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:surface_charge_density", + "@type": "Quantity", + "name": "surface charge density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq81" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:surface_charge_density" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd53", + "expression": "M-2Β·TΒ·I" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu15.u1e-2/1", + "name": "coulomb per square meter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:electric_displacement", + "@type": "Quantity", + "name": "electric displacement", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq82" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:electric_displacement" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd44", + "expression": "L-2Β·TΒ·I" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu15.u1e-2/1", + "name": "coulomb per square meter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:molar_heat_capacity", + "@type": "Quantity", + "name": "molar heat capacity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq83" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:molar_heat_capacity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd48", + "expression": "L2Β·MΒ·T-2Β·Theta-1Β·N-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu13.u6e-1/1.u5e-1/1", + "name": "joule per mole kelvin" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:catalytic_activity_concentration", + "@type": "Quantity", + "name": "catalytic activity concentration", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq84" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:catalytic_activity_concentration" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd55", + "expression": "M-3Β·T-1Β·N" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu30.u1e-3/1", + "name": "katal per cubic meter" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:kinematic_viscosity", + "@type": "Quantity", + "name": "kinematic viscosity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq85" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:kinematic_viscosity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd56", + "expression": "L2Β·T-1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu121", + "name": "centistokes" + }, + { + "@id": "https://unitsml.org/unit/NISTu142", + "name": "stokes" + }, + { + "@id": "https://unitsml.org/unit/NISTu1e2/1.u3e-1/1", + "name": "meter squared per second" + }, + { + "@id": "https://unitsml.org/unit/NISTu210", + "name": "foot squared per second" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:magnetic_field", + "@type": "Quantity", + "name": "magnetic field", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq87" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:magnetic_field" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd33", + "expression": "L-1Β·I" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu144", + "name": "oersted" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:radiant_intensity", + "@type": "Quantity", + "name": "radiant intensity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq88" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:radiant_intensity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd16", + "expression": "L2Β·MΒ·T-3" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu14.u10e-1/1", + "name": "watt per steradian" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:radiance", + "@type": "Quantity", + "name": "radiance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq89" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:radiance" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd38", + "expression": "MΒ·T-3" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu14.u1e-2/1.u10e-1/1", + "name": "watt per square meter steradian" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:plane_angle", + "@type": "Quantity", + "name": "plane angle", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq9" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:plane_angle" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd9", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu147", + "name": "arcminute" + }, + { + "@id": "https://unitsml.org/unit/NISTu148", + "name": "arcsecond" + }, + { + "@id": "https://unitsml.org/unit/NISTu149", + "name": "degree (degree of arc)" + }, + { + "@id": "https://unitsml.org/unit/NISTu159", + "name": "gon" + }, + { + "@id": "https://unitsml.org/unit/NISTu347", + "name": "angular mil (NATO)" + }, + { + "@id": "https://unitsml.org/unit/NISTu9", + "name": "radian" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:logarithmic_ratio_quantities", + "@type": "Quantity", + "name": "ratio logarithm (B)", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq90" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:logarithmic_ratio_quantities" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd67", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu153", + "name": "neper" + }, + { + "@id": "https://unitsml.org/unit/NISTu154", + "name": "bel" + }, + { + "@id": "https://unitsml.org/unit/NISTu155", + "name": "decibel" + }, + { + "@id": "https://unitsml.org/unit/NISTu381", + "name": "dBm" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:fluidity", + "@type": "Quantity", + "name": "fluidity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq91" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:fluidity" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd52", + "expression": "LΒ·M-1Β·T" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu129", + "name": "rhe" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:hydrodynamic_permeability", + "@type": "Quantity", + "name": "hydrodynamic permeability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq92" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:hydrodynamic_permeability" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd8", + "expression": "L2" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu157", + "name": "darcy" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:refractive_index", + "@type": "Quantity", + "name": "refractive index", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq93" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:refractive_index" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd80", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu61", + "name": "one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:relative_permeability", + "@type": "Quantity", + "name": "relative permeability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq94" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:relative_permeability" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd80", + "expression": "1" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu61", + "name": "one" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:breadth", + "@type": "Quantity", + "name": "breadth", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq95" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:breadth" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:height", + "@type": "Quantity", + "name": "height", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq96" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:height" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:thickness", + "@type": "Quantity", + "name": "thickness", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq97" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:thickness" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:radius", + "@type": "Quantity", + "name": "radius", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq98" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:radius" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/quantity/q:radial_distance", + "@type": "Quantity", + "name": "radial distance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTq99" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "q:radial_distance" + } + ], + "quantityType": "derived", + "dimensionReference": { + "@id": "https://unitsml.org/dimension/NISTd1", + "expression": "L" + }, + "measuredBy": [ + { + "@id": "https://unitsml.org/unit/NISTu1", + "name": "metre" + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:length", + "@type": "Dimension", + "name": "length", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:length" + } + ], + "expression": "L", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:volume", + "@type": "Dimension", + "name": "volume", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd10" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:volume" + } + ], + "expression": "L3", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 3 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:traffic_intensity", + "@type": "Dimension", + "name": "traffic intensity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd100" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:traffic_intensity" + } + ], + "expression": "1", + "dimensionless": true + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:symbol_rate", + "@type": "Dimension", + "name": "symbol rate", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd101" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:symbol_rate" + } + ], + "expression": "T-1", + "dimensionalComposition": [ + { + "key": "time", + "symbol": "T", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:information_content", + "@type": "Dimension", + "name": "information content", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd102" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:information_content" + } + ], + "expression": "1", + "dimensionless": true + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:velocity", + "@type": "Dimension", + "name": "velocity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd11" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:velocity" + } + ], + "expression": "LΒ·T-1", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:force", + "@type": "Dimension", + "name": "force", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd12" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:force" + } + ], + "expression": "LΒ·MΒ·T-2", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:magnetic_flux_density", + "@type": "Dimension", + "name": "magnetic flux density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd13" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:magnetic_flux_density" + } + ], + "expression": "MΒ·T-2Β·I-1", + "dimensionalComposition": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:pressure", + "@type": "Dimension", + "name": "pressure", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd14" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:pressure" + } + ], + "expression": "L-1Β·MΒ·T-2", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:energy", + "@type": "Dimension", + "name": "energy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd15" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:energy" + } + ], + "expression": "L2Β·MΒ·T-2", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:power", + "@type": "Dimension", + "name": "power", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd16" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:power" + } + ], + "expression": "L2Β·MΒ·T-3", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:electric_charge", + "@type": "Dimension", + "name": "electric charge", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd17" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:electric_charge" + } + ], + "expression": "TΒ·I", + "dimensionalComposition": [ + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:electric_potential_difference", + "@type": "Dimension", + "name": "electric potential difference", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd18" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:electric_potential_difference" + } + ], + "expression": "L2Β·MΒ·T-3Β·I-1", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:capacitance", + "@type": "Dimension", + "name": "capacitance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd19" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:capacitance" + } + ], + "expression": "L-2Β·M-1Β·T4Β·I2", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 4 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:mass", + "@type": "Dimension", + "name": "mass", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd2" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:mass" + } + ], + "expression": "M", + "dimensionalComposition": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:electric_resistance", + "@type": "Dimension", + "name": "electric resistance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd20" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:electric_resistance" + } + ], + "expression": "L2Β·MΒ·T-3Β·I-2", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:electric_conductance", + "@type": "Dimension", + "name": "electric conductance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd21" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:electric_conductance" + } + ], + "expression": "L-2Β·M-1Β·T3Β·I2", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:magnetic_flux", + "@type": "Dimension", + "name": "magnetic flux", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd22" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:magnetic_flux" + } + ], + "expression": "L2Β·MΒ·T-2Β·I-1", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:inductance", + "@type": "Dimension", + "name": "inductance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd23" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:inductance" + } + ], + "expression": "L2Β·MΒ·T-2Β·I-2", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:frequency", + "@type": "Dimension", + "name": "frequency", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd24" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:frequency" + } + ], + "expression": "T-1", + "dimensionalComposition": [ + { + "key": "time", + "symbol": "T", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:absorbed_dose", + "@type": "Dimension", + "name": "absorbed dose", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd25" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:absorbed_dose" + } + ], + "expression": "L2Β·T-2", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:catalytic_activity", + "@type": "Dimension", + "name": "catalytic activity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd26" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:catalytic_activity" + } + ], + "expression": "T-1Β·N", + "dimensionalComposition": [ + { + "key": "time", + "symbol": "T", + "power": -1 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:illuminance", + "@type": "Dimension", + "name": "illuminance", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd27" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:illuminance" + } + ], + "expression": "L-2Β·J", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "luminous_intensity", + "symbol": "J", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:acceleration", + "@type": "Dimension", + "name": "acceleration", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd28" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:acceleration" + } + ], + "expression": "LΒ·T-2", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:wavenumber", + "@type": "Dimension", + "name": "wavenumber", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd29" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:wavenumber" + } + ], + "expression": "L-1", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:time", + "@type": "Dimension", + "name": "time", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd3" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:time" + } + ], + "expression": "T", + "dimensionalComposition": [ + { + "key": "time", + "symbol": "T", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:mass_density", + "@type": "Dimension", + "name": "mass density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd30" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:mass_density" + } + ], + "expression": "L-3Β·M", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:specific_volume", + "@type": "Dimension", + "name": "specific volume", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd31" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:specific_volume" + } + ], + "expression": "L3Β·M-1", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 3 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:current_density", + "@type": "Dimension", + "name": "current density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd32" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:current_density" + } + ], + "expression": "L-2Β·I", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:magnetic_field_strength", + "@type": "Dimension", + "name": "magnetic field strength", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd33" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:magnetic_field_strength" + } + ], + "expression": "L-1Β·I", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:concentration", + "@type": "Dimension", + "name": "concentration", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd34" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:concentration" + } + ], + "expression": "L-3Β·N", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:angular_acceleration", + "@type": "Dimension", + "name": "angular acceleration", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd35" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:angular_acceleration" + } + ], + "expression": "T-2", + "dimensionalComposition": [ + { + "key": "time", + "symbol": "T", + "power": -2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:dynamic_viscosity", + "@type": "Dimension", + "name": "dynamic viscosity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd36" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:dynamic_viscosity" + } + ], + "expression": "L-1Β·MΒ·T-1", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:surface_tension", + "@type": "Dimension", + "name": "surface tension", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd37" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:surface_tension" + } + ], + "expression": "MΒ·T-2", + "dimensionalComposition": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:heat_flux_density", + "@type": "Dimension", + "name": "heat flux density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd38" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:heat_flux_density" + } + ], + "expression": "MΒ·T-3", + "dimensionalComposition": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:heat_capacity", + "@type": "Dimension", + "name": "heat capacity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd39" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:heat_capacity" + } + ], + "expression": "L2Β·MΒ·T-2Β·Theta-1", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:electric_current", + "@type": "Dimension", + "name": "electric current", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd4" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:electric_current" + } + ], + "expression": "I", + "dimensionalComposition": [ + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:specific_heat_capacity", + "@type": "Dimension", + "name": "specific heat capacity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd40" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:specific_heat_capacity" + } + ], + "expression": "L2Β·T-2Β·Theta-1", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:thermal_conductivity", + "@type": "Dimension", + "name": "thermal conductivity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd41" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:thermal_conductivity" + } + ], + "expression": "LΒ·MΒ·T-3Β·Theta-1", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:electric_field_strength", + "@type": "Dimension", + "name": "electric field strength", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd42" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:electric_field_strength" + } + ], + "expression": "LΒ·MΒ·T-3Β·I-1", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:electric_charge_density", + "@type": "Dimension", + "name": "electric charge density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd43" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:electric_charge_density" + } + ], + "expression": "L-3Β·TΒ·I", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:electric_flux_density", + "@type": "Dimension", + "name": "electric flux density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd44" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:electric_flux_density" + } + ], + "expression": "L-2Β·TΒ·I", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:permittivity", + "@type": "Dimension", + "name": "permittivity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd45" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:permittivity" + } + ], + "expression": "L-3Β·M-1Β·T4Β·I2", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -3 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 4 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:permeability", + "@type": "Dimension", + "name": "permeability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd46" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:permeability" + } + ], + "expression": "LΒ·MΒ·T-2Β·I-2", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:molar_energy", + "@type": "Dimension", + "name": "molar energy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd47" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:molar_energy" + } + ], + "expression": "L2Β·MΒ·T-2Β·N-1", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:molar_entropy", + "@type": "Dimension", + "name": "molar entropy", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd48" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:molar_entropy" + } + ], + "expression": "L2Β·MΒ·T-2Β·Theta-1Β·N-1", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:exposure", + "@type": "Dimension", + "name": "exposure", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd49" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:exposure" + } + ], + "expression": "M-1Β·TΒ·I", + "dimensionalComposition": [ + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:temperature", + "@type": "Dimension", + "name": "temperature", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd5" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:temperature" + } + ], + "expression": "Theta", + "dimensionalComposition": [ + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:absorbed_dose_rate", + "@type": "Dimension", + "name": "absorbed dose rate", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd50" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:absorbed_dose_rate" + } + ], + "expression": "L2Β·T-3", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:surface_density", + "@type": "Dimension", + "name": "surface density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd51" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:surface_density" + } + ], + "expression": "L-2Β·M", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:fluidity", + "@type": "Dimension", + "name": "fluidity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd52" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:fluidity" + } + ], + "expression": "LΒ·M-1Β·T", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:surface_charge_density", + "@type": "Dimension", + "name": "surface charge density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd53" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:surface_charge_density" + } + ], + "expression": "M-2Β·TΒ·I", + "dimensionalComposition": [ + { + "key": "mass", + "symbol": "M", + "power": -2 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:magnetizability", + "@type": "Dimension", + "name": "magnetizability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd54" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:magnetizability" + } + ], + "expression": "L2Β·MΒ·T2Β·I2", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": 2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:catalytic_activity_concentration", + "@type": "Dimension", + "name": "catalytic activity concentration", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd55" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:catalytic_activity_concentration" + } + ], + "expression": "M-3Β·T-1Β·N", + "dimensionalComposition": [ + { + "key": "mass", + "symbol": "M", + "power": -3 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:kinematic_viscosity", + "@type": "Dimension", + "name": "kinematic viscosity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd56" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:kinematic_viscosity" + } + ], + "expression": "L2Β·T-1", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:area_moment_of_inertia", + "@type": "Dimension", + "name": "area moment of inertia", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd57" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:area_moment_of_inertia" + } + ], + "expression": "L4", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 4 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:linear_density", + "@type": "Dimension", + "name": "linear density", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd58" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:linear_density" + } + ], + "expression": "L-1Β·M", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:mass_moment_of_inertia", + "@type": "Dimension", + "name": "mass moment of inertia", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd59" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:mass_moment_of_inertia" + } + ], + "expression": "L2Β·M", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:substance_amount", + "@type": "Dimension", + "name": "substance amount", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd6" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:substance_amount" + } + ], + "expression": "N", + "dimensionalComposition": [ + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:action", + "@type": "Dimension", + "name": "action", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd60" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:action" + } + ], + "expression": "L2Β·MΒ·T-1", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:momentum", + "@type": "Dimension", + "name": "momentum", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd61" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:momentum" + } + ], + "expression": "LΒ·MΒ·T-1", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:gravitational_constant", + "@type": "Dimension", + "name": "gravitational constant", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd62" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:gravitational_constant" + } + ], + "expression": "L3Β·M-1Β·T-2", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 3 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:compressibility", + "@type": "Dimension", + "name": "compressibility", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd63" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:compressibility" + } + ], + "expression": "LΒ·M-1Β·T2", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:solid_angle", + "@type": "Dimension", + "name": "solid angle", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd64" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:solid_angle" + } + ], + "expression": "1", + "dimensionalComposition": [ + { + "key": "plane_angle", + "symbol": "phi", + "power": 1 + } + ], + "dimensionless": true + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:mass_flow_rate", + "@type": "Dimension", + "name": "mass flow rate", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd65" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:mass_flow_rate" + } + ], + "expression": "MΒ·T-1", + "dimensionalComposition": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:volume_flow_rate", + "@type": "Dimension", + "name": "volume flow rate", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd66" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:volume_flow_rate" + } + ], + "expression": "L3Β·T-1", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 3 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:logarithmic_ratio", + "@type": "Dimension", + "name": "logarithmic ratio", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd67" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:logarithmic_ratio" + } + ], + "expression": "1", + "dimensionless": true + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:linear_expansion_coefficient", + "@type": "Dimension", + "name": "linear expansion coefficient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd68" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:linear_expansion_coefficient" + } + ], + "expression": "Theta-1", + "dimensionalComposition": [ + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:pressure_coefficient", + "@type": "Dimension", + "name": "pressure coefficient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd69" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:pressure_coefficient" + } + ], + "expression": "L-1Β·MΒ·T-2Β·Theta-1", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -2 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:luminous_intensity", + "@type": "Dimension", + "name": "luminous intensity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd7" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:luminous_intensity" + } + ], + "expression": "J", + "dimensionalComposition": [ + { + "key": "luminous_intensity", + "symbol": "J", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:isothermal_compressibility", + "@type": "Dimension", + "name": "isothermal compressibility", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd70" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:isothermal_compressibility" + } + ], + "expression": "LΒ·M-1Β·T2", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "mass", + "symbol": "M", + "power": -1 + }, + { + "key": "time", + "symbol": "T", + "power": 2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:heat_transfer_coefficient", + "@type": "Dimension", + "name": "heat transfer coefficient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd71" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:heat_transfer_coefficient" + } + ], + "expression": "MΒ·T-3Β·Theta-1", + "dimensionalComposition": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "thermodynamic_temperature", + "symbol": "Theta", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:electric_dipole_moment", + "@type": "Dimension", + "name": "electric dipole moment", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd72" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:electric_dipole_moment" + } + ], + "expression": "LΒ·TΒ·I", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:magnetic_dipole_moment", + "@type": "Dimension", + "name": "magnetic dipole moment", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd73" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:magnetic_dipole_moment" + } + ], + "expression": "L2Β·I", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:electric_field_gradient", + "@type": "Dimension", + "name": "electric field gradient", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd74" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:electric_field_gradient" + } + ], + "expression": "MΒ·T-3Β·I-1", + "dimensionalComposition": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": -3 + }, + { + "key": "electric_current", + "symbol": "I", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:electric_quadrupole_moment", + "@type": "Dimension", + "name": "electric quadrupole moment", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd75" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:electric_quadrupole_moment" + } + ], + "expression": "L2Β·TΒ·I", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 2 + }, + { + "key": "time", + "symbol": "T", + "power": 1 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:polarizability", + "@type": "Dimension", + "name": "polarizability", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd76" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:polarizability" + } + ], + "expression": "MΒ·T4Β·I2", + "dimensionalComposition": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "time", + "symbol": "T", + "power": 4 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:hyperpolarizability_1st", + "@type": "Dimension", + "name": "hyperpolarizability 1st", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd77" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:hyperpolarizability_1st" + } + ], + "expression": "L-1Β·M-2Β·T7Β·I3", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -1 + }, + { + "key": "mass", + "symbol": "M", + "power": -2 + }, + { + "key": "time", + "symbol": "T", + "power": 7 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 3 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:hyperpolarizability_2nd", + "@type": "Dimension", + "name": "hyperpolarizability 2nd", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd78" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:hyperpolarizability_2nd" + } + ], + "expression": "L-2Β·M-3Β·T10Β·I4", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "mass", + "symbol": "M", + "power": -3 + }, + { + "key": "time", + "symbol": "T", + "power": 10 + }, + { + "key": "electric_current", + "symbol": "I", + "power": 4 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:molality", + "@type": "Dimension", + "name": "molality", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd79" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:molality" + } + ], + "expression": "MΒ·N", + "dimensionalComposition": [ + { + "key": "mass", + "symbol": "M", + "power": 1 + }, + { + "key": "amount_of_substance", + "symbol": "N", + "power": 1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:area", + "@type": "Dimension", + "name": "area", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd8" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:area" + } + ], + "expression": "L2", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": 2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:ratio_quantity", + "@type": "Dimension", + "name": "ratio quantity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd80" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:ratio_quantity" + } + ], + "expression": "1", + "dimensionless": true + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:level_of_field_quantity", + "@type": "Dimension", + "name": "level of field quantity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd83" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:level_of_field_quantity" + } + ], + "expression": "1", + "dimensionless": true + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:field_power_level", + "@type": "Dimension", + "name": "field power level", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd84" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:field_power_level" + } + ], + "expression": "1", + "dimensionless": true + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:mass_mole_fraction", + "@type": "Dimension", + "name": "mass mole fraction", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd85" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:mass_mole_fraction" + } + ], + "expression": "1", + "dimensionless": true + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:plane_angle", + "@type": "Dimension", + "name": "plane angle", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd9" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:plane_angle" + } + ], + "expression": "1", + "dimensionalComposition": [ + { + "key": "plane_angle", + "symbol": "phi", + "power": 1 + } + ], + "dimensionless": true + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:acidity_index", + "@type": "Dimension", + "name": "acidity index", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd94" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:acidity_index" + } + ], + "expression": "1", + "dimensionless": true + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:storage_capacity", + "@type": "Dimension", + "name": "storage capacity", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd95" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:storage_capacity" + } + ], + "expression": "1", + "dimensionless": true + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:fluence", + "@type": "Dimension", + "name": "fluence", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd96" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:fluence" + } + ], + "expression": "L-2", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:fluence_rate", + "@type": "Dimension", + "name": "fluence_rate", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd97" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:fluence_rate" + } + ], + "expression": "L-2Β·T-1", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -2 + }, + { + "key": "time", + "symbol": "T", + "power": -1 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:phase", + "@type": "Dimension", + "name": "phase", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd98" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:phase" + } + ], + "expression": "1", + "dimensionalComposition": [ + { + "key": "plane_angle", + "symbol": "phi", + "power": 1 + } + ], + "dimensionless": true + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/dimension/d:fuel_efficiency", + "@type": "Dimension", + "name": "fuel efficiency", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTd99" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "d:fuel_efficiency" + } + ], + "expression": "L-2", + "dimensionalComposition": [ + { + "key": "length", + "symbol": "L", + "power": -2 + } + ] + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:deci", + "@type": "Prefix", + "name": "deci", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_-1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:deci" + } + ], + "symbol": "d", + "base": 10, + "power": -1, + "value": 0.1 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:pico", + "@type": "Prefix", + "name": "pico", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_-12" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:pico" + } + ], + "symbol": "p", + "base": 10, + "power": -12, + "value": 1e-12 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:femto", + "@type": "Prefix", + "name": "femto", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_-15" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:femto" + } + ], + "symbol": "f", + "base": 10, + "power": -15, + "value": 1e-15 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:atto", + "@type": "Prefix", + "name": "atto", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_-18" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:atto" + } + ], + "symbol": "a", + "base": 10, + "power": -18, + "value": 1e-18 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:centi", + "@type": "Prefix", + "name": "centi", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_-2" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:centi" + } + ], + "symbol": "c", + "base": 10, + "power": -2, + "value": 0.01 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:zepto", + "@type": "Prefix", + "name": "zepto", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_-21" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:zepto" + } + ], + "symbol": "z", + "base": 10, + "power": -21, + "value": 1e-21 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:yocto", + "@type": "Prefix", + "name": "yocto", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_-24" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:yocto" + } + ], + "symbol": "y", + "base": 10, + "power": -24, + "value": 1e-24 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:ronto", + "@type": "Prefix", + "name": "ronto", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_-27" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:ronto" + } + ], + "symbol": "r", + "base": 10, + "power": -27, + "value": 1e-27 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:milli", + "@type": "Prefix", + "name": "milli", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_-3" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:milli" + } + ], + "symbol": "m", + "base": 10, + "power": -3, + "value": 0.001 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:quecto", + "@type": "Prefix", + "name": "quecto", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_-30" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:quecto" + } + ], + "symbol": "q", + "base": 10, + "power": -30, + "value": 1e-30 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:micro", + "@type": "Prefix", + "name": "micro", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_-6" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:micro" + } + ], + "symbol": "ΞΌ", + "base": 10, + "power": -6, + "value": 0.000001 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:nano", + "@type": "Prefix", + "name": "nano", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_-9" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:nano" + } + ], + "symbol": "n", + "base": 10, + "power": -9, + "value": 1e-9 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:none", + "@type": "Prefix", + "name": "none", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_0" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:none" + } + ], + "symbol": "1", + "base": 10, + "power": 0, + "value": 1 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:deka", + "@type": "Prefix", + "name": "deka", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_1" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:deka" + } + ], + "symbol": "da", + "base": 10, + "power": 1, + "value": 10 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:tera", + "@type": "Prefix", + "name": "tera", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_12" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:tera" + } + ], + "symbol": "T", + "base": 10, + "power": 12, + "value": 1000000000000 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:peta", + "@type": "Prefix", + "name": "peta", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_15" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:peta" + } + ], + "symbol": "P", + "base": 10, + "power": 15, + "value": 1000000000000000 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:exa", + "@type": "Prefix", + "name": "exa", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_18" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:exa" + } + ], + "symbol": "E", + "base": 10, + "power": 18, + "value": 1000000000000000000 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:hecto", + "@type": "Prefix", + "name": "hecto", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_2" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:hecto" + } + ], + "symbol": "h", + "base": 10, + "power": 2, + "value": 100 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:zetta", + "@type": "Prefix", + "name": "zetta", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_21" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:zetta" + } + ], + "symbol": "Z", + "base": 10, + "power": 21, + "value": 1e+21 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:yotta", + "@type": "Prefix", + "name": "yotta", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_24" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:yotta" + } + ], + "symbol": "Y", + "base": 10, + "power": 24, + "value": 1e+24 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:ronna", + "@type": "Prefix", + "name": "ronna", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_27" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:ronna" + } + ], + "symbol": "R", + "base": 10, + "power": 27, + "value": 1e+27 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:kilo", + "@type": "Prefix", + "name": "kilo", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_3" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:kilo" + } + ], + "symbol": "k", + "base": 10, + "power": 3, + "value": 1000 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:quetta", + "@type": "Prefix", + "name": "quetta", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_30" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:quetta" + } + ], + "symbol": "Q", + "base": 10, + "power": 30, + "value": 1e+30 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:mega", + "@type": "Prefix", + "name": "mega", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_6" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:mega" + } + ], + "symbol": "M", + "base": 10, + "power": 6, + "value": 1000000 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:giga", + "@type": "Prefix", + "name": "giga", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp10_9" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:giga" + } + ], + "symbol": "G", + "base": 10, + "power": 9, + "value": 1000000000 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:kibi", + "@type": "Prefix", + "name": "kibi", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp2_10" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:kibi" + } + ], + "symbol": "Ki", + "base": 2, + "power": 10, + "value": 1024 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:mebi", + "@type": "Prefix", + "name": "mebi", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp2_20" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:mebi" + } + ], + "symbol": "Mi", + "base": 2, + "power": 20, + "value": 1048576 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:gibi", + "@type": "Prefix", + "name": "gibi", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp2_30" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:gibi" + } + ], + "symbol": "Gi", + "base": 2, + "power": 30, + "value": 1073741824 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:tebi", + "@type": "Prefix", + "name": "tebi", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp2_40" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:tebi" + } + ], + "symbol": "Ti", + "base": 2, + "power": 40, + "value": 1099511627776 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:pebi", + "@type": "Prefix", + "name": "pebi", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp2_50" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:pebi" + } + ], + "symbol": "Pi", + "base": 2, + "power": 50, + "value": 1125899906842624 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:exbi", + "@type": "Prefix", + "name": "exbi", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp2_60" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:exbi" + } + ], + "symbol": "Ei", + "base": 2, + "power": 60, + "value": 1152921504606847000 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:zebi", + "@type": "Prefix", + "name": "zebi", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp2_70" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:zebi" + } + ], + "symbol": "Zi", + "base": 2, + "power": 70, + "value": 1.1805916207174113e+21 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/prefix/p:yobi", + "@type": "Prefix", + "name": "yobi", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "NISTp2_80" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "p:yobi" + } + ], + "symbol": "Yi", + "base": 2, + "power": 80, + "value": 1.2089258196146292e+24 + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/scale/continuous_ratio", + "@type": "Scale", + "name": "continuous ratio scale", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "continuous_ratio" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "s:continuous_ratio" + } + ], + "properties": { + "continuous": true, + "ordered": true, + "logarithmic": false, + "interval": true, + "ratio": true + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/scale/continuous_interval", + "@type": "Scale", + "name": "continuous interval scale", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "continuous_interval" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "s:continuous_interval" + } + ], + "properties": { + "continuous": true, + "ordered": true, + "logarithmic": false, + "interval": true, + "ratio": false + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/scale/logarithmic_ratio", + "@type": "Scale", + "name": "logarithmic ratio scale", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "logarithmic_ratio" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "s:logarithmic_ratio" + } + ], + "properties": { + "continuous": true, + "ordered": true, + "logarithmic": true, + "interval": true, + "ratio": true + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/scale/logarithmic_field", + "@type": "Scale", + "name": "logarithmic field scale", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "logarithmic_field" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "s:logarithmic_field" + } + ], + "properties": { + "continuous": true, + "ordered": true, + "logarithmic": true, + "interval": true, + "ratio": false + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/scale/discrete", + "@type": "Scale", + "name": "discrete scale", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "discrete" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "s:discrete" + } + ], + "properties": { + "continuous": false, + "ordered": true, + "logarithmic": false, + "interval": true, + "ratio": true + } + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit-system/us:si-base", + "@type": "UnitSystem", + "name": "SI base units", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "SI_base" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "us:si-base" + } + ], + "short": "si-base" + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit-system/us:si-compatible", + "@type": "UnitSystem", + "name": "Units compatible with SI", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "SI_compatible" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "us:si-compatible" + } + ], + "short": "si-compatible" + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit-system/us:si-derived-nonspecial", + "@type": "UnitSystem", + "name": "SI-derived units non-special", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "SI_derived_non-special" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "us:si-derived-nonspecial" + } + ], + "short": "si-derived-nonspecial" + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit-system/us:si-derived-special", + "@type": "UnitSystem", + "name": "SI-derived units special", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "SI_derived_special" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "us:si-derived-special" + } + ], + "short": "si-derived-special" + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit-system/us:nonsi-acceptable", + "@type": "UnitSystem", + "name": "non-SI but acceptable", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "non-SI_acceptable" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "us:nonsi-acceptable" + } + ], + "short": "nonsi-acceptable" + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit-system/us:nonsi-nist-acceptable", + "@type": "UnitSystem", + "name": "non-SI but acceptable by NIST SP 811", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "non-SI_nist_acceptable" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "us:nonsi-nist-acceptable" + } + ], + "short": "nonsi-nist-acceptable" + }, + { + "@context": "https://unitsml.org/unitsdb/context.jsonld", + "@id": "https://unitsml.org/unit-system/us:nonsi-unacceptable", + "@type": "UnitSystem", + "name": "non-SI and not acceptable", + "identifier": [ + { + "@type": "PropertyValue", + "propertyID": "nist", + "value": "non-SI_not_acceptable" + }, + { + "@type": "PropertyValue", + "propertyID": "unitsml", + "value": "us:nonsi-unacceptable" + } + ], + "short": "nonsi-unacceptable" + } + ] +} \ No newline at end of file diff --git a/schemas.md b/schemas.md new file mode 100644 index 0000000..74c14c3 --- /dev/null +++ b/schemas.md @@ -0,0 +1,131 @@ +--- +title: Schemas +description: Schema definitions for UnitsML and UnitsDB +--- + +# Schemas + +UnitsML provides two complementary sets of schema definitions for encoding and validating scientific units of measure. + +## UnitsML XML Schemas + + + +Authoritative XML schemas (XSD) for encoding scientific units of measure in XML documents. UnitsML XML Schemas validate XML documents that use UnitsML markup, covering SI base units, derived units, and non-SI units. + +The schema is designed to be used **in combination with other specific schemas** through XML namespaces β€” not as a standalone schema. Developers of other markup languages incorporate UnitsML to address the needs of specific communities such as mathematics, chemistry, and materials science. + +### Supported unit types + +
+
+
+ +
+

SI Base & Special Derived

+

meter, second, joule, volt, kilogram, ampere, kelvin, mole, candela

+
+
+
+ +
+

SI Derived Units

+

square meter, meter per second, newton, pascal, watt, hertz, and more

+
+
+
+ +
+

Non-SI Units

+

minute, angstrom, inch, pound, calorie, atmosphere, and others

+
+
+ +### Schema versions + +| Version | Status | Description | +|---------|--------|-------------| +| UnitsML 1.0 | **Current** | Latest stable release | +| UnitsML 1.0-CSD04 | Draft | Committee Specification Draft 04 | +| UnitsML 0.9.x | Historical | Earlier development versions | +| UnitsML-Lite | Deprecated | Simplified subset | + +## UnitsDB YAML Schemas + + + +YAML schemas that define the structure and validation rules for UnitsDB β€” the authoritative database of scientific units. Each schema validates one of the six entity types: + +| Schema | Entity | Defines | +|--------|--------|---------| +| `units-schema.yaml` | **Unit** | Measurement units with identifiers, symbols, scale/system references, dimensional composition | +| `quantities-schema.yaml` | **Quantity** | Measurable properties (length, mass, force) with dimension references | +| `dimensions-schema.yaml` | **Dimension** | SI base quantity dimensional powers (L, M, T, I, Θ, N, J) | +| `prefixes-schema.yaml` | **Prefix** | SI decimal (kilo, milli) and binary (kibi, mebi) scaling factors | +| `scales-schema.yaml` | **Scale** | Measurement scale properties (continuous, ordered, logarithmic, interval, ratio) | +| `unit_systems-schema.yaml` | **Unit System** | Systems of measurement (SI, CGS) with base unit definitions | + +### Shared patterns + +All entity schemas share common structures: + +- **`identifiers[]`** β€” Cross-system IDs with `type` enum (nist, unitsml, ucum, si-digital-framework) +- **`names[]`** β€” Multilingual names with ISO language codes +- **`references[]`** β€” Informative and normative external references + +Unit, Prefix, and Dimension schemas include **6-format symbol representations**: `latex`, `unicode`, `ascii`, `html`, `id`, `mathml`. + +## Related resources + +- [UnitsDB](/unitsdb/) β€” browse the complete database with 716 entities +- [How UnitsML Works](/learn/how-it-works) β€” technical architecture overview +- [UnitsML Guide](/learn/guide) β€” usage guide with examples +- [unitsml-ruby](/software/unitsml-ruby) β€” Ruby gem for programmatic access + + diff --git a/scripts/generate-unitsdb.ts b/scripts/generate-unitsdb.ts new file mode 100644 index 0000000..1697de8 --- /dev/null +++ b/scripts/generate-unitsdb.ts @@ -0,0 +1,627 @@ +/** + * Generate enriched UnitsDB index.json and JSON-LD files from YAML source. + * + * Usage: npx tsx scripts/generate-unitsdb.ts + * + * Reads from: ../unitsdb/*.yaml + * Writes to: public/unitsdb/ + */ + +import * as fs from 'node:fs' +import * as path from 'node:path' +import * as yaml from 'js-yaml' + +// ── Paths ── + +const SCRIPT_DIR = path.dirname(new URL(import.meta.url).pathname) +const SITE_ROOT = path.resolve(SCRIPT_DIR, '..') +const DB_PATH = path.resolve(SITE_ROOT, '..', 'unitsdb') +const OUT_PATH = path.resolve(SITE_ROOT, 'public', 'unitsdb') + +// ── YAML loader ── + +function loadYaml(name: string): T { + const raw = fs.readFileSync(path.join(DB_PATH, `${name}.yaml`), 'utf-8') + return yaml.load(raw) as T +} + +// ── Helpers ── + +function firstName(names: any[]): string { + if (!names || !names.length) return '?' + return names[0]?.value ?? '?' +} + +interface SymMap { [fmt: string]: string } + +function extractSymbols(symField: any): SymMap { + const result: SymMap = {} + if (!symField) return result + if (Array.isArray(symField)) { + for (const s of symField) { + for (const fmt of ['unicode', 'ascii', 'html', 'latex', 'id', 'mathml']) { + if (s[fmt] !== undefined && s[fmt] !== null) result[fmt] = s[fmt] + } + } + } else if (typeof symField === 'object') { + Object.assign(result, symField) + } + return result +} + +function firstSym(sm: SymMap): string { + return sm.unicode ?? sm.ascii ?? '' +} + +function findUnitsmlId(identifiers: any[]): string { + const found = identifiers?.find((i: any) => i.type === 'unitsml') + return found?.id ?? identifiers?.[0]?.id ?? '?' +} + +// ── Main ── + +interface DimInfo { + id: string + name: string + expression: string + components: { key: string; symbol: string; power: number }[] + dimensionless: boolean +} + +interface QtyInfo { + name: string + type: string + dimension: DimInfo | null +} + +interface PrefixInfo { + name: string + symbol: string + symbols: SymMap + base: number + power: number + value: number +} + +interface ScaleInfo { + name: string + properties: Record + description: string[] +} + +interface SystemInfo { + name: string + short: string + acceptable: boolean | null + base_units: any[] +} + +function main() { + // ── Load all YAML data ── + const unitsData: any = loadYaml('units') + const quantitiesData: any = loadYaml('quantities') + const dimensionsData: any = loadYaml('dimensions') + const prefixesData: any = loadYaml('prefixes') + const scalesData: any = loadYaml('scales') + const systemsData: any = loadYaml('unit_systems') + + // ── Build prefix lookup ── + const prefixMap: Record = {} + for (const p of prefixesData.prefixes) { + const pid: string = p.identifiers[0].id + const sym = extractSymbols(p.symbols) + prefixMap[pid] = { + name: firstName(p.names), + symbol: firstSym(sym), + symbols: sym, + base: p.base ?? 10, + power: p.power ?? 0, + value: (p.base ?? 10) ** (p.power ?? 0), + } + } + + // ── Build dimension lookup ── + const dimMap: Record = {} + const DIM_KEYS = [ + 'length', 'mass', 'time', 'electric_current', + 'thermodynamic_temperature', 'amount_of_substance', + 'luminous_intensity', 'plane_angle', + ] + for (const d of dimensionsData.dimensions) { + const did: string = d.identifiers[0].id + const components: DimInfo['components'] = [] + for (const key of DIM_KEYS) { + const comp = d[key] + if (comp && (comp.power ?? 0) !== 0) { + components.push({ key, symbol: comp.symbol ?? '', power: comp.power }) + } + } + const isDimensionless = d.dimensionless === true + let expression: string + if (isDimensionless) { + expression = '1' + } else { + const parts = components.map(c => + c.power === 1 ? c.symbol : `${c.symbol}${c.power}` + ) + expression = parts.length ? parts.join('Β·') : 'β€”' + } + dimMap[did] = { + id: did, + name: firstName(d.names), + expression, + components, + dimensionless: isDimensionless, + } + } + + // ── Build quantity lookup ── + const qtyMap: Record = {} + for (const q of quantitiesData.quantities) { + const qid: string = q.identifiers[0].id + const dimRef = q.dimension_reference + const dimId = dimRef?.id ?? null + const dimInfo = dimId ? dimMap[dimId] ?? null : null + qtyMap[qid] = { + name: firstName(q.names), + type: q.quantity_type ?? 'derived', + dimension: dimInfo, + } + } + + // ── Build scale lookup ── + const scaleMap: Record = {} + for (const s of scalesData.scales) { + const sid: string = s.identifiers[0].id + const refs = s.references + const desc = refs?.informative ?? (Array.isArray(refs) ? refs : []) + scaleMap[sid] = { + name: firstName(s.names), + properties: s.properties ?? {}, + description: Array.isArray(desc) ? desc : [], + } + } + + // ── Build unit system lookup (indexed by ALL identifiers + short name) ── + const systemMap: Record = {} + const systemPrimaryId: Record = {} // any id β†’ primary NIST id + for (const us of systemsData.unit_systems) { + const primaryId: string = us.identifiers[0].id + const info: SystemInfo = { + name: firstName(us.names), + short: us.short ?? primaryId, + acceptable: us.acceptable ?? null, + base_units: us.base_units ?? [], + } + for (const ident of us.identifiers) { + systemMap[ident.id] = info + systemPrimaryId[ident.id] = primaryId + } + // Also index by short name (units reference systems by short name) + if (us.short) { + systemMap[us.short] = info + systemPrimaryId[us.short] = primaryId + } + } + + // ── Build unit lookup for root_units resolution ── + const unitLookup: Record = {} + for (const u of unitsData.units) { + const uid: string = u.identifiers[0].id + const sym = extractSymbols(u.symbols) + unitLookup[uid] = { name: firstName(u.names), symbol: firstSym(sym) } + } + + // ── Process units ── + const unitsOut: any[] = [] + for (const u of unitsData.units) { + const uid: string = u.identifiers[0].id + const sym = extractSymbols(u.symbols) + const namesList = (u.names ?? []).map((n: any) => ({ + value: n.value ?? '', lang: n.lang ?? 'en', + })) + + // Quantity references (handle singular/plural) + let qtyRefs = u.quantity_references ?? u.quantity_reference ?? [] + if (qtyRefs && !Array.isArray(qtyRefs)) qtyRefs = [qtyRefs] + const quantities = (qtyRefs ?? []) + .map((qr: any) => { + const qid = qr?.id + if (!qid || !qtyMap[qid]) return null + return { id: qid, name: qtyMap[qid].name, type: qtyMap[qid].type } + }) + .filter(Boolean) + + // Dimension from first quantity + let dimension: any = null + if (quantities.length) { + const qid = quantities[0].id + if (qtyMap[qid]?.dimension) { + dimension = qtyMap[qid].dimension + } + } + + // Scale + const scaleRef = u.scale_reference + const scaleId = scaleRef?.id ?? null + const scaleInfo = (scaleId && scaleMap[scaleId]) + ? { id: scaleId, name: scaleMap[scaleId].name } + : null + + // Systems (normalize to primary NIST ID, add parent system membership) + let sysRefs = u.unit_system_reference ?? [] + if (sysRefs && !Array.isArray(sysRefs)) sysRefs = [sysRefs] + const systems: { id: string; name: string; short: string; acceptable: boolean | null }[] = (sysRefs ?? []) + .map((sr: any) => { + const sid = sr?.id + if (!sid || !systemMap[sid]) return null + const sm = systemMap[sid] + const normalizedId = systemPrimaryId[sid] ?? sid + return { id: normalizedId, name: sm.name, short: sm.short, acceptable: sm.acceptable } + }) + .filter(Boolean) + + // SI sub-system units are also members of SI_compatible + const SI_PARENT = 'SI_compatible' + const SI_SUBSYSTEMS = ['SI_base', 'SI_derived_special', 'SI_derived_non-special'] + const hasSI = systems.some(s => SI_SUBSYSTEMS.includes(s.id)) + if (hasSI && !systems.some(s => s.id === SI_PARENT) && systemMap[SI_PARENT]) { + const parent = systemMap[SI_PARENT] + systems.push({ id: SI_PARENT, name: parent.name, short: parent.short, acceptable: parent.acceptable }) + } + + // Root units (with prefix resolution!) + const rootUnitsRaw = u.root_units + let rootUnits: any[] | null = null + if (rootUnitsRaw && rootUnitsRaw.length) { + rootUnits = rootUnitsRaw.map((ru: any) => { + // Unit reference + const unitRef = ru.unit_reference + const unitId = unitRef?.id ?? null + const unitInfo = unitId && unitLookup[unitId] + ? { id: unitId, ...unitLookup[unitId] } + : { id: unitId ?? '?', name: unitId ?? '?', symbol: '?' } + + // Prefix reference + const prefRef = ru.prefix_reference + let prefixInfo = null + if (prefRef?.id && prefixMap[prefRef.id]) { + const pm = prefixMap[prefRef.id] + prefixInfo = { id: prefRef.id, name: pm.name, symbol: pm.symbol } + } + + return { power: ru.power ?? 1, unit: unitInfo, prefix: prefixInfo } + }) + } + + // Identifiers + const identifiers = (u.identifiers ?? []).map((i: any) => ({ + type: i.type ?? '', id: i.id ?? '', + })) + + // External references (BIPM, UCUM, QUDT, etc.) + const references = (u.references ?? []).map((r: any) => ({ + type: r.type ?? '', authority: r.authority ?? '', uri: r.uri ?? '', + })) + + unitsOut.push({ + id: uid, + unitsml_id: findUnitsmlId(identifiers), + name: firstName(u.names), + names: namesList, + symbols: sym, + identifiers, + references, + short: u.short ?? '', + root: u.root ?? false, + composite: rootUnits !== null, + quantities, + dimension, + scale: scaleInfo, + systems, + root_units: rootUnits, + }) + } + + // ── Process quantities ── + const quantitiesOut: any[] = [] + for (const q of quantitiesData.quantities) { + const qid: string = q.identifiers[0].id + const dimRef = q.dimension_reference + const dimId = dimRef?.id ?? null + const dimInfo = dimId ? dimMap[dimId] ?? null : null + + // Find units that measure this quantity + const relatedUnits: any[] = [] + for (const u of unitsOut) { + if (u.quantities.some((q2: any) => q2.id === qid)) { + relatedUnits.push({ id: u.id, name: u.name, symbol: firstSym(u.symbols) }) + } + } + + const identifiers = (q.identifiers ?? []).map((i: any) => ({ + type: i.type ?? '', id: i.id ?? '', + })) + const references = (q.references ?? []).map((r: any) => ({ + type: r.type ?? '', authority: r.authority ?? '', uri: r.uri ?? '', + })) + + quantitiesOut.push({ + id: qid, + unitsml_id: findUnitsmlId(identifiers), + name: firstName(q.names), + names: (q.names ?? []).map((n: any) => ({ value: n.value ?? '', lang: n.lang ?? 'en' })), + short: q.short ?? '', + type: q.quantity_type ?? 'derived', + dimension: dimInfo, + units: relatedUnits, + unit_count: relatedUnits.length, + identifiers, + references, + }) + } + + // ── Process dimensions ── + const dimensionsOut: any[] = [] + for (const d of dimensionsData.dimensions) { + const did: string = d.identifiers[0].id + const info = dimMap[did] + const relatedQtys = quantitiesOut + .filter(q => q.dimension?.id === did) + .map(q => ({ id: q.id, name: q.name })) + + const identifiers = (d.identifiers ?? []).map((i: any) => ({ + type: i.type ?? '', id: i.id ?? '', + })) + + dimensionsOut.push({ + id: did, + unitsml_id: findUnitsmlId(identifiers), + name: info.name, + names: (d.names ?? []).map((n: any) => ({ value: n.value ?? '', lang: n.lang ?? 'en' })), + expression: info.expression, + dimensionless: info.dimensionless, + components: info.components, + quantities: relatedQtys, + identifiers, + references: (d.references ?? []).map((r: any) => ({ + type: r.type ?? '', authority: r.authority ?? '', uri: r.uri ?? '', + })), + }) + } + + // ── Process prefixes ── + const prefixesOut: any[] = [] + for (const p of prefixesData.prefixes) { + const pid: string = p.identifiers[0].id + const info = prefixMap[pid] + const relatedUnits: any[] = [] + for (const u of unitsOut) { + if (u.root_units?.some((ru: any) => ru.prefix?.id === pid)) { + relatedUnits.push({ id: u.id, name: u.name, symbol: firstSym(u.symbols) }) + } + } + + const identifiers = (p.identifiers ?? []).map((i: any) => ({ + type: i.type ?? '', id: i.id ?? '', + })) + + prefixesOut.push({ + id: pid, + unitsml_id: findUnitsmlId(identifiers), + name: info.name, + symbol: info.symbol, + symbols: info.symbols, + factor: `${info.base}^${info.power}`, + base: info.base, + power: info.power, + value: info.value, + units: relatedUnits, + identifiers, + references: (p.references ?? []).map((r: any) => ({ + type: r.type ?? '', authority: r.authority ?? '', uri: r.uri ?? '', + })), + }) + } + + // ── Process scales ── + const scalesOut: any[] = [] + for (const s of scalesData.scales) { + const sid: string = s.identifiers[0].id + const info = scaleMap[sid] + const unitCount = unitsOut.filter(u => u.scale?.id === sid).length + const identifiers = (s.identifiers ?? []).map((i: any) => ({ + type: i.type ?? '', id: i.id ?? '', + })) + + scalesOut.push({ + id: sid, + unitsml_id: findUnitsmlId(identifiers), + name: info.name, + properties: info.properties, + description: info.description, + unit_count: unitCount, + identifiers, + }) + } + + // ── Process unit systems ── + const systemsOut: any[] = [] + for (const us of systemsData.unit_systems) { + const usid: string = us.identifiers[0].id + const info = systemMap[usid] + const unitCount = unitsOut.filter(u => u.systems?.some((s: any) => s.id === usid)).length + const identifiers = (us.identifiers ?? []).map((i: any) => ({ + type: i.type ?? '', id: i.id ?? '', + })) + + systemsOut.push({ + id: usid, + unitsml_id: findUnitsmlId(identifiers), + name: info.name, + short: info.short, + acceptable: info.acceptable, + unit_count: unitCount, + identifiers, + base_units: info.base_units, + }) + } + + // ── Stats ── + const stats = { + units: unitsOut.length, + quantities: quantitiesOut.length, + dimensions: dimensionsOut.length, + prefixes: prefixesOut.length, + scales: scalesOut.length, + unit_systems: systemsOut.length, + total: unitsOut.length + quantitiesOut.length + dimensionsOut.length + prefixesOut.length + scalesOut.length + systemsOut.length, + units_root: unitsOut.filter(u => u.root).length, + units_composite: unitsOut.filter(u => u.composite).length, + quantities_base: quantitiesOut.filter(q => q.type === 'base').length, + quantities_derived: quantitiesOut.filter(q => q.type === 'derived').length, + prefixes_decimal: prefixesOut.filter(p => p.base === 10).length, + prefixes_binary: prefixesOut.filter(p => p.base === 2).length, + } + + // ── Write index.json ── + fs.mkdirSync(OUT_PATH, { recursive: true }) + const index = { + meta: { + source: 'https://github.com/unitsml/unitsdb', + version: '2.0.0', + schema_site: 'https://schema.unitsml.org', + generated: new Date().toISOString().slice(0, 10), + }, + stats, + units: unitsOut, + quantities: quantitiesOut, + dimensions: dimensionsOut, + prefixes: prefixesOut, + scales: scalesOut, + unit_systems: systemsOut, + } + + // Full index (kept for backward compat / JSON API link) + writeJson('index.json', index) + + // Lightweight stats file for instant page load + writeJson('stats.json', { meta: index.meta, stats }) + + // Per-type files for lazy loading + const typeFiles: Record = { + units: unitsOut, + quantities: quantitiesOut, + dimensions: dimensionsOut, + prefixes: prefixesOut, + scales: scalesOut, + unit_systems: systemsOut, + } + for (const [key, items] of Object.entries(typeFiles)) { + writeJson(`${key}.json`, items) + } + + console.log(`Stats: ${JSON.stringify(stats, null, 2)}`) + + // Verify prefix resolution + let prefixCount = 0 + for (const u of unitsOut) { + for (const ru of u.root_units ?? []) { + if (ru.prefix) prefixCount++ + } + } + console.log(`Units with prefix in root_units: ${prefixCount}`) + + // ── Generate JSON-LD files ── + const BASE = 'https://unitsml.org' + const CTX = `${BASE}/unitsdb/context.jsonld` + + const pathSeg: Record = { + units: 'unit', quantities: 'quantity', dimensions: 'dimension', + prefixes: 'prefix', scales: 'scale', unit_systems: 'unit-system', + } + const typeMap: Record = { + units: 'Unit', quantities: 'Quantity', dimensions: 'Dimension', + prefixes: 'Prefix', scales: 'Scale', unit_systems: 'UnitSystem', + } + + function toLd(key: string, e: any): any { + const seg = pathSeg[key] + const o: any = { + '@context': CTX, + '@id': `${BASE}/${seg}/${e.unitsml_id || e.id}`, + '@type': typeMap[key], + name: e.name, + identifier: (e.identifiers ?? [{ type: 'nist', id: e.id }]).map((i: any) => ({ + '@type': 'PropertyValue', propertyID: i.type, value: i.id, + })), + } + + if (key === 'units') { + if (e.symbols?.unicode) o.symbol = e.symbols.unicode + o.rootUnit = e.root + if (e.scale) o.scaleReference = { '@id': `${BASE}/scale/${e.scale.id}` } + if (e.systems?.length) o.unitSystemReference = e.systems.map((s: any) => ({ '@id': `${BASE}/unit-system/${s.id}`, name: s.name })) + if (e.quantities?.length) o.quantityReference = e.quantities.map((q: any) => ({ '@id': `${BASE}/quantity/${q.id}`, name: q.name })) + if (e.dimension) o.dimensionReference = { '@id': `${BASE}/dimension/${e.dimension.id}`, expression: e.dimension.expression } + if (e.root_units?.length) { + o.rootUnits = e.root_units.map((ru: any) => { + const entry: any = { + power: ru.power, + unitReference: { '@id': `${BASE}/unit/${ru.unit.id}`, name: ru.unit.name, symbol: ru.unit.symbol }, + } + if (ru.prefix) { + entry.prefixReference = { '@id': `${BASE}/prefix/${ru.prefix.id}`, name: ru.prefix.name, symbol: ru.prefix.symbol } + } + return entry + }) + } + } else if (key === 'quantities') { + o.quantityType = e.type + if (e.dimension) o.dimensionReference = { '@id': `${BASE}/dimension/${e.dimension.id}`, expression: e.dimension.expression } + if (e.units?.length) o.measuredBy = e.units.map((u: any) => ({ '@id': `${BASE}/unit/${u.id}`, name: u.name })) + } else if (key === 'dimensions') { + o.expression = e.expression + if (e.components?.length) o.dimensionalComposition = e.components.map((c: any) => ({ key: c.key, symbol: c.symbol, power: c.power })) + if (e.dimensionless) o.dimensionless = true + } else if (key === 'prefixes') { + o.symbol = e.symbol; o.base = e.base; o.power = e.power; o.value = e.value + } else if (key === 'scales') { + o.properties = e.properties + } else if (key === 'unit_systems') { + o.short = e.short + } + return o + } + + const collections: Record = { + units: unitsOut, quantities: quantitiesOut, dimensions: dimensionsOut, + prefixes: prefixesOut, scales: scalesOut, unit_systems: systemsOut, + } + + // Per-type JSON-LD + for (const [key, items] of Object.entries(collections)) { + const seg = pathSeg[key] + const filename = key === 'unit_systems' ? 'unit-systems.jsonld' : `${seg}.jsonld` + const graph = items.map(e => toLd(key, e)) + writeJson(filename, { '@context': CTX, '@graph': graph }) + } + + // Complete dataset + const fullGraph: any[] = [] + for (const [key, items] of Object.entries(collections)) { + for (const e of items) fullGraph.push(toLd(key, e)) + } + writeJson('unitsdb.jsonld', { '@context': CTX, '@graph': fullGraph }) + console.log(`unitsdb.jsonld: ${fullGraph.length} entities`) + + // ── Helper ── + function writeJson(filename: string, data: any) { + const fp = path.join(OUT_PATH, filename) + fs.writeFileSync(fp, JSON.stringify(data, null, 2), 'utf-8') + const size = fs.statSync(fp).size + console.log(`${filename}: ${(size / 1024).toFixed(1)} KB`) + } +} + +main() diff --git a/software/index.md b/software/index.md new file mode 100644 index 0000000..5edeb27 --- /dev/null +++ b/software/index.md @@ -0,0 +1,40 @@ +--- +title: Software +description: Software libraries for working with UnitsML +--- + +# Software + +Libraries and tools for working with UnitsML and UnitsDB programmatically. + +## How the pieces fit together + + + + + +## Libraries + +
+ +
+ +## Related resources + +- [UnitsDB](/unitsdb/) β€” browse the complete database with 716 entities +- [Schemas](/schemas) β€” UnitsML XML Schemas and UnitsDB YAML Schemas +- [unitsdb-ruby](/software/unitsdb-ruby) β€” Ruby library for accessing UnitsDB data +- [unitsml-ruby](/software/unitsml-ruby) β€” Ruby library for working with UnitsML expressions diff --git a/software/schemas.md b/software/schemas.md new file mode 100644 index 0000000..d1e557b --- /dev/null +++ b/software/schemas.md @@ -0,0 +1,12 @@ +--- +title: Schemas +description: Schema definitions for UnitsML and UnitsDB +--- + + + +Redirecting to [Schemas](/schemas)... diff --git a/software/unitsdb-ruby.md b/software/unitsdb-ruby.md new file mode 100644 index 0000000..77790f7 --- /dev/null +++ b/software/unitsdb-ruby.md @@ -0,0 +1,92 @@ +--- +title: unitsdb-ruby +description: Ruby library for accessing and manipulating UnitsDB content +--- + +# unitsdb-ruby + + + +A Ruby library for accessing and manipulating UnitsDB content. The gem ships with UnitsDB YAML data files bundled internally β€” no separate data source configuration needed. + +## Installation + +```bash +gem install unitsdb +``` + +## Usage + +```ruby +require 'unitsdb' + +# Access the bundled database +db = Unitsdb.database + +# Query units +unit = db.units.find { |u| u.name == "metre" } +puts unit.id # => "NISTu1" +puts unit.symbols # => "m" + +# Query quantities +length = db.quantities.find { |q| q.name == "length" } + +# Browse unit systems, dimensions, prefixes, and scales +db.unit_systems.each { |sys| puts sys.name } +``` + +## Features + +
+
+
+ +
+

Bundled Data

+

UnitsDB YAML data files are included in the gem. No external configuration or data download required.

+
+
+
+ +
+

Full Database API

+

Programmatic access to all 716 entities β€” units, quantities, dimensions, prefixes, scales, and unit systems.

+
+
+
+ +
+

Validated Data

+

YAML schema validation ensures data integrity. The gem and data versions are managed independently.

+
+
+ + diff --git a/software/unitsdb.md b/software/unitsdb.md new file mode 100644 index 0000000..5a3ea2f --- /dev/null +++ b/software/unitsdb.md @@ -0,0 +1,12 @@ +--- +title: UnitsDB +description: Database of scientific units of measure +--- + + + +Redirecting to [UnitsDB](/unitsdb/)... diff --git a/software/unitsml-ruby.md b/software/unitsml-ruby.md new file mode 100644 index 0000000..33df433 --- /dev/null +++ b/software/unitsml-ruby.md @@ -0,0 +1,87 @@ +--- +title: unitsml-ruby +description: Library to work with UnitsML in Ruby +--- + +# unitsml-ruby + + + +Library to work with UnitsML in Ruby β€” parse unit strings, generate MathML representations, and perform dimensional analysis. + +## Installation + +```bash +gem install unitsml +``` + +## Usage + +```ruby +require 'unitsml' + +# Parse a unit expression +unit = Unitsml::Unit.parse("m/s^2") + +# Generate MathML +mathml = unit.to_mathml + +# Access dimensional information +dimension = unit.dimension +``` + +## Features + +
+
+
+ +
+

Unit Parsing

+

Parse UnitsML unit expressions into structured Ruby objects with full dimensional analysis.

+
+
+
+ +
+

MathML Generation

+

Generate MathML markup for unit symbols and expressions, ready for scientific document rendering.

+
+
+
+ +
+

UnitsDB Integration

+

Built on top of UnitsDB data for accurate unit definitions, symbols, and dimensional relationships.

+
+
+ + diff --git a/specs/guidelines.md b/specs/guidelines.md new file mode 100644 index 0000000..53b3b90 --- /dev/null +++ b/specs/guidelines.md @@ -0,0 +1,12 @@ +--- +title: Guidelines +description: UnitsML guidelines and deliverables +--- + + + +Redirecting to [UnitsML Guide](/learn/guide)... diff --git a/title.html b/title.html deleted file mode 100644 index 7e0bac7..0000000 --- a/title.html +++ /dev/null @@ -1 +0,0 @@ -{% svg assets/logo-text.svg title="UnitsML" %} diff --git a/tos.md b/tos.md new file mode 100644 index 0000000..bbac8e5 --- /dev/null +++ b/tos.md @@ -0,0 +1,3 @@ +# Terms of Service + +To be provided. diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..089c001 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,15 @@ +{ + "compilerOptions": { + "target": "ES2022", + "module": "ESNext", + "moduleResolution": "bundler", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true, + "resolveJsonModule": true, + "isolatedModules": true, + "jsx": "preserve" + }, + "include": [".vitepress/**/*.ts", ".vitepress/**/*.vue"] +} diff --git a/unitsdb/[type]/[id].md b/unitsdb/[type]/[id].md new file mode 100644 index 0000000..b7df660 --- /dev/null +++ b/unitsdb/[type]/[id].md @@ -0,0 +1,7 @@ +--- +title: Entity Detail +layout: page +pageClass: unitsdb-full +--- + + diff --git a/unitsdb/[type]/[id].paths.ts b/unitsdb/[type]/[id].paths.ts new file mode 100644 index 0000000..31f898b --- /dev/null +++ b/unitsdb/[type]/[id].paths.ts @@ -0,0 +1,39 @@ +import { readFileSync } from 'node:fs' +import { resolve, dirname } from 'node:path' +import { fileURLToPath } from 'node:url' + +const __dirname = dirname(fileURLToPath(import.meta.url)) + +const TYPE_FILE: Record = { + units: 'units', + quantities: 'quantities', + dimensions: 'dimensions', + prefixes: 'prefixes', + scales: 'scales', + systems: 'unit_systems', +} + +function slugify(uid: string): string { + return uid.replace(/[^a-zA-Z0-9._-]/g, '_') +} + +export default { + watch: ['../../public/unitsdb/*.json'], + + paths() { + const root = resolve(__dirname, '..', '..') + const result: { params: { type: string; id: string } }[] = [] + + for (const [urlType, fileKey] of Object.entries(TYPE_FILE)) { + const raw = readFileSync(resolve(root, `public/unitsdb/${fileKey}.json`), 'utf-8') + const items: any[] = JSON.parse(raw) + for (const item of items) { + result.push({ + params: { type: urlType, id: slugify(item.unitsml_id) } + }) + } + } + + return result + } +} diff --git a/unitsdb/dimensions.md b/unitsdb/dimensions.md new file mode 100644 index 0000000..dccfc39 --- /dev/null +++ b/unitsdb/dimensions.md @@ -0,0 +1,25 @@ +--- +title: UnitsDB +description: Interactive database of scientific units of measure +layout: page +pageClass: unitsdb-full +--- + +
+
+ +
+
+ + diff --git a/unitsdb/index.md b/unitsdb/index.md new file mode 100644 index 0000000..dccfc39 --- /dev/null +++ b/unitsdb/index.md @@ -0,0 +1,25 @@ +--- +title: UnitsDB +description: Interactive database of scientific units of measure +layout: page +pageClass: unitsdb-full +--- + +
+
+ +
+
+ + diff --git a/unitsdb/prefixes.md b/unitsdb/prefixes.md new file mode 100644 index 0000000..dccfc39 --- /dev/null +++ b/unitsdb/prefixes.md @@ -0,0 +1,25 @@ +--- +title: UnitsDB +description: Interactive database of scientific units of measure +layout: page +pageClass: unitsdb-full +--- + +
+
+ +
+
+ + diff --git a/unitsdb/quantities.md b/unitsdb/quantities.md new file mode 100644 index 0000000..dccfc39 --- /dev/null +++ b/unitsdb/quantities.md @@ -0,0 +1,25 @@ +--- +title: UnitsDB +description: Interactive database of scientific units of measure +layout: page +pageClass: unitsdb-full +--- + +
+
+ +
+
+ + diff --git a/unitsdb/scales.md b/unitsdb/scales.md new file mode 100644 index 0000000..dccfc39 --- /dev/null +++ b/unitsdb/scales.md @@ -0,0 +1,25 @@ +--- +title: UnitsDB +description: Interactive database of scientific units of measure +layout: page +pageClass: unitsdb-full +--- + +
+
+ +
+
+ + diff --git a/unitsdb/systems.md b/unitsdb/systems.md new file mode 100644 index 0000000..dccfc39 --- /dev/null +++ b/unitsdb/systems.md @@ -0,0 +1,25 @@ +--- +title: UnitsDB +description: Interactive database of scientific units of measure +layout: page +pageClass: unitsdb-full +--- + +
+
+ +
+
+ + diff --git a/unitsdb/units.md b/unitsdb/units.md new file mode 100644 index 0000000..dccfc39 --- /dev/null +++ b/unitsdb/units.md @@ -0,0 +1,25 @@ +--- +title: UnitsDB +description: Interactive database of scientific units of measure +layout: page +pageClass: unitsdb-full +--- + +
+
+ +
+
+ +